Update AnnounceTransformer

This commit is contained in:
Daniel Supernault 2019-08-01 22:37:14 -06:00
parent ce1d6630d7
commit f47cd88438
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -7,20 +7,20 @@ use League\Fractal;
class Announce extends Fractal\TransformerAbstract class Announce extends Fractal\TransformerAbstract
{ {
public function transform(Status $status) public function transform(Status $status)
{ {
return [ return [
'@context' => 'https://www.w3.org/ns/activitystreams', '@context' => 'https://www.w3.org/ns/activitystreams',
'id' => $status->permalink(), 'id' => $status->permalink(),
'type' => 'Announce', 'type' => 'Announce',
'actor' => $status->profile->permalink(), 'actor' => $status->profile->permalink(),
'to' => ['https://www.w3.org/ns/activitystreams#Public'], 'to' => ['https://www.w3.org/ns/activitystreams#Public'],
'cc' => [ 'cc' => [
$status->profile->permalink(), $status->profile->permalink(),
$status->profile->follower_url ?? $status->profile->permalink('/followers') $status->profile->follower_url ?? $status->profile->permalink('/followers')
], ],
'published' => $status->created_at->format(DATE_ISO8601), 'published' => $status->created_at->format(DATE_ISO8601),
'object' => $status->parent()->url(), 'object' => $status->parent()->url(),
]; ];
} }
} }