mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-23 06:51:27 +00:00
26 lines
606 B
PHP
26 lines
606 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 ? $follow->activity['id'] : null,
|
||
|
'actor' => $follow->actor->permalink(),
|
||
|
'object' => $follow->target->permalink()
|
||
|
]
|
||
|
];
|
||
|
}
|
||
|
}
|