2020-07-31 05:08:51 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2021-03-29 02:40:20 -04:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-07-31 05:08:51 -04:00
|
|
|
*
|
|
|
|
* @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::httpRequest()->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 09:37:43 -04:00
|
|
|
$result = Contact::addByUrls($contacts['results']);
|
2020-08-01 12:15:18 -04:00
|
|
|
|
2020-07-31 05:08:51 -04:00
|
|
|
$now = $contacts['now'] ?? 0;
|
|
|
|
DI::config()->set('system', 'last-directory-sync', $now);
|
|
|
|
|
2020-10-03 06:52:34 -04:00
|
|
|
Logger::info('Synchronization ended', ['now' => $now, 'count' => $result['count'], 'added' => $result['added'], 'updated' => $result['updated'], 'unchanged' => $result['unchanged'], 'directory' => $directory]);
|
2020-07-31 05:08:51 -04:00
|
|
|
}
|
|
|
|
}
|