Story transformers

This commit is contained in:
Daniel Supernault 2021-09-03 20:50:38 -06:00
parent 37054e8393
commit f808b7b19d
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
3 changed files with 93 additions and 0 deletions

View File

@ -0,0 +1,29 @@
<?php
namespace App\Transformer\ActivityPub\Verb;
use Storage;
use App\Story;
use League\Fractal;
use Illuminate\Support\Str;
class CreateStory extends Fractal\TransformerAbstract
{
public function transform(Story $story)
{
return [
'@context' => 'https://www.w3.org/ns/activitystreams',
'id' => $story->permalink(),
'type' => 'Add',
'actor' => $story->profile->permalink(),
'to' => [
$story->profile->permalink('/followers')
],
'object' => [
'id' => $story->url(),
'type' => 'Story',
'object' => $story->bearcapUrl(),
]
];
}
}

View File

@ -0,0 +1,25 @@
<?php
namespace App\Transformer\ActivityPub\Verb;
use Storage;
use App\Story;
use League\Fractal;
use Illuminate\Support\Str;
class DeleteStory extends Fractal\TransformerAbstract
{
public function transform(Story $story)
{
return [
'@context' => 'https://www.w3.org/ns/activitystreams',
'id' => $story->url() . '#delete',
'type' => 'Delete',
'actor' => $story->profile->permalink(),
'object' => [
'id' => $story->url(),
'type' => 'Story',
],
];
}
}

View File

@ -0,0 +1,39 @@
<?php
namespace App\Transformer\ActivityPub\Verb;
use Storage;
use App\Story;
use League\Fractal;
use Illuminate\Support\Str;
class StoryVerb extends Fractal\TransformerAbstract
{
public function transform(Story $story)
{
$type = $story->type == 'photo' ? 'Image' :
( $story->type == 'video' ? 'Video' :
'Document' );
return [
'@context' => 'https://www.w3.org/ns/activitystreams',
'id' => $story->url(),
'type' => 'Story',
'to' => [
$story->profile->permalink('/followers')
],
'cc' => [],
'attributedTo' => $story->profile->permalink(),
'published' => $story->created_at->toAtomString(),
'expiresAt' => $story->expires_at->toAtomString(),
'duration' => $story->duration,
'can_reply' => (bool) $story->can_reply,
'can_react' => (bool) $story->can_react,
'attachment' => [
'type' => $type,
'url' => url(Storage::url($story->path)),
'mediaType' => $story->mime,
],
];
}
}