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); } // @TODO: Replace with parameter from router if (!empty($a->argv[1])) { $user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]); if (!DBA::isResult($user)) { throw new \Friendica\Network\HTTPException\NotFoundException(); } $uid = $user['uid']; } else { $uid = 0; } ActivityPub\Receiver::processInbox($postdata, $_SERVER, $uid); throw new \Friendica\Network\HTTPException\AcceptedException(); } }