]> git.mxchange.org Git - friendica.git/blob - src/Worker/UpdateGServer.php
Detection of local requests
[friendica.git] / src / Worker / UpdateGServer.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\Model\GServer;
27 use Friendica\Util\Strings;
28
29 class UpdateGServer
30 {
31         /**
32          * Update the given server
33          * @param string  $server_url    Server URL
34          * @param boolean $only_nodeinfo Only use nodeinfo for server detection
35          */
36         public static function execute(string $server_url, bool $only_nodeinfo = false)
37         {
38                 if (empty($server_url)) {
39                         return;
40                 }
41
42                 $filtered = filter_var($server_url, FILTER_SANITIZE_URL);
43                 if (substr(Strings::normaliseLink($filtered), 0, 7) != 'http://') {
44                         GServer::setFailure($server_url);
45                         return;
46                 }
47
48                 if (($filtered != $server_url) && DBA::exists('gserver', ['nurl' => Strings::normaliseLink($server_url)])) {
49                         GServer::setFailure($server_url);
50                         return;
51                 }
52
53                 $cleaned = GServer::cleanURL($server_url);
54                 if (($cleaned != $server_url) && DBA::exists('gserver', ['nurl' => Strings::normaliseLink($server_url)])) {
55                         GServer::setFailure($server_url);
56                         return;
57                 }
58
59                 $ret = GServer::check($filtered, '', true, $only_nodeinfo);
60                 Logger::info('Updated gserver', ['url' => $filtered, 'result' => $ret]);
61         }
62 }