X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FProtocol%2FActivityPub%2FTransmitter.php;h=ed2a84e7103da3753ea8adff52dc0ddcd276b9df;hb=4831688dc0ffbf72956942c9ac37960497e9b8c8;hp=b0e6cd362955f5a3e7f029577c4604e6f07f070c;hpb=9c9ebfc7c97016881d9ad2bb3c3b54a5640d2f08;p=friendica.git diff --git a/src/Protocol/ActivityPub/Transmitter.php b/src/Protocol/ActivityPub/Transmitter.php index b0e6cd3629..ed2a84e710 100644 --- a/src/Protocol/ActivityPub/Transmitter.php +++ b/src/Protocol/ActivityPub/Transmitter.php @@ -33,11 +33,6 @@ require_once 'include/api.php'; * @brief ActivityPub Transmitter Protocol class * * To-Do: - * - * Missing object types: - * - Event - * - * Complicated object types: * - Undo Announce */ class Transmitter @@ -287,8 +282,7 @@ class Transmitter foreach ($activity[$element] as $receiver) { if ($receiver == $profile['followers'] && !empty($item_profile['followers'])) { $permissions[$element][] = $item_profile['followers']; - } - if (!in_array($receiver, $exclude)) { + } elseif (!in_array($receiver, $exclude)) { $permissions[$element][] = $receiver; } } @@ -300,10 +294,11 @@ class Transmitter * Creates an array of permissions from an item thread * * @param array $item + * @param boolean $blindcopy * * @return array with permission data */ - private static function createPermissionBlockForItem($item) + private static function createPermissionBlockForItem($item, $blindcopy) { // Will be activated in a later step // $networks = [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS]; @@ -311,15 +306,15 @@ class Transmitter // For now only send to these contacts: $networks = [Protocol::ACTIVITYPUB, Protocol::OSTATUS]; - $data = ['to' => [], 'cc' => []]; - - $data = array_merge($data, self::fetchPermissionBlockFromConversation($item)); + $data = ['to' => [], 'cc' => [], 'bcc' => []]; $actor_profile = APContact::getByURL($item['author-link']); $terms = Term::tagArrayFromItemId($item['id'], TERM_MENTION); if (!$item['private']) { + $data = array_merge($data, self::fetchPermissionBlockFromConversation($item)); + $data['to'][] = ActivityPub::PUBLIC_COLLECTION; if (!empty($actor_profile['followers'])) { $data['cc'][] = $actor_profile['followers']; @@ -349,6 +344,8 @@ class Transmitter foreach ($receiver_list as $receiver) { $contact = DBA::selectFirst('contact', ['url'], ['id' => $receiver, 'network' => $networks]); if (DBA::isResult($contact) && !empty($profile = APContact::getByURL($contact['url'], false))) { + // BCC is currently deactivated, due to Pleroma and Mastodon not reacting like expected + // $data['bcc'][] = $profile['url']; $data['cc'][] = $profile['url']; } } @@ -383,6 +380,7 @@ class Transmitter $data['to'] = array_unique($data['to']); $data['cc'] = array_unique($data['cc']); + $data['bcc'] = array_unique($data['bcc']); if (($key = array_search($item['author-link'], $data['to'])) !== false) { unset($data['to'][$key]); @@ -392,13 +390,33 @@ class Transmitter unset($data['cc'][$key]); } + if (($key = array_search($item['author-link'], $data['bcc'])) !== false) { + unset($data['bcc'][$key]); + } + foreach ($data['to'] as $to) { if (($key = array_search($to, $data['cc'])) !== false) { unset($data['cc'][$key]); } + + if (($key = array_search($to, $data['bcc'])) !== false) { + unset($data['bcc'][$key]); + } } - return ['to' => array_values($data['to']), 'cc' => array_values($data['cc'])]; + foreach ($data['cc'] as $cc) { + if (($key = array_search($cc, $data['bcc'])) !== false) { + unset($data['bcc'][$key]); + } + } + + $receivers = ['to' => array_values($data['to']), 'cc' => array_values($data['cc']), 'bcc' => array_values($data['bcc'])]; + + if (!$blindcopy) { + unset($receivers['bcc']); + } + + return $receivers; } /** @@ -453,7 +471,7 @@ class Transmitter */ public static function fetchTargetInboxes($item, $uid, $personal = false) { - $permissions = self::createPermissionBlockForItem($item); + $permissions = self::createPermissionBlockForItem($item, true); if (empty($permissions)) { return []; } @@ -471,13 +489,15 @@ class Transmitter continue; } + $blindcopy = in_array($element, ['bto', 'bcc']); + foreach ($permissions[$element] as $receiver) { if ($receiver == $item_profile['followers']) { $inboxes = array_merge($inboxes, self::fetchTargetInboxesforUser($uid, $personal)); } else { $profile = APContact::getByURL($receiver, false); if (!empty($profile)) { - if (empty($profile['sharedinbox']) || $personal) { + if (empty($profile['sharedinbox']) || $personal || $blindcopy) { $target = $profile['inbox']; } else { $target = $profile['sharedinbox']; @@ -529,15 +549,19 @@ class Transmitter * Creates the activity or fetches it from the cache * * @param integer $item_id + * @param boolean $force Force new cache entry * * @return array with the activity */ - public static function createCachedActivityFromItem($item_id) + public static function createCachedActivityFromItem($item_id, $force = false) { $cachekey = 'APDelivery:createActivity:' . $item_id; - $data = Cache::get($cachekey); - if (!is_null($data)) { - return $data; + + if (!$force) { + $data = Cache::get($cachekey); + if (!is_null($data)) { + return $data; + } } $data = ActivityPub\Transmitter::createActivityFromItem($item_id); @@ -593,7 +617,7 @@ class Transmitter $data['instrument'] = ['type' => 'Service', 'name' => BaseObject::getApp()->getUserAgent()]; - $data = array_merge($data, self::createPermissionBlockForItem($item)); + $data = array_merge($data, self::createPermissionBlockForItem($item, false)); if (in_array($data['type'], ['Create', 'Update', 'Delete'])) { $data['object'] = self::createNote($item); @@ -603,6 +627,9 @@ class Transmitter $data['object'] = self::createActivityFromItem($item_id, true); } else { $data['diaspora:guid'] = $item['guid']; + if (!empty($item['signed_text'])) { + $data['diaspora:like'] = $item['signed_text']; + } $data['object'] = $item['thr-parent']; } @@ -827,6 +854,32 @@ class Transmitter return DBA::exists('term', $condition); } + /** + * Creates event data + * + * @param array $item + * + * @return array with the event data + */ + public static function createEvent($item) + { + $event = []; + $event['name'] = $item['event-summary']; + $event['content'] = BBCode::convert($item['event-desc'], false, 7); + $event['startTime'] = DateTimeFormat::utc($item['event-start'] . '+00:00', DateTimeFormat::ATOM); + + if (!$item['event-nofinish']) { + $event['endTime'] = DateTimeFormat::utc($item['event-finish'] . '+00:00', DateTimeFormat::ATOM); + } + + if (!empty($item['event-location'])) { + $item['location'] = $item['event-location']; + $event['location'] = self::createLocation($item); + } + + return $event; + } + /** * Creates a note/article object array * @@ -836,7 +889,9 @@ class Transmitter */ public static function createNote($item) { - if (!empty($item['title'])) { + if ($item['event-type'] == 'event') { + $type = 'Event'; + } elseif (!empty($item['title'])) { $type = 'Article'; } else { $type = 'Note'; @@ -884,10 +939,15 @@ class Transmitter $body = self::removePictures($body); } - $regexp = "/[@!]\[url\=([^\[\]]*)\].*?\[\/url\]/ism"; - $body = preg_replace_callback($regexp, ['self', 'mentionCallback'], $body); + if ($type == 'Event') { + $data = array_merge($data, self::createEvent($item)); + } else { + $regexp = "/[@!]\[url\=([^\[\]]*)\].*?\[\/url\]/ism"; + $body = preg_replace_callback($regexp, ['self', 'mentionCallback'], $body); + + $data['content'] = BBCode::convert($body, false, 7); + } - $data['content'] = BBCode::convert($body, false, 7); $data['source'] = ['content' => $item['body'], 'mediaType' => "text/bbcode"]; if (!empty($item['signed_text']) && ($item['uri'] != $item['thr-parent'])) { @@ -897,7 +957,7 @@ class Transmitter $data['attachment'] = self::createAttachmentList($item, $type); $data['tag'] = self::createTagList($item); - if (!empty($item['coord']) || !empty($item['location'])) { + if (empty($data['location']) && (!empty($item['coord']) || !empty($item['location']))) { $data['location'] = self::createLocation($item); } @@ -905,7 +965,7 @@ class Transmitter $data['generator'] = ['type' => 'Application', 'name' => $item['app']]; } - $data = array_merge($data, self::createPermissionBlockForItem($item)); + $data = array_merge($data, self::createPermissionBlockForItem($item, false)); return $data; }