// Must be writable by the ejabberd process. if set then it will prevent the running of multiple processes.
'lockpath' => '',
],
+ 'debug' => [
+ // ap_inbox_log (Boolean)
+ // Logs every call to /inbox as a JSON file in Friendica's temporary directory
+ 'ap_inbox_log' => false,
+ ]
];
use Friendica\Protocol\ActivityPub;
use Friendica\Core\System;
use Friendica\Database\DBA;
+use Friendica\Util\HTTPSignature;
/**
* ActivityPub Inbox
System::httpExit(400);
}
+ if (Config::get('debug', 'ap_inbox_log')) {
+ 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], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
+ Logger::log('Incoming message stored under ' . $tempfile);
+ }
+
if (!empty($a->argv[1])) {
$user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]);
if (!DBA::isResult($user)) {