2015-11-05 18:47:54 -05:00
|
|
|
<?php
|
2017-11-15 10:53:16 -05:00
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
2017-11-15 10:53:16 -05:00
|
|
|
*/
|
2018-01-24 21:08:45 -05:00
|
|
|
|
2017-11-18 02:33:44 -05:00
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2020-03-05 17:03:24 -05:00
|
|
|
use Friendica\DI;
|
2019-07-03 01:46:35 -04:00
|
|
|
use Friendica\Model\GContact;
|
2017-01-18 16:45:32 -05:00
|
|
|
|
2018-01-24 21:08:45 -05:00
|
|
|
class UpdateGContact
|
|
|
|
{
|
2019-12-21 15:18:44 -05:00
|
|
|
/**
|
|
|
|
* Update global contact via probe
|
2020-03-08 15:48:26 -04:00
|
|
|
* @param string $url Global contact url
|
2020-03-07 00:31:03 -05:00
|
|
|
* @param string $command
|
2019-12-21 15:18:44 -05:00
|
|
|
*/
|
2020-03-08 15:48:26 -04:00
|
|
|
public static function execute(string $url, string $command = '')
|
2018-01-24 21:08:45 -05:00
|
|
|
{
|
2019-07-03 01:46:35 -04:00
|
|
|
$force = ($command == "force");
|
2020-03-30 02:22:32 -04:00
|
|
|
$nodiscover = ($command == "nodiscover");
|
2015-11-05 18:47:54 -05:00
|
|
|
|
2019-07-03 01:46:35 -04:00
|
|
|
$success = GContact::updateFromProbe($url, $force);
|
2015-11-05 18:47:54 -05:00
|
|
|
|
2019-07-03 01:46:35 -04:00
|
|
|
Logger::info('Updated from probe', ['url' => $url, 'force' => $force, 'success' => $success]);
|
2020-03-05 17:03:24 -05:00
|
|
|
|
2020-03-30 02:22:32 -04:00
|
|
|
if ($success && !$nodiscover && (DI::config()->get('system', 'gcontact_discovery') == GContact::DISCOVERY_RECURSIVE)) {
|
2020-03-08 15:48:26 -04:00
|
|
|
GContact::discoverFollowers($url);
|
2020-03-05 17:03:24 -05:00
|
|
|
}
|
2017-11-15 16:12:33 -05:00
|
|
|
}
|
2015-11-05 18:47:54 -05:00
|
|
|
}
|