X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FWorker%2FCheckVersion.php;h=f2de4674e7d64d13af7ae18582b83b14cf5eebc1;hb=088a3b6bc429973381e6eb2931c6eacd5b8c8927;hp=e37e37a060341e9583d618424a61bc98a5ca92e6;hpb=66a103e36a42ab251fd9ca6c4b56b54380e4d535;p=friendica.git diff --git a/src/Worker/CheckVersion.php b/src/Worker/CheckVersion.php index e37e37a060..f2de4674e7 100644 --- a/src/Worker/CheckVersion.php +++ b/src/Worker/CheckVersion.php @@ -1,32 +1,49 @@ . + * + */ + namespace Friendica\Worker; -use Friendica\Core\Config; -use Friendica\Util\Network; +use Friendica\Core\Logger; +use Friendica\Database\DBA; +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'; @@ -35,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 = dbesc(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; }