X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FWorker%2FCheckVersion.php;h=f2de4674e7d64d13af7ae18582b83b14cf5eebc1;hb=9fbdcb5459e4acb158961427837612999253e046;hp=f67fb21c8532037f3914718e44dcdd2d422fdd5d;hpb=c6ce9ddaa41a59496cbe5cd93ace9bc552478ccd;p=friendica.git diff --git a/src/Worker/CheckVersion.php b/src/Worker/CheckVersion.php index f67fb21c85..f2de4674e7 100644 --- a/src/Worker/CheckVersion.php +++ b/src/Worker/CheckVersion.php @@ -1,34 +1,49 @@ . + * + */ + namespace Friendica\Worker; -use Friendica\Core\Config; use Friendica\Core\Logger; use Friendica\Database\DBA; -use Friendica\Util\Network; +use Friendica\DI; +use Friendica\Network\HTTPClient\Client\HttpClientAccept; /** - * @brief 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 = Config::get('system', 'check_new_version_url', 'none'); + $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); - Config::set('system', 'git_friendica_version', $gitversion); + DI::config()->set('system', 'git_friendica_version', $gitversion); - Logger::log('checkversion: end'); + Logger::notice('checkversion: end'); return; }