friendica/src/Worker/UpdateContact.php

25 lines
496 B
PHP
Raw Normal View History

2019-04-08 23:06:15 +02:00
<?php
/**
* @file src/Worker/UpdateContact.php
*/
namespace Friendica\Worker;
use Friendica\Core\Logger;
use Friendica\Model\Contact;
use Friendica\Util\DateTimeFormat;
use Friendica\Database\DBA;
2019-04-08 23:06:15 +02:00
class UpdateContact
{
2019-06-23 11:27:40 +02:00
public static function execute($contact_id, $command = '')
2019-04-08 23:06:15 +02:00
{
2019-06-23 11:27:40 +02:00
$force = ($command == "force");
$success = Contact::updateFromProbe($contact_id, '', $force);
Logger::info('Updated from probe', ['id' => $contact_id, 'force' => $force, 'success' => $success]);
2019-04-08 23:06:15 +02:00
}
}