2018-09-30 08:21:57 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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-30 08:21:57 -04:00
|
|
|
*/
|
2020-02-09 10:18:46 -05:00
|
|
|
|
2018-09-30 08:21:57 -04:00
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2020-04-05 18:00:46 -04:00
|
|
|
use Friendica\Core\System;
|
2018-09-30 08:21:57 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-05-01 15:29:04 -04:00
|
|
|
use Friendica\Model\Item;
|
2020-04-05 18:00:46 -04:00
|
|
|
use Friendica\Network\HTTPException;
|
2019-05-01 15:29:04 -04:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2020-04-05 18:00:46 -04:00
|
|
|
use Friendica\Util\Network;
|
2018-09-30 08:21:57 -04:00
|
|
|
|
|
|
|
/**
|
2018-10-02 16:14:28 -04:00
|
|
|
* ActivityPub Objects
|
2018-09-30 08:21:57 -04:00
|
|
|
*/
|
2018-10-02 16:14:28 -04:00
|
|
|
class Objects extends BaseModule
|
2018-09-30 08:21:57 -04:00
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function rawContent(array $parameters = [])
|
2018-09-30 08:21:57 -04:00
|
|
|
{
|
2020-04-05 18:00:46 -04:00
|
|
|
if (empty($parameters['guid'])) {
|
|
|
|
throw new HTTPException\BadRequestException();
|
2018-09-30 08:21:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!ActivityPub::isRequest()) {
|
2019-12-15 19:30:34 -05:00
|
|
|
DI::baseUrl()->redirect(str_replace('objects/', 'display/', DI::args()->getQueryString()));
|
2018-09-30 08:21:57 -04:00
|
|
|
}
|
|
|
|
|
2019-01-15 01:31:12 -05:00
|
|
|
/// @todo Add Authentication to enable fetching of non public content
|
|
|
|
// $requester = HTTPSignature::getSigner('', $_SERVER);
|
|
|
|
|
2020-04-05 18:00:46 -04:00
|
|
|
$item = Item::selectFirst(
|
|
|
|
['id', 'origin', 'author-link', 'changed'],
|
|
|
|
[
|
|
|
|
'guid' => $parameters['guid'],
|
|
|
|
'private' => [Item::PUBLIC, Item::UNLISTED]
|
|
|
|
],
|
|
|
|
['order' => ['origin' => true]]
|
|
|
|
);
|
|
|
|
// Valid items are original post or posted from this node (including in the case of a forum)
|
2020-07-11 03:15:54 -04:00
|
|
|
if (!DBA::isResult($item) || !$item['origin'] && (parse_url($item['author-link'], PHP_URL_HOST) != parse_url(DI::baseUrl()->get(), PHP_URL_HOST))) {
|
2020-04-05 18:00:46 -04:00
|
|
|
throw new HTTPException\NotFoundException();
|
2019-01-26 07:03:09 -05:00
|
|
|
}
|
|
|
|
|
2020-04-05 18:00:46 -04:00
|
|
|
$etag = md5($parameters['guid'] . '-' . $item['changed']);
|
|
|
|
$last_modified = $item['changed'];
|
|
|
|
Network::checkEtagModified($etag, $last_modified);
|
|
|
|
|
2020-05-27 15:05:33 -04:00
|
|
|
if (empty($parameters['activity'])) {
|
|
|
|
$activity = ActivityPub\Transmitter::createActivityFromItem($item['id'], true);
|
|
|
|
$activity['type'] = $activity['type'] == 'Update' ? 'Create' : $activity['type'];
|
2020-03-26 02:52:48 -04:00
|
|
|
|
2020-05-27 15:05:33 -04:00
|
|
|
// Only display "Create" activity objects here, no reshares or anything else
|
|
|
|
if (empty($activity['object']) || ($activity['type'] != 'Create')) {
|
|
|
|
throw new HTTPException\NotFoundException();
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = ['@context' => ActivityPub::CONTEXT];
|
|
|
|
$data = array_merge($data, $activity['object']);
|
|
|
|
} elseif (in_array($parameters['activity'], ['Create', 'Announce', 'Update',
|
|
|
|
'Like', 'Dislike', 'Accept', 'Reject', 'TentativeAccept', 'Follow', 'Add'])) {
|
|
|
|
$data = ActivityPub\Transmitter::createActivityFromItem($item['id']);
|
|
|
|
if (empty($data)) {
|
|
|
|
throw new HTTPException\NotFoundException();
|
|
|
|
}
|
|
|
|
if ($parameters['activity'] != 'Create') {
|
|
|
|
$data['type'] = $parameters['activity'];
|
|
|
|
$data['id'] = str_replace('/Create', '/' . $parameters['activity'], $data['id']);
|
|
|
|
}
|
|
|
|
} else {
|
2020-04-05 18:00:46 -04:00
|
|
|
throw new HTTPException\NotFoundException();
|
2019-12-04 02:02:39 -05:00
|
|
|
}
|
|
|
|
|
2020-04-05 18:02:38 -04:00
|
|
|
// Relaxed CORS header for public items
|
|
|
|
header('Access-Control-Allow-Origin: *');
|
2020-04-05 18:00:46 -04:00
|
|
|
System::jsonExit($data, 'application/activity+json');
|
2018-09-30 08:21:57 -04:00
|
|
|
}
|
|
|
|
}
|