2015-11-06 00:47:54 +01:00
|
|
|
<?php
|
2017-11-15 16:53:16 +01:00
|
|
|
/**
|
2020-02-09 16:18:46 +01: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 16:53:16 +01:00
|
|
|
*/
|
2018-01-25 03:08:45 +01:00
|
|
|
|
2017-11-18 08:33:44 +01:00
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2020-03-05 23:03:24 +01:00
|
|
|
use Friendica\DI;
|
2019-07-03 07:46:35 +02:00
|
|
|
use Friendica\Model\GContact;
|
2017-01-18 22:45:32 +01:00
|
|
|
|
2018-01-25 03:08:45 +01:00
|
|
|
class UpdateGContact
|
|
|
|
{
|
2019-12-21 21:18:44 +01:00
|
|
|
/**
|
|
|
|
* Update global contact via probe
|
2020-03-07 06:31:03 +01:00
|
|
|
* @param string $url Global contact url
|
|
|
|
* @param string $command
|
|
|
|
* @param integer $following_gcid gcontact ID of the contact that is followed by this one
|
|
|
|
* @param integer $follower_gcid gcontact ID of the contact that is following this one
|
2019-12-21 21:18:44 +01:00
|
|
|
*/
|
2020-03-07 06:31:03 +01:00
|
|
|
public static function execute(string $url, string $command = '', int $following_gcid = 0, int $follower_gcid = 0)
|
2018-01-25 03:08:45 +01:00
|
|
|
{
|
2019-07-03 07:46:35 +02:00
|
|
|
$force = ($command == "force");
|
2015-11-06 00:47:54 +01:00
|
|
|
|
2019-07-03 07:46:35 +02:00
|
|
|
$success = GContact::updateFromProbe($url, $force);
|
2015-11-06 00:47:54 +01:00
|
|
|
|
2019-07-03 07:46:35 +02:00
|
|
|
Logger::info('Updated from probe', ['url' => $url, 'force' => $force, 'success' => $success]);
|
2020-03-05 23:03:24 +01:00
|
|
|
|
|
|
|
if ($success && DI::config()->get('system', 'gcontact_discovery')) {
|
2020-03-07 06:31:03 +01:00
|
|
|
GContact::discoverFollowers($url, $following_gcid, $follower_gcid);
|
2020-03-05 23:03:24 +01:00
|
|
|
}
|
2017-11-15 22:12:33 +01:00
|
|
|
}
|
2015-11-06 00:47:54 +01:00
|
|
|
}
|