2017-11-04 03:14:56 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2017-11-15 16:12:33 -05:00
|
|
|
* @file src/Worker/CheckVersion.php
|
2017-11-04 03:14:56 -04:00
|
|
|
*
|
2020-01-19 01:05:23 -05:00
|
|
|
* save Friendica upstream version to the DB
|
2017-11-04 03:14:56 -04:00
|
|
|
**/
|
2017-11-15 16:12:33 -05:00
|
|
|
namespace Friendica\Worker;
|
2017-11-04 03:14:56 -04:00
|
|
|
|
|
|
|
use Friendica\Core\Config;
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2018-07-23 18:44:05 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-01-26 23:09:48 -05:00
|
|
|
use Friendica\Util\Network;
|
2017-11-04 03:14:56 -04:00
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* check the git repository VERSION file and save the version to the DB
|
2017-11-04 03:14:56 -04:00
|
|
|
*
|
|
|
|
* Checking the upstream version is optional (opt-in) and can be done to either
|
|
|
|
* the master or the develop branch in the repository.
|
|
|
|
*/
|
2018-07-09 22:39:59 -04:00
|
|
|
class CheckVersion
|
|
|
|
{
|
|
|
|
public static function execute()
|
|
|
|
{
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('checkversion: start');
|
2017-11-06 12:57:40 -05:00
|
|
|
|
2020-01-19 15:21:13 -05:00
|
|
|
$checkurl = DI::config()->get('system', 'check_new_version_url', 'none');
|
2017-11-06 12:57:40 -05:00
|
|
|
|
2017-11-15 16:12:33 -05:00
|
|
|
switch ($checkurl) {
|
|
|
|
case 'master':
|
|
|
|
$checked_url = 'https://raw.githubusercontent.com/friendica/friendica/master/VERSION';
|
|
|
|
break;
|
|
|
|
case 'develop':
|
|
|
|
$checked_url = 'https://raw.githubusercontent.com/friendica/friendica/develop/VERSION';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// don't check
|
|
|
|
return;
|
|
|
|
}
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log("Checking VERSION from: ".$checked_url, Logger::DEBUG);
|
2017-11-04 03:14:56 -04:00
|
|
|
|
2017-11-15 16:12:33 -05:00
|
|
|
// fetch the VERSION file
|
2018-07-21 09:10:13 -04:00
|
|
|
$gitversion = DBA::escape(trim(Network::fetchUrl($checked_url)));
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log("Upstream VERSION is: ".$gitversion, Logger::DEBUG);
|
2017-11-04 03:14:56 -04:00
|
|
|
|
2020-01-19 15:21:53 -05:00
|
|
|
DI::config()->set('system', 'git_friendica_version', $gitversion);
|
2017-11-15 16:12:33 -05:00
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('checkversion: end');
|
2017-11-15 16:12:33 -05:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2017-11-04 03:14:56 -04:00
|
|
|
}
|