]> git.mxchange.org Git - friendica.git/blob - src/Worker/UpdateContact.php
f83f47524d363f625ac54051c465114c92238fc3
[friendica.git] / src / Worker / UpdateContact.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Worker;
23
24 use Friendica\Core\Logger;
25 use Friendica\Model\Contact;
26 use Friendica\Network\HTTPException\InternalServerErrorException;
27
28 class UpdateContact
29 {
30         /**
31          * Update contact data via probe
32          *
33          * @param int    $contact_id Contact ID
34          * @return void
35          */
36         public static function execute(int $contact_id)
37         {
38                 // Silently dropping the task if the contact is blocked
39                 if (Contact::isBlocked($contact_id)) {
40                         return;
41                 }
42
43                 $success = Contact::updateFromProbe($contact_id);
44
45                 Logger::info('Updated from probe', ['id' => $contact_id, 'success' => $success]);
46         }
47
48         /**
49          * @param array|int $run_parameters Priority constant or array of options described in Worker::add
50          * @param int       $contact_id
51          * @return int
52          * @throws InternalServerErrorException
53          */
54         public static function add($run_parameters, int $contact_id): int
55         {
56                 if (!$contact_id) {
57                         throw new \InvalidArgumentException('Invalid value provided for contact_id');
58                 }
59
60                 // Dropping the task if the contact is blocked
61                 if (Contact::isBlocked($contact_id)) {
62                         return 0;
63                 }
64
65                 return Worker::add($run_parameters, 'UpdateContact', $contact_id);
66         }
67 }