2018-09-10 21:07:25 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, 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
|
|
|
|
2021-07-17 20:28:46 +00:00
|
|
|
namespace Friendica\Module\ActivityPub;
|
2018-09-10 21:07:25 +00:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2019-01-24 02:22:39 +00:00
|
|
|
use Friendica\Core\Logger;
|
2021-11-04 20:29:59 +00:00
|
|
|
use Friendica\Core\System;
|
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
|
|
|
|
{
|
2021-11-20 14:38:03 +00:00
|
|
|
protected function rawContent(array $request = [])
|
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';
|
|
|
|
}
|
2021-11-04 20:29:59 +00:00
|
|
|
$tempfile = tempnam(System::getTempPath(), $filename);
|
2021-11-14 22:19:25 +00:00
|
|
|
file_put_contents($tempfile, json_encode(['parameters' => $this->parameters, 'header' => $_SERVER, 'body' => $postdata], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
|
2021-07-17 20:28:46 +00:00
|
|
|
Logger::notice('Incoming message stored', ['file' => $tempfile]);
|
2019-01-22 17:19:15 +00:00
|
|
|
}
|
2019-01-22 17:15:42 +00:00
|
|
|
|
2021-11-14 22:19:25 +00:00
|
|
|
if (!empty($this->parameters['nickname'])) {
|
|
|
|
$user = DBA::selectFirst('user', ['uid'], ['nickname' => $this->parameters['nickname']]);
|
2018-09-15 10:14:56 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|