]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/PullDirectory.php
Replace worker_daemon_mode config entry with key-value entry
[friendica.git] / src / Worker / PullDirectory.php
index af11a3fd06d74efdd6f3b3a02d36e09aa6417c40..d174d11f3e5d36a67b898f5d2883667b3f9dff73 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
 namespace Friendica\Worker;
 
 use Friendica\Core\Logger;
-use Friendica\Core\Worker;
+use Friendica\Core\Search;
 use Friendica\DI;
 use Friendica\Model\Contact;
+use Friendica\Network\HTTPClient\Client\HttpClientAccept;
 
 class PullDirectory
 {
@@ -38,17 +39,17 @@ class PullDirectory
                        return;
                }
 
-               $directory = DI::config()->get('system', 'directory');
+               $directory = Search::getGlobalDirectory();
                if (empty($directory)) {
                        Logger::info('No directory configured');
                        return;
                }
 
-               $now = (int)DI::config()->get('system', 'last-directory-sync', 0);
+               $now = (int)(DI::keyValue()->get('last-directory-sync') ?? 0);
 
                Logger::info('Synchronization started.', ['now' => $now, 'directory' => $directory]);
 
-               $result = DI::httpRequest()->fetch($directory . '/sync/pull/since/' . $now);
+               $result = DI::httpClient()->fetch($directory . '/sync/pull/since/' . $now, HttpClientAccept::JSON);
                if (empty($result)) {
                        Logger::info('Directory server return empty result.', ['directory' => $directory]);
                        return;
@@ -60,17 +61,11 @@ class PullDirectory
                        return;
                }
 
+               $result = Contact::addByUrls($contacts['results']);
+
                $now = $contacts['now'] ?? 0;
-               $count = $contacts['count'] ?? 0;
-               $added = 0;
-               foreach ($contacts['results'] as $url) {
-                       if (empty(Contact::getByURL($url, false, ['id']))) {
-                               Worker::add(PRIORITY_LOW, 'AddContact', 0, $url);
-                               ++$added;
-                       }
-               }
-               DI::config()->set('system', 'last-directory-sync', $now);
+               DI::keyValue()->set('last-directory-sync', $now);
 
-               Logger::info('Synchronization ended.', ['now' => $now, 'count' => $count, 'added' => $added, 'directory' => $directory]);
+               Logger::info('Synchronization ended', ['now' => $now, 'count' => $result['count'], 'added' => $result['added'], 'updated' => $result['updated'], 'unchanged' => $result['unchanged'], 'directory' => $directory]);
        }
 }