2018-09-10 21:07:25 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Module/Inbox.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2018-09-12 21:30:10 +00:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2018-09-12 06:01:28 +00:00
|
|
|
use Friendica\Core\System;
|
2018-09-15 10:14:56 +00:00
|
|
|
use Friendica\Database\DBA;
|
2018-09-20 18:16:14 +00:00
|
|
|
use Friendica\Util\HTTPSignature;
|
2018-09-10 21:07:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ActivityPub Inbox
|
|
|
|
*/
|
|
|
|
class Inbox extends BaseModule
|
|
|
|
{
|
2018-09-30 13:15:10 +00:00
|
|
|
public static function rawContent()
|
2018-09-10 21:07:25 +00:00
|
|
|
{
|
|
|
|
$a = self::getApp();
|
|
|
|
|
|
|
|
$postdata = file_get_contents('php://input');
|
|
|
|
|
2018-09-12 06:01:28 +00:00
|
|
|
if (empty($postdata)) {
|
|
|
|
System::httpExit(400);
|
2018-09-10 21:07:25 +00:00
|
|
|
}
|
|
|
|
|
2018-09-24 21:47:10 +00:00
|
|
|
// Enable for test purposes
|
|
|
|
/*
|
2018-09-21 22:31:33 +00:00
|
|
|
if (HTTPSignature::getSigner($postdata, $_SERVER)) {
|
2018-09-12 21:30:10 +00:00
|
|
|
$filename = 'signed-activitypub';
|
|
|
|
} else {
|
|
|
|
$filename = 'failed-activitypub';
|
|
|
|
}
|
|
|
|
|
2018-09-12 21:33:44 +00:00
|
|
|
$tempfile = tempnam(get_temppath(), $filename);
|
2018-09-21 22:31:33 +00:00
|
|
|
file_put_contents($tempfile, json_encode(['argv' => $a->argv, 'header' => $_SERVER, 'body' => $postdata], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
|
2018-09-10 21:07:25 +00:00
|
|
|
|
2018-09-14 16:51:32 +00:00
|
|
|
logger('Incoming message stored under ' . $tempfile);
|
2018-09-24 21:47:10 +00:00
|
|
|
*/
|
2018-09-15 10:14:56 +00: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);
|
2018-09-14 16:51:32 +00:00
|
|
|
|
2018-09-17 05:51:05 +00:00
|
|
|
System::httpExit(202);
|
2018-09-10 21:07:25 +00:00
|
|
|
}
|
|
|
|
}
|