]> git.mxchange.org Git - friendica.git/blob - src/Worker/UpdateServerPeers.php
Merge pull request #11503 from annando/bulk-delivery
[friendica.git] / src / Worker / UpdateServerPeers.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\Database\DBA;
26 use Friendica\DI;
27 use Friendica\Model\GServer;
28 use Friendica\Network\HTTPClient\Client\HttpClientAccept;
29 use Friendica\Util\Strings;
30
31 class UpdateServerPeers
32 {
33         /**
34          * Query the given server for their known peers
35          * @param string $gserver Server URL
36          */
37         public static function execute(string $url)
38         {
39                 $ret = DI::httpClient()->get($url . '/api/v1/instance/peers', HttpClientAccept::JSON);
40                 if (!$ret->isSuccess() || empty($ret->getBody())) {
41                         Logger::info('Server is not reachable or does not offer the "peers" endpoint', ['url' => $url]);
42                         return;
43                 }
44
45                 $peers = json_decode($ret->getBody());
46                 if (empty($peers) || !is_array($peers)) {
47                         Logger::info('Server does not have any peers listed', ['url' => $url]);
48                         return;
49                 }
50
51                 Logger::info('Server peer update start', ['url' => $url]);
52
53                 $total = 0;
54                 $added = 0;
55                 foreach ($peers as $peer) {
56                         ++$total;
57                         if (DBA::exists('gserver', ['nurl' => Strings::normaliseLink('http://' . $peer)])) {
58                                 // We already know this server
59                                 continue;
60                         }
61                         // This endpoint doesn't offer the schema. So we assume that it is HTTPS.
62                         GServer::add('https://' . $peer);
63                         ++$added;
64                 }
65                 Logger::info('Server peer update ended', ['total' => $total, 'added' => $added, 'url' => $url]);
66         }
67 }