mirror of
https://github.com/friendica/friendica
synced 2025-04-25 22:30:10 +00:00
Add dislike counts to Mastodon API Statuses in FriendicaExtension
This commit is contained in:
parent
5f56918d3e
commit
3a8929be1f
4 changed files with 26 additions and 9 deletions
|
@ -151,7 +151,7 @@ class Status extends BaseDataTransferObject
|
|||
$this->emojis = [];
|
||||
$this->card = $card->toArray() ?: null;
|
||||
$this->poll = $poll;
|
||||
$this->friendica = new FriendicaExtension($item['title']);
|
||||
$this->friendica = new FriendicaExtension($item['title'], $counts->dislikes);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -35,6 +35,9 @@ class Counts
|
|||
/** @var int */
|
||||
protected $favourites;
|
||||
|
||||
/** @var int */
|
||||
protected $dislikes;
|
||||
|
||||
/**
|
||||
* Creates a status count object
|
||||
*
|
||||
|
@ -43,14 +46,16 @@ class Counts
|
|||
* @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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -35,14 +35,18 @@ class FriendicaExtension extends BaseDataTransferObject
|
|||
/** @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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue