2021-08-24 20:29:26 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Plugin\ActivityStreamsTwo;
|
|
|
|
|
|
|
|
use App\Core\Event;
|
|
|
|
use App\Core\Modules\Plugin;
|
|
|
|
use App\Core\Router\RouteLoader;
|
|
|
|
use Plugin\ActivityStreamsTwo\Util\Response\NoteResponse;
|
|
|
|
use Plugin\ActivityStreamsTwo\Util\Response\TypeResponse;
|
|
|
|
|
|
|
|
class ActivityStreamsTwo extends Plugin
|
|
|
|
{
|
|
|
|
public function version(): string
|
|
|
|
{
|
|
|
|
return '0.1.0';
|
|
|
|
}
|
|
|
|
|
|
|
|
public array $accept = [
|
|
|
|
'application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
|
|
|
|
'application/activity+json',
|
|
|
|
'application/json',
|
|
|
|
'application/ld+json',
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $route
|
2021-09-01 23:50:45 +01:00
|
|
|
* @param array $accept_header
|
2021-08-24 20:29:26 +01:00
|
|
|
* @param array $vars
|
|
|
|
* @param null|TypeResponse $response
|
|
|
|
*
|
|
|
|
* @throws \Exception
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2021-09-01 23:50:45 +01:00
|
|
|
public function onControllerResponseInFormat(string $route, array $accept_header, array $vars, ?TypeResponse &$response = null): bool
|
2021-08-24 20:29:26 +01:00
|
|
|
{
|
2021-09-01 23:50:45 +01:00
|
|
|
if (empty(array_intersect($this->accept, $accept_header))) {
|
2021-08-24 20:29:26 +01:00
|
|
|
return Event::next;
|
|
|
|
}
|
|
|
|
switch ($route) {
|
|
|
|
case 'note_show':
|
|
|
|
$response = NoteResponse::handle($vars['note']);
|
|
|
|
return Event::stop;
|
|
|
|
default:
|
|
|
|
return Event::next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This code executes when GNU social creates the page routing, and we hook
|
|
|
|
* on this event to add our action handler for Embed.
|
|
|
|
*
|
|
|
|
* @param $r RouteLoader the router that was initialized.
|
|
|
|
*
|
|
|
|
* @return bool
|
2021-09-01 23:50:45 +01:00
|
|
|
*/
|
|
|
|
public function onAddRoute(RouteLoader $r): bool
|
|
|
|
{
|
|
|
|
$r->connect('note_view_as2',
|
|
|
|
'/note/{id<\d+>}',
|
|
|
|
[NoteResponse::class, 'handle'],
|
|
|
|
options: ['accept' => $this->accept]
|
|
|
|
);
|
|
|
|
return Event::next;
|
|
|
|
}
|
|
|
|
}
|