Preparation for forum posts over AP
This commit is contained in:
parent
2b0610eaf5
commit
ad782b55ef
1 changed files with 5 additions and 1 deletions
|
@ -31,11 +31,15 @@ class Objects extends BaseModule
|
||||||
/// @todo Add Authentication to enable fetching of non public content
|
/// @todo Add Authentication to enable fetching of non public content
|
||||||
// $requester = HTTPSignature::getSigner('', $_SERVER);
|
// $requester = HTTPSignature::getSigner('', $_SERVER);
|
||||||
|
|
||||||
$item = Item::selectFirst(['id'], ['guid' => $a->argv[1], 'origin' => true, 'private' => false]);
|
$item = Item::selectFirst(['id', 'author-link'], ['guid' => $a->argv[1], 'private' => false]);
|
||||||
if (!DBA::isResult($item)) {
|
if (!DBA::isResult($item)) {
|
||||||
System::httpExit(404);
|
System::httpExit(404);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!strstr($item['author-link'], System::baseUrl())) {
|
||||||
|
System::httpExit(404);
|
||||||
|
}
|
||||||
|
|
||||||
$data = ActivityPub\Transmitter::createObjectFromItemID($item['id']);
|
$data = ActivityPub\Transmitter::createObjectFromItemID($item['id']);
|
||||||
|
|
||||||
header('Content-Type: application/activity+json');
|
header('Content-Type: application/activity+json');
|
||||||
|
|
Loading…
Reference in a new issue