]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Objects.php
BBCode - fixed syntax error
[friendica.git] / src / Module / Objects.php
index 0f9493db61d9384433852add315a2cce96085af5..3f8aea0d01adc4432a523645c92d82341be2a675 100644 (file)
@@ -9,6 +9,7 @@ use Friendica\Protocol\ActivityPub;
 use Friendica\Core\System;
 use Friendica\Model\Item;
 use Friendica\Database\DBA;
+use Friendica\Util\HTTPSignature;
 
 /**
  * ActivityPub Objects
@@ -24,10 +25,13 @@ class Objects extends BaseModule
                }
 
                if (!ActivityPub::isRequest()) {
-                       $a->redirect(str_replace('objects/', 'display/', $a->query_string));
+                       $a->internalRedirect(str_replace('objects/', 'display/', $a->query_string));
                }
 
-               $item = Item::selectFirst(['id'], ['guid' => $a->argv[1], 'wall' => true, 'private' => false]);
+               /// @todo Add Authentication to enable fetching of non public content
+               // $requester = HTTPSignature::getSigner('', $_SERVER);
+
+               $item = Item::selectFirst(['id'], ['guid' => $a->argv[1], 'origin' => true, 'private' => false]);
                if (!DBA::isResult($item)) {
                        System::httpExit(404);
                }