3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Module;
24 use Friendica\BaseModule;
25 use Friendica\Core\System;
26 use Friendica\Database\DBA;
28 use Friendica\Model\Item;
29 use Friendica\Network\HTTPException;
30 use Friendica\Protocol\ActivityPub;
31 use Friendica\Util\Network;
36 class Objects extends BaseModule
38 public static function rawContent(array $parameters = [])
40 if (empty($parameters['guid'])) {
41 throw new HTTPException\BadRequestException();
44 if (!ActivityPub::isRequest()) {
45 DI::baseUrl()->redirect(str_replace('objects/', 'display/', DI::args()->getQueryString()));
48 /// @todo Add Authentication to enable fetching of non public content
49 // $requester = HTTPSignature::getSigner('', $_SERVER);
51 $item = Item::selectFirst(
52 ['id', 'origin', 'author-link', 'changed'],
54 'guid' => $parameters['guid'],
55 'private' => [Item::PUBLIC, Item::UNLISTED]
57 ['order' => ['origin' => true]]
59 // Valid items are original post or posted from this node (including in the case of a forum)
60 if (!DBA::isResult($item) || !$item['origin'] && (parse_url($item['author-link'], PHP_URL_HOST) != parse_url(DI::baseUrl()->get(), PHP_URL_HOST))) {
61 throw new HTTPException\NotFoundException();
64 $etag = md5($parameters['guid'] . '-' . $item['changed']);
65 $last_modified = $item['changed'];
66 Network::checkEtagModified($etag, $last_modified);
68 if (empty($parameters['activity'])) {
69 $activity = ActivityPub\Transmitter::createActivityFromItem($item['id'], true);
70 $activity['type'] = $activity['type'] == 'Update' ? 'Create' : $activity['type'];
72 // Only display "Create" activity objects here, no reshares or anything else
73 if (empty($activity['object']) || ($activity['type'] != 'Create')) {
74 throw new HTTPException\NotFoundException();
77 $data = ['@context' => ActivityPub::CONTEXT];
78 $data = array_merge($data, $activity['object']);
79 } elseif (in_array($parameters['activity'], ['Create', 'Announce', 'Update',
80 'Like', 'Dislike', 'Accept', 'Reject', 'TentativeAccept', 'Follow', 'Add'])) {
81 $data = ActivityPub\Transmitter::createActivityFromItem($item['id']);
83 throw new HTTPException\NotFoundException();
85 if ($parameters['activity'] != 'Create') {
86 $data['type'] = $parameters['activity'];
87 $data['id'] = str_replace('/Create', '/' . $parameters['activity'], $data['id']);
90 throw new HTTPException\NotFoundException();
93 // Relaxed CORS header for public items
94 header('Access-Control-Allow-Origin: *');
95 System::jsonExit($data, 'application/activity+json');