gnu-social/plugins/ActivityStreamsTwo/Util/Model/EntityToType/NoteToType.php

34 lines
975 B
PHP

<?php
namespace Plugin\ActivityStreamsTwo\Util\Model\EntityToType;
use App\Core\Router\Router;
use App\Entity\Note;
use DateTimeInterface;
use Plugin\ActivityStreamsTwo\Util\Type;
class NoteToType
{
/**
* @param Note $note
*
* @throws \Exception
*
* @return Type
*/
public static function translate(Note $note)
{
$attr = [
'@context' => 'https://www.w3.org/ns/activitystreams',
'id' => Router::url('note_view', ['id' => $note->getId()], Router::ABSOLUTE_URL),
'published' => $note->getCreated()->format(DateTimeInterface::RFC3339),
'attributedTo' => Router::url('actor_view_id', ['id' => $note->getActorId()], Router::ABSOLUTE_URL),
//'to' => $to,
//'cc' => $cc,
'content' => json_encode($note->getRendered()),
//'tag' => $tags
];
return Type::create(type: 'Note', attributes: $attr);
}
}