]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Inbox.php
Relocated function
[friendica.git] / src / Module / Inbox.php
index 63de5de12dd35143cf5dbe42b977407b0bdbcb63..d47419a415c4d08a74ca7a453f5be5124a4975cd 100644 (file)
@@ -7,6 +7,7 @@ namespace Friendica\Module;
 use Friendica\BaseModule;
 use Friendica\Protocol\ActivityPub;
 use Friendica\Core\System;
+use Friendica\Database\DBA;
 
 /**
  * ActivityPub Inbox
@@ -29,9 +30,23 @@ class Inbox extends BaseModule
                        $filename = 'failed-activitypub';
                }
 
-               $tempfile = tempnam(get_temppath(), filename);
-               file_put_contents($tempfile, json_encode(['header' => $_SERVER, 'body' => $postdata]));
+               $tempfile = tempnam(get_temppath(), $filename);
+               file_put_contents($tempfile, json_encode(['argv' => $a->argv, 'header' => $_SERVER, 'body' => $postdata]));
 
-               System::httpExit(200);
+               logger('Incoming message stored under ' . $tempfile);
+
+               if (!empty($a->argv[1])) {
+                       $user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]);
+                       if (!DBA::isResult($user)) {
+                               System::httpExit(404);
+                       }
+                       $uid = $user['uid'];
+               } else {
+                       $uid = 0;
+               }
+
+               ActivityPub::processInbox($postdata, $_SERVER, $uid);
+
+               System::httpExit(202);
        }
 }