2019-12-20 21:46:30 +00:00
|
|
|
<?php
|
2024-08-24 15:27:00 +02:00
|
|
|
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-02-09 16:18:46 +01:00
|
|
|
|
2019-12-20 21:46:30 +00:00
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
|
|
|
use Friendica\Core\Logger;
|
2023-01-04 11:39:22 -05:00
|
|
|
use Friendica\Core\Worker;
|
2020-12-03 22:32:51 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-20 21:46:30 +00:00
|
|
|
use Friendica\Model\GServer;
|
2023-01-04 11:39:22 -05:00
|
|
|
use Friendica\Network\HTTPException\InternalServerErrorException;
|
|
|
|
use Friendica\Util\Network;
|
2019-12-20 21:46:30 +00:00
|
|
|
use Friendica\Util\Strings;
|
2023-01-04 11:39:22 -05:00
|
|
|
use GuzzleHttp\Psr7\Uri;
|
|
|
|
use Psr\Http\Message\UriInterface;
|
2019-12-20 21:46:30 +00:00
|
|
|
|
2019-12-21 18:11:51 +00:00
|
|
|
class UpdateGServer
|
2019-12-20 21:46:30 +00:00
|
|
|
{
|
2019-12-21 20:18:44 +00:00
|
|
|
/**
|
|
|
|
* Update the given server
|
2022-06-23 13:56:18 +02:00
|
|
|
*
|
2020-05-20 06:57:46 +00:00
|
|
|
* @param string $server_url Server URL
|
|
|
|
* @param boolean $only_nodeinfo Only use nodeinfo for server detection
|
2022-06-23 13:56:18 +02:00
|
|
|
* @return void
|
2023-01-04 11:39:22 -05:00
|
|
|
* @throws \Exception
|
2019-12-21 20:18:44 +00:00
|
|
|
*/
|
2023-01-04 11:39:22 -05:00
|
|
|
public static function execute(string $server_url, bool $only_nodeinfo)
|
2019-12-20 21:46:30 +00:00
|
|
|
{
|
|
|
|
if (empty($server_url)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-03 15:47:50 +00:00
|
|
|
$filtered = filter_var($server_url, FILTER_SANITIZE_URL);
|
|
|
|
if (substr(Strings::normaliseLink($filtered), 0, 7) != 'http://') {
|
2022-12-31 16:20:18 +00:00
|
|
|
GServer::setFailureByUrl($server_url);
|
2019-12-20 21:46:30 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-01-04 11:39:22 -05:00
|
|
|
// Silently dropping the worker task if the server domain is blocked
|
|
|
|
if (Network::isUrlBlocked($filtered)) {
|
2023-01-17 17:25:19 +00:00
|
|
|
GServer::setBlockedByUrl($filtered);
|
2019-12-20 21:46:30 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-01-04 11:39:22 -05:00
|
|
|
// Silently dropping the worker task if the server domain is blocked
|
|
|
|
if (Network::isUrlBlocked($filtered)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-03 22:32:51 +00:00
|
|
|
if (($filtered != $server_url) && DBA::exists('gserver', ['nurl' => Strings::normaliseLink($server_url)])) {
|
2022-12-31 16:20:18 +00:00
|
|
|
GServer::setFailureByUrl($server_url);
|
2020-12-03 22:32:51 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$cleaned = GServer::cleanURL($server_url);
|
|
|
|
if (($cleaned != $server_url) && DBA::exists('gserver', ['nurl' => Strings::normaliseLink($server_url)])) {
|
2022-12-31 16:20:18 +00:00
|
|
|
GServer::setFailureByUrl($server_url);
|
2020-12-03 22:32:51 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$ret = GServer::check($filtered, '', true, $only_nodeinfo);
|
2020-12-03 15:47:50 +00:00
|
|
|
Logger::info('Updated gserver', ['url' => $filtered, 'result' => $ret]);
|
2019-12-20 21:46:30 +00:00
|
|
|
}
|
2023-01-04 11:39:22 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array|int $run_parameters Priority constant or array of options described in Worker::add
|
|
|
|
* @param string $serverUrl
|
|
|
|
* @param bool $onlyNodeInfo Only use NodeInfo for server detection
|
|
|
|
* @return int
|
|
|
|
* @throws InternalServerErrorException
|
|
|
|
*/
|
|
|
|
public static function add($run_parameters, string $serverUrl, bool $onlyNodeInfo = false): int
|
|
|
|
{
|
|
|
|
// Dropping the worker task if the server domain is blocked
|
|
|
|
if (Network::isUrlBlocked($serverUrl)) {
|
2023-01-17 17:25:19 +00:00
|
|
|
GServer::setBlockedByUrl($serverUrl);
|
2023-01-04 11:39:22 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We have to convert the Uri back to string because worker parameters are saved in JSON format which
|
|
|
|
// doesn't allow for structured objects.
|
|
|
|
return Worker::add($run_parameters, 'UpdateGServer', $serverUrl, $onlyNodeInfo);
|
|
|
|
}
|
2019-12-20 21:46:30 +00:00
|
|
|
}
|