]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/UpdateGContacts.php
Now using only a single array
[friendica.git] / src / Worker / UpdateGContacts.php
index 64ffb2a50be952907857a4cff157b2716e0d6957..edee112eef9c3cef467207a4f9742a69793d7042 100644 (file)
@@ -9,29 +9,31 @@ use Friendica\Core\Logger;
 use Friendica\Core\Protocol;
 use Friendica\Core\Worker;
 use Friendica\Database\DBA;
-use Friendica\Model\Contact;
+use Friendica\Model\GContact;
 use Friendica\Model\GServer;
 use Friendica\Util\DateTimeFormat;
 use Friendica\Util\Strings;
 
 class UpdateGContacts
 {
-       // Updates gcontact entries
+       /**
+        * Updates global contacts
+        */
        public static function execute()
        {
                if (!Config::get('system', 'poco_completion')) {
                        return;
                }
 
-               Logger::info('Discover contacts');
+               Logger::info('Update global contacts');
 
                $starttime = time();
 
                $contacts = DBA::p("SELECT `url`, `created`, `updated`, `last_failure`, `last_contact`, `server_url`, `network` FROM `gcontact`
                                WHERE `last_contact` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND
                                        `last_failure` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND
-                                       `network` IN (?, ?, ?, ?, '') ORDER BY rand()",
-                               Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, Protocol::FEED);
+                                       `network` IN (?, ?, ?, ?, ?, '') ORDER BY rand()",
+                               Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, Protocol::FEED);
 
                $checked = 0;
 
@@ -51,7 +53,7 @@ class UpdateGContacts
                                continue;
                        }
 
-                       $server_url = Contact::getBasepath($contact['url']);
+                       $server_url = GContact::getBasepath($contact['url'], true);
                        $force_update = false;
 
                        if (!empty($contact['server_url'])) {