]> git.mxchange.org Git - friendica.git/blob - src/Worker/PullDirectory.php
We now store the receivers as well
[friendica.git] / src / Worker / PullDirectory.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Worker;
23
24 use Friendica\Core\Logger;
25 use Friendica\Core\Search;
26 use Friendica\DI;
27 use Friendica\Model\Contact;
28 use Friendica\Network\HTTPClient\Client\HttpClientAccept;
29
30 class PullDirectory
31 {
32         /**
33          * Pull contacts from a directory server
34          */
35         public static function execute()
36         {
37                 if (!DI::config()->get('system', 'synchronize_directory')) {
38                         Logger::info('Synchronization deactivated');
39                         return;
40                 }
41
42                 $directory = Search::getGlobalDirectory();
43                 if (empty($directory)) {
44                         Logger::info('No directory configured');
45                         return;
46                 }
47
48                 $now = (int)DI::config()->get('system', 'last-directory-sync', 0);
49
50                 Logger::info('Synchronization started.', ['now' => $now, 'directory' => $directory]);
51
52                 $result = DI::httpClient()->fetch($directory . '/sync/pull/since/' . $now, HttpClientAccept::JSON);
53                 if (empty($result)) {
54                         Logger::info('Directory server return empty result.', ['directory' => $directory]);
55                         return;
56                 }
57
58                 $contacts = json_decode($result, true);
59                 if (empty($contacts['results'])) {
60                         Logger::info('No results fetched.', ['directory' => $directory]);
61                         return;
62                 }
63
64                 $result = Contact::addByUrls($contacts['results']);
65
66                 $now = $contacts['now'] ?? 0;
67                 DI::config()->set('system', 'last-directory-sync', $now);
68
69                 Logger::info('Synchronization ended', ['now' => $now, 'count' => $result['count'], 'added' => $result['added'], 'updated' => $result['updated'], 'unchanged' => $result['unchanged'], 'directory' => $directory]);
70         }
71 }