friendica/src/Protocol/ActivityPub.php

212 lines
6.2 KiB
PHP
Raw Normal View History

<?php
/**
* @file src/Protocol/ActivityPub.php
*/
namespace Friendica\Protocol;
use Friendica\Util\JsonLD;
use Friendica\Util\Network;
use Friendica\Core\Protocol;
use Friendica\Model\APContact;
2019-07-04 21:31:42 +02:00
use Friendica\Model\User;
use Friendica\Util\HTTPSignature;
/**
* @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 08:01:28 +02:00
*
* Digest: https://tools.ietf.org/html/rfc5843
* https://tools.ietf.org/html/draft-cavage-http-signatures-10#ref-15
*
2018-09-23 19:29:31 +02:00
* Mastodon implementation of supported activities:
* https://github.com/tootsuite/mastodon/blob/master/app/lib/activitypub/activity.rb#L26
*
2018-10-04 07:29:22 +02:00
* Funkwhale:
* http://docs-funkwhale-funkwhale-549-music-federation-documentation.preview.funkwhale.audio/federation/index.html
*
2018-09-15 12:14:56 +02:00
* To-do:
2018-09-23 19:29:31 +02:00
* - Polling the outboxes for missing content?
2018-10-24 21:19:51 +02:00
*
* Missing parts from DFRN:
* - Public Forum
* - Private Forum
* - Relocation
*/
class ActivityPub
{
const PUBLIC_COLLECTION = 'https://www.w3.org/ns/activitystreams#Public';
2018-09-23 19:29:31 +02:00
const CONTEXT = ['https://www.w3.org/ns/activitystreams', 'https://w3id.org/security/v1',
2018-09-27 00:45:13 +02:00
['vcard' => 'http://www.w3.org/2006/vcard/ns#',
'dfrn' => 'http://purl.org/macgirvin/dfrn/1.0/',
'diaspora' => 'https://diasporafoundation.org/ns/',
'litepub' => 'http://litepub.social/ns#',
2018-09-26 22:03:46 +02:00
'manuallyApprovesFollowers' => 'as:manuallyApprovesFollowers',
'sensitive' => 'as:sensitive', 'Hashtag' => 'as:Hashtag',
'directMessage' => 'litepub:directMessage']];
const ACCOUNT_TYPES = ['Person', 'Organization', 'Service', 'Group', 'Application'];
2018-09-26 23:38:37 +02:00
/**
2018-10-06 06:18:40 +02:00
* Checks if the web request is done for the AP protocol
2018-09-26 23:38:37 +02:00
*
2019-01-06 22:06:53 +01:00
* @return bool is it AP?
2018-09-26 23:38:37 +02:00
*/
public static function isRequest()
{
return stristr($_SERVER['HTTP_ACCEPT'] ?? '', 'application/activity+json') ||
stristr($_SERVER['HTTP_ACCEPT'] ?? '', 'application/ld+json');
}
/**
2018-10-03 11:15:38 +02:00
* Fetches ActivityPub content from the given url
2018-09-26 23:38:37 +02:00
*
* @param string $url content url
* @param integer $uid User ID for the signature
2018-10-03 11:15:38 +02:00
* @return array
2019-01-06 22:06:53 +01:00
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
2018-09-26 23:38:37 +02:00
*/
public static function fetchContent($url, $uid = 0)
{
if (!empty($uid)) {
return HTTPSignature::fetch($url, $uid);
}
$curlResult = Network::curl($url, false, ['accept_content' => 'application/activity+json, application/ld+json']);
if (!$curlResult->isSuccess() || empty($curlResult->getBody())) {
return false;
}
$content = json_decode($curlResult->getBody(), true);
if (empty($content) || !is_array($content)) {
return false;
}
return $content;
}
2019-07-04 21:31:42 +02:00
private static function getAccountType($apcontact)
{
$accounttype = -1;
switch($apcontact['type']) {
case 'Person':
$accounttype = User::ACCOUNT_TYPE_PERSON;
break;
case 'Organization':
$accounttype = User::ACCOUNT_TYPE_ORGANISATION;
break;
case 'Service':
$accounttype = User::ACCOUNT_TYPE_NEWS;
break;
case 'Group':
$accounttype = User::ACCOUNT_TYPE_COMMUNITY;
break;
case 'Application':
$accounttype = User::ACCOUNT_TYPE_RELAY;
break;
}
return $accounttype;
}
2018-09-26 23:38:37 +02:00
/**
2018-10-03 11:15:38 +02:00
* Fetches a profile from the given url into an array that is compatible to Probe::uri
2018-09-26 23:38:37 +02:00
*
* @param string $url profile url
* @param boolean $update Update the profile
2018-10-03 11:15:38 +02:00
* @return array
2019-01-06 22:06:53 +01:00
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
* @throws \ImagickException
2018-09-26 23:38:37 +02:00
*/
public static function probeProfile($url, $update = true)
{
$apcontact = APContact::getByURL($url, $update);
2018-10-03 11:15:38 +02:00
if (empty($apcontact)) {
return false;
}
2018-10-03 11:15:38 +02: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['following'] = $apcontact['following'];
$profile['followers'] = $apcontact['followers'];
$profile['inbox'] = $apcontact['inbox'];
$profile['outbox'] = $apcontact['outbox'];
$profile['sharedinbox'] = $apcontact['sharedinbox'];
2018-10-03 11:15:38 +02:00
$profile['photo'] = $apcontact['photo'];
2019-07-04 21:31:42 +02:00
$profile['account-type'] = self::getAccountType($apcontact);
$profile['community'] = ($profile['account-type'] == User::ACCOUNT_TYPE_COMMUNITY);
2018-10-03 11:15:38 +02:00
// $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-10-03 11:15:38 +02:00
// Remove all "null" fields
foreach ($profile as $field => $content) {
if (is_null($content)) {
unset($profile[$field]);
}
}
2018-10-03 11:15:38 +02:00
return $profile;
}
2018-09-26 23:38:37 +02:00
/**
2018-10-06 06:18:40 +02:00
* Fetches activities from the outbox of a given profile and processes it
2018-09-26 23:38:37 +02:00
*
2019-01-06 22:06:53 +01:00
* @param string $url
2018-10-03 11:15:38 +02:00
* @param integer $uid User ID
2019-01-06 22:06:53 +01:00
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
2018-10-03 11:15:38 +02:00
public static function fetchOutbox($url, $uid)
{
2018-10-03 11:15:38 +02:00
$data = self::fetchContent($url);
if (empty($data)) {
return;
}
2018-10-03 11:15:38 +02: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);
return;
} else {
2018-10-03 11:15:38 +02:00
$items = [];
}
2018-10-03 11:15:38 +02:00
foreach ($items as $activity) {
2018-10-07 19:17:06 +02:00
$ldactivity = JsonLD::compact($activity);
ActivityPub\Receiver::processActivity($ldactivity, '', $uid, true);
}
}
/**
* Checks if the given contact url does support ActivityPub
*
* @param string $url profile url
2019-07-27 23:45:36 +02:00
* @param boolean $update true = always update, false = never update, null = update when not found or outdated
* @return boolean
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
* @throws \ImagickException
*/
public static function isSupportedByContactUrl($url, $update = null)
{
return !empty(APContact::getByURL($url, $update));
}
}