### GET api/statusnet/config
-Returns the public Friendica node configuration.
+Returns the public Friendica node configuration.
### GET api/gnusocial/config
On success:
-* JSON return
+* JSON return
```json
{
On success:
-* JSON return
+* JSON return
```json
{
#### Parameters
-None
+None
#### Return values
On success a list of photo album objects:
"poll": null,
"friendica": {
"title": "",
- "dislikes_count": 1
+ "dislikes_count": 1,
+ "disliked": true
}
}
```
A Mastodon [Status Entity](https://docs.joinmastodon.org/entities/Status/)
#### Example:
-`https://<server_name>/api/friendica/statuses/341/dislike`
+`https://<server_name>/api/friendica/statuses/341/undislike`
```json
{
"poll": null,
"friendica": {
"title": "",
- "dislikes_count": 0
+ "dislikes_count": 0,
+ "disliked": false
}
}
```
* `codename`: The Friendica version code name
* `db_version`: The database schema version number
-Example:
+Example:
```json
{
"domain": "friendicadevtest1.myportal.social",
* `delivery_queue_done`: Total number of remote servers that have successfully been federated to so far.
* `delivery_queue_failed`: Total number of remote servers that have we failed to federate to so far.
* `dislikes_count`: The number of dislikes that a status has accumulated according to the server.
+ * `disliked`: Whethere the user disliked the status.
Example:
```json
"title": "",
"delivery_data": {
"delivery_queue_count": 10,
- "delivery_queue_done": 3,
+ "delivery_queue_done": 3,
"delivery_queue_failed": 0
},
"dislikes_count": 0
- Additionally to the static values `public`, `unlisted` and `private`, the `visibility` parameter can contain a numeric value with a group id.
- Additional field `quote_id` for the post that is being quote reshared
- Additional fields `friendica` for Friendica specific parameters:
- - `title`: Explicitly sets the title for a post status, ignored if used on a comment status. For post statuses the legacy behavior is to use any "spoiler text" as the title if it is provided. If both the title and spoiler text are provided for a post status then they will each be used for their respective roles. If no title is provided then the legacy behavior will persist. If you want to create a post with no title but spoiler text then explicitly set the title but set it to an empty string `""`.
+ - `title`: Explicitly sets the title for a post status, ignored if used on a comment status. For post statuses the legacy behavior is to use any "spoiler text" as the title if it is provided. If both the title and spoiler text are provided for a post status then they will each be used for their respective roles. If no title is provided then the legacy behavior will persist. If you want to create a post with no title but spoiler text then explicitly set the title but set it to an empty string `""`.
- [`GET /api/v1/statuses/:id`](https://docs.joinmastodon.org/methods/statuses/#get)
- [`DELETE /api/v1/statuses/:id`](https://docs.joinmastodon.org/methods/statuses/#delete)
- [`GET /api/v1/statuses/:id/context`](https://docs.joinmastodon.org/methods/statuses/#context)
'vid' => Verb::getID(Activity::LIKE),
'deleted' => false
]);
+ $origin_dislike = ($count_like == 0) ? false : Post::exists([
+ 'thr-parent-id' => $uriId,
+ 'uid' => $uid,
+ 'origin' => true,
+ 'gravity' => Item::GRAVITY_ACTIVITY,
+ 'vid' => Verb::getID(Activity::DISLIKE),
+ 'deleted' => false
+ ]);
$origin_announce = ($count_announce == 0) ? false : Post::exists([
'thr-parent-id' => $uriId,
'uid' => $uid,
$aclFormatter = DI::aclFormatter();
$delivery_data = $uid != $item['uid'] ? null : new FriendicaDeliveryData($item['delivery_queue_count'], $item['delivery_queue_done'], $item['delivery_queue_failed']);
$visibility_data = $uid != $item['uid'] ? null : new FriendicaVisibility($aclFormatter->expand($item['allow_cid']), $aclFormatter->expand($item['deny_cid']), $aclFormatter->expand($item['allow_gid']), $aclFormatter->expand($item['deny_gid']));
- $friendica = new FriendicaExtension($item['title'], $item['changed'], $item['commented'], $item['received'], $counts->dislikes, $delivery_data, $visibility_data);
+ $friendica = new FriendicaExtension($item['title'], $item['changed'], $item['commented'], $item['received'], $counts->dislikes, $origin_dislike, $delivery_data, $visibility_data);
return new \Friendica\Object\Api\Mastodon\Status($item, $account, $counts, $userAttributes, $sensitive, $application, $mentions, $tags, $card, $attachments, $in_reply, $reshare, $friendica, $quote, $poll);
}
$attachments = [];
$in_reply = [];
$reshare = [];
- $friendica = new FriendicaExtension('', null, null, null, 0, null, null);
+ $friendica = new FriendicaExtension('', null, null, null, 0, false, null, null);
return new \Friendica\Object\Api\Mastodon\Status($item, $account, $counts, $userAttributes, $sensitive, $application, $mentions, $tags, $card, $attachments, $in_reply, $reshare, $friendica);
}
/** @var FriendicaDeliveryData|null */
protected $delivery_data;
+
/** @var int */
protected $dislikes_count;
/**
*/
protected $visibility;
+ /** @var bool */
+ protected $disliked = false;
/**
* Creates a FriendicaExtension object
* @param string|null $edited_at
* @param string|null $received_at
* @param int $dislikes_count
+ * @param bool $disliked
* @param FriendicaDeliveryData|null $delivery_data
* @param FriendicaVisibility|null $visibility
*/
?string $commented_at,
?string $received_at,
int $dislikes_count,
+ bool $disliked,
?FriendicaDeliveryData $delivery_data,
?FriendicaVisibility $visibility
) {
$this->received_at = $received_at ? DateTimeFormat::utc($received_at, DateTimeFormat::JSON) : null;
$this->delivery_data = $delivery_data;
$this->dislikes_count = $dislikes_count;
+ $this->disliked = $disliked;
$this->visibility = $visibility;
}