2018-09-10 21:07:25 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-09-10 21:07:25 +00:00
|
|
|
*/
|
2019-01-22 17:19:15 +00:00
|
|
|
|
2018-09-10 21:07:25 +00:00
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2019-01-24 02:22:39 +00:00
|
|
|
use Friendica\Core\Logger;
|
2018-09-15 10:14:56 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2019-05-01 19:29:04 +00:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2019-01-22 17:15:42 +00:00
|
|
|
use Friendica\Util\HTTPSignature;
|
2019-07-30 22:26:01 +00:00
|
|
|
use Friendica\Util\Network;
|
2018-09-10 21:07:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ActivityPub Inbox
|
|
|
|
*/
|
|
|
|
class Inbox extends BaseModule
|
|
|
|
{
|
2019-11-05 21:48:54 +00:00
|
|
|
public static function rawContent(array $parameters = [])
|
2018-09-10 21:07:25 +00:00
|
|
|
{
|
2019-12-15 21:34:11 +00:00
|
|
|
$a = DI::app();
|
2018-09-10 21:07:25 +00:00
|
|
|
|
2019-07-30 22:26:01 +00:00
|
|
|
$postdata = Network::postdata();
|
2018-09-10 21:07:25 +00:00
|
|
|
|
2018-09-12 06:01:28 +00:00
|
|
|
if (empty($postdata)) {
|
2019-05-02 03:16:10 +00:00
|
|
|
throw new \Friendica\Network\HTTPException\BadRequestException();
|
2018-09-10 21:07:25 +00:00
|
|
|
}
|
|
|
|
|
2020-01-19 20:21:13 +00:00
|
|
|
if (DI::config()->get('debug', 'ap_inbox_log')) {
|
2019-01-22 17:19:15 +00:00
|
|
|
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);
|
|
|
|
}
|
2019-01-22 17:15:42 +00:00
|
|
|
|
2019-05-01 19:29:04 +00:00
|
|
|
// @TODO: Replace with parameter from router
|
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)) {
|
2019-05-02 03:16:10 +00:00
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException();
|
2018-09-15 10:14:56 +00:00
|
|
|
}
|
|
|
|
$uid = $user['uid'];
|
|
|
|
} else {
|
|
|
|
$uid = 0;
|
|
|
|
}
|
|
|
|
|
2018-10-03 09:15:38 +00:00
|
|
|
ActivityPub\Receiver::processInbox($postdata, $_SERVER, $uid);
|
2018-09-14 16:51:32 +00:00
|
|
|
|
2019-05-02 03:16:10 +00:00
|
|
|
throw new \Friendica\Network\HTTPException\AcceptedException();
|
2018-09-10 21:07:25 +00:00
|
|
|
}
|
|
|
|
}
|