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

65 lines
1.8 KiB
PHP
Raw Normal View History

2018-11-13 06:25:31 +00:00
<?php
namespace App\Transformer\ActivityPub\Verb;
use App\Status;
use League\Fractal;
class CreateNote extends Fractal\TransformerAbstract
{
2018-11-13 06:48:27 +00:00
public function transform(Status $status)
{
2018-11-13 06:25:31 +00:00
2018-11-13 06:48:27 +00:00
$mentions = $status->mentions->map(function ($mention) {
return [
'type' => 'Mention',
'href' => $mention->permalink(),
'name' => $mention->emailUrl()
];
})->toArray();
$hashtags = $status->hashtags->map(function ($hashtag) {
return [
'type' => 'Hashtag',
'href' => $hashtag->url(),
'name' => "#{$hashtag->name}",
];
})->toArray();
$tags = array_merge($mentions, $hashtags);
2018-11-13 06:25:31 +00:00
2018-11-13 06:48:27 +00:00
return [
'@context' => [
'https://www.w3.org/ns/activitystreams',
'https://w3id.org/security/v1',
],
'id' => $status->permalink(),
'type' => 'Create',
'actor' => $status->profile->permalink(),
'published' => $status->created_at->toAtomString(),
'to' => $status->scopeToAudience('to'),
'cc' => $status->scopeToAudience('cc'),
'object' => [
'id' => $status->url(),
'type' => 'Note',
'summary' => null,
'content' => $status->rendered ?? $status->caption,
'inReplyTo' => $status->in_reply_to_id ? $status->parent()->url() : null,
'published' => $status->created_at->toAtomString(),
'url' => $status->url(),
'attributedTo' => $status->profile->permalink(),
'to' => $status->scopeToAudience('to'),
'cc' => $status->scopeToAudience('cc'),
'sensitive' => (bool) $status->is_nsfw,
'attachment' => $status->media->map(function ($media) {
return [
2018-12-12 21:25:27 +00:00
'type' => $media->activityVerb(),
2018-11-13 06:48:27 +00:00
'mediaType' => $media->mime,
'url' => $media->url(),
'name' => $media->caption,
2018-11-13 06:48:27 +00:00
];
})->toArray(),
'tag' => $tags,
]
];
}
2018-11-13 06:25:31 +00:00
}