]> git.mxchange.org Git - friendica.git/blob - src/Worker/UpdateServerPeers.php
aa5f35c0fc612df5a1a3ecbd4067e2cfd94c3623
[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                 if (!DI::config()->get('system', 'poco_discovery')) {
44                         return;
45                 }
46
47                 $ret = DI::httpClient()->get($url . '/api/v1/instance/peers', HttpClientAccept::JSON);
48                 if (!$ret->isSuccess() || empty($ret->getBody())) {
49                         Logger::info('Server is not reachable or does not offer the "peers" endpoint', ['url' => $url]);
50                         return;
51                 }
52
53                 $peers = json_decode($ret->getBody());
54                 if (empty($peers) || !is_array($peers)) {
55                         Logger::info('Server does not have any peers listed', ['url' => $url]);
56                         return;
57                 }
58
59                 Logger::info('Server peer update start', ['url' => $url]);
60
61                 $total = 0;
62                 $added = 0;
63                 foreach ($peers as $peer) {
64                         if (Network::isUrlBlocked('https://' . $peer)) {
65                                 // Ignore blocked systems as soon as possible in the loop to avoid being slowed down by tar pits
66                                 continue;
67                         }
68
69                         ++$total;
70                         if (DBA::exists('gserver', ['nurl' => Strings::normaliseLink('http://' . $peer)])) {
71                                 // We already know this server
72                                 continue;
73                         }
74                         // This endpoint doesn't offer the schema. So we assume that it is HTTPS.
75                         GServer::add('https://' . $peer);
76                         ++$added;
77                         Worker::coolDown();
78                 }
79                 Logger::info('Server peer update ended', ['total' => $total, 'added' => $added, 'url' => $url]);
80         }
81 }