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