mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
640 B
PHP
26 lines
640 B
PHP
<?php
|
|
|
|
namespace App\Transformer\ActivityPub\Verb;
|
|
|
|
use App\FollowRequest;
|
|
use League\Fractal;
|
|
|
|
class AcceptFollow extends Fractal\TransformerAbstract
|
|
{
|
|
public function transform(FollowRequest $follow)
|
|
{
|
|
return [
|
|
'@context' => 'https://www.w3.org/ns/activitystreams',
|
|
'type' => 'Accept',
|
|
'id' => $follow->permalink(),
|
|
'actor' => $follow->target->permalink(),
|
|
'object' => [
|
|
'type' => 'Follow',
|
|
'id' => $follow->activity && isset($follow->activity['id']) ? $follow->activity['id'] : null,
|
|
'actor' => $follow->actor->permalink(),
|
|
'object' => $follow->target->permalink()
|
|
]
|
|
];
|
|
}
|
|
}
|