2017-12-07 13:56:11 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2017-12-07 13:56:11 +00:00
|
|
|
*/
|
2020-02-09 14:45:36 +00:00
|
|
|
|
2017-12-07 13:56:11 +00:00
|
|
|
namespace Friendica\Model;
|
|
|
|
|
2020-01-18 14:41:19 +00:00
|
|
|
use Friendica\Core\Cache\Duration;
|
2019-08-02 16:38:50 +00:00
|
|
|
use Friendica\Core\Logger;
|
2019-02-22 22:51:13 +00:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2018-11-20 21:33:35 +00:00
|
|
|
use Friendica\Database\DBStructure;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2021-06-24 17:30:22 +00:00
|
|
|
use Friendica\Model\Storage\ExternalResource;
|
2021-08-10 21:56:30 +00:00
|
|
|
use Friendica\Model\Storage\InvalidClassStorageException;
|
2021-08-01 12:00:48 +00:00
|
|
|
use Friendica\Model\Storage\ReferenceStorageException;
|
|
|
|
use Friendica\Model\Storage\StorageException;
|
2020-01-06 16:42:28 +00:00
|
|
|
use Friendica\Model\Storage\SystemResource;
|
2017-12-07 13:56:11 +00:00
|
|
|
use Friendica\Object\Image;
|
2018-01-27 02:38:34 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2019-10-18 01:26:15 +00:00
|
|
|
use Friendica\Util\Images;
|
2020-09-30 09:14:01 +00:00
|
|
|
use Friendica\Security\Security;
|
2020-12-07 06:43:43 +00:00
|
|
|
use Friendica\Util\Proxy;
|
2019-08-04 03:45:23 +00:00
|
|
|
use Friendica\Util\Strings;
|
2017-12-07 13:56:11 +00:00
|
|
|
|
2018-11-21 15:26:56 +00:00
|
|
|
require_once "include/dba.php";
|
|
|
|
|
2017-12-07 13:56:11 +00:00
|
|
|
/**
|
|
|
|
* Class to handle photo dabatase table
|
|
|
|
*/
|
2019-12-15 22:28:01 +00:00
|
|
|
class Photo
|
2017-12-07 13:56:11 +00:00
|
|
|
{
|
2020-08-18 22:18:48 +00:00
|
|
|
const CONTACT_PHOTOS = 'Contact Photos';
|
|
|
|
|
2017-12-07 13:56:11 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Select rows from the photo table and returns them as array
|
2018-11-20 21:33:35 +00:00
|
|
|
*
|
2019-01-06 21:06:53 +00: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 21:33:35 +00:00
|
|
|
*
|
|
|
|
* @return boolean|array
|
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2019-07-27 15:52:02 +00:00
|
|
|
* @see \Friendica\Database\DBA::selectToArray
|
2018-11-20 21:33:35 +00:00
|
|
|
*/
|
2019-07-27 15:52:02 +00:00
|
|
|
public static function selectToArray(array $fields = [], array $conditions = [], array $params = [])
|
2018-11-20 21:33:35 +00:00
|
|
|
{
|
|
|
|
if (empty($fields)) {
|
2019-01-07 18:26:54 +00:00
|
|
|
$fields = self::getFields();
|
2018-11-20 21:33:35 +00:00
|
|
|
}
|
|
|
|
|
2019-07-27 16:53:48 +00:00
|
|
|
return DBA::selectToArray('photo', $fields, $conditions, $params);
|
2018-11-20 21:33:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Retrieve a single record from the photo table
|
2018-11-20 21:33:35 +00:00
|
|
|
*
|
2019-01-06 21:06:53 +00: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 21:33:35 +00:00
|
|
|
*
|
|
|
|
* @return bool|array
|
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
|
|
|
* @see \Friendica\Database\DBA::select
|
2018-11-20 21:33:35 +00:00
|
|
|
*/
|
2018-11-21 15:26:56 +00:00
|
|
|
public static function selectFirst(array $fields = [], array $conditions = [], array $params = [])
|
2018-11-20 21:33:35 +00:00
|
|
|
{
|
|
|
|
if (empty($fields)) {
|
2018-11-20 22:15:03 +00:00
|
|
|
$fields = self::getFields();
|
2018-11-20 21:33:35 +00:00
|
|
|
}
|
|
|
|
|
2018-11-21 15:26:56 +00:00
|
|
|
return DBA::selectFirst("photo", $fields, $conditions, $params);
|
2018-11-21 14:10:47 +00:00
|
|
|
}
|
2018-11-20 21:33:35 +00:00
|
|
|
|
2018-11-21 16:55:16 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Get photos for user id
|
2018-11-21 16:55:16 +00:00
|
|
|
*
|
2019-01-06 21:06:53 +00: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 16:55:16 +00:00
|
|
|
*
|
|
|
|
* @return bool|array
|
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
|
|
|
* @see \Friendica\Database\DBA::select
|
2018-11-21 16:55:16 +00:00
|
|
|
*/
|
|
|
|
public static function getPhotosForUser($uid, $resourceid, array $conditions = [], array $params = [])
|
|
|
|
{
|
|
|
|
$conditions["resource-id"] = $resourceid;
|
|
|
|
$conditions["uid"] = $uid;
|
|
|
|
|
2019-07-27 15:52:02 +00:00
|
|
|
return self::selectToArray([], $conditions, $params);
|
2018-11-21 16:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Get a photo for user id
|
2018-11-21 16:55:16 +00:00
|
|
|
*
|
2019-01-06 21:06:53 +00: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 16:55:16 +00:00
|
|
|
*
|
|
|
|
* @return bool|array
|
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
|
|
|
* @see \Friendica\Database\DBA::select
|
2018-11-21 16:55:16 +00: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 21:33:35 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Get a single photo given resource id and scale
|
2018-11-20 21:33:35 +00:00
|
|
|
*
|
|
|
|
* This method checks for permissions. Returns associative array
|
2018-11-20 22:15:03 +00:00
|
|
|
* on success, "no sign" image info, if user has no permission,
|
2018-11-20 21:33:35 +00:00
|
|
|
* false if photo does not exists
|
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param string $resourceid Rescource ID of the photo
|
|
|
|
* @param integer $scale Scale of the photo. Defaults to 0
|
2018-11-20 21:33:35 +00:00
|
|
|
*
|
|
|
|
* @return boolean|array
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2018-11-20 21:33:35 +00:00
|
|
|
*/
|
2020-03-08 13:16:59 +00:00
|
|
|
public static function getPhoto(string $resourceid, int $scale = 0)
|
2018-11-20 21:33:35 +00:00
|
|
|
{
|
2019-09-28 05:37:24 +00:00
|
|
|
$r = self::selectFirst(["uid"], ["resource-id" => $resourceid]);
|
|
|
|
if (!DBA::isResult($r)) {
|
2018-11-21 14:10:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-11-20 21:33:35 +00:00
|
|
|
|
2019-09-28 05:37:24 +00:00
|
|
|
$uid = $r["uid"];
|
2019-06-22 17:24:30 +00:00
|
|
|
|
2020-03-09 08:59:56 +00:00
|
|
|
$accessible = $uid ? (bool)DI::pConfig()->get($uid, 'system', 'accessible-photos', false) : false;
|
2020-03-08 13:16:59 +00:00
|
|
|
|
|
|
|
$sql_acl = Security::getPermissionsSQLByUserId($uid, $accessible);
|
2018-11-20 21:33:35 +00:00
|
|
|
|
2019-09-28 05:37:24 +00:00
|
|
|
$conditions = ["`resource-id` = ? AND `scale` <= ? " . $sql_acl, $resourceid, $scale];
|
2018-11-21 15:26:56 +00:00
|
|
|
$params = ["order" => ["scale" => true]];
|
|
|
|
$photo = self::selectFirst([], $conditions, $params);
|
2018-12-14 07:31:08 +00:00
|
|
|
|
2018-11-20 21:33:35 +00:00
|
|
|
return $photo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Check if photo with given conditions exists
|
2018-11-20 21:33:35 +00:00
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param array $conditions Array of extra conditions
|
2018-11-20 21:33:35 +00:00
|
|
|
*
|
|
|
|
* @return boolean
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2018-11-20 21:33:35 +00:00
|
|
|
*/
|
2018-12-13 18:24:50 +00:00
|
|
|
public static function exists(array $conditions)
|
2018-11-20 21:33:35 +00:00
|
|
|
{
|
2018-12-13 18:24:50 +00:00
|
|
|
return DBA::exists("photo", $conditions);
|
2018-11-20 21:33:35 +00:00
|
|
|
}
|
|
|
|
|
2018-12-11 19:01:54 +00:00
|
|
|
|
2018-11-20 21:33:35 +00:00
|
|
|
/**
|
2020-12-26 19:31:39 +00:00
|
|
|
* Get Image data for given row id. null if row id does not exist
|
2018-11-20 21:33:35 +00:00
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param array $photo Photo data. Needs at least 'id', 'type', 'backend-class', 'backend-ref'
|
2018-11-20 21:33:35 +00:00
|
|
|
*
|
2021-08-10 19:39:29 +00:00
|
|
|
* @return \Friendica\Object\Image
|
2018-11-20 21:33:35 +00:00
|
|
|
*/
|
2020-12-26 19:31:39 +00:00
|
|
|
public static function getImageDataForPhoto(array $photo)
|
2018-11-20 21:33:35 +00:00
|
|
|
{
|
2021-04-01 04:51:55 +00:00
|
|
|
if (!empty($photo['data'])) {
|
|
|
|
return $photo['data'];
|
|
|
|
}
|
|
|
|
|
2021-08-10 21:56:30 +00:00
|
|
|
try {
|
|
|
|
$backendClass = DI::storageManager()->getByName($photo['backend-class'] ?? '');
|
2021-08-15 18:40:23 +00:00
|
|
|
/// @todo refactoring this returning, because the storage returns a "string" which is casted in different ways - a check "instanceof Image" will fail!
|
|
|
|
return $backendClass->get($photo['backend-ref'] ?? '');
|
2021-08-10 21:56:30 +00:00
|
|
|
} catch (InvalidClassStorageException $storageException) {
|
2021-08-01 12:00:48 +00:00
|
|
|
try {
|
2021-08-10 21:56:30 +00:00
|
|
|
// legacy data storage in "data" column
|
|
|
|
$i = self::selectFirst(['data'], ['id' => $photo['id']]);
|
|
|
|
if ($i !== false) {
|
|
|
|
return $i['data'];
|
|
|
|
} else {
|
|
|
|
DI::logger()->info('Stored legacy data is empty', ['photo' => $photo]);
|
|
|
|
}
|
|
|
|
} catch (\Exception $exception) {
|
|
|
|
DI::logger()->info('Unexpected database exception', ['photo' => $photo, 'exception' => $exception]);
|
2021-08-01 12:00:48 +00:00
|
|
|
}
|
2021-08-10 21:56:30 +00:00
|
|
|
} catch (ReferenceStorageException $referenceStorageException) {
|
|
|
|
DI::logger()->debug('Invalid reference for photo', ['photo' => $photo, 'exception' => $referenceStorageException]);
|
|
|
|
} catch (StorageException $storageException) {
|
|
|
|
DI::logger()->info('Unexpected storage exception', ['photo' => $photo, 'exception' => $storageException]);
|
|
|
|
} catch (\ImagickException $imagickException) {
|
|
|
|
DI::logger()->info('Unexpected imagick exception', ['photo' => $photo, 'exception' => $imagickException]);
|
2018-11-20 22:15:03 +00:00
|
|
|
}
|
2021-08-10 21:56:30 +00:00
|
|
|
|
|
|
|
return null;
|
2020-12-26 19:31:39 +00:00
|
|
|
}
|
2018-11-20 22:15:03 +00:00
|
|
|
|
2020-12-26 19:31:39 +00:00
|
|
|
/**
|
|
|
|
* Get Image object for given row id. null if row id does not exist
|
|
|
|
*
|
|
|
|
* @param array $photo Photo data. Needs at least 'id', 'type', 'backend-class', 'backend-ref'
|
|
|
|
*
|
|
|
|
* @return \Friendica\Object\Image
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
|
|
|
*/
|
2021-08-10 21:56:30 +00:00
|
|
|
public static function getImageForPhoto(array $photo): Image
|
2020-12-26 19:31:39 +00:00
|
|
|
{
|
2021-08-10 21:56:30 +00:00
|
|
|
return new Image(self::getImageDataForPhoto($photo), $photo['type']);
|
2018-11-20 21:33:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Return a list of fields that are associated with the photo table
|
2018-11-20 21:33:35 +00:00
|
|
|
*
|
|
|
|
* @return array field list
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2018-11-20 21:33:35 +00:00
|
|
|
*/
|
|
|
|
private static function getFields()
|
|
|
|
{
|
2019-12-15 21:34:11 +00:00
|
|
|
$allfields = DBStructure::definition(DI::app()->getBasePath(), false);
|
2018-11-20 21:33:35 +00:00
|
|
|
$fields = array_keys($allfields["photo"]["fields"]);
|
|
|
|
array_splice($fields, array_search("data", $fields), 1);
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
2018-11-20 22:15:03 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Construct a photo array for a system resource image
|
2018-11-20 22:15:03 +00:00
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param string $filename Image file name relative to code root
|
2021-06-30 04:28:03 +00:00
|
|
|
* @param string $mimetype Image mime type. Is guessed by file name when empty.
|
2018-11-20 22:15:03 +00:00
|
|
|
*
|
|
|
|
* @return array
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2018-11-20 22:15:03 +00:00
|
|
|
*/
|
2021-06-30 04:28:03 +00:00
|
|
|
public static function createPhotoForSystemResource($filename, $mimetype = '')
|
2018-11-20 22:15:03 +00:00
|
|
|
{
|
2021-06-30 04:28:03 +00:00
|
|
|
if (empty($mimetype)) {
|
|
|
|
$mimetype = Images::guessTypeByExtension($filename);
|
|
|
|
}
|
|
|
|
|
2018-11-20 22:15:03 +00:00
|
|
|
$fields = self::getFields();
|
|
|
|
$values = array_fill(0, count($fields), "");
|
2019-02-19 00:56:41 +00:00
|
|
|
|
2020-01-06 21:07:23 +00:00
|
|
|
$photo = array_combine($fields, $values);
|
|
|
|
$photo['backend-class'] = SystemResource::NAME;
|
|
|
|
$photo['backend-ref'] = $filename;
|
|
|
|
$photo['type'] = $mimetype;
|
|
|
|
$photo['cacheable'] = false;
|
2019-02-19 00:56:41 +00:00
|
|
|
|
2018-11-20 22:15:03 +00:00
|
|
|
return $photo;
|
|
|
|
}
|
2018-11-20 21:33:35 +00:00
|
|
|
|
2021-06-24 17:30:22 +00:00
|
|
|
/**
|
|
|
|
* Construct a photo array for an external resource image
|
|
|
|
*
|
|
|
|
* @param string $url Image URL
|
2021-06-28 10:08:51 +00:00
|
|
|
* @param int $uid User ID of the requesting person
|
2021-06-30 04:28:03 +00:00
|
|
|
* @param string $mimetype Image mime type. Is guessed by file name when empty.
|
2021-06-24 17:30:22 +00:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2021-06-30 04:28:03 +00:00
|
|
|
public static function createPhotoForExternalResource($url, $uid = 0, $mimetype = '')
|
2021-06-24 17:30:22 +00:00
|
|
|
{
|
2021-06-30 04:28:03 +00:00
|
|
|
if (empty($mimetype)) {
|
|
|
|
$mimetype = Images::guessTypeByExtension($url);
|
|
|
|
}
|
|
|
|
|
2021-06-24 17:30:22 +00:00
|
|
|
$fields = self::getFields();
|
|
|
|
$values = array_fill(0, count($fields), "");
|
|
|
|
|
|
|
|
$photo = array_combine($fields, $values);
|
|
|
|
$photo['backend-class'] = ExternalResource::NAME;
|
2021-06-28 10:08:51 +00:00
|
|
|
$photo['backend-ref'] = json_encode(['url' => $url, 'uid' => $uid]);
|
2021-06-24 17:30:22 +00:00
|
|
|
$photo['type'] = $mimetype;
|
2021-06-28 13:09:00 +00:00
|
|
|
$photo['cacheable'] = true;
|
2021-06-24 17:30:22 +00:00
|
|
|
|
|
|
|
return $photo;
|
|
|
|
}
|
2018-11-20 21:33:35 +00:00
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* store photo metadata in db and binary in default backend
|
2018-11-20 21:33:35 +00:00
|
|
|
*
|
2018-11-22 16:25:43 +00: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 21:33:35 +00:00
|
|
|
*
|
|
|
|
* @return boolean True on success
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-12-07 13:56:11 +00:00
|
|
|
*/
|
2018-11-21 15:26:56 +00: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 13:56:11 +00:00
|
|
|
{
|
2018-11-21 15:26:56 +00:00
|
|
|
$photo = self::selectFirst(["guid"], ["`resource-id` = ? AND `guid` != ?", $rid, ""]);
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($photo)) {
|
2018-11-21 15:26:56 +00:00
|
|
|
$guid = $photo["guid"];
|
2017-12-07 13:56:11 +00:00
|
|
|
} else {
|
2018-07-09 19:38:16 +00:00
|
|
|
$guid = System::createGUID();
|
2017-12-07 13:56:11 +00:00
|
|
|
}
|
|
|
|
|
2018-11-22 16:25:43 +00: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 13:56:11 +00:00
|
|
|
|
2018-11-21 08:38:54 +00:00
|
|
|
// Get defined storage backend.
|
|
|
|
// if no storage backend, we use old "data" column in photo table.
|
2018-11-21 15:26:56 +00:00
|
|
|
// if is an existing photo, reuse same backend
|
2021-08-10 21:56:30 +00:00
|
|
|
$data = "";
|
2018-11-21 08:38:54 +00:00
|
|
|
$backend_ref = "";
|
2021-08-10 21:56:30 +00:00
|
|
|
$storage = "";
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (DBA::isResult($existing_photo)) {
|
|
|
|
$backend_ref = (string)$existing_photo["backend-ref"];
|
|
|
|
$storage = DI::storageManager()->getWritableStorageByName($existing_photo["backend-class"] ?? '');
|
|
|
|
} else {
|
|
|
|
$storage = DI::storage();
|
|
|
|
}
|
2020-01-05 00:58:49 +00:00
|
|
|
$backend_ref = $storage->put($Image->asString(), $backend_ref);
|
2021-08-10 21:56:30 +00:00
|
|
|
} catch (InvalidClassStorageException $storageException) {
|
|
|
|
$data = $Image->asString();
|
2018-11-21 08:38:54 +00:00
|
|
|
}
|
|
|
|
|
2018-01-11 08:26:30 +00:00
|
|
|
$fields = [
|
2018-11-21 15:26:56 +00:00
|
|
|
"uid" => $uid,
|
|
|
|
"contact-id" => $cid,
|
|
|
|
"guid" => $guid,
|
|
|
|
"resource-id" => $rid,
|
2020-12-26 18:51:36 +00:00
|
|
|
"hash" => md5($Image->asString()),
|
2018-11-22 16:25:43 +00:00
|
|
|
"created" => $created,
|
2018-11-21 15:26:56 +00: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-05 00:58:49 +00:00
|
|
|
"backend-class" => (string)$storage,
|
2018-11-21 15:26:56 +00:00
|
|
|
"backend-ref" => $backend_ref
|
2018-01-11 08:26:30 +00:00
|
|
|
];
|
2017-12-07 13:56:11 +00:00
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($existing_photo)) {
|
2018-11-21 15:26:56 +00:00
|
|
|
$r = DBA::update("photo", $fields, ["id" => $existing_photo["id"]]);
|
2017-12-07 13:56:11 +00:00
|
|
|
} else {
|
2018-11-21 15:26:56 +00:00
|
|
|
$r = DBA::insert("photo", $fields);
|
2017-12-07 13:56:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $r;
|
|
|
|
}
|
|
|
|
|
2019-01-02 15:18:40 +00:00
|
|
|
|
2018-12-11 19:01:54 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Delete info from table and data from storage
|
2018-12-11 19:01:54 +00:00
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param array $conditions Field condition(s)
|
|
|
|
* @param array $options Options array, Optional
|
2018-12-11 19:01:54 +00:00
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
|
|
|
* @see \Friendica\Database\DBA::delete
|
2018-12-11 19:01:54 +00:00
|
|
|
*/
|
|
|
|
public static function delete(array $conditions, array $options = [])
|
2018-11-21 15:26:56 +00:00
|
|
|
{
|
|
|
|
// get photo to delete data info
|
2021-03-19 11:42:29 +00:00
|
|
|
$photos = DBA::select('photo', ['id', 'backend-class', 'backend-ref'], $conditions);
|
2018-12-11 19:01:54 +00:00
|
|
|
|
2021-03-19 11:42:29 +00:00
|
|
|
while ($photo = DBA::fetch($photos)) {
|
2021-08-10 21:56:30 +00:00
|
|
|
try {
|
|
|
|
$backend_class = DI::storageManager()->getWritableStorageByName($photo['backend-class'] ?? '');
|
|
|
|
$backend_class->delete($item['backend-ref'] ?? '');
|
|
|
|
// Delete the photos after they had been deleted successfully
|
|
|
|
DBA::delete("photo", ['id' => $photo['id']]);
|
|
|
|
} catch (InvalidClassStorageException $storageException) {
|
|
|
|
DI::logger()->debug('Storage class not found.', ['conditions' => $conditions, 'exception' => $storageException]);
|
|
|
|
} catch (ReferenceStorageException $referenceStorageException) {
|
|
|
|
DI::logger()->debug('Photo doesn\'t exist.', ['conditions' => $conditions, 'exception' => $referenceStorageException]);
|
2018-11-21 15:26:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-19 11:42:29 +00:00
|
|
|
DBA::close($photos);
|
|
|
|
|
2018-11-21 15:26:56 +00:00
|
|
|
return DBA::delete("photo", $conditions, $options);
|
|
|
|
}
|
|
|
|
|
2018-11-21 16:55:16 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Update a photo
|
2018-11-21 16:55:16 +00:00
|
|
|
*
|
|
|
|
* @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 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @see \Friendica\Database\DBA::update
|
2018-11-21 16:55:16 +00:00
|
|
|
*/
|
|
|
|
public static function update($fields, $conditions, Image $img = null, array $old_fields = [])
|
|
|
|
{
|
|
|
|
if (!is_null($img)) {
|
|
|
|
// get photo to update
|
2019-07-27 16:57:00 +00:00
|
|
|
$photos = self::selectToArray(['backend-class', 'backend-ref'], $conditions);
|
2018-11-21 16:55:16 +00:00
|
|
|
|
|
|
|
foreach($photos as $photo) {
|
2021-08-10 21:56:30 +00:00
|
|
|
try {
|
|
|
|
$backend_class = DI::storageManager()->getWritableStorageByName($photo['backend-class'] ?? '');
|
2020-01-06 21:07:23 +00:00
|
|
|
$fields["backend-ref"] = $backend_class->put($img->asString(), $photo['backend-ref']);
|
2021-08-10 21:56:30 +00:00
|
|
|
} catch (InvalidClassStorageException $storageException) {
|
2018-11-21 16:55:16 +00:00
|
|
|
$fields["data"] = $img->asString();
|
|
|
|
}
|
|
|
|
}
|
2018-12-11 19:01:54 +00:00
|
|
|
$fields['updated'] = DateTimeFormat::utcNow();
|
2018-11-21 16:55:16 +00:00
|
|
|
}
|
|
|
|
|
2018-12-11 19:01:54 +00:00
|
|
|
$fields['edited'] = DateTimeFormat::utcNow();
|
2018-11-21 17:08:23 +00:00
|
|
|
|
2019-01-02 15:18:40 +00:00
|
|
|
return DBA::update("photo", $fields, $conditions, $old_fields);
|
2018-11-21 16:55:16 +00:00
|
|
|
}
|
|
|
|
|
2017-12-07 13:56:11 +00:00
|
|
|
/**
|
2018-01-11 08:26:30 +00:00
|
|
|
* @param string $image_url Remote URL
|
2017-12-07 13:56:11 +00:00
|
|
|
* @param integer $uid user id
|
|
|
|
* @param integer $cid contact id
|
|
|
|
* @param boolean $quit_on_error optional, default false
|
|
|
|
* @return array
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2017-12-07 13:56:11 +00:00
|
|
|
*/
|
2018-01-11 08:26:30 +00:00
|
|
|
public static function importProfilePhoto($image_url, $uid, $cid, $quit_on_error = false)
|
2017-12-07 13:56:11 +00:00
|
|
|
{
|
2018-11-21 15:26:56 +00:00
|
|
|
$thumb = "";
|
|
|
|
$micro = "";
|
2018-02-14 05:05:00 +00:00
|
|
|
|
2018-07-20 12:19:26 +00:00
|
|
|
$photo = DBA::selectFirst(
|
2020-08-18 22:18:48 +00:00
|
|
|
"photo", ["resource-id"], ["uid" => $uid, "contact-id" => $cid, "scale" => 4, "album" => self::CONTACT_PHOTOS]
|
2017-12-07 13:56:11 +00:00
|
|
|
);
|
2018-11-30 14:06:22 +00:00
|
|
|
if (!empty($photo['resource-id'])) {
|
2019-10-26 13:05:35 +00:00
|
|
|
$resource_id = $photo["resource-id"];
|
2017-12-07 13:56:11 +00:00
|
|
|
} else {
|
2019-10-26 13:05:35 +00:00
|
|
|
$resource_id = self::newResource();
|
2017-12-07 13:56:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$photo_failure = false;
|
|
|
|
|
2018-01-11 08:26:30 +00:00
|
|
|
$filename = basename($image_url);
|
2019-06-11 05:26:16 +00:00
|
|
|
if (!empty($image_url)) {
|
2021-08-25 19:54:54 +00:00
|
|
|
$ret = DI::httpClient()->get($image_url);
|
2019-06-20 20:09:33 +00:00
|
|
|
$img_str = $ret->getBody();
|
2021-08-20 18:03:42 +00:00
|
|
|
$type = $ret->getContentType();
|
2019-06-11 05:26:16 +00:00
|
|
|
} else {
|
|
|
|
$img_str = '';
|
2021-08-20 18:03:42 +00:00
|
|
|
$type = '';
|
2019-06-11 05:26:16 +00:00
|
|
|
}
|
2017-12-07 13:56:11 +00:00
|
|
|
|
|
|
|
if ($quit_on_error && ($img_str == "")) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-08-20 18:03:42 +00:00
|
|
|
$type = Images::getMimeTypeByData($img_str, $image_url, $type);
|
2019-06-20 20:09:33 +00:00
|
|
|
|
2017-12-07 13:56:11 +00:00
|
|
|
$Image = new Image($img_str, $type);
|
|
|
|
if ($Image->isValid()) {
|
2018-10-23 14:36:57 +00:00
|
|
|
$Image->scaleToSquare(300);
|
2017-12-07 13:56:11 +00:00
|
|
|
|
2021-03-26 06:56:08 +00:00
|
|
|
$filesize = strlen($Image->asString());
|
|
|
|
$maximagesize = DI::config()->get('system', 'maximagesize');
|
|
|
|
if (!empty($maximagesize) && ($filesize > $maximagesize)) {
|
|
|
|
Logger::info('Avatar exceeds image limit', ['uid' => $uid, 'cid' => $cid, 'maximagesize' => $maximagesize, 'size' => $filesize, 'type' => $Image->getType()]);
|
2021-03-26 14:51:26 +00:00
|
|
|
if ($Image->getType() == 'image/gif') {
|
2021-03-26 06:56:08 +00:00
|
|
|
$Image->toStatic();
|
|
|
|
$Image = new Image($Image->asString(), 'image/png');
|
|
|
|
|
|
|
|
$filesize = strlen($Image->asString());
|
|
|
|
Logger::info('Converted gif to a static png', ['uid' => $uid, 'cid' => $cid, 'size' => $filesize, 'type' => $Image->getType()]);
|
|
|
|
}
|
|
|
|
if ($filesize > $maximagesize) {
|
|
|
|
foreach ([160, 80] as $pixels) {
|
|
|
|
if ($filesize > $maximagesize) {
|
|
|
|
Logger::info('Resize', ['uid' => $uid, 'cid' => $cid, 'size' => $filesize, 'max' => $maximagesize, 'pixels' => $pixels, 'type' => $Image->getType()]);
|
|
|
|
$Image->scaleDown($pixels);
|
|
|
|
$filesize = strlen($Image->asString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Logger::info('Avatar is resized', ['uid' => $uid, 'cid' => $cid, 'size' => $filesize, 'type' => $Image->getType()]);
|
|
|
|
}
|
|
|
|
|
2020-08-18 22:18:48 +00:00
|
|
|
$r = self::store($Image, $uid, $cid, $resource_id, $filename, self::CONTACT_PHOTOS, 4);
|
2017-12-07 13:56:11 +00:00
|
|
|
|
|
|
|
if ($r === false) {
|
|
|
|
$photo_failure = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$Image->scaleDown(80);
|
|
|
|
|
2020-08-18 22:18:48 +00:00
|
|
|
$r = self::store($Image, $uid, $cid, $resource_id, $filename, self::CONTACT_PHOTOS, 5);
|
2017-12-07 13:56:11 +00:00
|
|
|
|
|
|
|
if ($r === false) {
|
|
|
|
$photo_failure = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$Image->scaleDown(48);
|
|
|
|
|
2020-08-18 22:18:48 +00:00
|
|
|
$r = self::store($Image, $uid, $cid, $resource_id, $filename, self::CONTACT_PHOTOS, 6);
|
2017-12-07 13:56:11 +00:00
|
|
|
|
|
|
|
if ($r === false) {
|
|
|
|
$photo_failure = true;
|
|
|
|
}
|
|
|
|
|
2018-11-21 15:26:56 +00:00
|
|
|
$suffix = "?ts=" . time();
|
2017-12-07 13:56:11 +00:00
|
|
|
|
2019-12-30 22:00:08 +00: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 13:56:11 +00:00
|
|
|
|
|
|
|
// Remove the cached photo
|
2020-01-04 22:42:01 +00:00
|
|
|
$a = DI::app();
|
2018-10-09 17:58:58 +00:00
|
|
|
$basepath = $a->getBasePath();
|
2017-12-07 13:56:11 +00:00
|
|
|
|
|
|
|
if (is_dir($basepath . "/photo")) {
|
2019-10-26 13:05:35 +00:00
|
|
|
$filename = $basepath . "/photo/" . $resource_id . "-4." . $Image->getExt();
|
2017-12-07 13:56:11 +00:00
|
|
|
if (file_exists($filename)) {
|
|
|
|
unlink($filename);
|
|
|
|
}
|
2019-10-26 13:05:35 +00:00
|
|
|
$filename = $basepath . "/photo/" . $resource_id . "-5." . $Image->getExt();
|
2017-12-07 13:56:11 +00:00
|
|
|
if (file_exists($filename)) {
|
|
|
|
unlink($filename);
|
|
|
|
}
|
2019-10-26 13:05:35 +00:00
|
|
|
$filename = $basepath . "/photo/" . $resource_id . "-6." . $Image->getExt();
|
2017-12-07 13:56:11 +00:00
|
|
|
if (file_exists($filename)) {
|
|
|
|
unlink($filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$photo_failure = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($photo_failure && $quit_on_error) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($photo_failure) {
|
2020-12-07 06:43:43 +00:00
|
|
|
$contact = Contact::getById($cid) ?: [];
|
|
|
|
$image_url = Contact::getDefaultAvatar($contact, Proxy::SIZE_SMALL);
|
|
|
|
$thumb = Contact::getDefaultAvatar($contact, Proxy::SIZE_THUMB);
|
|
|
|
$micro = Contact::getDefaultAvatar($contact, Proxy::SIZE_MICRO);
|
2017-12-07 13:56:11 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
return [$image_url, $thumb, $micro];
|
2017-12-07 13:56:11 +00:00
|
|
|
}
|
2018-01-04 02:01:41 +00:00
|
|
|
|
|
|
|
/**
|
2019-01-21 21:51:59 +00:00
|
|
|
* @param array $exifCoord coordinate
|
2018-01-04 02:01:41 +00: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 13:05:12 +00:00
|
|
|
|
2018-11-21 15:26:56 +00:00
|
|
|
$flip = ($hemi == "W" || $hemi == "S") ? -1 : 1;
|
2018-01-15 13:05:12 +00:00
|
|
|
|
2018-01-04 02:01:41 +00:00
|
|
|
return floatval($flip * ($degrees + ($minutes / 60) + ($seconds / 3600)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $coordPart coordPart
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
private static function gps2Num($coordPart)
|
|
|
|
{
|
2018-11-21 15:26:56 +00:00
|
|
|
$parts = explode("/", $coordPart);
|
2018-01-15 13:05:12 +00:00
|
|
|
|
2018-01-04 02:01:41 +00:00
|
|
|
if (count($parts) <= 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2018-01-15 13:05:12 +00:00
|
|
|
|
2018-01-04 02:01:41 +00:00
|
|
|
if (count($parts) == 1) {
|
|
|
|
return $parts[0];
|
|
|
|
}
|
2018-01-15 13:05:12 +00:00
|
|
|
|
2018-01-04 02:01:41 +00:00
|
|
|
return floatval($parts[0]) / floatval($parts[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Fetch the photo albums that are available for a viewer
|
2018-01-04 02:01:41 +00:00
|
|
|
*
|
|
|
|
* 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 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-04 02:01:41 +00:00
|
|
|
*/
|
2018-01-04 03:36:15 +00:00
|
|
|
public static function getAlbums($uid, $update = false)
|
2018-01-04 02:01:41 +00:00
|
|
|
{
|
2018-10-17 19:30:41 +00:00
|
|
|
$sql_extra = Security::getPermissionsSQLByUserId($uid);
|
2018-01-04 02:01:41 +00:00
|
|
|
|
|
|
|
$key = "photo_albums:".$uid.":".local_user().":".remote_user();
|
2020-01-06 23:45:49 +00:00
|
|
|
$albums = DI::cache()->get($key);
|
2018-01-04 02:01:41 +00:00
|
|
|
if (is_null($albums) || $update) {
|
2020-01-19 20:21:13 +00:00
|
|
|
if (!DI::config()->get("system", "no_count", false)) {
|
2018-01-04 02:01:41 +00: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),
|
2020-08-18 22:18:48 +00:00
|
|
|
DBA::escape(self::CONTACT_PHOTOS),
|
|
|
|
DBA::escape(DI::l10n()->t(self::CONTACT_PHOTOS))
|
2018-01-04 02:01:41 +00: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),
|
2020-08-18 22:18:48 +00:00
|
|
|
DBA::escape(self::CONTACT_PHOTOS),
|
|
|
|
DBA::escape(DI::l10n()->t(self::CONTACT_PHOTOS))
|
2018-01-04 02:01:41 +00:00
|
|
|
);
|
|
|
|
}
|
2020-01-18 14:41:19 +00:00
|
|
|
DI::cache()->set($key, $albums, Duration::DAY);
|
2018-01-04 02:01:41 +00:00
|
|
|
}
|
|
|
|
return $albums;
|
|
|
|
}
|
2018-01-04 03:36:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $uid User id of the photos
|
|
|
|
* @return void
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2018-01-04 03:36:15 +00:00
|
|
|
*/
|
|
|
|
public static function clearAlbumCache($uid)
|
|
|
|
{
|
|
|
|
$key = "photo_albums:".$uid.":".local_user().":".remote_user();
|
2020-01-18 14:41:19 +00:00
|
|
|
DI::cache()->set($key, null, Duration::DAY);
|
2018-01-04 03:36:15 +00:00
|
|
|
}
|
2018-02-20 10:02:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a unique photo ID.
|
|
|
|
*
|
|
|
|
* @return string
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2018-02-20 10:02:07 +00:00
|
|
|
*/
|
2018-02-20 11:20:28 +00:00
|
|
|
public static function newResource()
|
|
|
|
{
|
2018-11-22 15:57:41 +00:00
|
|
|
return System::createGUID(32, false);
|
2018-02-20 10:02:07 +00:00
|
|
|
}
|
2019-08-02 16:38:50 +00:00
|
|
|
|
2020-01-09 20:41:35 +00:00
|
|
|
/**
|
|
|
|
* Extracts the rid from a local photo URI
|
|
|
|
*
|
|
|
|
* @param string $image_uri The URI of the photo
|
|
|
|
* @return string The rid of the photo, or an empty string if the URI is not local
|
|
|
|
*/
|
2020-01-11 15:27:01 +00:00
|
|
|
public static function ridFromURI(string $image_uri)
|
2020-01-09 20:41:35 +00:00
|
|
|
{
|
|
|
|
if (!stristr($image_uri, DI::baseUrl() . '/photo/')) {
|
2020-01-11 15:00:02 +00:00
|
|
|
return '';
|
2020-01-09 20:41:35 +00:00
|
|
|
}
|
|
|
|
$image_uri = substr($image_uri, strrpos($image_uri, '/') + 1);
|
|
|
|
$image_uri = substr($image_uri, 0, strpos($image_uri, '-'));
|
|
|
|
if (!strlen($image_uri)) {
|
2020-01-11 15:00:02 +00:00
|
|
|
return '';
|
2020-01-09 20:41:35 +00:00
|
|
|
}
|
|
|
|
return $image_uri;
|
|
|
|
}
|
|
|
|
|
2019-08-02 16:38:50 +00:00
|
|
|
/**
|
2019-08-02 16:42:24 +00:00
|
|
|
* Changes photo permissions that had been embedded in a post
|
2019-08-02 16:38:50 +00:00
|
|
|
*
|
|
|
|
* @todo This function currently does have some flaws:
|
2019-08-02 16:59:26 +00: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 16:38:50 +00: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) {
|
2020-01-10 19:29:15 +00:00
|
|
|
$image_rid = self::ridFromURI($image);
|
2020-01-11 15:00:02 +00:00
|
|
|
if (empty($image_rid)) {
|
2019-08-02 16:38:50 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure to only modify photos that you own
|
|
|
|
$srch = '<' . intval($original_contact_id) . '>';
|
|
|
|
|
2020-03-21 18:30:40 +00:00
|
|
|
$condition = [
|
|
|
|
'allow_cid' => $srch, 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '',
|
|
|
|
'resource-id' => $image_rid, 'uid' => $uid
|
|
|
|
];
|
2019-08-02 16:38:50 +00:00
|
|
|
if (!Photo::exists($condition)) {
|
2020-03-22 12:51:37 +00:00
|
|
|
$photo = self::selectFirst(['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'uid'], ['resource-id' => $image_rid]);
|
2020-03-22 09:57:46 +00:00
|
|
|
if (!DBA::isResult($photo)) {
|
2020-03-22 12:51:37 +00:00
|
|
|
Logger::info('Image not found', ['resource-id' => $image_rid]);
|
2020-03-22 09:57:46 +00:00
|
|
|
} else {
|
|
|
|
Logger::info('Mismatching permissions', ['condition' => $condition, 'photo' => $photo]);
|
|
|
|
}
|
2019-08-02 16:38:50 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-03-08 13:16:59 +00:00
|
|
|
/**
|
|
|
|
* @todo Existing permissions need to be mixed with the new ones.
|
|
|
|
* Otherwise this creates problems with sharing the same picture multiple times
|
|
|
|
* Also check if $str_contact_allow does contain a public forum.
|
|
|
|
* Then set the permissions to public.
|
|
|
|
*/
|
2019-09-09 21:37:26 +00:00
|
|
|
|
2021-05-01 15:48:19 +00:00
|
|
|
self::setPermissionForRessource($image_rid, $uid, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny);
|
2019-08-02 16:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2019-08-04 03:45:23 +00:00
|
|
|
|
2021-05-01 15:48:19 +00:00
|
|
|
/**
|
|
|
|
* Add permissions to photo ressource
|
|
|
|
* @todo mix with previous photo permissions
|
|
|
|
*
|
|
|
|
* @param string $image_rid
|
|
|
|
* @param integer $uid
|
|
|
|
* @param string $str_contact_allow
|
|
|
|
* @param string $str_group_allow
|
|
|
|
* @param string $str_contact_deny
|
|
|
|
* @param string $str_group_deny
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function setPermissionForRessource(string $image_rid, int $uid, string $str_contact_allow, string $str_group_allow, string $str_contact_deny, string $str_group_deny)
|
|
|
|
{
|
|
|
|
$fields = ['allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow,
|
|
|
|
'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny,
|
|
|
|
'accessible' => DI::pConfig()->get($uid, 'system', 'accessible-photos', false)];
|
|
|
|
|
|
|
|
$condition = ['resource-id' => $image_rid, 'uid' => $uid];
|
|
|
|
Logger::info('Set permissions', ['condition' => $condition, 'permissions' => $fields]);
|
|
|
|
Photo::update($fields, $condition);
|
|
|
|
}
|
|
|
|
|
2019-08-04 03:45:23 +00: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-18 01:26:15 +00:00
|
|
|
foreach (Images::supportedTypes() as $m => $e) {
|
2019-08-04 03:45:23 +00:00
|
|
|
$name = str_replace("." . $e, "", $name);
|
|
|
|
}
|
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-07-19 06:14:14 +00:00
|
|
|
* Fetch the guid and scale from picture links
|
2019-08-04 03:45:23 +00:00
|
|
|
*
|
|
|
|
* @param string $name Picture link
|
2021-07-19 06:14:14 +00:00
|
|
|
* @return array
|
2019-08-04 03:45:23 +00:00
|
|
|
*/
|
2021-07-19 06:14:14 +00:00
|
|
|
public static function getResourceData(string $name):array
|
2019-08-04 03:45:23 +00:00
|
|
|
{
|
2019-12-16 00:05:15 +00:00
|
|
|
$base = DI::baseUrl()->get();
|
2019-08-04 03:45:23 +00:00
|
|
|
|
|
|
|
$guid = str_replace([Strings::normaliseLink($base), '/photo/'], '', Strings::normaliseLink($name));
|
|
|
|
|
2021-07-19 06:14:14 +00:00
|
|
|
if (parse_url($guid, PHP_URL_SCHEME)) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2019-08-04 03:45:23 +00:00
|
|
|
$guid = self::stripExtension($guid);
|
|
|
|
if (substr($guid, -2, 1) != "-") {
|
2021-07-19 06:14:14 +00:00
|
|
|
return [];
|
2019-08-04 03:45:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$scale = intval(substr($guid, -1, 1));
|
2019-10-08 04:42:51 +00:00
|
|
|
if (!is_numeric($scale)) {
|
2021-07-19 06:14:14 +00:00
|
|
|
return [];
|
2019-08-04 03:45:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$guid = substr($guid, 0, -2);
|
2021-07-19 06:14:14 +00:00
|
|
|
return ['guid' => $guid, 'scale' => $scale];
|
2019-08-04 03:45:23 +00:00
|
|
|
}
|
2019-08-05 16:27:45 +00: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)
|
2021-07-30 13:22:06 +00:00
|
|
|
{
|
|
|
|
return (bool)self::getIdForName($name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the id of a local photo
|
|
|
|
*
|
|
|
|
* @param string $name Picture link
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public static function getIdForName($name)
|
2019-08-05 16:27:45 +00:00
|
|
|
{
|
2021-07-19 06:14:14 +00:00
|
|
|
$data = self::getResourceData($name);
|
|
|
|
if (empty($data)) {
|
2021-07-30 13:22:06 +00:00
|
|
|
return 0;
|
2019-08-05 16:27:45 +00:00
|
|
|
}
|
|
|
|
|
2021-07-30 13:22:06 +00:00
|
|
|
$photo = DBA::selectFirst('photo', ['id'], ['resource-id' => $data['guid'], 'scale' => $data['scale']]);
|
|
|
|
if (!empty($photo['id'])) {
|
|
|
|
return $photo['id'];
|
|
|
|
}
|
|
|
|
return 0;
|
2019-08-05 16:27:45 +00:00
|
|
|
}
|
2019-11-11 22:37:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests if the link points to a locally stored picture page
|
|
|
|
*
|
|
|
|
* @param string $name Page link
|
|
|
|
* @return boolean
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2019-11-11 23:13:36 +00:00
|
|
|
public static function isLocalPage($name)
|
2019-11-11 22:37:50 +00:00
|
|
|
{
|
2019-12-16 00:05:15 +00:00
|
|
|
$base = DI::baseUrl()->get();
|
2019-11-11 22:37:50 +00: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]);
|
|
|
|
}
|
2021-05-16 09:56:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param int $uid User ID
|
|
|
|
* @param array $files uploaded file array
|
|
|
|
* @return array photo record
|
|
|
|
*/
|
|
|
|
public static function upload(int $uid, array $files)
|
|
|
|
{
|
|
|
|
Logger::info('starting new upload');
|
|
|
|
|
|
|
|
$user = User::getOwnerDataById($uid);
|
|
|
|
if (empty($user)) {
|
|
|
|
Logger::notice('User not found', ['uid' => $uid]);
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($files)) {
|
|
|
|
Logger::notice('Empty upload file');
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($files['tmp_name'])) {
|
|
|
|
if (is_array($files['tmp_name'])) {
|
|
|
|
$src = $files['tmp_name'][0];
|
|
|
|
} else {
|
|
|
|
$src = $files['tmp_name'];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$src = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($files['name'])) {
|
|
|
|
if (is_array($files['name'])) {
|
|
|
|
$filename = basename($files['name'][0]);
|
|
|
|
} else {
|
|
|
|
$filename = basename($files['name']);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$filename = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($files['size'])) {
|
|
|
|
if (is_array($files['size'])) {
|
|
|
|
$filesize = intval($files['size'][0]);
|
|
|
|
} else {
|
|
|
|
$filesize = intval($files['size']);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$filesize = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($files['type'])) {
|
|
|
|
if (is_array($files['type'])) {
|
|
|
|
$filetype = $files['type'][0];
|
|
|
|
} else {
|
|
|
|
$filetype = $files['type'];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$filetype = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($src)) {
|
|
|
|
Logger::notice('No source file name', ['uid' => $uid, 'files' => $files]);
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$filetype = Images::getMimeTypeBySource($src, $filename, $filetype);
|
|
|
|
|
|
|
|
Logger::info('File upload', ['src' => $src, 'filename' => $filename, 'size' => $filesize, 'type' => $filetype]);
|
|
|
|
|
|
|
|
$imagedata = @file_get_contents($src);
|
|
|
|
$Image = new Image($imagedata, $filetype);
|
|
|
|
if (!$Image->isValid()) {
|
|
|
|
Logger::notice('Image is unvalid', ['uid' => $uid, 'files' => $files]);
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$Image->orient($src);
|
|
|
|
@unlink($src);
|
|
|
|
|
|
|
|
$max_length = DI::config()->get('system', 'max_image_length');
|
|
|
|
if (!$max_length) {
|
|
|
|
$max_length = MAX_IMAGE_LENGTH;
|
|
|
|
}
|
|
|
|
if ($max_length > 0) {
|
|
|
|
$Image->scaleDown($max_length);
|
|
|
|
$filesize = strlen($Image->asString());
|
|
|
|
Logger::info('File upload: Scaling picture to new size', ['max-length' => $max_length]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$width = $Image->getWidth();
|
|
|
|
$height = $Image->getHeight();
|
|
|
|
|
|
|
|
$maximagesize = DI::config()->get('system', 'maximagesize');
|
|
|
|
|
|
|
|
if (!empty($maximagesize) && ($filesize > $maximagesize)) {
|
|
|
|
// Scale down to multiples of 640 until the maximum size isn't exceeded anymore
|
|
|
|
foreach ([5120, 2560, 1280, 640] as $pixels) {
|
|
|
|
if (($filesize > $maximagesize) && (max($width, $height) > $pixels)) {
|
|
|
|
Logger::info('Resize', ['size' => $filesize, 'width' => $width, 'height' => $height, 'max' => $maximagesize, 'pixels' => $pixels]);
|
|
|
|
$Image->scaleDown($pixels);
|
|
|
|
$filesize = strlen($Image->asString());
|
|
|
|
$width = $Image->getWidth();
|
|
|
|
$height = $Image->getHeight();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($filesize > $maximagesize) {
|
|
|
|
@unlink($src);
|
|
|
|
Logger::notice('Image size is too big', ['size' => $filesize, 'max' => $maximagesize]);
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$resource_id = Photo::newResource();
|
|
|
|
$album = DI::l10n()->t('Wall Photos');
|
|
|
|
$defperm = '<' . $user['id'] . '>';
|
|
|
|
|
|
|
|
$smallest = 0;
|
|
|
|
|
|
|
|
$r = Photo::store($Image, $user['uid'], 0, $resource_id, $filename, $album, 0, 0, $defperm);
|
|
|
|
if (!$r) {
|
|
|
|
Logger::notice('Photo could not be stored');
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($width > 640 || $height > 640) {
|
|
|
|
$Image->scaleDown(640);
|
|
|
|
$r = Photo::store($Image, $user['uid'], 0, $resource_id, $filename, $album, 1, 0, $defperm);
|
|
|
|
if ($r) {
|
|
|
|
$smallest = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($width > 320 || $height > 320) {
|
|
|
|
$Image->scaleDown(320);
|
|
|
|
$r = Photo::store($Image, $user['uid'], 0, $resource_id, $filename, $album, 2, 0, $defperm);
|
|
|
|
if ($r && ($smallest == 0)) {
|
|
|
|
$smallest = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$condition = ['resource-id' => $resource_id];
|
|
|
|
$photo = self::selectFirst(['id', 'datasize', 'width', 'height', 'type'], $condition, ['order' => ['width' => true]]);
|
|
|
|
if (empty($photo)) {
|
|
|
|
Logger::notice('Photo not found', ['condition' => $condition]);
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$picture = [];
|
|
|
|
|
|
|
|
$picture['id'] = $photo['id'];
|
|
|
|
$picture['size'] = $photo['datasize'];
|
|
|
|
$picture['width'] = $photo['width'];
|
|
|
|
$picture['height'] = $photo['height'];
|
|
|
|
$picture['type'] = $photo['type'];
|
|
|
|
$picture['albumpage'] = DI::baseUrl() . '/photos/' . $user['nickname'] . '/image/' . $resource_id;
|
|
|
|
$picture['picture'] = DI::baseUrl() . '/photo/{$resource_id}-0.' . $Image->getExt();
|
|
|
|
$picture['preview'] = DI::baseUrl() . '/photo/{$resource_id}-{$smallest}.' . $Image->getExt();
|
|
|
|
|
|
|
|
Logger::info('upload done', ['picture' => $picture]);
|
|
|
|
return $picture;
|
|
|
|
}
|
2017-12-07 13:56:11 +00:00
|
|
|
}
|