$attachments = DI::mstdnAttachment()->createFromUriId($uriId);
- return new \Friendica\Object\Api\Mastodon\Status($item, $account, $counts, $userAttributes, $sensitive, $application, $mentions, $tags, $card, $attachments);
+ if ($item['vid'] == Verb::getID(Activity::ANNOUNCE)) {
+ $reshare = $this->createFromUriId($item['thr-parent-id'], $uid)->toArray();
+ $reshared_item = Item::selectFirst(['title', 'body'], ['uri-id' => $item['thr-parent-id'], 'uid' => $uid]);
+ $item['title'] = $reshared_item['title'] ?? $item['title'];
+ $item['body'] = $reshared_item['body'] ?? $item['body'];
+ } else {
+ $reshare = [];
+ }
+
+ return new \Friendica\Object\Api\Mastodon\Status($item, $account, $counts, $userAttributes, $sensitive, $application, $mentions, $tags, $card, $attachments, $reshare);
}
}
use Friendica\Database\DBA;
use Friendica\DI;
use Friendica\Model\Item;
+use Friendica\Model\Verb;
use Friendica\Module\BaseApi;
+use Friendica\Protocol\Activity;
/**
* @see https://docs.joinmastodon.org/methods/accounts/
$params = ['order' => ['uri-id' => true], 'limit' => $limit];
- $condition = ['author-id' => $id, 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT],
- 'private' => Item::PUBLIC, 'uid' => 0, 'network' => Protocol::FEDERATED];
+ $condition = ['author-id' => $id, 'private' => [Item::PUBLIC, Item::UNLISTED],
+ 'uid' => 0, 'network' => Protocol::FEDERATED];
+
+ $condition = DBA::mergeConditions($condition, ["(`gravity` IN (?, ?) OR (`gravity` = ? AND `vid` = ?))",
+ GRAVITY_PARENT, GRAVITY_COMMENT, GRAVITY_ACTIVITY, Verb::getID(Activity::ANNOUNCE)]);
if (!empty($max_id)) {
$condition = DBA::mergeConditions($condition, ["`uri-id` < ?", $max_id]);
* @param array $item
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
- public function __construct(array $item, Account $account, Counts $counts, UserAttributes $userAttributes, bool $sensitive, Application $application, array $mentions, array $tags, Card $card, array $attachments)
+ 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)
{
$this->id = (string)$item['uri-id'];
$this->created_at = DateTimeFormat::utc($item['created'], DateTimeFormat::ATOM);
$this->bookmarked = $userAttributes->bookmarked;
$this->pinned = $userAttributes->pinned;
$this->content = BBCode::convert($item['raw-body'] ?? $item['body'], false);
- $this->reblog = null; /// @todo
+ $this->reblog = $reblog;
$this->application = $application->toArray();
$this->account = $account->toArray();
$this->media_attachments = $attachments;
unset($status['application']);
}
+ if (empty($status['reblog'])) {
+ $status['reblog'] = null;
+ }
+
return $status;
}
}