]> git.mxchange.org Git - friendica.git/commitdiff
Disabled logging
authorMichael <heluecht@pirati.ca>
Mon, 24 Sep 2018 21:47:10 +0000 (21:47 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 24 Sep 2018 21:47:10 +0000 (21:47 +0000)
src/Module/Inbox.php
src/Protocol/ActivityPub.php

index 891211186aa9d667f7d59c4ff1ff2976e08429bb..4fc450d85a306e0b52323629174f8894bb403465 100644 (file)
@@ -25,6 +25,8 @@ class Inbox extends BaseModule
                        System::httpExit(400);
                }
 
+// Enable for test purposes
+/*
                if (HTTPSignature::getSigner($postdata, $_SERVER)) {
                        $filename = 'signed-activitypub';
                } else {
@@ -35,7 +37,7 @@ class Inbox extends BaseModule
                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)) {
index 4697e3f8fc0cd219256c6eea5ac019c3d2da8a39..62d6dac0f8642af1d3b97f267d60c2f139b33043 100644 (file)
@@ -363,7 +363,7 @@ class ActivityPub
                        }
                }
 
-               $parents = Item::select(['author-link', 'owner-link', 'gravity'], ['parent' => $item['parent']]);
+               $parents = Item::select(['id', 'author-link', 'owner-link', 'gravity'], ['parent' => $item['parent']]);
                while ($parent = Item::fetch($parents)) {
                        // Don't include data from future posts
                        if ($parent['id'] >= $item['id']) {
@@ -1535,6 +1535,11 @@ class ActivityPub
        private static function postItem($activity, $item, $body)
        {
                /// @todo What to do with $activity['context']?
+               if (empty($activity['author']))
+                       logger('Empty author');
+
+               if (empty($activity['owner']))
+                       logger('Empty owner');
 
                $item['network'] = Protocol::ACTIVITYPUB;
                $item['private'] = !in_array(0, $activity['receiver']);