2017-11-04 03:14:56 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file include/checkversion.php
|
|
|
|
*
|
|
|
|
* @brief save Friendica upstream version to the DB
|
|
|
|
**/
|
|
|
|
|
|
|
|
use Friendica\Core\Config;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief 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.
|
|
|
|
*/
|
|
|
|
function checkversion_run () {
|
|
|
|
global $a;
|
|
|
|
|
|
|
|
logger('checkversion: start');
|
|
|
|
|
|
|
|
$checkurl = Config::get('system', 'check_new_version_url', 'none');
|
|
|
|
|
|
|
|
// check for new versions at all?
|
2017-11-06 11:45:33 -05:00
|
|
|
if ($checkurl == 'none' ) {
|
2017-11-04 03:14:56 -04:00
|
|
|
return;
|
|
|
|
}
|
2017-11-06 12:27:29 -05:00
|
|
|
$checkurl = "https://raw.githubusercontent.com/friendica/friendica/".$checkurl."/VERSION";
|
|
|
|
logger("Checking VERSION from: ".$checkurl, LOGGER_DEBUG);
|
|
|
|
$gitversion = dbesc(trim(fetch_url($checkurl)));
|
|
|
|
logger("Upstream VERSION is: ".$gitversion, LOGGER_DEBUG);
|
2017-11-05 01:10:46 -05:00
|
|
|
Config::set('system', 'git_friendica_version', $gitversion);
|
2017-11-04 03:14:56 -04:00
|
|
|
|
|
|
|
logger('checkversion: end');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|