mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
Fetchting the original post at first, then the other way is dafer.
This commit is contained in:
parent
ad782b55ef
commit
9f2e9dfc1b
1 changed files with 7 additions and 6 deletions
|
@ -31,13 +31,14 @@ class Objects extends BaseModule
|
|||
/// @todo Add Authentication to enable fetching of non public content
|
||||
// $requester = HTTPSignature::getSigner('', $_SERVER);
|
||||
|
||||
$item = Item::selectFirst(['id', 'author-link'], ['guid' => $a->argv[1], 'private' => false]);
|
||||
// At first we try the original post with that guid
|
||||
$item = Item::selectFirst(['id'], ['guid' => $a->argv[1], 'origin' => true, 'private' => false]);
|
||||
if (!DBA::isResult($item)) {
|
||||
// If no original post could be found, it could possibly be a forum post, there we remove the "origin" field.
|
||||
$item = Item::selectFirst(['id', 'author-link'], ['guid' => $a->argv[1], 'private' => false]);
|
||||
if (!DBA::isResult($item) || !strstr($item['author-link'], System::baseUrl())) {
|
||||
System::httpExit(404);
|
||||
}
|
||||
|
||||
if (!strstr($item['author-link'], System::baseUrl())) {
|
||||
System::httpExit(404);
|
||||
}
|
||||
|
||||
$data = ActivityPub\Transmitter::createObjectFromItemID($item['id']);
|
||||
|
|
Loading…
Reference in a new issue