mirror of
https://github.com/friendica/friendica
synced 2024-11-19 20:23:40 +00:00
Merge pull request #9482 from annando/api-reblog
API: Support for reshared items
This commit is contained in:
commit
4226ef4e3e
3 changed files with 23 additions and 5 deletions
|
@ -87,6 +87,15 @@ class Status extends BaseFactory
|
||||||
|
|
||||||
$attachments = DI::mstdnAttachment()->createFromUriId($uriId);
|
$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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,9 @@ use Friendica\Core\System;
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
use Friendica\Model\Item;
|
use Friendica\Model\Item;
|
||||||
|
use Friendica\Model\Verb;
|
||||||
use Friendica\Module\BaseApi;
|
use Friendica\Module\BaseApi;
|
||||||
|
use Friendica\Protocol\Activity;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see https://docs.joinmastodon.org/methods/accounts/
|
* @see https://docs.joinmastodon.org/methods/accounts/
|
||||||
|
@ -61,8 +63,11 @@ class Statuses extends BaseApi
|
||||||
|
|
||||||
$params = ['order' => ['uri-id' => true], 'limit' => $limit];
|
$params = ['order' => ['uri-id' => true], 'limit' => $limit];
|
||||||
|
|
||||||
$condition = ['author-id' => $id, 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT],
|
$condition = ['author-id' => $id, 'private' => [Item::PUBLIC, Item::UNLISTED],
|
||||||
'private' => Item::PUBLIC, 'uid' => 0, 'network' => Protocol::FEDERATED];
|
'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)) {
|
if (!empty($max_id)) {
|
||||||
$condition = DBA::mergeConditions($condition, ["`uri-id` < ?", $max_id]);
|
$condition = DBA::mergeConditions($condition, ["`uri-id` < ?", $max_id]);
|
||||||
|
|
|
@ -97,7 +97,7 @@ class Status extends BaseEntity
|
||||||
* @param array $item
|
* @param array $item
|
||||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
* @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->id = (string)$item['uri-id'];
|
||||||
$this->created_at = DateTimeFormat::utc($item['created'], DateTimeFormat::ATOM);
|
$this->created_at = DateTimeFormat::utc($item['created'], DateTimeFormat::ATOM);
|
||||||
|
@ -127,7 +127,7 @@ class Status extends BaseEntity
|
||||||
$this->bookmarked = $userAttributes->bookmarked;
|
$this->bookmarked = $userAttributes->bookmarked;
|
||||||
$this->pinned = $userAttributes->pinned;
|
$this->pinned = $userAttributes->pinned;
|
||||||
$this->content = BBCode::convert($item['raw-body'] ?? $item['body'], false);
|
$this->content = BBCode::convert($item['raw-body'] ?? $item['body'], false);
|
||||||
$this->reblog = null; /// @todo
|
$this->reblog = $reblog;
|
||||||
$this->application = $application->toArray();
|
$this->application = $application->toArray();
|
||||||
$this->account = $account->toArray();
|
$this->account = $account->toArray();
|
||||||
$this->media_attachments = $attachments;
|
$this->media_attachments = $attachments;
|
||||||
|
@ -155,6 +155,10 @@ class Status extends BaseEntity
|
||||||
unset($status['application']);
|
unset($status['application']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (empty($status['reblog'])) {
|
||||||
|
$status['reblog'] = null;
|
||||||
|
}
|
||||||
|
|
||||||
return $status;
|
return $status;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue