Better http answers

This commit is contained in:
Michael 2018-09-12 06:01:28 +00:00
parent 1afa6523bc
commit 8c07baf54b
2 changed files with 8 additions and 18 deletions

View file

@ -9,6 +9,7 @@ use Friendica\Database\DBA;
use Friendica\Model\Contact;
use Friendica\Util\HTTPSignature;
use Friendica\Util\Network;
use Friendica\Core\System;
/**
* ActivityPub Inbox
@ -18,30 +19,16 @@ class Inbox extends BaseModule
public static function init()
{
$a = self::getApp();
logger('Blubb: init 1');
$postdata = file_get_contents('php://input');
$obj = json_decode($postdata);
if (empty($obj)) {
exit();
if (empty($postdata)) {
System::httpExit(400);
}
$tempfile = tempnam(get_temppath(), 'activitypub');
file_put_contents($tempfile, json_encode(['header' => $_SERVER, 'body' => $obj]));
file_put_contents($tempfile, json_encode(['header' => $_SERVER, 'body' => $postdata]));
logger('Blubb: init ' . $tempfile);
exit();
// goaway($dest);
}
public static function post()
{
$a = self::getApp();
logger('Blubb: post');
exit();
// goaway($dest);
System::httpExit(200);
}
}