]> git.mxchange.org Git - friendica.git/blob - src/Worker/UpdateServerPeers.php
spelling: posts
[friendica.git] / src / Worker / UpdateServerPeers.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\Database\DBA;
27 use Friendica\DI;
28 use Friendica\Model\GServer;
29 use Friendica\Network\HTTPClient\Client\HttpClientAccept;
30 use Friendica\Util\Network;
31 use Friendica\Util\Strings;
32
33 class UpdateServerPeers
34 {
35         /**
36          * Query the given server for their known peers
37          *
38          * @param string $gserver Server URL
39          * @return void
40          */
41         public static function execute(string $url)
42         {
43                 $ret = DI::httpClient()->get($url . '/api/v1/instance/peers', HttpClientAccept::JSON);
44                 if (!$ret->isSuccess() || empty($ret->getBody())) {
45                         Logger::info('Server is not reachable or does not offer the "peers" endpoint', ['url' => $url]);
46                         return;
47                 }
48
49                 $peers = json_decode($ret->getBody());
50                 if (empty($peers) || !is_array($peers)) {
51                         Logger::info('Server does not have any peers listed', ['url' => $url]);
52                         return;
53                 }
54
55                 Logger::info('Server peer update start', ['url' => $url]);
56
57                 $total = 0;
58                 $added = 0;
59                 foreach ($peers as $peer) {
60                         if (Network::isUrlBlocked('https://' . $peer)) {
61                                 // Ignore blocked systems as soon as possible in the loop to avoid being slowed down by tar pits
62                                 continue;
63                         }
64
65                         ++$total;
66                         if (DBA::exists('gserver', ['nurl' => Strings::normaliseLink('http://' . $peer)])) {
67                                 // We already know this server
68                                 continue;
69                         }
70                         // This endpoint doesn't offer the schema. So we assume that it is HTTPS.
71                         GServer::add('https://' . $peer);
72                         ++$added;
73                         Worker::coolDown();
74                 }
75                 Logger::info('Server peer update ended', ['total' => $total, 'added' => $added, 'url' => $url]);
76         }
77 }