Forráskód Böngészése

Story transformers

Daniel Supernault 3 éve
szülő
commit
f808b7b19d

+ 29 - 0
app/Transformer/ActivityPub/Verb/CreateStory.php

@@ -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(),
+			]
+		];
+	}
+}

+ 25 - 0
app/Transformer/ActivityPub/Verb/DeleteStory.php

@@ -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',
+			],
+		];
+	}
+}

+ 39 - 0
app/Transformer/ActivityPub/Verb/StoryVerb.php

@@ -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,
+			],
+		];
+	}
+}