mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-08 00:04:27 +02:00
141 lines
4.9 KiB
PHP
141 lines
4.9 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Module\Api\Friendica\Photo;
|
|
|
|
use Friendica\App\Arguments;
|
|
use Friendica\App\BaseURL;
|
|
use Friendica\AppHelper;
|
|
use Friendica\Core\ACL;
|
|
use Friendica\Core\L10n;
|
|
use Friendica\Factory\Api\Friendica\Photo as FriendicaPhoto;
|
|
use Friendica\Module\BaseApi;
|
|
use Friendica\Model\Photo;
|
|
use Friendica\Module\Api\ApiResponse;
|
|
use Friendica\Network\HTTPException;
|
|
use Friendica\Util\Profiler;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
/**
|
|
* API endpoint: /api/friendica/photo/update
|
|
*/
|
|
class Update extends BaseApi
|
|
{
|
|
/** @var FriendicaPhoto */
|
|
private $friendicaPhoto;
|
|
|
|
|
|
public function __construct(FriendicaPhoto $friendicaPhoto, \Friendica\Factory\Api\Mastodon\Error $errorFactory, AppHelper $appHelper, L10n $l10n, BaseURL $baseUrl, Arguments $args, LoggerInterface $logger, Profiler $profiler, ApiResponse $response, array $server, array $parameters = [])
|
|
{
|
|
parent::__construct($errorFactory, $appHelper, $l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
|
|
|
$this->friendicaPhoto = $friendicaPhoto;
|
|
}
|
|
|
|
protected function post(array $request = [])
|
|
{
|
|
$this->checkAllowedScope(BaseApi::SCOPE_WRITE);
|
|
$uid = BaseApi::getCurrentUserID();
|
|
$type = $this->getRequestValue($this->parameters, 'extension', 'json');
|
|
|
|
// input params
|
|
$photo_id = $this->getRequestValue($request, 'photo_id');
|
|
$desc = $this->getRequestValue($request, 'desc');
|
|
$album = $this->getRequestValue($request, 'album');
|
|
$album_new = $this->getRequestValue($request, 'album_new');
|
|
$allow_cid = $this->getRequestValue($request, 'allow_cid');
|
|
$deny_cid = $this->getRequestValue($request, 'deny_cid');
|
|
$allow_gid = $this->getRequestValue($request, 'allow_gid');
|
|
$deny_gid = $this->getRequestValue($request, 'deny_gid');
|
|
|
|
// do several checks on input parameters
|
|
// we do not allow calls without album string
|
|
if ($album == null) {
|
|
throw new HTTPException\BadRequestException('no albumname specified');
|
|
}
|
|
|
|
// check if photo is existing in database
|
|
if (!Photo::exists(['resource-id' => $photo_id, 'uid' => $uid, 'album' => $album])) {
|
|
throw new HTTPException\BadRequestException('photo not available');
|
|
}
|
|
|
|
// checks on acl strings provided by clients
|
|
$acl_input_error = false;
|
|
$acl_input_error |= !ACL::isValidContact($allow_cid, $uid);
|
|
$acl_input_error |= !ACL::isValidContact($deny_cid, $uid);
|
|
$acl_input_error |= !ACL::isValidCircle($allow_gid, $uid);
|
|
$acl_input_error |= !ACL::isValidCircle($deny_gid, $uid);
|
|
if ($acl_input_error) {
|
|
throw new HTTPException\BadRequestException('acl data invalid');
|
|
}
|
|
|
|
$updated_fields = [];
|
|
|
|
if (!is_null($desc)) {
|
|
$updated_fields['desc'] = $desc;
|
|
}
|
|
|
|
if (!is_null($album_new)) {
|
|
$updated_fields['album'] = $album_new;
|
|
}
|
|
|
|
if (!is_null($allow_cid)) {
|
|
$allow_cid = trim($allow_cid);
|
|
$updated_fields['allow_cid'] = $allow_cid;
|
|
}
|
|
|
|
if (!is_null($deny_cid)) {
|
|
$deny_cid = trim($deny_cid);
|
|
$updated_fields['deny_cid'] = $deny_cid;
|
|
}
|
|
|
|
if (!is_null($allow_gid)) {
|
|
$allow_gid = trim($allow_gid);
|
|
$updated_fields['allow_gid'] = $allow_gid;
|
|
}
|
|
|
|
if (!is_null($deny_gid)) {
|
|
$deny_gid = trim($deny_gid);
|
|
$updated_fields['deny_gid'] = $deny_gid;
|
|
}
|
|
|
|
$result = false;
|
|
if (count($updated_fields) > 0) {
|
|
$nothingtodo = false;
|
|
$result = Photo::update($updated_fields, ['uid' => $uid, 'resource-id' => $photo_id, 'album' => $album]);
|
|
} else {
|
|
$nothingtodo = true;
|
|
}
|
|
|
|
if (!empty($_FILES['media'])) {
|
|
$nothingtodo = false;
|
|
$photo = Photo::upload($uid, $_FILES['media'], $album, $allow_cid, $allow_gid, $deny_cid, $deny_gid, $desc, $photo_id);
|
|
if (!empty($photo)) {
|
|
$data = ['photo' => $this->friendicaPhoto->createFromId($photo['resource_id'], null, $uid, $type)];
|
|
$this->response->addFormattedContent('photo_update', $data, $this->parameters['extension'] ?? null);
|
|
return;
|
|
}
|
|
}
|
|
|
|
// return success of updating or error message
|
|
if ($result) {
|
|
Photo::clearAlbumCache($uid);
|
|
$answer = ['result' => 'updated', 'message' => 'Image id `' . $photo_id . '` has been updated.'];
|
|
$this->response->addFormattedContent('photo_update', ['$result' => $answer], $this->parameters['extension'] ?? null);
|
|
return;
|
|
} else {
|
|
if ($nothingtodo) {
|
|
$answer = ['result' => 'cancelled', 'message' => 'Nothing to update for image id `' . $photo_id . '`.'];
|
|
$this->response->addFormattedContent('photo_update', ['$result' => $answer], $this->parameters['extension'] ?? null);
|
|
return;
|
|
}
|
|
throw new HTTPException\InternalServerErrorException('unknown error - update photo entry in database failed');
|
|
}
|
|
|
|
throw new HTTPException\InternalServerErrorException('unknown error - this error on uploading or updating a photo should never happen');
|
|
}
|
|
}
|