2018-09-10 17:07:25 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Protocol/ActivityPub.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Protocol;
|
|
|
|
|
|
|
|
use Friendica\Database\DBA;
|
|
|
|
use Friendica\Core\System;
|
|
|
|
use Friendica\BaseObject;
|
|
|
|
use Friendica\Util\Network;
|
|
|
|
use Friendica\Util\HTTPSignature;
|
|
|
|
use Friendica\Core\Protocol;
|
2018-09-14 12:51:32 -04:00
|
|
|
use Friendica\Model\Conversation;
|
|
|
|
use Friendica\Model\Contact;
|
2018-09-10 17:07:25 -04:00
|
|
|
use Friendica\Model\Item;
|
2018-09-17 17:13:08 -04:00
|
|
|
use Friendica\Model\Term;
|
2018-09-10 17:07:25 -04:00
|
|
|
use Friendica\Model\User;
|
|
|
|
use Friendica\Util\DateTimeFormat;
|
|
|
|
use Friendica\Util\Crypto;
|
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-09-14 12:51:32 -04:00
|
|
|
use Friendica\Content\Text\HTML;
|
2018-09-20 01:37:01 -04:00
|
|
|
use Friendica\Util\JsonLD;
|
2018-09-20 17:45:23 -04:00
|
|
|
use Friendica\Util\LDSignature;
|
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-17 01:51:05 -04:00
|
|
|
* https://github.com/digitalbazaar/php-json-ld
|
2018-09-15 06:14:56 -04:00
|
|
|
*
|
2018-09-15 14:54:45 -04:00
|
|
|
* Part of the code for HTTP signing is taken from the Osada project.
|
2018-09-15 19:06:03 -04:00
|
|
|
* https://framagit.org/macgirvin/osada
|
2018-09-15 14:54:45 -04:00
|
|
|
*
|
2018-09-15 06:14:56 -04:00
|
|
|
* To-do:
|
|
|
|
*
|
|
|
|
* Receiver:
|
2018-09-15 16:48:24 -04:00
|
|
|
* - Activities: Dislike, Update, Delete
|
2018-09-15 06:14:56 -04:00
|
|
|
* - Object Types: Person, Tombstome
|
|
|
|
*
|
|
|
|
* Transmitter:
|
2018-09-15 16:48:24 -04:00
|
|
|
* - Activities: Like, Dislike, Update, Delete
|
2018-09-15 06:14:56 -04:00
|
|
|
* - Object Tyoes: Article, Announce, Person, Tombstone
|
|
|
|
*
|
|
|
|
* General:
|
|
|
|
* - Message distribution
|
|
|
|
* - Endpoints: Outbox, Object, Follower, Following
|
2018-09-15 19:06:03 -04:00
|
|
|
* - General cleanup
|
2018-09-10 17:07:25 -04:00
|
|
|
*/
|
|
|
|
class ActivityPub
|
|
|
|
{
|
|
|
|
const PUBLIC = 'https://www.w3.org/ns/activitystreams#Public';
|
|
|
|
|
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
|
|
|
/**
|
|
|
|
* Return the ActivityPub profile of the given user
|
|
|
|
*
|
|
|
|
* @param integer $uid User ID
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function profile($uid)
|
|
|
|
{
|
2018-09-20 05:50:03 -04:00
|
|
|
$accounttype = ['Person', 'Organization', 'Service', 'Group', 'Application'];
|
2018-09-10 17:07:25 -04:00
|
|
|
$condition = ['uid' => $uid, 'blocked' => false, 'account_expired' => false,
|
|
|
|
'account_removed' => false, 'verified' => true];
|
2018-09-20 05:50:03 -04:00
|
|
|
$fields = ['guid', 'nickname', 'pubkey', 'account-type', 'page-flags'];
|
2018-09-10 17:07:25 -04:00
|
|
|
$user = DBA::selectFirst('user', $fields, $condition);
|
|
|
|
if (!DBA::isResult($user)) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2018-09-16 13:47:00 -04:00
|
|
|
$fields = ['locality', 'region', 'country-name'];
|
2018-09-10 17:07:25 -04:00
|
|
|
$profile = DBA::selectFirst('profile', $fields, ['uid' => $uid, 'is-default' => true]);
|
|
|
|
if (!DBA::isResult($profile)) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$fields = ['name', 'url', 'location', 'about', 'avatar'];
|
|
|
|
$contact = DBA::selectFirst('contact', $fields, ['uid' => $uid, 'self' => true]);
|
|
|
|
if (!DBA::isResult($contact)) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = ['@context' => ['https://www.w3.org/ns/activitystreams', 'https://w3id.org/security/v1',
|
2018-09-18 15:36:27 -04:00
|
|
|
['vcard' => 'http://www.w3.org/2006/vcard/ns#', 'uuid' => 'http://schema.org/identifier',
|
|
|
|
'sensitive' => 'as:sensitive', 'manuallyApprovesFollowers' => 'as:manuallyApprovesFollowers']]];
|
2018-09-10 17:07:25 -04:00
|
|
|
|
|
|
|
$data['id'] = $contact['url'];
|
|
|
|
$data['uuid'] = $user['guid'];
|
|
|
|
$data['type'] = $accounttype[$user['account-type']];
|
|
|
|
$data['following'] = System::baseUrl() . '/following/' . $user['nickname'];
|
|
|
|
$data['followers'] = System::baseUrl() . '/followers/' . $user['nickname'];
|
|
|
|
$data['inbox'] = System::baseUrl() . '/inbox/' . $user['nickname'];
|
|
|
|
$data['outbox'] = System::baseUrl() . '/outbox/' . $user['nickname'];
|
|
|
|
$data['preferredUsername'] = $user['nickname'];
|
|
|
|
$data['name'] = $contact['name'];
|
2018-09-16 13:47:00 -04:00
|
|
|
$data['vcard:hasAddress'] = ['@type' => 'vcard:Home', 'vcard:country-name' => $profile['country-name'],
|
2018-09-10 17:07:25 -04:00
|
|
|
'vcard:region' => $profile['region'], 'vcard:locality' => $profile['locality']];
|
|
|
|
$data['summary'] = $contact['about'];
|
|
|
|
$data['url'] = $contact['url'];
|
2018-09-20 05:50:03 -04:00
|
|
|
$data['manuallyApprovesFollowers'] = in_array($user['page-flags'], [Contact::PAGE_NORMAL, Contact::PAGE_PRVGROUP]);
|
2018-09-10 17:07:25 -04:00
|
|
|
$data['publicKey'] = ['id' => $contact['url'] . '#main-key',
|
|
|
|
'owner' => $contact['url'],
|
|
|
|
'publicKeyPem' => $user['pubkey']];
|
|
|
|
$data['endpoints'] = ['sharedInbox' => System::baseUrl() . '/inbox'];
|
|
|
|
$data['icon'] = ['type' => 'Image',
|
|
|
|
'url' => $contact['avatar']];
|
|
|
|
|
|
|
|
// tags: https://kitty.town/@inmysocks/100656097926961126.json
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2018-09-17 17:13:08 -04:00
|
|
|
public static function createPermissionBlockForItem($item)
|
|
|
|
{
|
|
|
|
$data = ['to' => [], 'cc' => []];
|
|
|
|
|
|
|
|
$terms = Term::tagArrayFromItemId($item['id']);
|
|
|
|
|
|
|
|
if (!$item['private']) {
|
|
|
|
$data['to'][] = self::PUBLIC;
|
|
|
|
$data['cc'][] = System::baseUrl() . '/followers/' . $item['author-nick'];
|
|
|
|
|
|
|
|
foreach ($terms as $term) {
|
|
|
|
if ($term['type'] != TERM_MENTION) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-09-20 01:00:49 -04:00
|
|
|
$profile = self::fetchprofile($term['url']);
|
|
|
|
if (!empty($profile)) {
|
2018-09-17 17:13:08 -04:00
|
|
|
$data['cc'][] = $profile['url'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2018-09-18 15:36:27 -04:00
|
|
|
//$data['cc'][] = System::baseUrl() . '/followers/' . $item['author-nick'];
|
2018-09-17 17:13:08 -04:00
|
|
|
$receiver_list = Item::enumeratePermissions($item);
|
|
|
|
|
|
|
|
$mentioned = [];
|
|
|
|
|
|
|
|
foreach ($terms as $term) {
|
|
|
|
if ($term['type'] != TERM_MENTION) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$cid = Contact::getIdForURL($term['url'], $item['uid']);
|
|
|
|
if (!empty($cid) && in_array($cid, $receiver_list)) {
|
|
|
|
$contact = DBA::selectFirst('contact', ['url'], ['id' => $cid, 'network' => Protocol::ACTIVITYPUB]);
|
|
|
|
$data['to'][] = $contact['url'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($receiver_list as $receiver) {
|
|
|
|
$contact = DBA::selectFirst('contact', ['url'], ['id' => $receiver, 'network' => Protocol::ACTIVITYPUB]);
|
|
|
|
$data['cc'][] = $contact['url'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($data['to'])) {
|
|
|
|
$data['to'] = $data['cc'];
|
2018-09-18 15:36:27 -04:00
|
|
|
$data['cc'] = [];
|
2018-09-17 17:13:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function fetchTargetInboxes($item)
|
|
|
|
{
|
|
|
|
$inboxes = [];
|
|
|
|
|
|
|
|
$terms = Term::tagArrayFromItemId($item['id']);
|
|
|
|
if (!$item['private']) {
|
2018-09-18 03:28:35 -04:00
|
|
|
$contacts = DBA::select('contact', ['notify', 'batch'], ['uid' => $item['uid'],
|
|
|
|
'rel' => [Contact::FOLLOWER, Contact::FRIEND], 'network' => Protocol::ACTIVITYPUB]);
|
2018-09-17 17:13:08 -04:00
|
|
|
while ($contact = DBA::fetch($contacts)) {
|
|
|
|
$contact = defaults($contact, 'batch', $contact['notify']);
|
|
|
|
$inboxes[$contact] = $contact;
|
|
|
|
}
|
|
|
|
DBA::close($contacts);
|
|
|
|
|
|
|
|
foreach ($terms as $term) {
|
|
|
|
if ($term['type'] != TERM_MENTION) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-09-20 01:00:49 -04:00
|
|
|
$profile = self::fetchprofile($term['url']);
|
|
|
|
if (!empty($profile)) {
|
|
|
|
$target = defaults($profile, 'sharedinbox', $profile['inbox']);
|
2018-09-17 17:13:08 -04:00
|
|
|
$inboxes[$target] = $target;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$receiver_list = Item::enumeratePermissions($item);
|
|
|
|
|
|
|
|
$mentioned = [];
|
|
|
|
|
|
|
|
foreach ($terms as $term) {
|
|
|
|
if ($term['type'] != TERM_MENTION) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$cid = Contact::getIdForURL($term['url'], $item['uid']);
|
|
|
|
if (!empty($cid) && in_array($cid, $receiver_list)) {
|
|
|
|
$contact = DBA::selectFirst('contact', ['url'], ['id' => $cid, 'network' => Protocol::ACTIVITYPUB]);
|
2018-09-20 01:00:49 -04:00
|
|
|
$profile = self::fetchprofile($contact['url']);
|
|
|
|
if (!empty($profile['network'])) {
|
|
|
|
$target = defaults($profile, 'sharedinbox', $profile['inbox']);
|
2018-09-17 17:13:08 -04:00
|
|
|
$inboxes[$target] = $target;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($receiver_list as $receiver) {
|
|
|
|
$contact = DBA::selectFirst('contact', ['url'], ['id' => $receiver, 'network' => Protocol::ACTIVITYPUB]);
|
2018-09-20 01:00:49 -04:00
|
|
|
$profile = self::fetchprofile($contact['url']);
|
|
|
|
if (!empty($profile['network'])) {
|
|
|
|
$target = defaults($profile, 'sharedinbox', $profile['inbox']);
|
2018-09-17 17:13:08 -04:00
|
|
|
$inboxes[$target] = $target;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-20 01:00:49 -04:00
|
|
|
$profile = self::fetchprofile($item['author-link']);
|
|
|
|
if (!empty($profile['sharedinbox'])) {
|
|
|
|
unset($inboxes[$profile['sharedinbox']]);
|
2018-09-18 03:28:35 -04:00
|
|
|
}
|
|
|
|
|
2018-09-20 01:00:49 -04:00
|
|
|
if (!empty($profile['inbox'])) {
|
|
|
|
unset($inboxes[$profile['inbox']]);
|
2018-09-18 03:28:35 -04:00
|
|
|
}
|
|
|
|
|
2018-09-17 17:13:08 -04:00
|
|
|
return $inboxes;
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:25 -04:00
|
|
|
public static function createActivityFromItem($item_id)
|
|
|
|
{
|
|
|
|
$item = Item::selectFirst([], ['id' => $item_id]);
|
|
|
|
|
2018-09-17 01:51:05 -04:00
|
|
|
if (!DBA::isResult($item)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$condition = ['item-uri' => $item['uri'], 'protocol' => Conversation::PARCEL_ACTIVITYPUB];
|
|
|
|
$conversation = DBA::selectFirst('conversation', ['source'], $condition);
|
|
|
|
if (DBA::isResult($conversation)) {
|
|
|
|
$data = json_decode($conversation['source']);
|
|
|
|
if (!empty($data)) {
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:25 -04:00
|
|
|
$data = ['@context' => ['https://www.w3.org/ns/activitystreams', 'https://w3id.org/security/v1',
|
2018-09-18 15:36:27 -04:00
|
|
|
['ostatus' => 'http://ostatus.org#', 'sensitive' => 'as:sensitive',
|
|
|
|
'Hashtag' => 'as:Hashtag', 'atomUri' => 'ostatus:atomUri',
|
|
|
|
'conversation' => 'ostatus:conversation',
|
|
|
|
'inReplyToAtomUri' => 'ostatus:inReplyToAtomUri']]];
|
2018-09-10 17:07:25 -04:00
|
|
|
|
|
|
|
$data['type'] = 'Create';
|
2018-09-17 17:13:08 -04:00
|
|
|
$data['id'] = $item['uri'] . '#activity';
|
2018-09-10 17:07:25 -04:00
|
|
|
$data['actor'] = $item['author-link'];
|
2018-09-18 03:28:35 -04:00
|
|
|
|
|
|
|
$data['published'] = DateTimeFormat::utc($item["created"]."+00:00", DateTimeFormat::ATOM);
|
|
|
|
|
|
|
|
if ($item["created"] != $item["edited"]) {
|
|
|
|
$data['updated'] = DateTimeFormat::utc($item["edited"]."+00:00", DateTimeFormat::ATOM);
|
|
|
|
}
|
|
|
|
|
2018-09-17 17:13:08 -04:00
|
|
|
$data = array_merge($data, ActivityPub::createPermissionBlockForItem($item));
|
|
|
|
|
2018-09-10 17:07:25 -04:00
|
|
|
$data['object'] = self::createNote($item);
|
2018-09-20 17:45:23 -04:00
|
|
|
|
|
|
|
$owner = User::getOwnerDataById($item['uid']);
|
|
|
|
|
|
|
|
return LDSignature::sign($data, $owner);
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-17 17:13:08 -04:00
|
|
|
public static function createObjectFromItemID($item_id)
|
|
|
|
{
|
|
|
|
$item = Item::selectFirst([], ['id' => $item_id]);
|
|
|
|
|
|
|
|
if (!DBA::isResult($item)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = ['@context' => ['https://www.w3.org/ns/activitystreams', 'https://w3id.org/security/v1',
|
2018-09-18 15:36:27 -04:00
|
|
|
['ostatus' => 'http://ostatus.org#', 'sensitive' => 'as:sensitive',
|
|
|
|
'Hashtag' => 'as:Hashtag', 'atomUri' => 'ostatus:atomUri',
|
|
|
|
'conversation' => 'ostatus:conversation',
|
|
|
|
'inReplyToAtomUri' => 'ostatus:inReplyToAtomUri']]];
|
2018-09-17 17:13:08 -04:00
|
|
|
|
|
|
|
$data = array_merge($data, self::createNote($item));
|
|
|
|
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2018-09-18 03:28:35 -04:00
|
|
|
private static function createTagList($item)
|
|
|
|
{
|
|
|
|
$tags = [];
|
|
|
|
|
|
|
|
$terms = Term::tagArrayFromItemId($item['id']);
|
|
|
|
foreach ($terms as $term) {
|
|
|
|
if ($term['type'] == TERM_MENTION) {
|
|
|
|
$contact = Contact::getDetailsByURL($term['url']);
|
|
|
|
if (!empty($contact['addr'])) {
|
|
|
|
$mention = '@' . $contact['addr'];
|
|
|
|
} else {
|
|
|
|
$mention = '@' . $term['url'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$tags[] = ['type' => 'Mention', 'href' => $term['url'], 'name' => $mention];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $tags;
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:25 -04:00
|
|
|
public static function createNote($item)
|
|
|
|
{
|
|
|
|
$data = [];
|
|
|
|
$data['type'] = 'Note';
|
2018-09-15 03:40:19 -04:00
|
|
|
$data['id'] = $item['uri'];
|
|
|
|
|
|
|
|
if ($item['uri'] != $item['thr-parent']) {
|
|
|
|
$data['inReplyTo'] = $item['thr-parent'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$conversation = DBA::selectFirst('conversation', ['conversation-uri'], ['item-uri' => $item['parent-uri']]);
|
|
|
|
if (DBA::isResult($conversation) && !empty($conversation['conversation-uri'])) {
|
|
|
|
$conversation_uri = $conversation['conversation-uri'];
|
|
|
|
} else {
|
|
|
|
$conversation_uri = $item['parent-uri'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$data['context'] = $data['conversation'] = $conversation_uri;
|
2018-09-10 17:07:25 -04:00
|
|
|
$data['actor'] = $item['author-link'];
|
2018-09-17 17:13:08 -04:00
|
|
|
$data = array_merge($data, ActivityPub::createPermissionBlockForItem($item));
|
2018-09-10 17:07:25 -04:00
|
|
|
$data['published'] = DateTimeFormat::utc($item["created"]."+00:00", DateTimeFormat::ATOM);
|
2018-09-18 03:28:35 -04:00
|
|
|
|
|
|
|
if ($item["created"] != $item["edited"]) {
|
|
|
|
$data['updated'] = DateTimeFormat::utc($item["edited"]."+00:00", DateTimeFormat::ATOM);
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:25 -04:00
|
|
|
$data['attributedTo'] = $item['author-link'];
|
2018-09-12 14:48:18 -04:00
|
|
|
$data['name'] = BBCode::convert($item['title'], false, 7);
|
2018-09-10 17:07:25 -04:00
|
|
|
$data['content'] = BBCode::convert($item['body'], false, 7);
|
2018-09-15 03:40:19 -04:00
|
|
|
$data['source'] = ['content' => $item['body'], 'mediaType' => "text/bbcode"];
|
2018-09-18 03:28:35 -04:00
|
|
|
$data['summary'] = ''; // Ignore by now
|
|
|
|
$data['sensitive'] = false; // - Query NSFW
|
2018-09-18 15:36:27 -04:00
|
|
|
//$data['emoji'] = []; // Ignore by now
|
2018-09-18 03:28:35 -04:00
|
|
|
$data['tag'] = self::createTagList($item);
|
|
|
|
$data['attachment'] = []; // @ToDo
|
2018-09-10 17:07:25 -04:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2018-09-14 17:10:49 -04:00
|
|
|
public static function transmitActivity($activity, $target, $uid)
|
|
|
|
{
|
2018-09-20 01:00:49 -04:00
|
|
|
$profile = self::fetchprofile($target);
|
2018-09-14 17:10:49 -04:00
|
|
|
|
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
|
|
|
|
$data = ['@context' => 'https://www.w3.org/ns/activitystreams',
|
2018-09-15 16:48:24 -04:00
|
|
|
'id' => System::baseUrl() . '/activity/' . System::createGUID(),
|
2018-09-14 17:10:49 -04:00
|
|
|
'type' => $activity,
|
|
|
|
'actor' => $owner['url'],
|
2018-09-16 16:12:48 -04:00
|
|
|
'object' => $profile['url'],
|
|
|
|
'to' => $profile['url']];
|
2018-09-14 17:10:49 -04:00
|
|
|
|
2018-09-15 14:54:45 -04:00
|
|
|
logger('Sending activity ' . $activity . ' to ' . $target . ' for user ' . $uid, LOGGER_DEBUG);
|
2018-09-20 17:45:23 -04:00
|
|
|
|
|
|
|
$signed = LDSignature::sign($data, $owner);
|
|
|
|
return HTTPSignature::transmit($signed, $profile['inbox'], $uid);
|
2018-09-15 14:54:45 -04:00
|
|
|
}
|
|
|
|
|
2018-09-15 16:31:05 -04:00
|
|
|
public static function transmitContactAccept($target, $id, $uid)
|
|
|
|
{
|
2018-09-20 01:00:49 -04:00
|
|
|
$profile = self::fetchprofile($target);
|
2018-09-15 16:31:05 -04:00
|
|
|
|
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
$data = ['@context' => 'https://www.w3.org/ns/activitystreams',
|
2018-09-15 16:48:24 -04:00
|
|
|
'id' => System::baseUrl() . '/activity/' . System::createGUID(),
|
2018-09-15 16:31:05 -04:00
|
|
|
'type' => 'Accept',
|
|
|
|
'actor' => $owner['url'],
|
|
|
|
'object' => ['id' => $id, 'type' => 'Follow',
|
|
|
|
'actor' => $profile['url'],
|
2018-09-16 16:12:48 -04:00
|
|
|
'object' => $owner['url']],
|
|
|
|
'to' => $profile['url']];
|
2018-09-15 16:31:05 -04:00
|
|
|
|
|
|
|
logger('Sending accept to ' . $target . ' for user ' . $uid . ' with id ' . $id, LOGGER_DEBUG);
|
2018-09-20 17:45:23 -04:00
|
|
|
|
|
|
|
$signed = LDSignature::sign($data, $owner);
|
|
|
|
return HTTPSignature::transmit($signed, $profile['inbox'], $uid);
|
2018-09-15 16:31:05 -04:00
|
|
|
}
|
|
|
|
|
2018-09-15 18:25:58 -04:00
|
|
|
public static function transmitContactReject($target, $id, $uid)
|
2018-09-15 14:54:45 -04:00
|
|
|
{
|
2018-09-20 01:00:49 -04:00
|
|
|
$profile = self::fetchprofile($target);
|
2018-09-15 14:54:45 -04:00
|
|
|
|
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
$data = ['@context' => 'https://www.w3.org/ns/activitystreams',
|
2018-09-15 16:48:24 -04:00
|
|
|
'id' => System::baseUrl() . '/activity/' . System::createGUID(),
|
2018-09-15 18:25:58 -04:00
|
|
|
'type' => 'Reject',
|
|
|
|
'actor' => $owner['url'],
|
|
|
|
'object' => ['id' => $id, 'type' => 'Follow',
|
|
|
|
'actor' => $profile['url'],
|
2018-09-16 16:12:48 -04:00
|
|
|
'object' => $owner['url']],
|
|
|
|
'to' => $profile['url']];
|
2018-09-15 18:25:58 -04:00
|
|
|
|
|
|
|
logger('Sending reject to ' . $target . ' for user ' . $uid . ' with id ' . $id, LOGGER_DEBUG);
|
2018-09-20 17:45:23 -04:00
|
|
|
|
|
|
|
$signed = LDSignature::sign($data, $owner);
|
|
|
|
return HTTPSignature::transmit($signed, $profile['inbox'], $uid);
|
2018-09-15 18:25:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function transmitContactUndo($target, $uid)
|
|
|
|
{
|
2018-09-20 01:00:49 -04:00
|
|
|
$profile = self::fetchprofile($target);
|
2018-09-15 18:25:58 -04:00
|
|
|
|
|
|
|
$id = System::baseUrl() . '/activity/' . System::createGUID();
|
|
|
|
|
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
$data = ['@context' => 'https://www.w3.org/ns/activitystreams',
|
|
|
|
'id' => $id,
|
2018-09-15 16:31:05 -04:00
|
|
|
'type' => 'Undo',
|
2018-09-15 14:54:45 -04:00
|
|
|
'actor' => $owner['url'],
|
|
|
|
'object' => ['id' => $id, 'type' => 'Follow',
|
|
|
|
'actor' => $owner['url'],
|
2018-09-16 16:12:48 -04:00
|
|
|
'object' => $profile['url']],
|
|
|
|
'to' => $profile['url']];
|
2018-09-15 14:54:45 -04:00
|
|
|
|
2018-09-15 16:31:05 -04:00
|
|
|
logger('Sending undo to ' . $target . ' for user ' . $uid . ' with id ' . $id, LOGGER_DEBUG);
|
2018-09-20 17:45:23 -04:00
|
|
|
|
|
|
|
$signed = LDSignature::sign($data, $owner);
|
|
|
|
return HTTPSignature::transmit($signed, $profile['inbox'], $uid);
|
2018-09-14 17:10:49 -04:00
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:25 -04:00
|
|
|
/**
|
|
|
|
* Fetches ActivityPub content from the given url
|
|
|
|
*
|
|
|
|
* @param string $url content url
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function fetchContent($url)
|
|
|
|
{
|
2018-09-16 16:12:48 -04:00
|
|
|
$ret = Network::curl($url, false, $redirects, ['accept_content' => 'application/activity+json, application/ld+json']);
|
2018-09-10 17:07:25 -04:00
|
|
|
if (!$ret['success'] || empty($ret['body'])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return json_decode($ret['body'], true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resolves the profile url from the address by using webfinger
|
|
|
|
*
|
|
|
|
* @param string $addr profile address (user@domain.tld)
|
|
|
|
* @return string url
|
|
|
|
*/
|
|
|
|
private static function addrToUrl($addr)
|
|
|
|
{
|
|
|
|
$addr_parts = explode('@', $addr);
|
|
|
|
if (count($addr_parts) != 2) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$webfinger = 'https://' . $addr_parts[1] . '/.well-known/webfinger?resource=acct:' . urlencode($addr);
|
|
|
|
|
|
|
|
$ret = Network::curl($webfinger, false, $redirects, ['accept_content' => 'application/jrd+json,application/json']);
|
|
|
|
if (!$ret['success'] || empty($ret['body'])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = json_decode($ret['body'], true);
|
|
|
|
|
|
|
|
if (empty($data['links'])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($data['links'] as $link) {
|
|
|
|
if (empty($link['href']) || empty($link['rel']) || empty($link['type'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (($link['rel'] == 'self') && ($link['type'] == 'application/activity+json')) {
|
|
|
|
return $link['href'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-20 01:00:49 -04:00
|
|
|
public static function fetchprofile($url, $update = false)
|
2018-09-10 17:07:25 -04:00
|
|
|
{
|
2018-09-20 01:00:49 -04:00
|
|
|
if (empty($url)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$update) {
|
|
|
|
$apcontact = DBA::selectFirst('apcontact', [], ['url' => $url]);
|
|
|
|
if (DBA::isResult($apcontact)) {
|
|
|
|
return $apcontact;
|
|
|
|
}
|
|
|
|
|
|
|
|
$apcontact = DBA::selectFirst('apcontact', [], ['alias' => $url]);
|
|
|
|
if (DBA::isResult($apcontact)) {
|
|
|
|
return $apcontact;
|
|
|
|
}
|
|
|
|
|
|
|
|
$apcontact = DBA::selectFirst('apcontact', [], ['addr' => $url]);
|
|
|
|
if (DBA::isResult($apcontact)) {
|
|
|
|
return $apcontact;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:25 -04:00
|
|
|
if (empty(parse_url($url, PHP_URL_SCHEME))) {
|
|
|
|
$url = self::addrToUrl($url);
|
|
|
|
if (empty($url)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = self::fetchContent($url);
|
|
|
|
|
|
|
|
if (empty($data) || empty($data['id']) || empty($data['inbox'])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-18 18:09:27 -04:00
|
|
|
$apcontact = [];
|
|
|
|
$apcontact['url'] = $data['id'];
|
|
|
|
$apcontact['uuid'] = defaults($data, 'uuid', null);
|
|
|
|
$apcontact['type'] = defaults($data, 'type', null);
|
|
|
|
$apcontact['following'] = defaults($data, 'following', null);
|
|
|
|
$apcontact['followers'] = defaults($data, 'followers', null);
|
|
|
|
$apcontact['inbox'] = defaults($data, 'inbox', null);
|
|
|
|
$apcontact['outbox'] = defaults($data, 'outbox', null);
|
2018-09-20 01:37:01 -04:00
|
|
|
$apcontact['sharedinbox'] = JsonLD::fetchElement($data, 'endpoints', 'sharedInbox');
|
2018-09-18 18:09:27 -04:00
|
|
|
$apcontact['nick'] = defaults($data, 'preferredUsername', null);
|
|
|
|
$apcontact['name'] = defaults($data, 'name', $apcontact['nick']);
|
|
|
|
$apcontact['about'] = defaults($data, 'summary', '');
|
2018-09-20 01:37:01 -04:00
|
|
|
$apcontact['photo'] = JsonLD::fetchElement($data, 'icon', 'url');
|
|
|
|
$apcontact['alias'] = JsonLD::fetchElement($data, 'url', 'href');
|
2018-09-18 18:09:27 -04:00
|
|
|
|
|
|
|
$parts = parse_url($apcontact['url']);
|
2018-09-10 17:07:25 -04:00
|
|
|
unset($parts['scheme']);
|
|
|
|
unset($parts['path']);
|
2018-09-18 18:09:27 -04:00
|
|
|
$apcontact['addr'] = $apcontact['nick'] . '@' . str_replace('//', '', Network::unparseURL($parts));
|
|
|
|
|
2018-09-20 01:37:01 -04:00
|
|
|
$apcontact['pubkey'] = trim(JsonLD::fetchElement($data, 'publicKey', 'publicKeyPem'));
|
2018-09-20 01:00:49 -04:00
|
|
|
|
|
|
|
// To-Do
|
|
|
|
// manuallyApprovesFollowers
|
|
|
|
|
|
|
|
// Unhandled
|
|
|
|
// @context, tag, attachment, image, nomadicLocations, signature, following, followers, featured, movedTo, liked
|
|
|
|
|
|
|
|
// Unhandled from Misskey
|
|
|
|
// sharedInbox, isCat
|
|
|
|
|
|
|
|
// Unhandled from Kroeg
|
|
|
|
// kroeg:blocks, updated
|
2018-09-10 17:07:25 -04:00
|
|
|
|
|
|
|
// Check if the address is resolvable
|
2018-09-18 18:09:27 -04:00
|
|
|
if (self::addrToUrl($apcontact['addr']) == $apcontact['url']) {
|
|
|
|
$parts = parse_url($apcontact['url']);
|
2018-09-10 17:07:25 -04:00
|
|
|
unset($parts['path']);
|
2018-09-18 18:09:27 -04:00
|
|
|
$apcontact['baseurl'] = Network::unparseURL($parts);
|
2018-09-10 17:07:25 -04:00
|
|
|
} else {
|
2018-09-18 18:09:27 -04:00
|
|
|
$apcontact['addr'] = null;
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-18 18:09:27 -04:00
|
|
|
if ($apcontact['url'] == $apcontact['alias']) {
|
|
|
|
$apcontact['alias'] = null;
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-18 18:09:27 -04:00
|
|
|
$apcontact['updated'] = DateTimeFormat::utcNow();
|
|
|
|
|
|
|
|
DBA::update('apcontact', $apcontact, ['url' => $url], true);
|
|
|
|
|
2018-09-20 01:00:49 -04:00
|
|
|
return $apcontact;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetches a profile from the given url into an array that is compatible to Probe::uri
|
|
|
|
*
|
|
|
|
* @param string $url profile url
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function probeProfile($url)
|
|
|
|
{
|
|
|
|
$apcontact = self::fetchprofile($url, true);
|
|
|
|
if (empty($apcontact)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-18 18:09:27 -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-10 17:07:25 -04:00
|
|
|
// Remove all "null" fields
|
|
|
|
foreach ($profile as $field => $content) {
|
|
|
|
if (is_null($content)) {
|
|
|
|
unset($profile[$field]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $profile;
|
|
|
|
}
|
|
|
|
|
2018-09-15 06:14:56 -04:00
|
|
|
public static function processInbox($body, $header, $uid)
|
2018-09-14 12:51:32 -04:00
|
|
|
{
|
2018-09-15 06:14:56 -04:00
|
|
|
logger('Incoming message for user ' . $uid, LOGGER_DEBUG);
|
2018-09-14 12:51:32 -04:00
|
|
|
|
2018-09-20 14:16:14 -04:00
|
|
|
if (!HTTPSignature::verifyAP($body, $header)) {
|
2018-09-14 12:51:32 -04:00
|
|
|
logger('Invalid signature, message will be discarded.', LOGGER_DEBUG);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$activity = json_decode($body, true);
|
|
|
|
|
|
|
|
if (!is_array($activity)) {
|
|
|
|
logger('Invalid body.', LOGGER_DEBUG);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-09-15 06:14:56 -04:00
|
|
|
self::processActivity($activity, $body, $uid);
|
2018-09-14 12:51:32 -04:00
|
|
|
}
|
|
|
|
|
2018-09-20 14:16:14 -04:00
|
|
|
public static function fetchOutbox($url, $uid)
|
2018-09-10 17:07:25 -04:00
|
|
|
{
|
|
|
|
$data = self::fetchContent($url);
|
|
|
|
if (empty($data)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($data['orderedItems'])) {
|
|
|
|
$items = $data['orderedItems'];
|
|
|
|
} elseif (!empty($data['first']['orderedItems'])) {
|
|
|
|
$items = $data['first']['orderedItems'];
|
|
|
|
} elseif (!empty($data['first'])) {
|
2018-09-20 14:16:14 -04:00
|
|
|
self::fetchOutbox($data['first'], $uid);
|
2018-09-10 17:07:25 -04:00
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
$items = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($items as $activity) {
|
2018-09-20 14:16:14 -04:00
|
|
|
self::processActivity($activity, '', $uid);
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-16 01:49:13 -04:00
|
|
|
private static function prepareObjectData($activity, $uid)
|
2018-09-10 17:07:25 -04:00
|
|
|
{
|
2018-09-20 01:37:01 -04:00
|
|
|
$actor = JsonLD::fetchElement($activity, 'actor', 'id');
|
2018-09-10 17:07:25 -04:00
|
|
|
if (empty($actor)) {
|
2018-09-16 01:49:13 -04:00
|
|
|
logger('Empty actor', LOGGER_DEBUG);
|
|
|
|
return [];
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-15 06:14:56 -04:00
|
|
|
// Fetch all receivers from to, cc, bto and bcc
|
2018-09-16 05:06:09 -04:00
|
|
|
$receivers = self::getReceivers($activity, $actor);
|
2018-09-10 17:07:25 -04:00
|
|
|
|
2018-09-15 06:14:56 -04:00
|
|
|
// When it is a delivery to a personal inbox we add that user to the receivers
|
|
|
|
if (!empty($uid)) {
|
|
|
|
$owner = User::getOwnerDataById($uid);
|
2018-09-16 13:47:00 -04:00
|
|
|
$additional = ['uid:' . $uid => $uid];
|
2018-09-15 06:14:56 -04:00
|
|
|
$receivers = array_merge($receivers, $additional);
|
|
|
|
}
|
2018-09-15 03:40:19 -04:00
|
|
|
|
2018-09-15 06:14:56 -04:00
|
|
|
logger('Receivers: ' . json_encode($receivers), LOGGER_DEBUG);
|
|
|
|
|
2018-09-20 23:39:32 -04:00
|
|
|
$unsigned = true;
|
|
|
|
|
|
|
|
if (LDSignature::isSigned($activity)) {
|
|
|
|
if (!LDSignature::isVerified($activity)) {
|
|
|
|
logger('Invalid signature. Quitting here.', LOGGER_DEBUG);
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
logger('Valid signature.', LOGGER_DEBUG);
|
|
|
|
$unsigned = false;
|
|
|
|
} elseif (!in_array(0, $receivers)) {
|
|
|
|
/// @todo Add some checks to only accept unsigned private posts directly from the actor
|
|
|
|
$unsigned = false;
|
|
|
|
logger('Private post without signature.', LOGGER_DEBUG);
|
|
|
|
} else {
|
|
|
|
logger('Public post without signature. Object data will be fetched.', LOGGER_DEBUG);
|
|
|
|
}
|
2018-09-16 09:04:00 -04:00
|
|
|
|
2018-09-16 01:49:13 -04:00
|
|
|
if (is_string($activity['object'])) {
|
|
|
|
$object_url = $activity['object'];
|
|
|
|
} elseif (!empty($activity['object']['id'])) {
|
|
|
|
$object_url = $activity['object']['id'];
|
|
|
|
} else {
|
|
|
|
logger('No object found', LOGGER_DEBUG);
|
|
|
|
return [];
|
|
|
|
}
|
2018-09-15 14:54:45 -04:00
|
|
|
|
|
|
|
// Fetch the content only on activities where this matters
|
|
|
|
if (in_array($activity['type'], ['Create', 'Update', 'Announce'])) {
|
2018-09-20 23:39:32 -04:00
|
|
|
$object_data = self::fetchObject($object_url, $activity['object'], $unsigned);
|
2018-09-16 01:49:13 -04:00
|
|
|
if (empty($object_data)) {
|
2018-09-14 17:10:49 -04:00
|
|
|
logger("Object data couldn't be processed", LOGGER_DEBUG);
|
2018-09-16 01:49:13 -04:00
|
|
|
return [];
|
2018-09-14 17:10:49 -04:00
|
|
|
}
|
2018-09-16 01:49:13 -04:00
|
|
|
} elseif ($activity['type'] == 'Accept') {
|
|
|
|
$object_data = [];
|
2018-09-20 01:37:01 -04:00
|
|
|
$object_data['object_type'] = JsonLD::fetchElement($activity, 'object', 'type');
|
|
|
|
$object_data['object'] = JsonLD::fetchElement($activity, 'object', 'actor');
|
2018-09-16 01:49:13 -04:00
|
|
|
} elseif ($activity['type'] == 'Undo') {
|
|
|
|
$object_data = [];
|
2018-09-20 01:37:01 -04:00
|
|
|
$object_data['object_type'] = JsonLD::fetchElement($activity, 'object', 'type');
|
|
|
|
$object_data['object'] = JsonLD::fetchElement($activity, 'object', 'object');
|
2018-09-16 01:49:13 -04:00
|
|
|
} elseif (in_array($activity['type'], ['Like', 'Dislike'])) {
|
|
|
|
// Create a mostly empty array out of the activity data (instead of the object).
|
|
|
|
// This way we later don't have to check for the existence of ech individual array element.
|
|
|
|
$object_data = self::processCommonData($activity);
|
|
|
|
$object_data['name'] = $activity['type'];
|
|
|
|
$object_data['author'] = $activity['actor'];
|
|
|
|
$object_data['object'] = $object_url;
|
|
|
|
} elseif ($activity['type'] == 'Follow') {
|
|
|
|
$object_data['id'] = $activity['id'];
|
|
|
|
$object_data['object'] = $object_url;
|
2018-09-16 09:04:00 -04:00
|
|
|
} else {
|
|
|
|
$object_data = [];
|
2018-09-16 01:49:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$object_data = self::addActivityFields($object_data, $activity);
|
|
|
|
|
|
|
|
$object_data['type'] = $activity['type'];
|
|
|
|
$object_data['owner'] = $actor;
|
|
|
|
$object_data['receiver'] = array_merge(defaults($object_data, 'receiver', []), $receivers);
|
|
|
|
|
|
|
|
return $object_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function processActivity($activity, $body = '', $uid = null)
|
|
|
|
{
|
|
|
|
if (empty($activity['type'])) {
|
|
|
|
logger('Empty type', LOGGER_DEBUG);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($activity['object'])) {
|
|
|
|
logger('Empty object', LOGGER_DEBUG);
|
|
|
|
return;
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-16 01:49:13 -04:00
|
|
|
if (empty($activity['actor'])) {
|
|
|
|
logger('Empty actor', LOGGER_DEBUG);
|
|
|
|
return;
|
2018-09-10 17:07:25 -04:00
|
|
|
|
2018-09-16 01:49:13 -04:00
|
|
|
}
|
2018-09-10 17:07:25 -04:00
|
|
|
|
2018-09-16 01:49:13 -04:00
|
|
|
// Non standard
|
|
|
|
// title, atomUri, context_id, statusnetConversationId
|
|
|
|
|
|
|
|
// To-Do?
|
|
|
|
// context, location, signature;
|
|
|
|
|
|
|
|
logger('Processing activity: ' . $activity['type'], LOGGER_DEBUG);
|
|
|
|
|
|
|
|
$object_data = self::prepareObjectData($activity, $uid);
|
|
|
|
if (empty($object_data)) {
|
|
|
|
logger('No object data found', LOGGER_DEBUG);
|
|
|
|
return;
|
|
|
|
}
|
2018-09-10 17:07:25 -04:00
|
|
|
|
|
|
|
switch ($activity['type']) {
|
|
|
|
case 'Create':
|
|
|
|
case 'Announce':
|
2018-09-16 01:49:13 -04:00
|
|
|
self::createItem($object_data, $body);
|
2018-09-10 17:07:25 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'Like':
|
2018-09-16 01:49:13 -04:00
|
|
|
self::likeItem($object_data, $body);
|
2018-09-15 14:54:45 -04:00
|
|
|
break;
|
|
|
|
|
2018-09-10 17:07:25 -04:00
|
|
|
case 'Dislike':
|
2018-09-15 14:54:45 -04:00
|
|
|
break;
|
|
|
|
|
2018-09-16 01:49:13 -04:00
|
|
|
case 'Update':
|
|
|
|
break;
|
|
|
|
|
2018-09-15 14:54:45 -04:00
|
|
|
case 'Delete':
|
2018-09-10 17:07:25 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'Follow':
|
2018-09-16 01:49:13 -04:00
|
|
|
self::followUser($object_data);
|
2018-09-15 14:54:45 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'Accept':
|
2018-09-16 01:49:13 -04:00
|
|
|
if ($object_data['object_type'] == 'Follow') {
|
|
|
|
self::acceptFollowUser($object_data);
|
|
|
|
}
|
2018-09-15 14:54:45 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'Undo':
|
2018-09-16 01:49:13 -04:00
|
|
|
if ($object_data['object_type'] == 'Follow') {
|
|
|
|
self::undoFollowUser($object_data);
|
|
|
|
}
|
2018-09-10 17:07:25 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-09-14 12:51:32 -04:00
|
|
|
logger('Unknown activity: ' . $activity['type'], LOGGER_DEBUG);
|
2018-09-10 17:07:25 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-16 05:06:09 -04:00
|
|
|
private static function getReceivers($activity, $actor)
|
2018-09-10 17:07:25 -04:00
|
|
|
{
|
|
|
|
$receivers = [];
|
|
|
|
|
2018-09-21 00:51:54 -04:00
|
|
|
// When it is an answer, we inherite the receivers from the parent
|
|
|
|
$replyto = JsonLD::fetchElement($activity, 'inReplyTo', 'id');
|
|
|
|
if (!empty($replyto)) {
|
|
|
|
$parents = Item::select(['uid'], ['uri' => $replyto]);
|
|
|
|
while ($parent = Item::fetch($parents)) {
|
|
|
|
$receivers['uid:' . $parent['uid']] = $parent['uid'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-16 13:47:00 -04:00
|
|
|
if (!empty($actor)) {
|
2018-09-20 01:00:49 -04:00
|
|
|
$profile = self::fetchprofile($actor);
|
|
|
|
$followers = defaults($profile, 'followers', '');
|
2018-09-16 05:06:09 -04:00
|
|
|
|
2018-09-16 13:47:00 -04:00
|
|
|
logger('Actor: ' . $actor . ' - Followers: ' . $followers, LOGGER_DEBUG);
|
|
|
|
} else {
|
|
|
|
logger('Empty actor', LOGGER_DEBUG);
|
|
|
|
$followers = '';
|
|
|
|
}
|
2018-09-16 09:04:00 -04:00
|
|
|
|
2018-09-10 17:07:25 -04:00
|
|
|
$elements = ['to', 'cc', 'bto', 'bcc'];
|
|
|
|
foreach ($elements as $element) {
|
|
|
|
if (empty($activity[$element])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The receiver can be an arror or a string
|
|
|
|
if (is_string($activity[$element])) {
|
|
|
|
$activity[$element] = [$activity[$element]];
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($activity[$element] as $receiver) {
|
2018-09-16 09:04:00 -04:00
|
|
|
if ($receiver == self::PUBLIC) {
|
2018-09-16 05:06:09 -04:00
|
|
|
$receivers['uid:0'] = 0;
|
2018-09-16 13:47:00 -04:00
|
|
|
}
|
2018-09-16 05:06:09 -04:00
|
|
|
|
2018-09-16 13:47:00 -04:00
|
|
|
if (($receiver == self::PUBLIC) && !empty($actor)) {
|
2018-09-16 09:04:00 -04:00
|
|
|
// This will most likely catch all OStatus connections to Mastodon
|
|
|
|
$condition = ['alias' => [$actor, normalise_link($actor)], 'rel' => [Contact::SHARING, Contact::FRIEND]];
|
|
|
|
$contacts = DBA::select('contact', ['uid'], $condition);
|
|
|
|
while ($contact = DBA::fetch($contacts)) {
|
|
|
|
if ($contact['uid'] != 0) {
|
|
|
|
$receivers['uid:' . $contact['uid']] = $contact['uid'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DBA::close($contacts);
|
2018-09-16 05:06:09 -04:00
|
|
|
}
|
|
|
|
|
2018-09-16 13:47:00 -04:00
|
|
|
if (in_array($receiver, [$followers, self::PUBLIC]) && !empty($actor)) {
|
2018-09-16 09:04:00 -04:00
|
|
|
$condition = ['nurl' => normalise_link($actor), 'rel' => [Contact::SHARING, Contact::FRIEND],
|
|
|
|
'network' => Protocol::ACTIVITYPUB];
|
2018-09-16 05:06:09 -04:00
|
|
|
$contacts = DBA::select('contact', ['uid'], $condition);
|
|
|
|
while ($contact = DBA::fetch($contacts)) {
|
|
|
|
if ($contact['uid'] != 0) {
|
|
|
|
$receivers['uid:' . $contact['uid']] = $contact['uid'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DBA::close($contacts);
|
|
|
|
continue;
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$condition = ['self' => true, 'nurl' => normalise_link($receiver)];
|
2018-09-14 12:51:32 -04:00
|
|
|
$contact = DBA::selectFirst('contact', ['uid'], $condition);
|
2018-09-10 17:07:25 -04:00
|
|
|
if (!DBA::isResult($contact)) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-09-16 13:47:00 -04:00
|
|
|
$receivers['uid:' . $contact['uid']] = $contact['uid'];
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $receivers;
|
|
|
|
}
|
|
|
|
|
2018-09-16 01:49:13 -04:00
|
|
|
private static function addActivityFields($object_data, $activity)
|
2018-09-10 17:07:25 -04:00
|
|
|
{
|
2018-09-16 01:49:13 -04:00
|
|
|
if (!empty($activity['published']) && empty($object_data['published'])) {
|
|
|
|
$object_data['published'] = $activity['published'];
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-16 01:49:13 -04:00
|
|
|
if (!empty($activity['updated']) && empty($object_data['updated'])) {
|
|
|
|
$object_data['updated'] = $activity['updated'];
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-16 01:49:13 -04:00
|
|
|
if (!empty($activity['inReplyTo']) && empty($object_data['parent-uri'])) {
|
2018-09-20 01:37:01 -04:00
|
|
|
$object_data['parent-uri'] = JsonLD::fetchElement($activity, 'inReplyTo', 'id');
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($activity['instrument'])) {
|
2018-09-20 01:37:01 -04:00
|
|
|
$object_data['service'] = JsonLD::fetchElement($activity, 'instrument', 'name', 'type', 'Service');
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
2018-09-16 01:49:13 -04:00
|
|
|
return $object_data;
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-20 23:39:32 -04:00
|
|
|
private static function fetchObject($object_url, $object = [], $unsigned = true)
|
2018-09-10 17:07:25 -04:00
|
|
|
{
|
2018-09-20 23:39:32 -04:00
|
|
|
if ($unsigned) {
|
2018-09-16 09:04:00 -04:00
|
|
|
$data = self::fetchContent($object_url);
|
2018-09-14 12:51:32 -04:00
|
|
|
if (empty($data)) {
|
2018-09-16 09:04:00 -04:00
|
|
|
logger('Empty content for ' . $object_url . ', check if content is available locally.', LOGGER_DEBUG);
|
|
|
|
$data = $object_url;
|
2018-09-16 13:47:00 -04:00
|
|
|
$data = $object;
|
2018-09-16 09:04:00 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
logger('Using original object for url ' . $object_url, LOGGER_DEBUG);
|
|
|
|
$data = $object;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_string($data)) {
|
|
|
|
$item = Item::selectFirst([], ['uri' => $data]);
|
|
|
|
if (!DBA::isResult($item)) {
|
|
|
|
logger('Object with url ' . $data . ' was not found locally.', LOGGER_DEBUG);
|
2018-09-14 12:51:32 -04:00
|
|
|
return false;
|
|
|
|
}
|
2018-09-16 09:04:00 -04:00
|
|
|
logger('Using already stored item for url ' . $object_url, LOGGER_DEBUG);
|
|
|
|
$data = self::createNote($item);
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($data['type'])) {
|
2018-09-15 03:40:19 -04:00
|
|
|
logger('Empty type', LOGGER_DEBUG);
|
2018-09-10 17:07:25 -04:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
$type = $data['type'];
|
2018-09-15 03:40:19 -04:00
|
|
|
logger('Type ' . $type, LOGGER_DEBUG);
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (in_array($type, ['Note', 'Article', 'Video'])) {
|
2018-09-14 12:51:32 -04:00
|
|
|
$common = self::processCommonData($data);
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
switch ($type) {
|
|
|
|
case 'Note':
|
2018-09-14 12:51:32 -04:00
|
|
|
return array_merge($common, self::processNote($data));
|
2018-09-10 17:07:25 -04:00
|
|
|
case 'Article':
|
2018-09-14 12:51:32 -04:00
|
|
|
return array_merge($common, self::processArticle($data));
|
2018-09-10 17:07:25 -04:00
|
|
|
case 'Video':
|
2018-09-14 12:51:32 -04:00
|
|
|
return array_merge($common, self::processVideo($data));
|
2018-09-10 17:07:25 -04:00
|
|
|
|
|
|
|
case 'Announce':
|
|
|
|
if (empty($data['object'])) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-09-14 12:51:32 -04:00
|
|
|
return self::fetchObject($data['object']);
|
2018-09-10 17:07:25 -04:00
|
|
|
|
|
|
|
case 'Person':
|
|
|
|
case 'Tombstone':
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-09-14 12:51:32 -04:00
|
|
|
logger('Unknown object type: ' . $data['type'], LOGGER_DEBUG);
|
2018-09-10 17:07:25 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-14 12:51:32 -04:00
|
|
|
private static function processCommonData(&$object)
|
2018-09-10 17:07:25 -04:00
|
|
|
{
|
2018-09-16 01:49:13 -04:00
|
|
|
if (empty($object['id'])) {
|
2018-09-10 17:07:25 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-16 01:49:13 -04:00
|
|
|
$object_data = [];
|
|
|
|
$object_data['type'] = $object['type'];
|
|
|
|
$object_data['uri'] = $object['id'];
|
2018-09-10 17:07:25 -04:00
|
|
|
|
|
|
|
if (!empty($object['inReplyTo'])) {
|
2018-09-20 01:37:01 -04:00
|
|
|
$object_data['reply-to-uri'] = JsonLD::fetchElement($object, 'inReplyTo', 'id');
|
2018-09-10 17:07:25 -04:00
|
|
|
} else {
|
2018-09-16 01:49:13 -04:00
|
|
|
$object_data['reply-to-uri'] = $object_data['uri'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$object_data['published'] = defaults($object, 'published', null);
|
|
|
|
$object_data['updated'] = defaults($object, 'updated', $object_data['published']);
|
|
|
|
|
|
|
|
if (empty($object_data['published']) && !empty($object_data['updated'])) {
|
|
|
|
$object_data['published'] = $object_data['updated'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$object_data['uuid'] = defaults($object, 'uuid', null);
|
2018-09-20 01:37:01 -04:00
|
|
|
$object_data['owner'] = $object_data['author'] = JsonLD::fetchElement($object, 'attributedTo', 'id');
|
2018-09-16 01:49:13 -04:00
|
|
|
$object_data['context'] = defaults($object, 'context', null);
|
|
|
|
$object_data['conversation'] = defaults($object, 'conversation', null);
|
|
|
|
$object_data['sensitive'] = defaults($object, 'sensitive', null);
|
|
|
|
$object_data['name'] = defaults($object, 'title', null);
|
|
|
|
$object_data['name'] = defaults($object, 'name', $object_data['name']);
|
|
|
|
$object_data['summary'] = defaults($object, 'summary', null);
|
|
|
|
$object_data['content'] = defaults($object, 'content', null);
|
|
|
|
$object_data['source'] = defaults($object, 'source', null);
|
2018-09-20 01:37:01 -04:00
|
|
|
$object_data['location'] = JsonLD::fetchElement($object, 'location', 'name', 'type', 'Place');
|
2018-09-16 01:49:13 -04:00
|
|
|
$object_data['attachments'] = defaults($object, 'attachment', null);
|
|
|
|
$object_data['tags'] = defaults($object, 'tag', null);
|
2018-09-20 01:37:01 -04:00
|
|
|
$object_data['service'] = JsonLD::fetchElement($object, 'instrument', 'name', 'type', 'Service');
|
|
|
|
$object_data['alternate-url'] = JsonLD::fetchElement($object, 'url', 'href');
|
2018-09-16 05:06:09 -04:00
|
|
|
$object_data['receiver'] = self::getReceivers($object, $object_data['owner']);
|
2018-09-10 17:07:25 -04:00
|
|
|
|
|
|
|
// Unhandled
|
2018-09-16 01:49:13 -04:00
|
|
|
// @context, type, actor, signature, mediaType, duration, replies, icon
|
|
|
|
|
|
|
|
// Also missing: (Defined in the standard, but currently unused)
|
|
|
|
// audience, preview, endTime, startTime, generator, image
|
|
|
|
|
|
|
|
return $object_data;
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-14 12:51:32 -04:00
|
|
|
private static function processNote($object)
|
2018-09-10 17:07:25 -04:00
|
|
|
{
|
2018-09-16 01:49:13 -04:00
|
|
|
$object_data = [];
|
2018-09-10 17:07:25 -04:00
|
|
|
|
|
|
|
// To-Do?
|
2018-09-16 01:49:13 -04:00
|
|
|
// emoji, atomUri, inReplyToAtomUri
|
2018-09-10 17:07:25 -04:00
|
|
|
|
|
|
|
// Unhandled
|
2018-09-16 01:49:13 -04:00
|
|
|
// contentMap, announcement_count, announcements, context_id, likes, like_count
|
|
|
|
// inReplyToStatusId, shares, quoteUrl, statusnetConversationId
|
|
|
|
|
|
|
|
return $object_data;
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-14 12:51:32 -04:00
|
|
|
private static function processArticle($object)
|
2018-09-10 17:07:25 -04:00
|
|
|
{
|
2018-09-16 01:49:13 -04:00
|
|
|
$object_data = [];
|
2018-09-10 17:07:25 -04:00
|
|
|
|
2018-09-16 01:49:13 -04:00
|
|
|
return $object_data;
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-14 12:51:32 -04:00
|
|
|
private static function processVideo($object)
|
2018-09-10 17:07:25 -04:00
|
|
|
{
|
2018-09-16 01:49:13 -04:00
|
|
|
$object_data = [];
|
|
|
|
|
2018-09-10 17:07:25 -04:00
|
|
|
// To-Do?
|
2018-09-16 01:49:13 -04:00
|
|
|
// category, licence, language, commentsEnabled
|
2018-09-10 17:07:25 -04:00
|
|
|
|
|
|
|
// Unhandled
|
2018-09-16 01:49:13 -04:00
|
|
|
// views, waitTranscoding, state, support, subtitleLanguage
|
|
|
|
// likes, dislikes, shares, comments
|
|
|
|
|
|
|
|
return $object_data;
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-14 17:10:49 -04:00
|
|
|
private static function convertMentions($body)
|
|
|
|
{
|
|
|
|
$URLSearchString = "^\[\]";
|
|
|
|
$body = preg_replace("/\[url\=([$URLSearchString]*)\]([#@!])(.*?)\[\/url\]/ism", '$2[url=$1]$3[/url]', $body);
|
|
|
|
|
|
|
|
return $body;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function constructTagList($tags, $sensitive)
|
|
|
|
{
|
|
|
|
if (empty($tags)) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$tag_text = '';
|
|
|
|
foreach ($tags as $tag) {
|
|
|
|
if (in_array($tag['type'], ['Mention', 'Hashtag'])) {
|
|
|
|
if (!empty($tag_text)) {
|
|
|
|
$tag_text .= ',';
|
|
|
|
}
|
|
|
|
|
2018-09-17 01:51:05 -04:00
|
|
|
if (empty($tag['href'])) {
|
|
|
|
//$tag['href']
|
|
|
|
logger('Blubb!');
|
|
|
|
}
|
|
|
|
|
2018-09-14 17:10:49 -04:00
|
|
|
$tag_text .= substr($tag['name'], 0, 1) . '[url=' . $tag['href'] . ']' . substr($tag['name'], 1) . '[/url]';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @todo add nsfw for $sensitive
|
|
|
|
|
|
|
|
return $tag_text;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function constructAttachList($attachments, $item)
|
|
|
|
{
|
|
|
|
if (empty($attachments)) {
|
|
|
|
return $item;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($attachments as $attach) {
|
|
|
|
$filetype = strtolower(substr($attach['mediaType'], 0, strpos($attach['mediaType'], '/')));
|
|
|
|
if ($filetype == 'image') {
|
|
|
|
$item['body'] .= "\n[img]".$attach['url'].'[/img]';
|
|
|
|
} else {
|
|
|
|
if (!empty($item["attach"])) {
|
|
|
|
$item["attach"] .= ',';
|
|
|
|
} else {
|
|
|
|
$item["attach"] = '';
|
|
|
|
}
|
|
|
|
if (!isset($attach['length'])) {
|
|
|
|
$attach['length'] = "0";
|
|
|
|
}
|
|
|
|
$item["attach"] .= '[attach]href="'.$attach['url'].'" length="'.$attach['length'].'" type="'.$attach['mediaType'].'" title="'.defaults($attach, 'name', '').'"[/attach]';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $item;
|
|
|
|
}
|
|
|
|
|
2018-09-14 12:51:32 -04:00
|
|
|
private static function createItem($activity, $body)
|
2018-09-10 17:07:25 -04:00
|
|
|
{
|
2018-09-15 14:54:45 -04:00
|
|
|
$item = [];
|
|
|
|
$item['verb'] = ACTIVITY_POST;
|
|
|
|
$item['parent-uri'] = $activity['reply-to-uri'];
|
2018-09-14 12:51:32 -04:00
|
|
|
|
2018-09-15 14:54:45 -04:00
|
|
|
if ($activity['reply-to-uri'] == $activity['uri']) {
|
|
|
|
$item['gravity'] = GRAVITY_PARENT;
|
|
|
|
$item['object-type'] = ACTIVITY_OBJ_NOTE;
|
|
|
|
} else {
|
|
|
|
$item['gravity'] = GRAVITY_COMMENT;
|
|
|
|
$item['object-type'] = ACTIVITY_OBJ_COMMENT;
|
|
|
|
}
|
|
|
|
|
2018-09-16 09:04:00 -04:00
|
|
|
if (($activity['uri'] != $activity['reply-to-uri']) && !Item::exists(['uri' => $activity['reply-to-uri']])) {
|
|
|
|
logger('Parent ' . $activity['reply-to-uri'] . ' not found. Try to refetch it.');
|
2018-09-16 13:47:00 -04:00
|
|
|
self::fetchMissingActivity($activity['reply-to-uri'], $activity);
|
2018-09-16 09:04:00 -04:00
|
|
|
}
|
|
|
|
|
2018-09-15 14:54:45 -04:00
|
|
|
self::postItem($activity, $item, $body);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function likeItem($activity, $body)
|
|
|
|
{
|
2018-09-14 12:51:32 -04:00
|
|
|
$item = [];
|
2018-09-15 14:54:45 -04:00
|
|
|
$item['verb'] = ACTIVITY_LIKE;
|
|
|
|
$item['parent-uri'] = $activity['object'];
|
|
|
|
$item['gravity'] = GRAVITY_ACTIVITY;
|
|
|
|
$item['object-type'] = ACTIVITY_OBJ_NOTE;
|
|
|
|
|
|
|
|
self::postItem($activity, $item, $body);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function postItem($activity, $item, $body)
|
|
|
|
{
|
|
|
|
/// @todo What to do with $activity['context']?
|
|
|
|
|
2018-09-14 12:51:32 -04:00
|
|
|
$item['network'] = Protocol::ACTIVITYPUB;
|
2018-09-16 09:04:00 -04:00
|
|
|
$item['private'] = !in_array(0, $activity['receiver']);
|
2018-09-14 12:51:32 -04:00
|
|
|
$item['author-id'] = Contact::getIdForURL($activity['author'], 0, true);
|
|
|
|
$item['owner-id'] = Contact::getIdForURL($activity['owner'], 0, true);
|
|
|
|
$item['uri'] = $activity['uri'];
|
|
|
|
$item['created'] = $activity['published'];
|
|
|
|
$item['edited'] = $activity['updated'];
|
|
|
|
$item['guid'] = $activity['uuid'];
|
|
|
|
$item['title'] = HTML::toBBCode($activity['name']);
|
|
|
|
$item['content-warning'] = HTML::toBBCode($activity['summary']);
|
2018-09-14 17:10:49 -04:00
|
|
|
$item['body'] = self::convertMentions(HTML::toBBCode($activity['content']));
|
2018-09-14 12:51:32 -04:00
|
|
|
$item['location'] = $activity['location'];
|
2018-09-14 17:10:49 -04:00
|
|
|
$item['tag'] = self::constructTagList($activity['tags'], $activity['sensitive']);
|
2018-09-14 12:51:32 -04:00
|
|
|
$item['app'] = $activity['service'];
|
2018-09-14 17:10:49 -04:00
|
|
|
$item['plink'] = defaults($activity, 'alternate-url', $item['uri']);
|
|
|
|
|
|
|
|
$item = self::constructAttachList($activity['attachments'], $item);
|
2018-09-14 12:51:32 -04:00
|
|
|
|
2018-09-20 01:37:01 -04:00
|
|
|
$source = JsonLD::fetchElement($activity, 'source', 'content', 'mediaType', 'text/bbcode');
|
2018-09-15 03:40:19 -04:00
|
|
|
if (!empty($source)) {
|
|
|
|
$item['body'] = $source;
|
|
|
|
}
|
|
|
|
|
2018-09-14 12:51:32 -04:00
|
|
|
$item['protocol'] = Conversation::PARCEL_ACTIVITYPUB;
|
|
|
|
$item['source'] = $body;
|
|
|
|
$item['conversation-uri'] = $activity['conversation'];
|
|
|
|
|
|
|
|
foreach ($activity['receiver'] as $receiver) {
|
|
|
|
$item['uid'] = $receiver;
|
|
|
|
$item['contact-id'] = Contact::getIdForURL($activity['author'], $receiver, true);
|
|
|
|
|
|
|
|
if (($receiver != 0) && empty($item['contact-id'])) {
|
|
|
|
$item['contact-id'] = Contact::getIdForURL($activity['author'], 0, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
$item_id = Item::insert($item);
|
|
|
|
logger('Storing for user ' . $item['uid'] . ': ' . $item_id);
|
2018-09-16 05:06:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-16 13:47:00 -04:00
|
|
|
private static function fetchMissingActivity($url, $child)
|
2018-09-16 09:04:00 -04:00
|
|
|
{
|
|
|
|
$object = ActivityPub::fetchContent($url);
|
|
|
|
if (empty($object)) {
|
|
|
|
logger('Activity ' . $url . ' was not fetchable, aborting.');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$activity = [];
|
|
|
|
$activity['@context'] = $object['@context'];
|
|
|
|
unset($object['@context']);
|
|
|
|
$activity['id'] = $object['id'];
|
|
|
|
$activity['to'] = defaults($object, 'to', []);
|
|
|
|
$activity['cc'] = defaults($object, 'cc', []);
|
2018-09-20 01:00:49 -04:00
|
|
|
$activity['actor'] = $child['author'];
|
2018-09-16 09:04:00 -04:00
|
|
|
$activity['object'] = $object;
|
|
|
|
$activity['published'] = $object['published'];
|
|
|
|
$activity['type'] = 'Create';
|
2018-09-21 00:51:54 -04:00
|
|
|
|
2018-09-16 09:04:00 -04:00
|
|
|
self::processActivity($activity);
|
|
|
|
logger('Activity ' . $url . ' had been fetched and processed.');
|
|
|
|
}
|
|
|
|
|
2018-09-16 05:06:09 -04:00
|
|
|
private static function getUserOfObject($object)
|
|
|
|
{
|
|
|
|
$self = DBA::selectFirst('contact', ['uid'], ['nurl' => normalise_link($object), 'self' => true]);
|
2018-09-16 09:04:00 -04:00
|
|
|
if (!DBA::isResult($self)) {
|
2018-09-16 05:06:09 -04:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return $self['uid'];
|
2018-09-14 12:51:32 -04:00
|
|
|
}
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-15 14:54:45 -04:00
|
|
|
private static function followUser($activity)
|
2018-09-10 17:07:25 -04:00
|
|
|
{
|
2018-09-16 09:04:00 -04:00
|
|
|
$uid = self::getUserOfObject($activity['object']);
|
2018-09-16 05:06:09 -04:00
|
|
|
if (empty($uid)) {
|
2018-09-15 14:54:45 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
|
|
|
|
$cid = Contact::getIdForURL($activity['owner'], $uid);
|
|
|
|
if (!empty($cid)) {
|
|
|
|
$contact = DBA::selectFirst('contact', [], ['id' => $cid]);
|
|
|
|
} else {
|
|
|
|
$contact = false;
|
|
|
|
}
|
|
|
|
|
2018-09-15 16:31:05 -04:00
|
|
|
$item = ['author-id' => Contact::getIdForURL($activity['owner']),
|
|
|
|
'author-link' => $activity['owner']];
|
2018-09-15 14:54:45 -04:00
|
|
|
|
|
|
|
Contact::addRelationship($owner, $contact, $item);
|
|
|
|
$cid = Contact::getIdForURL($activity['owner'], $uid);
|
|
|
|
if (empty($cid)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$contact = DBA::selectFirst('contact', ['network'], ['id' => $cid]);
|
|
|
|
if ($contact['network'] != Protocol::ACTIVITYPUB) {
|
|
|
|
Contact::updateFromProbe($cid, Protocol::ACTIVITYPUB);
|
|
|
|
}
|
|
|
|
|
|
|
|
DBA::update('contact', ['hub-verify' => $activity['id']], ['id' => $cid]);
|
|
|
|
logger('Follow user ' . $uid . ' from contact ' . $cid . ' with id ' . $activity['id']);
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-15 14:54:45 -04:00
|
|
|
private static function acceptFollowUser($activity)
|
|
|
|
{
|
2018-09-16 09:04:00 -04:00
|
|
|
$uid = self::getUserOfObject($activity['object']);
|
2018-09-16 05:06:09 -04:00
|
|
|
if (empty($uid)) {
|
2018-09-15 14:54:45 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
|
|
|
|
$cid = Contact::getIdForURL($activity['owner'], $uid);
|
|
|
|
if (empty($cid)) {
|
|
|
|
logger('No contact found for ' . $activity['owner'], LOGGER_DEBUG);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$fields = ['pending' => false];
|
2018-09-15 18:25:58 -04:00
|
|
|
|
|
|
|
$contact = DBA::selectFirst('contact', ['rel'], ['id' => $cid]);
|
|
|
|
if ($contact['rel'] == Contact::FOLLOWER) {
|
|
|
|
$fields['rel'] = Contact::FRIEND;
|
|
|
|
}
|
|
|
|
|
|
|
|
$condition = ['id' => $cid];
|
|
|
|
DBA::update('contact', $fields, $condition);
|
2018-09-15 14:54:45 -04:00
|
|
|
logger('Accept contact request from contact ' . $cid . ' for user ' . $uid, LOGGER_DEBUG);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function undoFollowUser($activity)
|
|
|
|
{
|
2018-09-16 09:04:00 -04:00
|
|
|
$uid = self::getUserOfObject($activity['object']);
|
2018-09-16 05:06:09 -04:00
|
|
|
if (empty($uid)) {
|
2018-09-15 14:54:45 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
|
|
|
|
$cid = Contact::getIdForURL($activity['owner'], $uid);
|
|
|
|
if (empty($cid)) {
|
|
|
|
logger('No contact found for ' . $activity['owner'], LOGGER_DEBUG);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$contact = DBA::selectFirst('contact', [], ['id' => $cid]);
|
|
|
|
if (!DBA::isResult($contact)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Contact::removeFollower($owner, $contact);
|
|
|
|
logger('Undo following request from contact ' . $cid . ' for user ' . $uid, LOGGER_DEBUG);
|
|
|
|
}
|
2018-09-10 17:07:25 -04:00
|
|
|
}
|