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