3 * @copyright Copyright (C) 2010-2022, the Friendica project
5 * @license GNU AGPL version 3 or any later version
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.
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.
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/>.
22 namespace Friendica\Worker;
24 use Friendica\Core\Logger;
25 use Friendica\Database\DBA;
26 use Friendica\Model\GServer;
27 use Friendica\Util\Strings;
32 * Update the given server
34 * @param string $server_url Server URL
35 * @param boolean $only_nodeinfo Only use nodeinfo for server detection
38 public static function execute(string $server_url, bool $only_nodeinfo = false)
40 if (empty($server_url)) {
44 $filtered = filter_var($server_url, FILTER_SANITIZE_URL);
45 if (substr(Strings::normaliseLink($filtered), 0, 7) != 'http://') {
46 GServer::setFailure($server_url);
50 if (($filtered != $server_url) && DBA::exists('gserver', ['nurl' => Strings::normaliseLink($server_url)])) {
51 GServer::setFailure($server_url);
55 $cleaned = GServer::cleanURL($server_url);
56 if (($cleaned != $server_url) && DBA::exists('gserver', ['nurl' => Strings::normaliseLink($server_url)])) {
57 GServer::setFailure($server_url);
61 $ret = GServer::check($filtered, '', true, $only_nodeinfo);
62 Logger::info('Updated gserver', ['url' => $filtered, 'result' => $ret]);