'deleted' => false
]);
+ $count_dislike = Post::countPosts([
+ 'thr-parent-id' => $uriId,
+ 'gravity' => Item::GRAVITY_ACTIVITY,
+ 'vid' => Verb::getID(Activity::DISLIKE),
+ 'deleted' => false
+ ]);
+
$counts = new \Friendica\Object\Api\Mastodon\Status\Counts(
Post::countPosts(['thr-parent-id' => $uriId, 'gravity' => Item::GRAVITY_COMMENT, 'deleted' => false], []),
$count_announce,
- $count_like
+ $count_like,
+ $count_dislike
);
$origin_like = ($count_like == 0) ? false : Post::exists([
$replies = $this->dba->count('mail', ['thr-parent-id' => $item['uri-id'], 'reply' => true]);
- $counts = new \Friendica\Object\Api\Mastodon\Status\Counts($replies, 0, 0);
+ $counts = new \Friendica\Object\Api\Mastodon\Status\Counts($replies, 0, 0, 0);
$userAttributes = new \Friendica\Object\Api\Mastodon\Status\UserAttributes(false, false, false, false, false);
$this->emojis = [];
$this->card = $card->toArray() ?: null;
$this->poll = $poll;
- $this->friendica = new FriendicaExtension($item['title']);
+ $this->friendica = new FriendicaExtension($item['title'], $counts->dislikes);
}
/**
/** @var int */
protected $favourites;
+ /** @var int */
+ protected $dislikes;
+
/**
* Creates a status count object
*
* @param int $favourites
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
- public function __construct(int $replies, int $reblogs, int $favourites)
+ public function __construct(int $replies, int $reblogs, int $favourites, int $dislikes)
{
- $this->replies = $replies;
- $this->reblogs = $reblogs;
+ $this->replies = $replies;
+ $this->reblogs = $reblogs;
$this->favourites = $favourites;
+ $this->dislikes = $dislikes;
}
- public function __get($name) {
+ public function __get($name)
+ {
return $this->$name;
}
}
/** @var string */
protected $title;
+ /** @var int */
+ protected $dislikes_count;
+
/**
* Creates a status count object
*
* @param string $title
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
- public function __construct(string $title)
+ public function __construct(string $title, int $dislikes_count)
{
- $this->title = $title;
+ $this->title = $title;
+ $this->dislikes_count = $dislikes_count;
}
}