2015-11-05 18:47:54 -05:00
|
|
|
<?php
|
2018-01-24 21:08:45 -05:00
|
|
|
|
2017-11-15 10:53:16 -05:00
|
|
|
/**
|
2017-11-15 16:12:33 -05:00
|
|
|
* @file src/Worker/UpdateGcontact.php
|
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;
|
2019-07-03 01:46:35 -04:00
|
|
|
use Friendica\Model\GContact;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2017-01-18 16:45:32 -05:00
|
|
|
|
2018-01-24 21:08:45 -05:00
|
|
|
class UpdateGContact
|
|
|
|
{
|
2019-07-03 01:46:35 -04:00
|
|
|
public static function execute($url, $command = '')
|
2018-01-24 21:08:45 -05:00
|
|
|
{
|
2019-07-03 01:46:35 -04:00
|
|
|
$force = ($command == "force");
|
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]);
|
2017-11-15 16:12:33 -05:00
|
|
|
}
|
2015-11-05 18:47:54 -05:00
|
|
|
}
|