2018-09-10 17:07:25 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Protocol/ActivityPub.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Protocol;
|
|
|
|
|
|
|
|
use Friendica\Util\Network;
|
|
|
|
use Friendica\Core\Protocol;
|
2018-09-26 13:24:29 -04:00
|
|
|
use Friendica\Model\APContact;
|
2018-09-10 17:07:25 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief ActivityPub Protocol class
|
|
|
|
* The ActivityPub Protocol is a message exchange protocol defined by the W3C.
|
|
|
|
* https://www.w3.org/TR/activitypub/
|
|
|
|
* https://www.w3.org/TR/activitystreams-core/
|
|
|
|
* https://www.w3.org/TR/activitystreams-vocabulary/
|
|
|
|
*
|
|
|
|
* https://blog.joinmastodon.org/2018/06/how-to-implement-a-basic-activitypub-server/
|
|
|
|
* https://blog.joinmastodon.org/2018/07/how-to-make-friends-and-verify-requests/
|
2018-09-12 02:01:28 -04:00
|
|
|
*
|
|
|
|
* Digest: https://tools.ietf.org/html/rfc5843
|
|
|
|
* https://tools.ietf.org/html/draft-cavage-http-signatures-10#ref-15
|
2018-09-15 14:54:45 -04:00
|
|
|
*
|
2018-09-23 13:29:31 -04:00
|
|
|
* Mastodon implementation of supported activities:
|
|
|
|
* https://github.com/tootsuite/mastodon/blob/master/app/lib/activitypub/activity.rb#L26
|
|
|
|
*
|
2018-10-04 01:29:22 -04:00
|
|
|
* Funkwhale:
|
|
|
|
* http://docs-funkwhale-funkwhale-549-music-federation-documentation.preview.funkwhale.audio/federation/index.html
|
|
|
|
*
|
2018-09-15 06:14:56 -04:00
|
|
|
* To-do:
|
2018-09-23 13:29:31 -04:00
|
|
|
* - Polling the outboxes for missing content?
|
2018-09-10 17:07:25 -04:00
|
|
|
*/
|
|
|
|
class ActivityPub
|
|
|
|
{
|
2018-09-28 11:25:20 -04:00
|
|
|
const PUBLIC_COLLECTION = 'https://www.w3.org/ns/activitystreams#Public';
|
2018-09-23 13:29:31 -04:00
|
|
|
const CONTEXT = ['https://www.w3.org/ns/activitystreams', 'https://w3id.org/security/v1',
|
2018-09-26 18:45:13 -04:00
|
|
|
['vcard' => 'http://www.w3.org/2006/vcard/ns#',
|
2018-09-27 07:39:17 -04:00
|
|
|
'diaspora' => 'https://diasporafoundation.org/ns/',
|
2018-09-26 16:03:46 -04:00
|
|
|
'manuallyApprovesFollowers' => 'as:manuallyApprovesFollowers',
|
|
|
|
'sensitive' => 'as:sensitive', 'Hashtag' => 'as:Hashtag']];
|
2018-09-30 16:26:30 -04:00
|
|
|
const ACCOUNT_TYPES = ['Person', 'Organization', 'Service', 'Group', 'Application'];
|
2018-09-26 17:38:37 -04:00
|
|
|
/**
|
2018-10-06 00:18:40 -04:00
|
|
|
* Checks if the web request is done for the AP protocol
|
2018-09-26 17:38:37 -04:00
|
|
|
*
|
|
|
|
* @return is it AP?
|
|
|
|
*/
|
2018-09-16 16:12:48 -04:00
|
|
|
public static function isRequest()
|
|
|
|
{
|
|
|
|
return stristr(defaults($_SERVER, 'HTTP_ACCEPT', ''), 'application/activity+json') ||
|
|
|
|
stristr(defaults($_SERVER, 'HTTP_ACCEPT', ''), 'application/ld+json');
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:25 -04:00
|
|
|
/**
|
2018-10-03 05:15:38 -04:00
|
|
|
* Fetches ActivityPub content from the given url
|
2018-09-26 17:38:37 -04:00
|
|
|
*
|
2018-10-03 05:15:38 -04:00
|
|
|
* @param string $url content url
|
|
|
|
* @return array
|
2018-09-26 17:38:37 -04:00
|
|
|
*/
|
2018-10-03 05:15:38 -04:00
|
|
|
public static function fetchContent($url)
|
2018-09-10 17:07:25 -04:00
|
|
|
{
|
2018-10-10 15:08:43 -04:00
|
|
|
$curlResult = Network::curl($url, false, $redirects, ['accept_content' => 'application/activity+json, application/ld+json']);
|
|
|
|
if (!$curlResult->isSuccess() || empty($curlResult->getBody())) {
|
2018-09-10 17:07:25 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-10-10 15:08:43 -04:00
|
|
|
return json_decode($curlResult->getBody(), true);
|
2018-09-14 17:10:49 -04:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:38:37 -04:00
|
|
|
/**
|
2018-10-03 05:15:38 -04:00
|
|
|
* Fetches a profile from the given url into an array that is compatible to Probe::uri
|
2018-09-26 17:38:37 -04:00
|
|
|
*
|
2018-10-03 05:15:38 -04:00
|
|
|
* @param string $url profile url
|
|
|
|
* @return array
|
2018-09-26 17:38:37 -04:00
|
|
|
*/
|
2018-10-03 05:15:38 -04:00
|
|
|
public static function probeProfile($url)
|
2018-09-14 17:10:49 -04:00
|
|
|
{
|
2018-10-03 05:15:38 -04:00
|
|
|
$apcontact = APContact::getByURL($url, true);
|
|
|
|
if (empty($apcontact)) {
|
|
|
|
return false;
|
2018-09-14 17:10:49 -04:00
|
|
|
}
|
|
|
|
|
2018-10-03 05:15:38 -04:00
|
|
|
$profile = ['network' => Protocol::ACTIVITYPUB];
|
|
|
|
$profile['nick'] = $apcontact['nick'];
|
|
|
|
$profile['name'] = $apcontact['name'];
|
|
|
|
$profile['guid'] = $apcontact['uuid'];
|
|
|
|
$profile['url'] = $apcontact['url'];
|
|
|
|
$profile['addr'] = $apcontact['addr'];
|
|
|
|
$profile['alias'] = $apcontact['alias'];
|
|
|
|
$profile['photo'] = $apcontact['photo'];
|
|
|
|
// $profile['community']
|
|
|
|
// $profile['keywords']
|
|
|
|
// $profile['location']
|
|
|
|
$profile['about'] = $apcontact['about'];
|
|
|
|
$profile['batch'] = $apcontact['sharedinbox'];
|
|
|
|
$profile['notify'] = $apcontact['inbox'];
|
|
|
|
$profile['poll'] = $apcontact['outbox'];
|
|
|
|
$profile['pubkey'] = $apcontact['pubkey'];
|
|
|
|
$profile['baseurl'] = $apcontact['baseurl'];
|
2018-09-14 17:10:49 -04:00
|
|
|
|
2018-10-03 05:15:38 -04:00
|
|
|
// Remove all "null" fields
|
|
|
|
foreach ($profile as $field => $content) {
|
|
|
|
if (is_null($content)) {
|
|
|
|
unset($profile[$field]);
|
2018-09-14 17:10:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 05:15:38 -04:00
|
|
|
return $profile;
|
2018-09-16 05:06:09 -04:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:38:37 -04:00
|
|
|
/**
|
2018-10-06 00:18:40 -04:00
|
|
|
* Fetches activities from the outbox of a given profile and processes it
|
2018-09-26 17:38:37 -04:00
|
|
|
*
|
2018-10-06 00:18:40 -04:00
|
|
|
* @param string $url
|
2018-10-03 05:15:38 -04:00
|
|
|
* @param integer $uid User ID
|
2018-09-30 16:26:30 -04:00
|
|
|
*/
|
2018-10-03 05:15:38 -04:00
|
|
|
public static function fetchOutbox($url, $uid)
|
2018-09-30 16:26:30 -04:00
|
|
|
{
|
2018-10-03 05:15:38 -04:00
|
|
|
$data = self::fetchContent($url);
|
|
|
|
if (empty($data)) {
|
2018-09-30 16:26:30 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-03 05:15:38 -04:00
|
|
|
if (!empty($data['orderedItems'])) {
|
|
|
|
$items = $data['orderedItems'];
|
|
|
|
} elseif (!empty($data['first']['orderedItems'])) {
|
|
|
|
$items = $data['first']['orderedItems'];
|
|
|
|
} elseif (!empty($data['first'])) {
|
|
|
|
self::fetchOutbox($data['first'], $uid);
|
2018-09-30 16:26:30 -04:00
|
|
|
return;
|
|
|
|
} else {
|
2018-10-03 05:15:38 -04:00
|
|
|
$items = [];
|
2018-09-15 14:54:45 -04:00
|
|
|
}
|
|
|
|
|
2018-10-03 05:15:38 -04:00
|
|
|
foreach ($items as $activity) {
|
2018-10-07 13:17:06 -04:00
|
|
|
$ldactivity = JsonLD::compact($activity);
|
|
|
|
ActivityPub\Receiver::processActivity($ldactivity, '', $uid, true);
|
2018-09-15 14:54:45 -04:00
|
|
|
}
|
|
|
|
}
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|