Merge pull request #8701 from annando/issue-8700
Issue 8700: Resolvable activities
This commit is contained in:
commit
9fef3b231d
|
@ -65,6 +65,7 @@ class Objects extends BaseModule
|
||||||
$last_modified = $item['changed'];
|
$last_modified = $item['changed'];
|
||||||
Network::checkEtagModified($etag, $last_modified);
|
Network::checkEtagModified($etag, $last_modified);
|
||||||
|
|
||||||
|
if (empty($parameters['activity'])) {
|
||||||
$activity = ActivityPub\Transmitter::createActivityFromItem($item['id'], true);
|
$activity = ActivityPub\Transmitter::createActivityFromItem($item['id'], true);
|
||||||
$activity['type'] = $activity['type'] == 'Update' ? 'Create' : $activity['type'];
|
$activity['type'] = $activity['type'] == 'Update' ? 'Create' : $activity['type'];
|
||||||
|
|
||||||
|
@ -75,6 +76,19 @@ class Objects extends BaseModule
|
||||||
|
|
||||||
$data = ['@context' => ActivityPub::CONTEXT];
|
$data = ['@context' => ActivityPub::CONTEXT];
|
||||||
$data = array_merge($data, $activity['object']);
|
$data = array_merge($data, $activity['object']);
|
||||||
|
} elseif (in_array($parameters['activity'], ['Create', 'Announce', 'Update',
|
||||||
|
'Like', 'Dislike', 'Accept', 'Reject', 'TentativeAccept', 'Follow', 'Add'])) {
|
||||||
|
$data = ActivityPub\Transmitter::createActivityFromItem($item['id']);
|
||||||
|
if (empty($data)) {
|
||||||
|
throw new HTTPException\NotFoundException();
|
||||||
|
}
|
||||||
|
if ($parameters['activity'] != 'Create') {
|
||||||
|
$data['type'] = $parameters['activity'];
|
||||||
|
$data['id'] = str_replace('/Create', '/' . $parameters['activity'], $data['id']);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
throw new HTTPException\NotFoundException();
|
||||||
|
}
|
||||||
|
|
||||||
// Relaxed CORS header for public items
|
// Relaxed CORS header for public items
|
||||||
header('Access-Control-Allow-Origin: *');
|
header('Access-Control-Allow-Origin: *');
|
||||||
|
|
|
@ -729,7 +729,7 @@ class Transmitter
|
||||||
$data = [];
|
$data = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
$data['id'] = $mail['uri'] . '#Create';
|
$data['id'] = $mail['uri'] . '/Create';
|
||||||
$data['type'] = 'Create';
|
$data['type'] = 'Create';
|
||||||
$data['actor'] = $mail['author-link'];
|
$data['actor'] = $mail['author-link'];
|
||||||
$data['published'] = DateTimeFormat::utc($mail['created'] . '+00:00', DateTimeFormat::ATOM);
|
$data['published'] = DateTimeFormat::utc($mail['created'] . '+00:00', DateTimeFormat::ATOM);
|
||||||
|
@ -893,7 +893,7 @@ class Transmitter
|
||||||
$data = [];
|
$data = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
$data['id'] = $item['uri'] . '#' . $type;
|
$data['id'] = $item['uri'] . '/' . $type;
|
||||||
$data['type'] = $type;
|
$data['type'] = $type;
|
||||||
|
|
||||||
if (Item::isForumPost($item) && ($type != 'Announce')) {
|
if (Item::isForumPost($item) && ($type != 'Announce')) {
|
||||||
|
|
|
@ -218,7 +218,7 @@ return [
|
||||||
'/mark/all' => [Module\Notifications\Notification::class, [R::GET]],
|
'/mark/all' => [Module\Notifications\Notification::class, [R::GET]],
|
||||||
'/{id:\d+}' => [Module\Notifications\Notification::class, [R::GET, R::POST]],
|
'/{id:\d+}' => [Module\Notifications\Notification::class, [R::GET, R::POST]],
|
||||||
],
|
],
|
||||||
'/objects/{guid}' => [Module\Objects::class, [R::GET]],
|
'/objects/{guid}[/{activity}]' => [Module\Objects::class, [R::GET]],
|
||||||
|
|
||||||
'/oembed' => [
|
'/oembed' => [
|
||||||
'/b2h' => [Module\Oembed::class, [R::GET]],
|
'/b2h' => [Module\Oembed::class, [R::GET]],
|
||||||
|
|
Loading…
Reference in a new issue