X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FWorker%2FCheckVersion.php;h=f2de4674e7d64d13af7ae18582b83b14cf5eebc1;hb=9fbdcb5459e4acb158961427837612999253e046;hp=3aec6cac17c5e64aa0e31cf29c5645aaf71c933f;hpb=0e719f539848c0be7530d48d58fe0d3d3c08066d;p=friendica.git diff --git a/src/Worker/CheckVersion.php b/src/Worker/CheckVersion.php index 3aec6cac17..f2de4674e7 100644 --- a/src/Worker/CheckVersion.php +++ b/src/Worker/CheckVersion.php @@ -1,33 +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('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'; @@ -36,15 +52,15 @@ class CheckVersion // don't check return; } - logger("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("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('checkversion: end'); + Logger::notice('checkversion: end'); return; }