]> git.mxchange.org Git - friendica.git/blob - src/Worker/BulkDelivery.php
Changes after review
[friendica.git] / src / Worker / BulkDelivery.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\Core\Worker;
26 use Friendica\Model\GServer;
27 use Friendica\Protocol\Delivery as ProtocolDelivery;
28
29 class BulkDelivery
30 {
31         public static function execute(int $gsid)
32         {
33                 $server_failure   = false;
34                 $delivery_failure = false;
35
36                 $posts = ProtocolDelivery::selectQueueForServer($gsid);
37                 foreach ($posts as $post) {
38                         if (!$server_failure && ProtocolDelivery::deliver($post['command'], $post['uri-id'], $post['cid'], $post['uid'])) {
39                                 ProtocolDelivery::removeQueue($post['uri-id'], $post['gsid']);
40                                 Logger::debug('Delivery successful', $post);
41                         } else {
42                                 ProtocolDelivery::incrementFailedQueue($post['uri-id'], $post['gsid']);
43                                 $delivery_failure = true;
44
45                                 if (!$server_failure) {
46                                         $server_failure = !GServer::isReachableById($gsid);
47                                 }
48                                 Logger::debug('Delivery failed', ['server_failure' => $server_failure, 'post' => $post]);
49                         }
50                 }
51
52                 if ($server_failure) {
53                         Worker::defer();
54                 }
55
56                 if ($delivery_failure) {
57                         ProtocolDelivery::removeFailedQueue($gsid);
58                 }
59         }
60 }