mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Add AP Inbox logging back with config
This commit is contained in:
parent
7720b62799
commit
0d9209a74b
2 changed files with 17 additions and 0 deletions
|
@ -421,4 +421,9 @@ return [
|
|||
// 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,
|
||||
]
|
||||
];
|
||||
|
|
|
@ -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,6 +25,17 @@ class Inbox extends BaseModule
|
|||
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)) {
|
||||
|
|
Loading…
Reference in a new issue