]> git.mxchange.org Git - friendica.git/blob - src/Factory/Api/Mastodon/ScheduledStatus.php
Adding and removing of pictures via API is now possible
[friendica.git] / src / Factory / Api / Mastodon / ScheduledStatus.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\Factory\Api\Mastodon;
23
24 use Friendica\BaseFactory;
25 use Friendica\Database\Database;
26 use Friendica\DI;
27 use Friendica\Model\Item;
28 use Friendica\Model\ItemURI;
29 use Friendica\Model\Photo;
30 use Friendica\Model\Post;
31 use Friendica\Network\HTTPException;
32 use Psr\Log\LoggerInterface;
33
34 class ScheduledStatus extends BaseFactory
35 {
36         /** @var Database */
37         private $dba;
38
39         public function __construct(LoggerInterface $logger, Database $dba)
40         {
41                 parent::__construct($logger);
42                 $this->dba = $dba;
43         }
44
45         /**
46          * @param int $id  Id of the delayed post
47          * @param int $uid Post user
48          *
49          * @return \Friendica\Object\Api\Mastodon\ScheduledStatus
50          * @throws HTTPException\InternalServerErrorException
51          */
52         public function createFromDelayedPostId(int $id, int $uid): \Friendica\Object\Api\Mastodon\ScheduledStatus
53         {
54                 $delayed_post = $this->dba->selectFirst('delayed-post', [], ['id' => $id, 'uid' => $uid]);
55                 if (empty($delayed_post)) {
56                         throw new HTTPException\NotFoundException('Scheduled status with ID ' . $id . ' not found for user ' . $uid . '.');
57                 }
58
59                 $parameters = Post\Delayed::getParametersForid($delayed_post['id']);
60                 if (empty($parameters)) {
61                         throw new HTTPException\NotFoundException('Scheduled status with ID ' . $id . ' not found for user ' . $uid . '.');
62                 }
63
64                 $media_ids         = [];
65                 $media_attachments = [];
66                 foreach ($parameters['attachments'] as $attachment) {
67                         $id = Photo::getIdForName($attachment['url']);
68
69                         $media_ids[]         = (string)$id;
70                         $media_attachments[] = DI::mstdnAttachment()->createFromPhoto($id);
71                 }
72
73                 if (isset($parameters['item']['thr-parent']) && ($parameters['item']['gravity'] ?? Item::GRAVITY_PARENT != Item::GRAVITY_PARENT)) {
74                         $in_reply_to_id = ItemURI::getIdByURI($parameters['item']['thr-parent']);
75                 } else {
76                         $in_reply_to_id = null;
77                 }
78
79                 return new \Friendica\Object\Api\Mastodon\ScheduledStatus($delayed_post, $parameters, $media_ids, $media_attachments, $in_reply_to_id);
80         }
81 }