3 * @copyright Copyright (C) 2010-2023, the Friendica project
5 * @license GNU AGPL version 3 or any later version
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.
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.
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/>.
22 namespace Friendica\Object\Api\Mastodon;
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\FriendicaExtension;
29 use Friendica\Object\Api\Mastodon\Status\UserAttributes;
30 use Friendica\Util\DateTimeFormat;
35 * @see https://docs.joinmastodon.org/entities/status
37 class Status extends BaseDataTransferObject
41 /** @var string (Datetime) */
42 protected $created_at;
43 /** @var string|null */
44 protected $in_reply_to_id = null;
45 /** @var Status|null - Fedilab extension, see issue https://github.com/friendica/friendica/issues/12672 */
46 protected $in_reply_to_status = null;
47 /** @var string|null */
48 protected $in_reply_to_account_id = null;
50 protected $sensitive = false;
52 protected $spoiler_text = "";
53 /** @var string (Enum of public, unlisted, private, direct)*/
54 protected $visibility;
55 /** @var string|null */
56 protected $language = null;
59 /** @var string|null (URL)*/
60 protected $url = null;
62 protected $replies_count = 0;
64 protected $reblogs_count = 0;
66 protected $favourites_count = 0;
68 protected $favourited = false;
70 protected $reblogged = false;
72 protected $muted = false;
74 protected $bookmarked = false;
76 protected $pinned = false;
79 /** @var Status|null */
80 protected $reblog = null;
81 /** @var Status|null - Akkoma extension, see issue https://github.com/friendica/friendica/issues/12603 */
82 protected $quote = null;
83 /** @var Application */
84 protected $application = null;
87 /** @var Attachment */
88 protected $media_attachments = [];
90 protected $mentions = [];
94 protected $emojis = [];
96 protected $card = null;
98 protected $poll = null;
99 /** @var FriendicaExtension|null */
100 protected $friendica = null;
103 * Creates a status record from an item record.
106 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
108 public function __construct(array $item, Account $account, Counts $counts, UserAttributes $userAttributes, bool $sensitive, Application $application, array $mentions, array $tags, Card $card, array $attachments, array $in_reply, array $reblog, array $quote = null, array $poll = null)
110 $this->id = (string)$item['uri-id'];
111 $this->created_at = DateTimeFormat::utc($item['created'], DateTimeFormat::JSON);
113 if ($item['gravity'] == Item::GRAVITY_COMMENT) {
114 $this->in_reply_to_id = (string)$item['thr-parent-id'];
115 $this->in_reply_to_status = $in_reply;
116 $this->in_reply_to_account_id = (string)$item['parent-author-id'];
119 $this->sensitive = $sensitive;
120 $this->spoiler_text = $item['title'] ?: $item['content-warning'] ?: '';
122 $visibility = ['public', 'private', 'unlisted'];
123 $this->visibility = $visibility[$item['private']];
125 $languages = json_decode($item['language'] ?? '', true);
126 if (is_array($languages)) {
128 $this->language = key($languages);
130 $this->language = null;
133 $this->uri = $item['uri'];
134 $this->url = $item['plink'] ?? null;
135 $this->replies_count = $counts->replies;
136 $this->reblogs_count = $counts->reblogs;
137 $this->favourites_count = $counts->favourites;
138 $this->favourited = $userAttributes->favourited;
139 $this->reblogged = $userAttributes->reblogged;
140 $this->muted = $userAttributes->muted;
141 $this->bookmarked = $userAttributes->bookmarked;
142 $this->pinned = $userAttributes->pinned;
143 $this->content = BBCode::convertForUriId($item['uri-id'], BBCode::setMentionsToNicknames($item['raw-body'] ?? $item['body']), BBCode::MASTODON_API);
144 $this->reblog = $reblog;
145 $this->quote = $quote;
146 $this->application = $application->toArray();
147 $this->account = $account->toArray();
148 $this->media_attachments = $attachments;
149 $this->mentions = $mentions;
152 $this->card = $card->toArray() ?: null;
154 $this->friendica = new FriendicaExtension($item['title']);
158 * Returns the current entity as an array
162 public function toArray(): array
164 $status = parent::toArray();
166 if (!$status['pinned']) {
167 unset($status['pinned']);
170 if (empty($status['application']['name'])) {
171 unset($status['application']);
174 if (empty($status['reblog'])) {
175 $status['reblog'] = null;
178 if (empty($status['quote'])) {
179 $status['quote'] = null;
182 if (empty($status['in_reply_to_status'])) {
183 $status['in_reply_to_status'] = null;