friendica/src/Worker/PullDirectory.php

70 lines
2.1 KiB
PHP
Raw Normal View History

<?php
/**
2021-03-29 08:40:20 +02:00
* @copyright Copyright (C) 2010-2021, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
namespace Friendica\Worker;
use Friendica\Core\Logger;
use Friendica\DI;
use Friendica\Model\Contact;
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 = DI::config()->get('system', 'directory');
if (empty($directory)) {
Logger::info('No directory configured');
return;
}
$now = (int)DI::config()->get('system', 'last-directory-sync', 0);
Logger::info('Synchronization started.', ['now' => $now, 'directory' => $directory]);
$result = DI::httpClient()->fetch($directory . '/sync/pull/since/' . $now);
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;
}
2020-08-02 15:37:43 +02:00
$result = Contact::addByUrls($contacts['results']);
2020-08-01 18:15:18 +02:00
$now = $contacts['now'] ?? 0;
DI::config()->set('system', 'last-directory-sync', $now);
2020-10-03 12:52:34 +02:00
Logger::info('Synchronization ended', ['now' => $now, 'count' => $result['count'], 'added' => $result['added'], 'updated' => $result['updated'], 'unchanged' => $result['unchanged'], 'directory' => $directory]);
}
}