]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/CheckVersion.php
Detection of local requests
[friendica.git] / src / Worker / CheckVersion.php
index ae23b40c02f05363b61dac832574ab701cae1b34..e5888c5c762f4ec123ab44a522a8f095a2774ed8 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2021, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -24,13 +24,12 @@ namespace Friendica\Worker;
 use Friendica\Core\Logger;
 use Friendica\Database\DBA;
 use Friendica\DI;
-use Friendica\Util\Network;
 
 /**
  * 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
 {
@@ -42,7 +41,8 @@ class CheckVersion
 
                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';
@@ -54,7 +54,7 @@ class CheckVersion
                Logger::log("Checking VERSION from: ".$checked_url, Logger::DEBUG);
 
                // fetch the VERSION file
-               $gitversion = DBA::escape(trim(Network::fetchUrl($checked_url)));
+               $gitversion = DBA::escape(trim(DI::httpRequest()->fetch($checked_url)));
                Logger::log("Upstream VERSION is: ".$gitversion, Logger::DEBUG);
 
                DI::config()->set('system', 'git_friendica_version', $gitversion);