67 lines
2.4 KiB
PHP
67 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
|
*
|
|
* @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/>.
|
|
*
|
|
*/
|
|
|
|
namespace Friendica\Module\Api\Friendica\Photoalbum;
|
|
|
|
use Friendica\DI;
|
|
use Friendica\Model\Photo;
|
|
use Friendica\Module\BaseApi;
|
|
use Friendica\Network\HTTPException\BadRequestException;
|
|
use Friendica\Network\HTTPException\InternalServerErrorException;
|
|
|
|
/**
|
|
* API endpoint: /api/friendica/photoalbum/update
|
|
*/
|
|
class Update extends BaseApi
|
|
{
|
|
public static function rawContent(array $parameters = [])
|
|
{
|
|
self::checkAllowedScope(self::SCOPE_WRITE);
|
|
$uid = self::getCurrentUserID();
|
|
|
|
$request = self::getRequest([
|
|
'album' => '', // Current album name
|
|
'album_new' => '', // New album name
|
|
]);
|
|
|
|
// we do not allow calls without album string
|
|
if (empty($request['album'])) {
|
|
throw new BadRequestException("no albumname specified");
|
|
}
|
|
if (empty($request['album_new'])) {
|
|
throw new BadRequestException("no new albumname specified");
|
|
}
|
|
// check if album is existing
|
|
if (!Photo::exists(['uid' => $uid, 'album' => $request['album']])) {
|
|
throw new BadRequestException("album not available");
|
|
}
|
|
// now let's update all photos to the albumname
|
|
$result = Photo::update(['album' => $request['album_new']], ['uid' => $uid, 'album' => $request['album']]);
|
|
|
|
// return success of updating or error message
|
|
if ($result) {
|
|
$answer = ['result' => 'updated', 'message' => 'album `' . $request['album'] . '` with all containing photos has been renamed to `' . $request['album_new'] . '`.'];
|
|
DI::apiResponse()->exit('photoalbum_update', ['$result' => $answer], $parameters['extension'] ?? null);
|
|
} else {
|
|
throw new InternalServerErrorException("unknown error - updating in database failed");
|
|
}
|
|
}
|
|
}
|