2017-12-07 08:56:11 -05:00
|
|
|
<?php
|
2018-01-24 21:08:45 -05:00
|
|
|
|
2017-12-07 08:56:11 -05:00
|
|
|
/**
|
|
|
|
* @file src/Model/Photo.php
|
|
|
|
* @brief This file contains the Photo class for database interface
|
|
|
|
*/
|
|
|
|
namespace Friendica\Model;
|
|
|
|
|
2020-01-06 18:51:02 -05:00
|
|
|
use Friendica\Core\Cache\Cache;
|
2018-01-03 21:01:41 -05:00
|
|
|
use Friendica\Core\Config;
|
2018-01-22 16:59:31 -05:00
|
|
|
use Friendica\Core\L10n;
|
2019-08-02 12:38:50 -04:00
|
|
|
use Friendica\Core\Logger;
|
2019-02-22 17:51:13 -05:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-11-20 16:33:35 -05:00
|
|
|
use Friendica\Database\DBStructure;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2020-01-06 11:42:28 -05:00
|
|
|
use Friendica\Model\Storage\SystemResource;
|
2017-12-07 08:56:11 -05:00
|
|
|
use Friendica\Object\Image;
|
2018-01-26 21:38:34 -05:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2019-10-17 21:26:15 -04:00
|
|
|
use Friendica\Util\Images;
|
2018-01-26 23:09:48 -05:00
|
|
|
use Friendica\Util\Network;
|
2018-10-17 08:19:58 -04:00
|
|
|
use Friendica\Util\Security;
|
2019-08-03 23:45:23 -04:00
|
|
|
use Friendica\Util\Strings;
|
2017-12-07 08:56:11 -05:00
|
|
|
|
2018-11-21 10:26:56 -05:00
|
|
|
require_once "include/dba.php";
|
|
|
|
|
2017-12-07 08:56:11 -05:00
|
|
|
/**
|
|
|
|
* Class to handle photo dabatase table
|
|
|
|
*/
|
2019-12-15 17:28:01 -05:00
|
|
|
class Photo
|
2017-12-07 08:56:11 -05:00
|
|
|
{
|
|
|
|
/**
|
2019-07-27 11:52:02 -04:00
|
|
|
* @brief Select rows from the photo table and returns them as array
|
2018-11-20 16:33:35 -05:00
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param array $fields Array of selected fields, empty for all
|
|
|
|
* @param array $conditions Array of fields for conditions
|
|
|
|
* @param array $params Array of several parameters
|
2018-11-20 16:33:35 -05:00
|
|
|
*
|
|
|
|
* @return boolean|array
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2019-07-27 11:52:02 -04:00
|
|
|
* @see \Friendica\Database\DBA::selectToArray
|
2018-11-20 16:33:35 -05:00
|
|
|
*/
|
2019-07-27 11:52:02 -04:00
|
|
|
public static function selectToArray(array $fields = [], array $conditions = [], array $params = [])
|
2018-11-20 16:33:35 -05:00
|
|
|
{
|
|
|
|
if (empty($fields)) {
|
2019-01-07 13:26:54 -05:00
|
|
|
$fields = self::getFields();
|
2018-11-20 16:33:35 -05:00
|
|
|
}
|
|
|
|
|
2019-07-27 12:53:48 -04:00
|
|
|
return DBA::selectToArray('photo', $fields, $conditions, $params);
|
2018-11-20 16:33:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Retrieve a single record from the photo table
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param array $fields Array of selected fields, empty for all
|
|
|
|
* @param array $conditions Array of fields for conditions
|
|
|
|
* @param array $params Array of several parameters
|
2018-11-20 16:33:35 -05:00
|
|
|
*
|
|
|
|
* @return bool|array
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
|
|
|
* @see \Friendica\Database\DBA::select
|
2018-11-20 16:33:35 -05:00
|
|
|
*/
|
2018-11-21 10:26:56 -05:00
|
|
|
public static function selectFirst(array $fields = [], array $conditions = [], array $params = [])
|
2018-11-20 16:33:35 -05:00
|
|
|
{
|
|
|
|
if (empty($fields)) {
|
2018-11-20 17:15:03 -05:00
|
|
|
$fields = self::getFields();
|
2018-11-20 16:33:35 -05:00
|
|
|
}
|
|
|
|
|
2018-11-21 10:26:56 -05:00
|
|
|
return DBA::selectFirst("photo", $fields, $conditions, $params);
|
2018-11-21 09:10:47 -05:00
|
|
|
}
|
2018-11-20 16:33:35 -05:00
|
|
|
|
2018-11-21 11:55:16 -05:00
|
|
|
/**
|
2018-11-22 10:57:41 -05:00
|
|
|
* @brief Get photos for user id
|
2018-11-21 11:55:16 -05:00
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param integer $uid User id
|
|
|
|
* @param string $resourceid Rescource ID of the photo
|
|
|
|
* @param array $conditions Array of fields for conditions
|
|
|
|
* @param array $params Array of several parameters
|
2018-11-21 11:55:16 -05:00
|
|
|
*
|
|
|
|
* @return bool|array
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
|
|
|
* @see \Friendica\Database\DBA::select
|
2018-11-21 11:55:16 -05:00
|
|
|
*/
|
|
|
|
public static function getPhotosForUser($uid, $resourceid, array $conditions = [], array $params = [])
|
|
|
|
{
|
|
|
|
$conditions["resource-id"] = $resourceid;
|
|
|
|
$conditions["uid"] = $uid;
|
|
|
|
|
2019-07-27 11:52:02 -04:00
|
|
|
return self::selectToArray([], $conditions, $params);
|
2018-11-21 11:55:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get a photo for user id
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param integer $uid User id
|
|
|
|
* @param string $resourceid Rescource ID of the photo
|
|
|
|
* @param integer $scale Scale of the photo. Defaults to 0
|
|
|
|
* @param array $conditions Array of fields for conditions
|
|
|
|
* @param array $params Array of several parameters
|
2018-11-21 11:55:16 -05:00
|
|
|
*
|
|
|
|
* @return bool|array
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
|
|
|
* @see \Friendica\Database\DBA::select
|
2018-11-21 11:55:16 -05:00
|
|
|
*/
|
|
|
|
public static function getPhotoForUser($uid, $resourceid, $scale = 0, array $conditions = [], array $params = [])
|
|
|
|
{
|
|
|
|
$conditions["resource-id"] = $resourceid;
|
|
|
|
$conditions["uid"] = $uid;
|
|
|
|
$conditions["scale"] = $scale;
|
|
|
|
|
|
|
|
return self::selectFirst([], $conditions, $params);
|
|
|
|
}
|
|
|
|
|
2018-11-20 16:33:35 -05:00
|
|
|
/**
|
|
|
|
* @brief Get a single photo given resource id and scale
|
|
|
|
*
|
|
|
|
* This method checks for permissions. Returns associative array
|
2018-11-20 17:15:03 -05:00
|
|
|
* on success, "no sign" image info, if user has no permission,
|
2018-11-20 16:33:35 -05:00
|
|
|
* false if photo does not exists
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param string $resourceid Rescource ID of the photo
|
|
|
|
* @param integer $scale Scale of the photo. Defaults to 0
|
2018-11-20 16:33:35 -05:00
|
|
|
*
|
|
|
|
* @return boolean|array
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-11-20 16:33:35 -05:00
|
|
|
*/
|
|
|
|
public static function getPhoto($resourceid, $scale = 0)
|
|
|
|
{
|
2019-09-28 01:37:24 -04:00
|
|
|
$r = self::selectFirst(["uid"], ["resource-id" => $resourceid]);
|
|
|
|
if (!DBA::isResult($r)) {
|
2018-11-21 09:10:47 -05:00
|
|
|
return false;
|
|
|
|
}
|
2018-11-20 16:33:35 -05:00
|
|
|
|
2019-09-28 01:37:24 -04:00
|
|
|
$uid = $r["uid"];
|
2019-06-22 13:24:30 -04:00
|
|
|
|
|
|
|
$sql_acl = Security::getPermissionsSQLByUserId($uid);
|
2018-11-20 16:33:35 -05:00
|
|
|
|
2019-09-28 01:37:24 -04:00
|
|
|
$conditions = ["`resource-id` = ? AND `scale` <= ? " . $sql_acl, $resourceid, $scale];
|
2018-11-21 10:26:56 -05:00
|
|
|
$params = ["order" => ["scale" => true]];
|
|
|
|
$photo = self::selectFirst([], $conditions, $params);
|
2018-12-14 02:31:08 -05:00
|
|
|
|
2018-11-20 16:33:35 -05:00
|
|
|
return $photo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-12-13 13:24:50 -05:00
|
|
|
* @brief Check if photo with given conditions exists
|
2018-11-20 16:33:35 -05:00
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param array $conditions Array of extra conditions
|
2018-11-20 16:33:35 -05:00
|
|
|
*
|
|
|
|
* @return boolean
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-11-20 16:33:35 -05:00
|
|
|
*/
|
2018-12-13 13:24:50 -05:00
|
|
|
public static function exists(array $conditions)
|
2018-11-20 16:33:35 -05:00
|
|
|
{
|
2018-12-13 13:24:50 -05:00
|
|
|
return DBA::exists("photo", $conditions);
|
2018-11-20 16:33:35 -05:00
|
|
|
}
|
|
|
|
|
2018-12-11 14:01:54 -05:00
|
|
|
|
2018-11-20 16:33:35 -05:00
|
|
|
/**
|
|
|
|
* @brief Get Image object for given row id. null if row id does not exist
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param array $photo Photo data. Needs at least 'id', 'type', 'backend-class', 'backend-ref'
|
2018-11-20 16:33:35 -05:00
|
|
|
*
|
|
|
|
* @return \Friendica\Object\Image
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2018-11-20 16:33:35 -05:00
|
|
|
*/
|
2018-12-11 14:01:54 -05:00
|
|
|
public static function getImageForPhoto(array $photo)
|
2018-11-20 16:33:35 -05:00
|
|
|
{
|
2020-01-06 16:07:23 -05:00
|
|
|
if (empty($photo['backend-class'])) {
|
2018-11-20 17:15:03 -05:00
|
|
|
// legacy data storage in "data" column
|
2020-01-06 16:07:23 -05:00
|
|
|
$i = self::selectFirst(['data'], ['id' => $photo['id']]);
|
2018-11-21 09:10:47 -05:00
|
|
|
if ($i === false) {
|
2018-11-20 17:15:03 -05:00
|
|
|
return null;
|
|
|
|
}
|
2020-01-06 16:07:23 -05:00
|
|
|
$data = $i['data'];
|
2018-11-20 17:15:03 -05:00
|
|
|
} else {
|
2020-01-08 19:48:48 -05:00
|
|
|
$backendClass = DI::storageManager()->getByName($photo['backend-class'] ?? '');
|
2020-01-06 16:07:23 -05:00
|
|
|
$backendRef = $photo['backend-ref'] ?? '';
|
|
|
|
$data = $backendClass->get($backendRef);
|
2018-11-20 17:15:03 -05:00
|
|
|
}
|
|
|
|
|
2020-01-06 16:07:23 -05:00
|
|
|
if (empty($data)) {
|
2018-11-20 16:33:35 -05:00
|
|
|
return null;
|
|
|
|
}
|
2019-02-18 19:56:41 -05:00
|
|
|
|
2020-01-06 16:07:23 -05:00
|
|
|
return new Image($data, $photo['type']);
|
2018-11-20 16:33:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return a list of fields that are associated with the photo table
|
|
|
|
*
|
|
|
|
* @return array field list
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-11-20 16:33:35 -05:00
|
|
|
*/
|
|
|
|
private static function getFields()
|
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
$allfields = DBStructure::definition(DI::app()->getBasePath(), false);
|
2018-11-20 16:33:35 -05:00
|
|
|
$fields = array_keys($allfields["photo"]["fields"]);
|
|
|
|
array_splice($fields, array_search("data", $fields), 1);
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
2018-11-20 17:15:03 -05:00
|
|
|
/**
|
|
|
|
* @brief Construct a photo array for a system resource image
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param string $filename Image file name relative to code root
|
|
|
|
* @param string $mimetype Image mime type. Defaults to "image/jpeg"
|
2018-11-20 17:15:03 -05:00
|
|
|
*
|
|
|
|
* @return array
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-11-20 17:15:03 -05:00
|
|
|
*/
|
|
|
|
public static function createPhotoForSystemResource($filename, $mimetype = "image/jpeg")
|
|
|
|
{
|
|
|
|
$fields = self::getFields();
|
|
|
|
$values = array_fill(0, count($fields), "");
|
2019-02-18 19:56:41 -05:00
|
|
|
|
2020-01-06 16:07:23 -05:00
|
|
|
$photo = array_combine($fields, $values);
|
|
|
|
$photo['backend-class'] = SystemResource::NAME;
|
|
|
|
$photo['backend-ref'] = $filename;
|
|
|
|
$photo['type'] = $mimetype;
|
|
|
|
$photo['cacheable'] = false;
|
2019-02-18 19:56:41 -05:00
|
|
|
|
2018-11-20 17:15:03 -05:00
|
|
|
return $photo;
|
|
|
|
}
|
2018-11-20 16:33:35 -05:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief store photo metadata in db and binary in default backend
|
|
|
|
*
|
2018-11-22 11:25:43 -05:00
|
|
|
* @param Image $Image Image object with data
|
|
|
|
* @param integer $uid User ID
|
|
|
|
* @param integer $cid Contact ID
|
|
|
|
* @param integer $rid Resource ID
|
|
|
|
* @param string $filename Filename
|
|
|
|
* @param string $album Album name
|
|
|
|
* @param integer $scale Scale
|
|
|
|
* @param integer $profile Is a profile image? optional, default = 0
|
|
|
|
* @param string $allow_cid Permissions, allowed contacts. optional, default = ""
|
|
|
|
* @param string $allow_gid Permissions, allowed groups. optional, default = ""
|
|
|
|
* @param string $deny_cid Permissions, denied contacts.optional, default = ""
|
|
|
|
* @param string $deny_gid Permissions, denied greoup.optional, default = ""
|
|
|
|
* @param string $desc Photo caption. optional, default = ""
|
2018-11-20 16:33:35 -05:00
|
|
|
*
|
|
|
|
* @return boolean True on success
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-12-07 08:56:11 -05:00
|
|
|
*/
|
2018-11-21 10:26:56 -05:00
|
|
|
public static function store(Image $Image, $uid, $cid, $rid, $filename, $album, $scale, $profile = 0, $allow_cid = "", $allow_gid = "", $deny_cid = "", $deny_gid = "", $desc = "")
|
2017-12-07 08:56:11 -05:00
|
|
|
{
|
2018-11-21 10:26:56 -05:00
|
|
|
$photo = self::selectFirst(["guid"], ["`resource-id` = ? AND `guid` != ?", $rid, ""]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($photo)) {
|
2018-11-21 10:26:56 -05:00
|
|
|
$guid = $photo["guid"];
|
2017-12-07 08:56:11 -05:00
|
|
|
} else {
|
2018-07-09 15:38:16 -04:00
|
|
|
$guid = System::createGUID();
|
2017-12-07 08:56:11 -05:00
|
|
|
}
|
|
|
|
|
2018-11-22 11:25:43 -05:00
|
|
|
$existing_photo = self::selectFirst(["id", "created", "backend-class", "backend-ref"], ["resource-id" => $rid, "uid" => $uid, "contact-id" => $cid, "scale" => $scale]);
|
|
|
|
$created = DateTimeFormat::utcNow();
|
|
|
|
if (DBA::isResult($existing_photo)) {
|
|
|
|
$created = $existing_photo["created"];
|
|
|
|
}
|
2017-12-07 08:56:11 -05:00
|
|
|
|
2018-11-21 03:38:54 -05:00
|
|
|
// Get defined storage backend.
|
|
|
|
// if no storage backend, we use old "data" column in photo table.
|
2018-11-21 10:26:56 -05:00
|
|
|
// if is an existing photo, reuse same backend
|
2018-11-21 03:38:54 -05:00
|
|
|
$data = "";
|
|
|
|
$backend_ref = "";
|
2018-11-21 10:26:56 -05:00
|
|
|
|
|
|
|
if (DBA::isResult($existing_photo)) {
|
|
|
|
$backend_ref = (string)$existing_photo["backend-ref"];
|
2020-01-08 19:48:48 -05:00
|
|
|
$storage = DI::storageManager()->getByName($existing_photo["backend-class"] ?? '');
|
2018-11-21 10:26:56 -05:00
|
|
|
} else {
|
2020-01-04 19:58:49 -05:00
|
|
|
$storage = DI::storage();
|
2018-11-21 10:26:56 -05:00
|
|
|
}
|
2019-01-07 12:09:10 -05:00
|
|
|
|
2020-01-04 19:58:49 -05:00
|
|
|
if ($storage === null) {
|
2018-11-21 03:38:54 -05:00
|
|
|
$data = $Image->asString();
|
|
|
|
} else {
|
2020-01-04 19:58:49 -05:00
|
|
|
$backend_ref = $storage->put($Image->asString(), $backend_ref);
|
2018-11-21 03:38:54 -05:00
|
|
|
}
|
|
|
|
|
2018-11-21 10:26:56 -05:00
|
|
|
|
2018-01-11 03:26:30 -05:00
|
|
|
$fields = [
|
2018-11-21 10:26:56 -05:00
|
|
|
"uid" => $uid,
|
|
|
|
"contact-id" => $cid,
|
|
|
|
"guid" => $guid,
|
|
|
|
"resource-id" => $rid,
|
2018-11-22 11:25:43 -05:00
|
|
|
"created" => $created,
|
2018-11-21 10:26:56 -05:00
|
|
|
"edited" => DateTimeFormat::utcNow(),
|
|
|
|
"filename" => basename($filename),
|
|
|
|
"type" => $Image->getType(),
|
|
|
|
"album" => $album,
|
|
|
|
"height" => $Image->getHeight(),
|
|
|
|
"width" => $Image->getWidth(),
|
|
|
|
"datasize" => strlen($Image->asString()),
|
|
|
|
"data" => $data,
|
|
|
|
"scale" => $scale,
|
|
|
|
"profile" => $profile,
|
|
|
|
"allow_cid" => $allow_cid,
|
|
|
|
"allow_gid" => $allow_gid,
|
|
|
|
"deny_cid" => $deny_cid,
|
|
|
|
"deny_gid" => $deny_gid,
|
|
|
|
"desc" => $desc,
|
2020-01-04 19:58:49 -05:00
|
|
|
"backend-class" => (string)$storage,
|
2018-11-21 10:26:56 -05:00
|
|
|
"backend-ref" => $backend_ref
|
2018-01-11 03:26:30 -05:00
|
|
|
];
|
2017-12-07 08:56:11 -05:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($existing_photo)) {
|
2018-11-21 10:26:56 -05:00
|
|
|
$r = DBA::update("photo", $fields, ["id" => $existing_photo["id"]]);
|
2017-12-07 08:56:11 -05:00
|
|
|
} else {
|
2018-11-21 10:26:56 -05:00
|
|
|
$r = DBA::insert("photo", $fields);
|
2017-12-07 08:56:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return $r;
|
|
|
|
}
|
|
|
|
|
2019-01-02 10:18:40 -05:00
|
|
|
|
2018-12-11 14:01:54 -05:00
|
|
|
/**
|
|
|
|
* @brief Delete info from table and data from storage
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param array $conditions Field condition(s)
|
|
|
|
* @param array $options Options array, Optional
|
2018-12-11 14:01:54 -05:00
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
|
|
|
* @see \Friendica\Database\DBA::delete
|
2018-12-11 14:01:54 -05:00
|
|
|
*/
|
|
|
|
public static function delete(array $conditions, array $options = [])
|
2018-11-21 10:26:56 -05:00
|
|
|
{
|
|
|
|
// get photo to delete data info
|
2019-07-27 12:53:48 -04:00
|
|
|
$photos = self::selectToArray(['backend-class', 'backend-ref'], $conditions);
|
2018-12-11 14:01:54 -05:00
|
|
|
|
2018-11-21 10:26:56 -05:00
|
|
|
foreach($photos as $photo) {
|
2020-01-08 19:48:48 -05:00
|
|
|
$backend_class = DI::storageManager()->getByName($photo['backend-class'] ?? '');
|
2020-01-06 16:07:23 -05:00
|
|
|
if ($backend_class !== null) {
|
|
|
|
$backend_class->delete($photo["backend-ref"] ?? '');
|
2018-11-21 10:26:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return DBA::delete("photo", $conditions, $options);
|
|
|
|
}
|
|
|
|
|
2018-11-21 11:55:16 -05:00
|
|
|
/**
|
|
|
|
* @brief Update a photo
|
|
|
|
*
|
|
|
|
* @param array $fields Contains the fields that are updated
|
|
|
|
* @param array $conditions Condition array with the key values
|
|
|
|
* @param Image $img Image to update. Optional, default null.
|
|
|
|
* @param array|boolean $old_fields Array with the old field values that are about to be replaced (true = update on duplicate)
|
|
|
|
*
|
|
|
|
* @return boolean Was the update successfull?
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @see \Friendica\Database\DBA::update
|
2018-11-21 11:55:16 -05:00
|
|
|
*/
|
|
|
|
public static function update($fields, $conditions, Image $img = null, array $old_fields = [])
|
|
|
|
{
|
|
|
|
if (!is_null($img)) {
|
|
|
|
// get photo to update
|
2019-07-27 12:57:00 -04:00
|
|
|
$photos = self::selectToArray(['backend-class', 'backend-ref'], $conditions);
|
2018-11-21 11:55:16 -05:00
|
|
|
|
|
|
|
foreach($photos as $photo) {
|
2020-01-08 19:48:48 -05:00
|
|
|
$backend_class = DI::storageManager()->getByName($photo['backend-class'] ?? '');
|
2020-01-06 16:07:23 -05:00
|
|
|
if ($backend_class !== null) {
|
|
|
|
$fields["backend-ref"] = $backend_class->put($img->asString(), $photo['backend-ref']);
|
2018-11-21 11:55:16 -05:00
|
|
|
} else {
|
|
|
|
$fields["data"] = $img->asString();
|
|
|
|
}
|
|
|
|
}
|
2018-12-11 14:01:54 -05:00
|
|
|
$fields['updated'] = DateTimeFormat::utcNow();
|
2018-11-21 11:55:16 -05:00
|
|
|
}
|
|
|
|
|
2018-12-11 14:01:54 -05:00
|
|
|
$fields['edited'] = DateTimeFormat::utcNow();
|
2018-11-21 12:08:23 -05:00
|
|
|
|
2019-01-02 10:18:40 -05:00
|
|
|
return DBA::update("photo", $fields, $conditions, $old_fields);
|
2018-11-21 11:55:16 -05:00
|
|
|
}
|
|
|
|
|
2017-12-07 08:56:11 -05:00
|
|
|
/**
|
2018-01-11 03:26:30 -05:00
|
|
|
* @param string $image_url Remote URL
|
2017-12-07 08:56:11 -05:00
|
|
|
* @param integer $uid user id
|
|
|
|
* @param integer $cid contact id
|
|
|
|
* @param boolean $quit_on_error optional, default false
|
|
|
|
* @return array
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2017-12-07 08:56:11 -05:00
|
|
|
*/
|
2018-01-11 03:26:30 -05:00
|
|
|
public static function importProfilePhoto($image_url, $uid, $cid, $quit_on_error = false)
|
2017-12-07 08:56:11 -05:00
|
|
|
{
|
2018-11-21 10:26:56 -05:00
|
|
|
$thumb = "";
|
|
|
|
$micro = "";
|
2018-02-14 00:05:00 -05:00
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
$photo = DBA::selectFirst(
|
2018-11-21 10:26:56 -05:00
|
|
|
"photo", ["resource-id"], ["uid" => $uid, "contact-id" => $cid, "scale" => 4, "album" => "Contact Photos"]
|
2017-12-07 08:56:11 -05:00
|
|
|
);
|
2018-11-30 09:06:22 -05:00
|
|
|
if (!empty($photo['resource-id'])) {
|
2019-10-26 09:05:35 -04:00
|
|
|
$resource_id = $photo["resource-id"];
|
2017-12-07 08:56:11 -05:00
|
|
|
} else {
|
2019-10-26 09:05:35 -04:00
|
|
|
$resource_id = self::newResource();
|
2017-12-07 08:56:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$photo_failure = false;
|
|
|
|
|
2018-01-11 03:26:30 -05:00
|
|
|
$filename = basename($image_url);
|
2019-06-11 01:26:16 -04:00
|
|
|
if (!empty($image_url)) {
|
2019-06-20 16:09:33 -04:00
|
|
|
$ret = Network::curl($image_url, true);
|
|
|
|
$img_str = $ret->getBody();
|
|
|
|
$type = $ret->getContentType();
|
2019-06-11 01:26:16 -04:00
|
|
|
} else {
|
|
|
|
$img_str = '';
|
|
|
|
}
|
2017-12-07 08:56:11 -05:00
|
|
|
|
|
|
|
if ($quit_on_error && ($img_str == "")) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-06-20 16:09:33 -04:00
|
|
|
if (empty($type)) {
|
2019-10-17 21:26:15 -04:00
|
|
|
$type = Images::guessType($image_url, true);
|
2019-06-20 16:09:33 -04:00
|
|
|
}
|
|
|
|
|
2017-12-07 08:56:11 -05:00
|
|
|
$Image = new Image($img_str, $type);
|
|
|
|
if ($Image->isValid()) {
|
2018-10-23 10:36:57 -04:00
|
|
|
$Image->scaleToSquare(300);
|
2017-12-07 08:56:11 -05:00
|
|
|
|
2019-10-26 09:05:35 -04:00
|
|
|
$r = self::store($Image, $uid, $cid, $resource_id, $filename, "Contact Photos", 4);
|
2017-12-07 08:56:11 -05:00
|
|
|
|
|
|
|
if ($r === false) {
|
|
|
|
$photo_failure = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$Image->scaleDown(80);
|
|
|
|
|
2019-10-26 09:05:35 -04:00
|
|
|
$r = self::store($Image, $uid, $cid, $resource_id, $filename, "Contact Photos", 5);
|
2017-12-07 08:56:11 -05:00
|
|
|
|
|
|
|
if ($r === false) {
|
|
|
|
$photo_failure = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$Image->scaleDown(48);
|
|
|
|
|
2019-10-26 09:05:35 -04:00
|
|
|
$r = self::store($Image, $uid, $cid, $resource_id, $filename, "Contact Photos", 6);
|
2017-12-07 08:56:11 -05:00
|
|
|
|
|
|
|
if ($r === false) {
|
|
|
|
$photo_failure = true;
|
|
|
|
}
|
|
|
|
|
2018-11-21 10:26:56 -05:00
|
|
|
$suffix = "?ts=" . time();
|
2017-12-07 08:56:11 -05:00
|
|
|
|
2019-12-30 17:00:08 -05:00
|
|
|
$image_url = DI::baseUrl() . "/photo/" . $resource_id . "-4." . $Image->getExt() . $suffix;
|
|
|
|
$thumb = DI::baseUrl() . "/photo/" . $resource_id . "-5." . $Image->getExt() . $suffix;
|
|
|
|
$micro = DI::baseUrl() . "/photo/" . $resource_id . "-6." . $Image->getExt() . $suffix;
|
2017-12-07 08:56:11 -05:00
|
|
|
|
|
|
|
// Remove the cached photo
|
2020-01-04 17:42:01 -05:00
|
|
|
$a = DI::app();
|
2018-10-09 13:58:58 -04:00
|
|
|
$basepath = $a->getBasePath();
|
2017-12-07 08:56:11 -05:00
|
|
|
|
|
|
|
if (is_dir($basepath . "/photo")) {
|
2019-10-26 09:05:35 -04:00
|
|
|
$filename = $basepath . "/photo/" . $resource_id . "-4." . $Image->getExt();
|
2017-12-07 08:56:11 -05:00
|
|
|
if (file_exists($filename)) {
|
|
|
|
unlink($filename);
|
|
|
|
}
|
2019-10-26 09:05:35 -04:00
|
|
|
$filename = $basepath . "/photo/" . $resource_id . "-5." . $Image->getExt();
|
2017-12-07 08:56:11 -05:00
|
|
|
if (file_exists($filename)) {
|
|
|
|
unlink($filename);
|
|
|
|
}
|
2019-10-26 09:05:35 -04:00
|
|
|
$filename = $basepath . "/photo/" . $resource_id . "-6." . $Image->getExt();
|
2017-12-07 08:56:11 -05:00
|
|
|
if (file_exists($filename)) {
|
|
|
|
unlink($filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$photo_failure = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($photo_failure && $quit_on_error) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($photo_failure) {
|
2019-12-30 17:00:08 -05:00
|
|
|
$image_url = DI::baseUrl() . "/images/person-300.jpg";
|
|
|
|
$thumb = DI::baseUrl() . "/images/person-80.jpg";
|
|
|
|
$micro = DI::baseUrl() . "/images/person-48.jpg";
|
2017-12-07 08:56:11 -05:00
|
|
|
}
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
return [$image_url, $thumb, $micro];
|
2017-12-07 08:56:11 -05:00
|
|
|
}
|
2018-01-03 21:01:41 -05:00
|
|
|
|
|
|
|
/**
|
2019-01-21 16:51:59 -05:00
|
|
|
* @param array $exifCoord coordinate
|
2018-01-03 21:01:41 -05:00
|
|
|
* @param string $hemi hemi
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
public static function getGps($exifCoord, $hemi)
|
|
|
|
{
|
|
|
|
$degrees = count($exifCoord) > 0 ? self::gps2Num($exifCoord[0]) : 0;
|
|
|
|
$minutes = count($exifCoord) > 1 ? self::gps2Num($exifCoord[1]) : 0;
|
|
|
|
$seconds = count($exifCoord) > 2 ? self::gps2Num($exifCoord[2]) : 0;
|
2018-01-15 08:05:12 -05:00
|
|
|
|
2018-11-21 10:26:56 -05:00
|
|
|
$flip = ($hemi == "W" || $hemi == "S") ? -1 : 1;
|
2018-01-15 08:05:12 -05:00
|
|
|
|
2018-01-03 21:01:41 -05:00
|
|
|
return floatval($flip * ($degrees + ($minutes / 60) + ($seconds / 3600)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $coordPart coordPart
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
private static function gps2Num($coordPart)
|
|
|
|
{
|
2018-11-21 10:26:56 -05:00
|
|
|
$parts = explode("/", $coordPart);
|
2018-01-15 08:05:12 -05:00
|
|
|
|
2018-01-03 21:01:41 -05:00
|
|
|
if (count($parts) <= 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2018-01-15 08:05:12 -05:00
|
|
|
|
2018-01-03 21:01:41 -05:00
|
|
|
if (count($parts) == 1) {
|
|
|
|
return $parts[0];
|
|
|
|
}
|
2018-01-15 08:05:12 -05:00
|
|
|
|
2018-01-03 21:01:41 -05:00
|
|
|
return floatval($parts[0]) / floatval($parts[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fetch the photo albums that are available for a viewer
|
|
|
|
*
|
|
|
|
* The query in this function is cost intensive, so it is cached.
|
|
|
|
*
|
|
|
|
* @param int $uid User id of the photos
|
|
|
|
* @param bool $update Update the cache
|
|
|
|
*
|
|
|
|
* @return array Returns array of the photo albums
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-03 21:01:41 -05:00
|
|
|
*/
|
2018-01-03 22:36:15 -05:00
|
|
|
public static function getAlbums($uid, $update = false)
|
2018-01-03 21:01:41 -05:00
|
|
|
{
|
2018-10-17 15:30:41 -04:00
|
|
|
$sql_extra = Security::getPermissionsSQLByUserId($uid);
|
2018-01-03 21:01:41 -05:00
|
|
|
|
|
|
|
$key = "photo_albums:".$uid.":".local_user().":".remote_user();
|
2020-01-06 18:45:49 -05:00
|
|
|
$albums = DI::cache()->get($key);
|
2018-01-03 21:01:41 -05:00
|
|
|
if (is_null($albums) || $update) {
|
2018-11-21 10:26:56 -05:00
|
|
|
if (!Config::get("system", "no_count", false)) {
|
2018-01-03 21:01:41 -05:00
|
|
|
/// @todo This query needs to be renewed. It is really slow
|
|
|
|
// At this time we just store the data in the cache
|
|
|
|
$albums = q("SELECT COUNT(DISTINCT `resource-id`) AS `total`, `album`, ANY_VALUE(`created`) AS `created`
|
|
|
|
FROM `photo`
|
|
|
|
WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' $sql_extra
|
|
|
|
GROUP BY `album` ORDER BY `created` DESC",
|
|
|
|
intval($uid),
|
2018-11-21 10:26:56 -05:00
|
|
|
DBA::escape("Contact Photos"),
|
|
|
|
DBA::escape(L10n::t("Contact Photos"))
|
2018-01-03 21:01:41 -05:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// This query doesn't do the count and is much faster
|
|
|
|
$albums = q("SELECT DISTINCT(`album`), '' AS `total`
|
|
|
|
FROM `photo` USE INDEX (`uid_album_scale_created`)
|
|
|
|
WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' $sql_extra",
|
|
|
|
intval($uid),
|
2018-11-21 10:26:56 -05:00
|
|
|
DBA::escape("Contact Photos"),
|
|
|
|
DBA::escape(L10n::t("Contact Photos"))
|
2018-01-03 21:01:41 -05:00
|
|
|
);
|
|
|
|
}
|
2020-01-06 18:41:20 -05:00
|
|
|
DI::cache()->set($key, $albums, Cache::DAY);
|
2018-01-03 21:01:41 -05:00
|
|
|
}
|
|
|
|
return $albums;
|
|
|
|
}
|
2018-01-03 22:36:15 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $uid User id of the photos
|
|
|
|
* @return void
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-01-03 22:36:15 -05:00
|
|
|
*/
|
|
|
|
public static function clearAlbumCache($uid)
|
|
|
|
{
|
|
|
|
$key = "photo_albums:".$uid.":".local_user().":".remote_user();
|
2020-01-06 18:41:20 -05:00
|
|
|
DI::cache()->set($key, null, Cache::DAY);
|
2018-01-03 22:36:15 -05:00
|
|
|
}
|
2018-02-20 05:02:07 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a unique photo ID.
|
|
|
|
*
|
|
|
|
* @return string
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-02-20 05:02:07 -05:00
|
|
|
*/
|
2018-02-20 06:20:28 -05:00
|
|
|
public static function newResource()
|
|
|
|
{
|
2018-11-22 10:57:41 -05:00
|
|
|
return System::createGUID(32, false);
|
2018-02-20 05:02:07 -05:00
|
|
|
}
|
2019-08-02 12:38:50 -04:00
|
|
|
|
|
|
|
/**
|
2019-08-02 12:42:24 -04:00
|
|
|
* Changes photo permissions that had been embedded in a post
|
2019-08-02 12:38:50 -04:00
|
|
|
*
|
|
|
|
* @todo This function currently does have some flaws:
|
2019-08-02 12:59:26 -04:00
|
|
|
* - Sharing a post with a forum will create a photo that only the forum can see.
|
|
|
|
* - Sharing a photo again that been shared non public before doesn't alter the permissions.
|
2019-08-02 12:38:50 -04:00
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
public static function setPermissionFromBody($body, $uid, $original_contact_id, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny)
|
|
|
|
{
|
|
|
|
// Simplify image codes
|
|
|
|
$img_body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
|
|
|
|
$img_body = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/ism", '[img]$1[/img]', $img_body);
|
|
|
|
|
|
|
|
// Search for images
|
|
|
|
if (!preg_match_all("/\[img\](.*?)\[\/img\]/", $img_body, $match)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$images = $match[1];
|
|
|
|
if (empty($images)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($images as $image) {
|
2019-12-30 17:00:08 -05:00
|
|
|
if (!stristr($image, DI::baseUrl() . '/photo/')) {
|
2019-08-02 12:38:50 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$image_uri = substr($image,strrpos($image,'/') + 1);
|
|
|
|
$image_uri = substr($image_uri,0, strpos($image_uri,'-'));
|
|
|
|
if (!strlen($image_uri)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure to only modify photos that you own
|
|
|
|
$srch = '<' . intval($original_contact_id) . '>';
|
|
|
|
|
|
|
|
$condition = [
|
|
|
|
'allow_cid' => $srch, 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '',
|
|
|
|
'resource-id' => $image_uri, 'uid' => $uid
|
|
|
|
];
|
|
|
|
if (!Photo::exists($condition)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-09-09 17:37:26 -04:00
|
|
|
/// @todo Check if $str_contact_allow does contain a public forum. Then set the permissions to public.
|
|
|
|
|
2019-08-02 12:38:50 -04:00
|
|
|
$fields = ['allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow,
|
|
|
|
'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny];
|
|
|
|
$condition = ['resource-id' => $image_uri, 'uid' => $uid];
|
|
|
|
Logger::info('Set permissions', ['condition' => $condition, 'permissions' => $fields]);
|
|
|
|
Photo::update($fields, $condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2019-08-03 23:45:23 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Strips known picture extensions from picture links
|
|
|
|
*
|
|
|
|
* @param string $name Picture link
|
|
|
|
* @return string stripped picture link
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
public static function stripExtension($name)
|
|
|
|
{
|
|
|
|
$name = str_replace([".jpg", ".png", ".gif"], ["", "", ""], $name);
|
2019-10-17 21:26:15 -04:00
|
|
|
foreach (Images::supportedTypes() as $m => $e) {
|
2019-08-03 23:45:23 -04:00
|
|
|
$name = str_replace("." . $e, "", $name);
|
|
|
|
}
|
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the GUID from picture links
|
|
|
|
*
|
|
|
|
* @param string $name Picture link
|
|
|
|
* @return string GUID
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
public static function getGUID($name)
|
|
|
|
{
|
2019-12-15 19:05:15 -05:00
|
|
|
$base = DI::baseUrl()->get();
|
2019-08-03 23:45:23 -04:00
|
|
|
|
|
|
|
$guid = str_replace([Strings::normaliseLink($base), '/photo/'], '', Strings::normaliseLink($name));
|
|
|
|
|
|
|
|
$guid = self::stripExtension($guid);
|
|
|
|
if (substr($guid, -2, 1) != "-") {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$scale = intval(substr($guid, -1, 1));
|
2019-10-08 00:42:51 -04:00
|
|
|
if (!is_numeric($scale)) {
|
2019-08-03 23:45:23 -04:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$guid = substr($guid, 0, -2);
|
|
|
|
return $guid;
|
|
|
|
}
|
2019-08-05 12:27:45 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests if the picture link points to a locally stored picture
|
|
|
|
*
|
|
|
|
* @param string $name Picture link
|
|
|
|
* @return boolean
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
public static function isLocal($name)
|
|
|
|
{
|
|
|
|
$guid = self::getGUID($name);
|
|
|
|
|
|
|
|
if (empty($guid)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return DBA::exists('photo', ['resource-id' => $guid]);
|
|
|
|
}
|
2019-11-11 17:37:50 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests if the link points to a locally stored picture page
|
|
|
|
*
|
|
|
|
* @param string $name Page link
|
|
|
|
* @return boolean
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2019-11-11 18:13:36 -05:00
|
|
|
public static function isLocalPage($name)
|
2019-11-11 17:37:50 -05:00
|
|
|
{
|
2019-12-15 19:05:15 -05:00
|
|
|
$base = DI::baseUrl()->get();
|
2019-11-11 17:37:50 -05:00
|
|
|
|
|
|
|
$guid = str_replace(Strings::normaliseLink($base), '', Strings::normaliseLink($name));
|
|
|
|
$guid = preg_replace("=/photos/.*/image/(.*)=ism", '$1', $guid);
|
|
|
|
if (empty($guid)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return DBA::exists('photo', ['resource-id' => $guid]);
|
|
|
|
}
|
2017-12-07 08:56:11 -05:00
|
|
|
}
|