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\Protocol;
24 use Friendica\Util\JsonLD;
25 use Friendica\Util\Network;
26 use Friendica\Core\Protocol;
27 use Friendica\Model\APContact;
28 use Friendica\Model\User;
29 use Friendica\Util\HTTPSignature;
32 * ActivityPub Protocol class
34 * The ActivityPub Protocol is a message exchange protocol defined by the W3C.
35 * https://www.w3.org/TR/activitypub/
36 * https://www.w3.org/TR/activitystreams-core/
37 * https://www.w3.org/TR/activitystreams-vocabulary/
39 * https://blog.joinmastodon.org/2018/06/how-to-implement-a-basic-activitypub-server/
40 * https://blog.joinmastodon.org/2018/07/how-to-make-friends-and-verify-requests/
42 * Digest: https://tools.ietf.org/html/rfc5843
43 * https://tools.ietf.org/html/draft-cavage-http-signatures-10#ref-15
45 * Mastodon implementation of supported activities:
46 * https://github.com/tootsuite/mastodon/blob/master/app/lib/activitypub/activity.rb#L26
49 * http://docs-funkwhale-funkwhale-549-music-federation-documentation.preview.funkwhale.audio/federation/index.html
52 * - Polling the outboxes for missing content?
54 * Missing parts from DFRN:
61 const PUBLIC_COLLECTION = 'https://www.w3.org/ns/activitystreams#Public';
62 const CONTEXT = ['https://www.w3.org/ns/activitystreams', 'https://w3id.org/security/v1',
63 ['vcard' => 'http://www.w3.org/2006/vcard/ns#',
64 'dfrn' => 'http://purl.org/macgirvin/dfrn/1.0/',
65 'diaspora' => 'https://diasporafoundation.org/ns/',
66 'litepub' => 'http://litepub.social/ns#',
67 'manuallyApprovesFollowers' => 'as:manuallyApprovesFollowers',
68 'sensitive' => 'as:sensitive', 'Hashtag' => 'as:Hashtag',
69 'directMessage' => 'litepub:directMessage']];
70 const ACCOUNT_TYPES = ['Person', 'Organization', 'Service', 'Group', 'Application'];
72 * Checks if the web request is done for the AP protocol
74 * @return bool is it AP?
76 public static function isRequest()
78 return stristr($_SERVER['HTTP_ACCEPT'] ?? '', 'application/activity+json') ||
79 stristr($_SERVER['HTTP_ACCEPT'] ?? '', 'application/ld+json');
83 * Fetches ActivityPub content from the given url
85 * @param string $url content url
86 * @param integer $uid User ID for the signature
88 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
90 public static function fetchContent($url, $uid = 0)
93 return HTTPSignature::fetch($url, $uid);
96 $curlResult = Network::curl($url, false, ['accept_content' => 'application/activity+json, application/ld+json']);
97 if (!$curlResult->isSuccess() || empty($curlResult->getBody())) {
101 $content = json_decode($curlResult->getBody(), true);
103 if (empty($content) || !is_array($content)) {
110 private static function getAccountType($apcontact)
114 switch($apcontact['type']) {
116 $accounttype = User::ACCOUNT_TYPE_PERSON;
119 $accounttype = User::ACCOUNT_TYPE_ORGANISATION;
122 $accounttype = User::ACCOUNT_TYPE_NEWS;
125 $accounttype = User::ACCOUNT_TYPE_COMMUNITY;
128 $accounttype = User::ACCOUNT_TYPE_RELAY;
136 * Fetches a profile from the given url into an array that is compatible to Probe::uri
138 * @param string $url profile url
139 * @param boolean $update Update the profile
141 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
142 * @throws \ImagickException
144 public static function probeProfile($url, $update = true)
146 $apcontact = APContact::getByURL($url, $update);
147 if (empty($apcontact)) {
151 $profile = ['network' => Protocol::ACTIVITYPUB];
152 $profile['nick'] = $apcontact['nick'];
153 $profile['name'] = $apcontact['name'];
154 $profile['guid'] = $apcontact['uuid'];
155 $profile['url'] = $apcontact['url'];
156 $profile['addr'] = $apcontact['addr'];
157 $profile['alias'] = $apcontact['alias'];
158 $profile['following'] = $apcontact['following'];
159 $profile['followers'] = $apcontact['followers'];
160 $profile['inbox'] = $apcontact['inbox'];
161 $profile['outbox'] = $apcontact['outbox'];
162 $profile['sharedinbox'] = $apcontact['sharedinbox'];
163 $profile['photo'] = $apcontact['photo'];
164 $profile['account-type'] = self::getAccountType($apcontact);
165 $profile['community'] = ($profile['account-type'] == User::ACCOUNT_TYPE_COMMUNITY);
166 // $profile['keywords']
167 // $profile['location']
168 $profile['about'] = $apcontact['about'];
169 $profile['batch'] = $apcontact['sharedinbox'];
170 $profile['notify'] = $apcontact['inbox'];
171 $profile['poll'] = $apcontact['outbox'];
172 $profile['pubkey'] = $apcontact['pubkey'];
173 $profile['baseurl'] = $apcontact['baseurl'];
175 // Remove all "null" fields
176 foreach ($profile as $field => $content) {
177 if (is_null($content)) {
178 unset($profile[$field]);
186 * Fetches activities from the outbox of a given profile and processes it
189 * @param integer $uid User ID
190 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
192 public static function fetchOutbox($url, $uid)
194 $data = self::fetchContent($url);
199 if (!empty($data['orderedItems'])) {
200 $items = $data['orderedItems'];
201 } elseif (!empty($data['first']['orderedItems'])) {
202 $items = $data['first']['orderedItems'];
203 } elseif (!empty($data['first'])) {
204 self::fetchOutbox($data['first'], $uid);
210 foreach ($items as $activity) {
211 $ldactivity = JsonLD::compact($activity);
212 ActivityPub\Receiver::processActivity($ldactivity, json_encode($activity), $uid, true);
217 * Checks if the given contact url does support ActivityPub
219 * @param string $url profile url
220 * @param boolean $update true = always update, false = never update, null = update when not found or outdated
222 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
223 * @throws \ImagickException
225 public static function isSupportedByContactUrl($url, $update = null)
227 return !empty(APContact::getByURL($url, $update));