friendica/src/Module/Inbox.php

53 lines
1.1 KiB
PHP
Raw Normal View History

<?php
/**
* @file src/Module/Inbox.php
*/
namespace Friendica\Module;
use Friendica\BaseModule;
2018-09-12 23:30:10 +02:00
use Friendica\Protocol\ActivityPub;
2018-09-12 08:01:28 +02:00
use Friendica\Core\System;
2018-09-15 12:14:56 +02:00
use Friendica\Database\DBA;
/**
* ActivityPub Inbox
*/
class Inbox extends BaseModule
{
public static function init()
{
$a = self::getApp();
$postdata = file_get_contents('php://input');
2018-09-12 08:01:28 +02:00
if (empty($postdata)) {
System::httpExit(400);
}
2018-09-12 23:30:10 +02:00
if (ActivityPub::verifySignature($postdata, $_SERVER)) {
$filename = 'signed-activitypub';
} else {
$filename = 'failed-activitypub';
}
2018-09-12 23:33:44 +02:00
$tempfile = tempnam(get_temppath(), $filename);
2018-09-15 12:14:56 +02:00
file_put_contents($tempfile, json_encode(['argv' => $a->argv, 'header' => $_SERVER, 'body' => $postdata]));
logger('Incoming message stored under ' . $tempfile);
2018-09-15 12:14:56 +02:00
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);
}
}