X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FWorker%2FCheckVersion.php;h=f4c45fe33d5dd022dbcef71f2a103b673e2e9361;hb=b9bb525fe91c176ada2323c2d628291a27594d59;hp=bdd44a300ede1861f4683faf6d963ab04dbc6ba3;hpb=04d620fc2f567d32b50f5d5b0974acafeb072177;p=friendica.git diff --git a/src/Worker/CheckVersion.php b/src/Worker/CheckVersion.php index bdd44a300e..f4c45fe33d 100644 --- a/src/Worker/CheckVersion.php +++ b/src/Worker/CheckVersion.php @@ -1,34 +1,49 @@ . + * + */ + namespace Friendica\Worker; use Friendica\Core\Logger; use Friendica\Database\DBA; use Friendica\DI; -use Friendica\Util\Network; +use Friendica\Network\HTTPClient\Client\HttpClientAccept; /** - * check the git repository VERSION file and save the version to the DB + * Check the git repository VERSION file and save the version to the DB * * Checking the upstream version is optional (opt-in) and can be done to either - * the master or the develop branch in the repository. + * the stable or the develop branch in the repository. */ class CheckVersion { public static function execute() { - Logger::log('checkversion: start'); + Logger::notice('checkversion: start'); $checkurl = DI::config()->get('system', 'check_new_version_url', 'none'); switch ($checkurl) { case 'master': - $checked_url = 'https://raw.githubusercontent.com/friendica/friendica/master/VERSION'; + case 'stable': + $checked_url = 'https://raw.githubusercontent.com/friendica/friendica/stable/VERSION'; break; case 'develop': $checked_url = 'https://raw.githubusercontent.com/friendica/friendica/develop/VERSION'; @@ -37,15 +52,15 @@ class CheckVersion // don't check return; } - Logger::log("Checking VERSION from: ".$checked_url, Logger::DEBUG); + Logger::info("Checking VERSION from: ".$checked_url); // fetch the VERSION file - $gitversion = DBA::escape(trim(Network::fetchUrl($checked_url))); - Logger::log("Upstream VERSION is: ".$gitversion, Logger::DEBUG); + $gitversion = DBA::escape(trim(DI::httpClient()->fetch($checked_url, HttpClientAccept::TEXT))); + Logger::notice("Upstream VERSION is: ".$gitversion); - DI::config()->set('system', 'git_friendica_version', $gitversion); + DI::keyValue()->set('git_friendica_version', $gitversion); - Logger::log('checkversion: end'); + Logger::notice('checkversion: end'); return; }