mirror of
https://github.com/friendica/friendica
synced 2025-03-04 11:08:26 +00:00
58 lines
1.7 KiB
PHP
58 lines
1.7 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
use Friendica\Core\Logger;
|
|
use Friendica\Core\Search;
|
|
use Friendica\DI;
|
|
use Friendica\Model\Contact;
|
|
use Friendica\Network\HTTPClient\Client\HttpClientAccept;
|
|
use Friendica\Network\HTTPClient\Client\HttpClientRequest;
|
|
|
|
class PullDirectory
|
|
{
|
|
/**
|
|
* Pull contacts from a directory server
|
|
*/
|
|
public static function execute()
|
|
{
|
|
if (!DI::config()->get('system', 'synchronize_directory')) {
|
|
Logger::info('Synchronization deactivated');
|
|
return;
|
|
}
|
|
|
|
$directory = Search::getGlobalDirectory();
|
|
if (empty($directory)) {
|
|
Logger::info('No directory configured');
|
|
return;
|
|
}
|
|
|
|
$now = (int)(DI::keyValue()->get('last-directory-sync') ?? 0);
|
|
|
|
Logger::info('Synchronization started.', ['now' => $now, 'directory' => $directory]);
|
|
|
|
$result = DI::httpClient()->fetch($directory . '/sync/pull/since/' . $now, HttpClientAccept::JSON, 0, '', HttpClientRequest::CONTACTDISCOVER);
|
|
if (empty($result)) {
|
|
Logger::info('Directory server return empty result.', ['directory' => $directory]);
|
|
return;
|
|
}
|
|
|
|
$contacts = json_decode($result, true);
|
|
if (empty($contacts['results'])) {
|
|
Logger::info('No results fetched.', ['directory' => $directory]);
|
|
return;
|
|
}
|
|
|
|
$result = Contact::addByUrls($contacts['results']);
|
|
|
|
$now = $contacts['now'] ?? 0;
|
|
DI::keyValue()->set('last-directory-sync', $now);
|
|
|
|
Logger::info('Synchronization ended', ['now' => $now, 'count' => $result['count'], 'added' => $result['added'], 'updated' => $result['updated'], 'unchanged' => $result['unchanged'], 'directory' => $directory]);
|
|
}
|
|
}
|