2018-09-10 23:07:25 +02:00
|
|
|
<?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-10 23:07:25 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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-10 23:07:25 +02:00
|
|
|
}
|
|
|
|
|
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-12 08:01:28 +02:00
|
|
|
file_put_contents($tempfile, json_encode(['header' => $_SERVER, 'body' => $postdata]));
|
2018-09-10 23:07:25 +02:00
|
|
|
|
2018-09-12 08:01:28 +02:00
|
|
|
System::httpExit(200);
|
2018-09-10 23:07:25 +02:00
|
|
|
}
|
|
|
|
}
|