]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Inbox.php
UUID instead of GUID
[friendica.git] / src / Module / Inbox.php
index 21dd77151cde4e11961ea7ee75d9d68fb7db10e3..4fc450d85a306e0b52323629174f8894bb403465 100644 (file)
@@ -8,6 +8,7 @@ use Friendica\BaseModule;
 use Friendica\Protocol\ActivityPub;
 use Friendica\Core\System;
 use Friendica\Database\DBA;
+use Friendica\Util\HTTPSignature;
 
 /**
  * ActivityPub Inbox
@@ -24,17 +25,19 @@ class Inbox extends BaseModule
                        System::httpExit(400);
                }
 
-               if (ActivityPub::verifySignature($postdata, $_SERVER)) {
+// Enable for test purposes
+/*
+               if (HTTPSignature::getSigner($postdata, $_SERVER)) {
                        $filename = 'signed-activitypub';
                } else {
                        $filename = 'failed-activitypub';
                }
 
                $tempfile = tempnam(get_temppath(), $filename);
-               file_put_contents($tempfile, json_encode(['argv' => $a->argv, 'header' => $_SERVER, 'body' => $postdata]));
+               file_put_contents($tempfile, json_encode(['argv' => $a->argv, 'header' => $_SERVER, 'body' => $postdata], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
 
                logger('Incoming message stored under ' . $tempfile);
-
+*/
                if (!empty($a->argv[1])) {
                        $user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]);
                        if (!DBA::isResult($user)) {
@@ -47,6 +50,6 @@ class Inbox extends BaseModule
 
                ActivityPub::processInbox($postdata, $_SERVER, $uid);
 
-               System::httpExit(201);
+               System::httpExit(202);
        }
 }