2017-11-04 03:14:56 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2017-11-04 03:14:56 -04:00
|
|
|
*
|
2020-02-09 10:18:46 -05:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-11-15 16:12:33 -05:00
|
|
|
namespace Friendica\Worker;
|
2017-11-04 03:14:56 -04:00
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2018-07-23 18:44:05 -04:00
|
|
|
use Friendica\Database\DBA;
|
2020-01-19 15:26:42 -05:00
|
|
|
use Friendica\DI;
|
2018-01-26 23:09:48 -05:00
|
|
|
use Friendica\Util\Network;
|
2017-11-04 03:14:56 -04:00
|
|
|
|
|
|
|
/**
|
2020-02-09 10:18:46 -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
|
|
|
}
|