]> git.mxchange.org Git - friendica.git/blobdiff - src/Protocol/ActivityPub.php
Move FSuggest to depository
[friendica.git] / src / Protocol / ActivityPub.php
index 134f69f4a66fd9a6d45c39cfdb063e734840471f..a34854152254862a50235760e55f76fe329ffb3f 100644 (file)
@@ -22,8 +22,6 @@
 namespace Friendica\Protocol;
 
 use Friendica\Core\Protocol;
-use Friendica\Database\DBA;
-use Friendica\DI;
 use Friendica\Model\APContact;
 use Friendica\Model\User;
 use Friendica\Util\HTTPSignature;
@@ -66,10 +64,14 @@ class ActivityPub
                'diaspora' => 'https://diasporafoundation.org/ns/',
                'litepub' => 'http://litepub.social/ns#',
                'toot' => 'http://joinmastodon.org/ns#',
+               'schema' => 'http://schema.org#',
                'manuallyApprovesFollowers' => 'as:manuallyApprovesFollowers',
                'sensitive' => 'as:sensitive', 'Hashtag' => 'as:Hashtag',
                'directMessage' => 'litepub:directMessage',
-               'discoverable' => 'toot:discoverable']];
+               'discoverable' => 'toot:discoverable',
+               'PropertyValue' => 'schema:PropertyValue',
+               'value' => 'schema:value',
+       ]];
        const ACCOUNT_TYPES = ['Person', 'Organization', 'Service', 'Group', 'Application', 'Tombstone'];
        /**
         * Checks if the web request is done for the AP protocol
@@ -159,6 +161,8 @@ class ActivityPub
                // $profile['keywords']
                // $profile['location']
                $profile['about'] = $apcontact['about'];
+               $profile['xmpp'] = $apcontact['xmpp'];
+               $profile['matrix'] = $apcontact['matrix'];
                $profile['batch'] = $apcontact['sharedinbox'];
                $profile['notify'] = $apcontact['inbox'];
                $profile['poll'] = $apcontact['outbox'];