| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- <?php
- class FreshRSS_update_Controller extends FreshRSS_ActionController {
- public static function isGit() {
- return is_dir(FRESHRSS_PATH . '/.git/');
- }
- /**
- * Automatic change to the new name of edge branch since FreshRSS 1.18.0.
- */
- public static function migrateToGitEdge() {
- $errorMessage = 'Error during git checkout to edge branch. Please change branch manually!';
- if (!is_writable(FRESHRSS_PATH . '/.git/')) {
- throw new Exception($errorMessage);
- }
- //Note `git branch --show-current` requires git 2.22+
- exec('git symbolic-ref --short HEAD', $output, $return);
- if ($return != 0) {
- throw new Exception($errorMessage);
- }
- $line = is_array($output) ? implode('', $output) : $output;
- if ($line !== 'master' && $line !== 'dev') {
- return true; // not on master or dev, nothing to do
- }
- Minz_Log::warning('Automatic migration to git edge branch');
- unset($output);
- exec('git checkout edge --guess -f', $output, $return);
- if ($return != 0) {
- throw new Exception($errorMessage);
- }
- unset($output);
- exec('git reset --hard FETCH_HEAD', $output, $return);
- if ($return != 0) {
- throw new Exception($errorMessage);
- }
- return true;
- }
- public static function hasGitUpdate() {
- $cwd = getcwd();
- chdir(FRESHRSS_PATH);
- $output = array();
- try {
- exec('git fetch --prune', $output, $return);
- if ($return == 0) {
- $output = [];
- exec('git status -sb --porcelain remote', $output, $return);
- } else {
- $line = is_array($output) ? implode('; ', $output) : $output;
- Minz_Log::warning('git fetch warning: ' . $line);
- }
- } catch (Exception $e) {
- Minz_Log::warning('git fetch error: ' . $e->getMessage());
- }
- chdir($cwd);
- $line = is_array($output) ? implode('; ', $output) : $output;
- return $line == '' ||
- strpos($line, '[behind') !== false || strpos($line, '[ahead') !== false || strpos($line, '[gone') !== false;
- }
- public static function gitPull() {
- $cwd = getcwd();
- chdir(FRESHRSS_PATH);
- $output = [];
- $return = 1;
- try {
- exec('git fetch --prune', $output, $return);
- if ($return == 0) {
- $output = [];
- exec('git reset --hard FETCH_HEAD', $output, $return);
- }
- $output = [];
- self::migrateToGitEdge();
- } catch (Exception $e) {
- Minz_Log::warning('Git error: ' . $e->getMessage());
- if (empty($output)) {
- $output = $e->getMessage();
- }
- $return = 1;
- }
- chdir($cwd);
- $line = is_array($output) ? implode('; ', $output) : $output;
- return $return == 0 ? true : 'Git error: ' . $line;
- }
- public function firstAction() {
- if (!FreshRSS_Auth::hasAccess('admin')) {
- Minz_Error::error(403);
- }
- include_once(LIB_PATH . '/lib_install.php');
- invalidateHttpCache();
- $this->view->update_to_apply = false;
- $this->view->last_update_time = 'unknown';
- $timestamp = @filemtime(join_path(DATA_PATH, 'last_update.txt'));
- if ($timestamp !== false) {
- $this->view->last_update_time = timestamptodate($timestamp);
- }
- }
- public function indexAction() {
- FreshRSS_View::prependTitle(_t('admin.update.title') . ' · ');
- if (file_exists(UPDATE_FILENAME)) {
- // There is an update file to apply!
- $version = @file_get_contents(join_path(DATA_PATH, 'last_update.txt'));
- if ($version == '') {
- $version = 'unknown';
- }
- if (is_writable(FRESHRSS_PATH)) {
- $this->view->update_to_apply = true;
- $this->view->message = array(
- 'status' => 'good',
- 'title' => _t('gen.short.ok'),
- 'body' => _t('feedback.update.can_apply', $version),
- );
- } else {
- $this->view->message = array(
- 'status' => 'bad',
- 'title' => _t('gen.short.damn'),
- 'body' => _t('feedback.update.file_is_nok', $version, FRESHRSS_PATH),
- );
- }
- }
- }
- public function checkAction() {
- $this->view->_path('update/index.phtml');
- if (file_exists(UPDATE_FILENAME)) {
- // There is already an update file to apply: we don’t need to check
- // the webserver!
- // Or if already check during the last hour, do nothing.
- Minz_Request::forward(array('c' => 'update'), true);
- return;
- }
- $script = '';
- $version = '';
- if (self::isGit()) {
- if (self::hasGitUpdate()) {
- $version = 'git';
- } else {
- $this->view->message = array(
- 'status' => 'latest',
- 'title' => _t('gen.short.damn'),
- 'body' => _t('feedback.update.none')
- );
- @touch(join_path(DATA_PATH, 'last_update.txt'));
- return;
- }
- } else {
- $auto_update_url = FreshRSS_Context::$system_conf->auto_update_url . '?v=' . FRESHRSS_VERSION;
- Minz_Log::debug('HTTP GET ' . $auto_update_url);
- $c = curl_init($auto_update_url);
- curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($c, CURLOPT_SSL_VERIFYPEER, true);
- curl_setopt($c, CURLOPT_SSL_VERIFYHOST, 2);
- $result = curl_exec($c);
- $c_status = curl_getinfo($c, CURLINFO_HTTP_CODE);
- $c_error = curl_error($c);
- curl_close($c);
- if ($c_status !== 200) {
- Minz_Log::warning(
- 'Error during update (HTTP code ' . $c_status . '): ' . $c_error
- );
- $this->view->message = array(
- 'status' => 'bad',
- 'title' => _t('gen.short.damn'),
- 'body' => _t('feedback.update.server_not_found', $auto_update_url)
- );
- return;
- }
- $res_array = explode("\n", $result, 2);
- $status = $res_array[0];
- if (strpos($status, 'UPDATE') !== 0) {
- $this->view->message = array(
- 'status' => 'latest',
- 'title' => _t('gen.short.damn'),
- 'body' => _t('feedback.update.none')
- );
- @touch(join_path(DATA_PATH, 'last_update.txt'));
- return;
- }
- $script = $res_array[1];
- $version = explode(' ', $status, 2);
- $version = $version[1];
- }
- if (file_put_contents(UPDATE_FILENAME, $script) !== false) {
- @file_put_contents(join_path(DATA_PATH, 'last_update.txt'), $version);
- Minz_Request::forward(array('c' => 'update'), true);
- } else {
- $this->view->message = array(
- 'status' => 'bad',
- 'title' => _t('gen.short.damn'),
- 'body' => _t('feedback.update.error', 'Cannot save the update script')
- );
- }
- }
- public function applyAction() {
- if (!file_exists(UPDATE_FILENAME) || !is_writable(FRESHRSS_PATH) || Minz_Configuration::get('system')->disable_update) {
- Minz_Request::forward(array('c' => 'update'), true);
- }
- if (Minz_Request::param('post_conf', false)) {
- if (self::isGit()) {
- $res = !self::hasGitUpdate();
- } else {
- require(UPDATE_FILENAME);
- // @phpstan-ignore-next-line
- $res = do_post_update();
- }
- Minz_ExtensionManager::callHook('post_update');
- if ($res === true) {
- @unlink(UPDATE_FILENAME);
- @file_put_contents(join_path(DATA_PATH, 'last_update.txt'), '');
- Minz_Request::good(_t('feedback.update.finished'));
- } else {
- Minz_Request::bad(_t('feedback.update.error', $res), [ 'c' => 'update', 'a' => 'index' ]);
- }
- } else {
- $res = false;
- if (self::isGit()) {
- $res = self::gitPull();
- } else {
- require(UPDATE_FILENAME);
- if (Minz_Request::isPost()) {
- // @phpstan-ignore-next-line
- save_info_update();
- }
- // @phpstan-ignore-next-line
- if (!need_info_update()) {
- // @phpstan-ignore-next-line
- $res = apply_update();
- } else {
- return;
- }
- }
- if ($res === true) {
- Minz_Request::forward(array(
- 'c' => 'update',
- 'a' => 'apply',
- 'params' => array('post_conf' => '1')
- ), true);
- } else {
- Minz_Request::bad(_t('feedback.update.error', $res), [ 'c' => 'update', 'a' => 'index' ]);
- }
- }
- }
- /**
- * This action displays information about installation.
- */
- public function checkInstallAction() {
- FreshRSS_View::prependTitle(_t('admin.check_install.title') . ' · ');
- $this->view->status_php = check_install_php();
- $this->view->status_files = check_install_files();
- $this->view->status_database = check_install_database();
- }
- }
|