Update AP transformers, add DeleteActor activity

This commit is contained in:
Daniel Supernault 2024-03-08 06:02:11 -07:00
parent a969ca502f
commit bcce1df6fc
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
<?php
namespace App\Transformer\ActivityPub\Verb;
use App\Profile;
use League\Fractal;
class DeleteActor extends Fractal\TransformerAbstract
{
public function transform(Profile $profile)
{
return [
'@context' => 'https://www.w3.org/ns/activitystreams',
'id' => $profile->permalink('#delete'),
'type' => 'Delete',
'actor' => $profile->permalink(),
'to' => [
'https://www.w3.org/ns/activitystreams#Public'
],
'object' => $profile->permalink()
];
}
}