2015-11-06 00:47:54 +01:00
|
|
|
<?php
|
2018-01-25 03:08:45 +01:00
|
|
|
|
2017-11-15 16:53:16 +01:00
|
|
|
/**
|
2017-11-15 22:12:33 +01:00
|
|
|
* @file src/Worker/UpdateGcontact.php
|
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;
|
2019-07-03 07:46:35 +02:00
|
|
|
use Friendica\Model\GContact;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
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
|
|
|
|
* @param string $url Global contact url
|
|
|
|
* @param string $command
|
|
|
|
*/
|
2019-07-03 07:46:35 +02:00
|
|
|
public static function execute($url, $command = '')
|
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]);
|
2017-11-15 22:12:33 +01:00
|
|
|
}
|
2015-11-06 00:47:54 +01:00
|
|
|
}
|