]> git.mxchange.org Git - friendica.git/blob - src/Object/Api/Mastodon/Status.php
Merge pull request #12591 from MrPetovan/task/2023-licence
[friendica.git] / src / Object / Api / Mastodon / Status.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\Object\Api\Mastodon;
23
24 use Friendica\BaseDataTransferObject;
25 use Friendica\Content\Text\BBCode;
26 use Friendica\Model\Item;
27 use Friendica\Object\Api\Mastodon\Status\Counts;
28 use Friendica\Object\Api\Mastodon\Status\UserAttributes;
29 use Friendica\Util\DateTimeFormat;
30
31 /**
32  * Class Status
33  *
34  * @see https://docs.joinmastodon.org/entities/status
35  */
36 class Status extends BaseDataTransferObject
37 {
38         /** @var string */
39         protected $id;
40         /** @var string (Datetime) */
41         protected $created_at;
42         /** @var string|null */
43         protected $in_reply_to_id = null;
44         /** @var string|null */
45         protected $in_reply_to_account_id = null;
46         /** @var bool */
47         protected $sensitive = false;
48         /** @var string */
49         protected $spoiler_text = "";
50         /** @var string (Enum of public, unlisted, private, direct)*/
51         protected $visibility;
52         /** @var string|null */
53         protected $language = null;
54         /** @var string */
55         protected $uri;
56         /** @var string|null (URL)*/
57         protected $url = null;
58         /** @var int */
59         protected $replies_count = 0;
60         /** @var int */
61         protected $reblogs_count = 0;
62         /** @var int */
63         protected $favourites_count = 0;
64         /** @var bool */
65         protected $favourited = false;
66         /** @var bool */
67         protected $reblogged = false;
68         /** @var bool */
69         protected $muted = false;
70         /** @var bool */
71         protected $bookmarked = false;
72         /** @var bool */
73         protected $pinned = false;
74         /** @var string */
75         protected $content;
76         /** @var Status|null */
77         protected $reblog = null;
78         /** @var Application */
79         protected $application = null;
80         /** @var Account */
81         protected $account;
82         /** @var Attachment */
83         protected $media_attachments = [];
84         /** @var Mention */
85         protected $mentions = [];
86         /** @var Tag */
87         protected $tags = [];
88         /** @var Emoji[] */
89         protected $emojis = [];
90         /** @var Card|null */
91         protected $card = null;
92         /** @var Poll|null */
93         protected $poll = null;
94
95         /**
96          * Creates a status record from an item record.
97          *
98          * @param array   $item
99          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
100          */
101         public function __construct(array $item, Account $account, Counts $counts, UserAttributes $userAttributes, bool $sensitive, Application $application, array $mentions, array $tags, Card $card, array $attachments, array $reblog, array $poll = null)
102         {
103                 $this->id         = (string)$item['uri-id'];
104                 $this->created_at = DateTimeFormat::utc($item['created'], DateTimeFormat::JSON);
105
106                 if ($item['gravity'] == Item::GRAVITY_COMMENT) {
107                         $this->in_reply_to_id         = (string)$item['thr-parent-id'];
108                         $this->in_reply_to_account_id = (string)$item['parent-author-id'];
109                 }
110
111                 $this->sensitive    = $sensitive;
112                 $this->spoiler_text = $item['title'] ?: $item['content-warning'] ?: '';
113
114                 $visibility = ['public', 'private', 'unlisted'];
115                 $this->visibility = $visibility[$item['private']];
116
117                 $languages = json_decode($item['language'] ?? '', true);
118                 if (is_array($languages)) {
119                         reset($languages);
120                         $this->language = key($languages);
121                 } else {
122                         $this->language = null;
123                 }
124
125                 $this->uri = $item['uri'];
126                 $this->url = $item['plink'] ?? null;
127                 $this->replies_count = $counts->replies;
128                 $this->reblogs_count = $counts->reblogs;
129                 $this->favourites_count = $counts->favourites;
130                 $this->favourited = $userAttributes->favourited;
131                 $this->reblogged = $userAttributes->reblogged;
132                 $this->muted = $userAttributes->muted;
133                 $this->bookmarked = $userAttributes->bookmarked;
134                 $this->pinned = $userAttributes->pinned;
135                 $this->content = BBCode::convertForUriId($item['uri-id'], BBCode::setMentionsToNicknames($item['raw-body'] ?? $item['body']), BBCode::MASTODON_API);
136                 $this->reblog = $reblog;
137                 $this->application = $application->toArray();
138                 $this->account = $account->toArray();
139                 $this->media_attachments = $attachments;
140                 $this->mentions = $mentions;
141                 $this->tags = $tags;
142                 $this->emojis = [];
143                 $this->card = $card->toArray() ?: null;
144                 $this->poll = $poll;
145         }
146
147         /**
148          * Returns the current entity as an array
149          *
150          * @return array
151          */
152         public function toArray(): array
153         {
154                 $status = parent::toArray();
155
156                 if (!$status['pinned']) {
157                         unset($status['pinned']);
158                 }
159
160                 if (empty($status['application']['name'])) {
161                         unset($status['application']);
162                 }
163
164                 if (empty($status['reblog'])) {
165                         $status['reblog'] = null;
166                 }
167
168                 return $status;
169         }
170 }