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