pixelfed/app/Transformer/ActivityPub/Verb/AcceptFollow.php

26 lines
640 B
PHP
Raw Normal View History

2022-06-03 07:29:50 +00:00
<?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,
2022-06-03 07:29:50 +00:00
'actor' => $follow->actor->permalink(),
'object' => $follow->target->permalink()
]
];
}
}