]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Friendica/Photo.php
Merge pull request #12818 from HankG/mastodon-instance-v2-implementation
[friendica.git] / src / Module / Api / Friendica / Photo.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Api\Friendica;
23
24 use Friendica\App;
25 use Friendica\Core\L10n;
26 use Friendica\Factory\Api\Friendica\Photo as FriendicaPhoto;
27 use Friendica\Module\BaseApi;
28 use Friendica\Model\Contact;
29 use Friendica\Module\Api\ApiResponse;
30 use Friendica\Network\HTTPException;
31 use Friendica\Util\Profiler;
32 use Psr\Log\LoggerInterface;
33
34 class Photo extends BaseApi
35 {
36         /** @var FriendicaPhoto */
37         private $friendicaPhoto;
38
39
40         public function __construct(FriendicaPhoto $friendicaPhoto, App $app, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, ApiResponse $response, array $server, array $parameters = [])
41         {
42                 parent::__construct($app, $l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
43
44                 $this->friendicaPhoto = $friendicaPhoto;
45         }
46
47         protected function rawContent(array $request = [])
48         {
49                 BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
50                 $uid  = BaseApi::getCurrentUserID();
51                 $type = $this->getRequestValue($this->parameters, 'extension', 'json');
52
53                 if (empty($request['photo_id'])) {
54                         throw new HTTPException\BadRequestException('No photo id.');
55                 }
56
57                 $scale    = (!empty($request['scale']) ? intval($request['scale']) : null);
58                 $photo_id = $request['photo_id'];
59
60                 // prepare json/xml output with data from database for the requested photo
61                 $data = ['photo' => $this->friendicaPhoto->createFromId($photo_id, $scale, $uid, $type)];
62
63                 $this->response->exit('statuses', $data, $this->parameters['extension'] ?? null, Contact::getPublicIdByUserId($uid));
64         }
65 }