134aae6dbSAndreas Gohr<?php 234aae6dbSAndreas Gohr/** 3d391262fSAndreas Gohr * DokuWiki Plugin upgrade (Admin Component) 434aae6dbSAndreas Gohr * 534aae6dbSAndreas Gohr * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 634aae6dbSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 734aae6dbSAndreas Gohr */ 834aae6dbSAndreas Gohr 934aae6dbSAndreas Gohr// must be run within Dokuwiki 1034aae6dbSAndreas Gohrif(!defined('DOKU_INC')) die(); 1134aae6dbSAndreas Gohrif(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC.'lib/plugins/'); 1234aae6dbSAndreas Gohrrequire_once DOKU_PLUGIN.'admin.php'; 13d391262fSAndreas Gohrrequire_once DOKU_PLUGIN.'upgrade/VerboseTarLib.class.php'; 14e90f5147SAndreas Gohrrequire_once DOKU_PLUGIN.'upgrade/HTTPClient.php'; 1534aae6dbSAndreas Gohr 1668cf950eSAndreas Gohruse dokuwiki\plugin\upgrade\DokuHTTPClient; 1768cf950eSAndreas Gohr 18ff284f1fSAndreas Gohrclass admin_plugin_upgrade extends DokuWiki_Admin_Plugin { 1934aae6dbSAndreas Gohr private $tgzurl; 2034aae6dbSAndreas Gohr private $tgzfile; 2134aae6dbSAndreas Gohr private $tgzdir; 22f378cb7eSAndreas Gohr private $tgzversion; 23f378cb7eSAndreas Gohr private $pluginversion; 2434aae6dbSAndreas Gohr 254ed3677eSAndreas Gohr protected $haderrors = false; 264ed3677eSAndreas Gohr 2734aae6dbSAndreas Gohr public function __construct() { 2834aae6dbSAndreas Gohr global $conf; 2934aae6dbSAndreas Gohr 3034aae6dbSAndreas Gohr $branch = 'stable'; 3134aae6dbSAndreas Gohr 32bd08ebd1SAndreas Gohr $this->tgzurl = "https://github.com/splitbrain/dokuwiki/archive/$branch.tar.gz"; 33d391262fSAndreas Gohr $this->tgzfile = $conf['tmpdir'].'/dokuwiki-upgrade.tgz'; 34d391262fSAndreas Gohr $this->tgzdir = $conf['tmpdir'].'/dokuwiki-upgrade/'; 35f378cb7eSAndreas Gohr $this->tgzversion = "https://raw.githubusercontent.com/splitbrain/dokuwiki/$branch/VERSION"; 36f378cb7eSAndreas Gohr $this->pluginversion = "https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-upgrade/master/plugin.info.txt"; 3734aae6dbSAndreas Gohr } 3834aae6dbSAndreas Gohr 39bd08ebd1SAndreas Gohr public function getMenuSort() { 40bd08ebd1SAndreas Gohr return 555; 41bd08ebd1SAndreas Gohr } 4234aae6dbSAndreas Gohr 4341163f44SAndreas Gohr public function handle() { 4441163f44SAndreas Gohr if($_REQUEST['step'] && !checkSecurityToken()) { 4541163f44SAndreas Gohr unset($_REQUEST['step']); 4641163f44SAndreas Gohr } 4734aae6dbSAndreas Gohr } 4834aae6dbSAndreas Gohr 4934aae6dbSAndreas Gohr public function html() { 5034aae6dbSAndreas Gohr $abrt = false; 5134aae6dbSAndreas Gohr $next = false; 5234aae6dbSAndreas Gohr 5334aae6dbSAndreas Gohr echo '<h1>'.$this->getLang('menu').'</h1>'; 5434aae6dbSAndreas Gohr 55fb522b50SAndreas Gohr self::_say('<div id="plugin__upgrade">'); 5675e9d164SAndreas Gohr // enable auto scroll 5775e9d164SAndreas Gohr ?> 5875e9d164SAndreas Gohr <script language="javascript" type="text/javascript"> 59d391262fSAndreas Gohr var plugin_upgrade = window.setInterval(function () { 60d4376367SAndreas Gohr var obj = document.getElementById('plugin__upgrade'); 6175e9d164SAndreas Gohr if (obj) obj.scrollTop = obj.scrollHeight; 6275e9d164SAndreas Gohr }, 25); 6375e9d164SAndreas Gohr </script> 6475e9d164SAndreas Gohr <?php 6575e9d164SAndreas Gohr 6675e9d164SAndreas Gohr // handle current step 6722c39b33SAndreas Gohr $this->_stepit($abrt, $next); 6834aae6dbSAndreas Gohr 6975e9d164SAndreas Gohr // disable auto scroll 7075e9d164SAndreas Gohr ?> 7175e9d164SAndreas Gohr <script language="javascript" type="text/javascript"> 7275e9d164SAndreas Gohr window.setTimeout(function () { 73d391262fSAndreas Gohr window.clearInterval(plugin_upgrade); 7475e9d164SAndreas Gohr }, 50); 7575e9d164SAndreas Gohr </script> 7675e9d164SAndreas Gohr <?php 77fb522b50SAndreas Gohr self::_say('</div>'); 7875e9d164SAndreas Gohr 794ed3677eSAndreas Gohr $careful = ''; 804ed3677eSAndreas Gohr if($this->haderrors) { 814ed3677eSAndreas Gohr echo '<div id="plugin__upgrade_careful">'.$this->getLang('careful').'</div>'; 824ed3677eSAndreas Gohr $careful = 'careful'; 834ed3677eSAndreas Gohr } 844ed3677eSAndreas Gohr 859f8d4355SAndreas Gohr $action = script(); 869f8d4355SAndreas Gohr echo '<form action="' . $action . '" method="post" id="plugin__upgrade_form">'; 8734aae6dbSAndreas Gohr echo '<input type="hidden" name="do" value="admin" />'; 88d391262fSAndreas Gohr echo '<input type="hidden" name="page" value="upgrade" />'; 8941163f44SAndreas Gohr echo '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />'; 9038665ab9SAndreas Gohr if($next) echo '<button type="submit" name="step[' . $next . ']" value="1" class="button continue '.$careful.'">' . $this->getLang('btn_continue') . ' ➡</button>'; 919f8d4355SAndreas Gohr if($abrt) echo '<button type="submit" name="step[cancel]" value="1" class="button abort">✖ ' . $this->getLang('btn_abort') . '</button>'; 9234aae6dbSAndreas Gohr echo '</form>'; 93eb52c46aSAndreas Gohr 94eb52c46aSAndreas Gohr $this->_progress($next); 95eb52c46aSAndreas Gohr } 96eb52c46aSAndreas Gohr 97eb52c46aSAndreas Gohr /** 98eb52c46aSAndreas Gohr * Display a progress bar of all steps 99eb52c46aSAndreas Gohr * 100eb52c46aSAndreas Gohr * @param string $next the next step 101eb52c46aSAndreas Gohr */ 102eb52c46aSAndreas Gohr private function _progress($next) { 103eb52c46aSAndreas Gohr $steps = array('version', 'download', 'unpack', 'check', 'upgrade'); 104eb52c46aSAndreas Gohr $active = true; 105eb52c46aSAndreas Gohr $count = 0; 106eb52c46aSAndreas Gohr 107eb52c46aSAndreas Gohr echo '<div id="plugin__upgrade_meter"><ol>'; 108eb52c46aSAndreas Gohr foreach($steps as $step) { 109eb52c46aSAndreas Gohr $count++; 110eb52c46aSAndreas Gohr if($step == $next) $active = false; 111eb52c46aSAndreas Gohr if($active) { 112eb52c46aSAndreas Gohr echo '<li class="active">'; 113eb52c46aSAndreas Gohr echo '<span class="step">✔</span>'; 114eb52c46aSAndreas Gohr } else { 115eb52c46aSAndreas Gohr echo '<li>'; 116eb52c46aSAndreas Gohr echo '<span class="step">'.$count.'</span>'; 117eb52c46aSAndreas Gohr } 118eb52c46aSAndreas Gohr 119eb52c46aSAndreas Gohr echo '<span class="stage">'.$this->getLang('step_'.$step).'</span>'; 120eb52c46aSAndreas Gohr echo '</li>'; 121eb52c46aSAndreas Gohr } 122eb52c46aSAndreas Gohr echo '</ol></div>'; 12334aae6dbSAndreas Gohr } 12434aae6dbSAndreas Gohr 125bd08ebd1SAndreas Gohr /** 126bd08ebd1SAndreas Gohr * Decides the current step and executes it 127bd08ebd1SAndreas Gohr * 128bd08ebd1SAndreas Gohr * @param bool $abrt 129bd08ebd1SAndreas Gohr * @param bool $next 130bd08ebd1SAndreas Gohr */ 13134aae6dbSAndreas Gohr private function _stepit(&$abrt, &$next) { 1324bed5591SAndreas Gohr 13334aae6dbSAndreas Gohr if(isset($_REQUEST['step']) && is_array($_REQUEST['step'])) { 134*9e48b5c0SAndreas Gohr $keys = array_keys($_REQUEST['step']); 135*9e48b5c0SAndreas Gohr $step = array_shift($keys); 13634aae6dbSAndreas Gohr } else { 13734aae6dbSAndreas Gohr $step = ''; 13834aae6dbSAndreas Gohr } 13934aae6dbSAndreas Gohr 140fb8e77caSAndreas Gohr if($step == 'cancel' || $step == 'done') { 14134aae6dbSAndreas Gohr # cleanup 14234aae6dbSAndreas Gohr @unlink($this->tgzfile); 1436b2d1b30SAndreas Gohr $this->_rdel($this->tgzdir); 144fb8e77caSAndreas Gohr if($step == 'cancel') $step = ''; 14534aae6dbSAndreas Gohr } 14634aae6dbSAndreas Gohr 14734aae6dbSAndreas Gohr if($step) { 14834aae6dbSAndreas Gohr $abrt = true; 14934aae6dbSAndreas Gohr $next = false; 150f378cb7eSAndreas Gohr if($step == 'version') { 151f378cb7eSAndreas Gohr $this->_step_version(); 152f378cb7eSAndreas Gohr $next = 'download'; 153fb8e77caSAndreas Gohr } elseif ($step == 'done') { 154fb8e77caSAndreas Gohr $this->_step_done(); 155fb8e77caSAndreas Gohr $next = ''; 156fb8e77caSAndreas Gohr $abrt = ''; 157f378cb7eSAndreas Gohr } elseif(!file_exists($this->tgzfile)) { 15834aae6dbSAndreas Gohr if($this->_step_download()) $next = 'unpack'; 15934aae6dbSAndreas Gohr } elseif(!is_dir($this->tgzdir)) { 16034aae6dbSAndreas Gohr if($this->_step_unpack()) $next = 'check'; 16134aae6dbSAndreas Gohr } elseif($step != 'upgrade') { 1623c38de15SAndreas Gohr if($this->_step_check()) $next = 'upgrade'; 16334aae6dbSAndreas Gohr } elseif($step == 'upgrade') { 164fb8e77caSAndreas Gohr if($this->_step_copy()) { 165fb8e77caSAndreas Gohr $next = 'done'; 166fb8e77caSAndreas Gohr $abrt = ''; 167fb8e77caSAndreas Gohr } 16834aae6dbSAndreas Gohr } else { 16975e9d164SAndreas Gohr echo 'uhm. what happened? where am I? This should not happen'; 17034aae6dbSAndreas Gohr } 17134aae6dbSAndreas Gohr } else { 17234aae6dbSAndreas Gohr # first time run, show intro 17334aae6dbSAndreas Gohr echo $this->locale_xhtml('step0'); 17434aae6dbSAndreas Gohr $abrt = false; 175f378cb7eSAndreas Gohr $next = 'version'; 17634aae6dbSAndreas Gohr } 17734aae6dbSAndreas Gohr } 17834aae6dbSAndreas Gohr 179bd08ebd1SAndreas Gohr /** 180bd08ebd1SAndreas Gohr * Output the given arguments using vsprintf and flush buffers 181bd08ebd1SAndreas Gohr */ 182fb522b50SAndreas Gohr public static function _say() { 18334aae6dbSAndreas Gohr $args = func_get_args(); 1846e7afd39SAndreas Gohr echo '<img src="'.DOKU_BASE.'lib/images/blank.gif" width="16" height="16" alt="" /> '; 1856e7afd39SAndreas Gohr echo vsprintf(array_shift($args)."<br />\n", $args); 1866e7afd39SAndreas Gohr flush(); 1876e7afd39SAndreas Gohr ob_flush(); 1886e7afd39SAndreas Gohr } 1896e7afd39SAndreas Gohr 1906e7afd39SAndreas Gohr /** 1916e7afd39SAndreas Gohr * Print a warning using the given arguments with vsprintf and flush buffers 1926e7afd39SAndreas Gohr */ 1934ed3677eSAndreas Gohr public function _warn() { 1944ed3677eSAndreas Gohr $this->haderrors = true; 1954ed3677eSAndreas Gohr 1966e7afd39SAndreas Gohr $args = func_get_args(); 1976e7afd39SAndreas Gohr echo '<img src="'.DOKU_BASE.'lib/images/error.png" width="16" height="16" alt="!" /> '; 19834aae6dbSAndreas Gohr echo vsprintf(array_shift($args)."<br />\n", $args); 19934aae6dbSAndreas Gohr flush(); 20034aae6dbSAndreas Gohr ob_flush(); 20134aae6dbSAndreas Gohr } 20234aae6dbSAndreas Gohr 2036b2d1b30SAndreas Gohr /** 2046b2d1b30SAndreas Gohr * Recursive delete 2056b2d1b30SAndreas Gohr * 2069285faa5SAndreas Gohr * @author Jon Hassall 2079285faa5SAndreas Gohr * @link http://de.php.net/manual/en/function.unlink.php#87045 2086b2d1b30SAndreas Gohr */ 2099285faa5SAndreas Gohr private function _rdel($dir) { 2109285faa5SAndreas Gohr if(!$dh = @opendir($dir)) { 211bd08ebd1SAndreas Gohr return false; 2129285faa5SAndreas Gohr } 2139285faa5SAndreas Gohr while(false !== ($obj = readdir($dh))) { 2149285faa5SAndreas Gohr if($obj == '.' || $obj == '..') continue; 2159285faa5SAndreas Gohr 2169285faa5SAndreas Gohr if(!@unlink($dir.'/'.$obj)) { 2179285faa5SAndreas Gohr $this->_rdel($dir.'/'.$obj); 2189285faa5SAndreas Gohr } 2199285faa5SAndreas Gohr } 2209285faa5SAndreas Gohr closedir($dh); 221e32047e3SAndreas Gohr return @rmdir($dir); 2226b2d1b30SAndreas Gohr } 2236b2d1b30SAndreas Gohr 224bd08ebd1SAndreas Gohr /** 225f378cb7eSAndreas Gohr * Check various versions 226f378cb7eSAndreas Gohr * 227f378cb7eSAndreas Gohr * @return bool 228f378cb7eSAndreas Gohr */ 229f378cb7eSAndreas Gohr private function _step_version() { 230f378cb7eSAndreas Gohr $ok = true; 231f378cb7eSAndreas Gohr 232c37aa5dcSAndreas Gohr // we need SSL - only newer HTTPClients check that themselves 233c37aa5dcSAndreas Gohr if(!in_array('ssl', stream_get_transports())) { 234c37aa5dcSAndreas Gohr $this->_warn($this->getLang('vs_ssl')); 235c37aa5dcSAndreas Gohr $ok = false; 236c37aa5dcSAndreas Gohr } 237c37aa5dcSAndreas Gohr 238f378cb7eSAndreas Gohr // get the available version 239f378cb7eSAndreas Gohr $http = new DokuHTTPClient(); 2406221d5c4SFrédéric Sheedy $tgzversion = trim($http->get($this->tgzversion)); 241f378cb7eSAndreas Gohr if(!$tgzversion) { 2426e7afd39SAndreas Gohr $this->_warn($this->getLang('vs_tgzno').' '.hsc($http->error)); 243f378cb7eSAndreas Gohr $ok = false; 244f378cb7eSAndreas Gohr } 2450ab52135SAndreas Gohr $tgzversionnum = $this->dateFromVersion($tgzversion); 2460ab52135SAndreas Gohr if($tgzversionnum === 0) { 2476e7afd39SAndreas Gohr $this->_warn($this->getLang('vs_tgzno')); 248f378cb7eSAndreas Gohr $ok = false; 249f378cb7eSAndreas Gohr } else { 250fb522b50SAndreas Gohr self::_say($this->getLang('vs_tgz'), $tgzversion); 251f378cb7eSAndreas Gohr } 252f378cb7eSAndreas Gohr 253f378cb7eSAndreas Gohr // get the current version 2546221d5c4SFrédéric Sheedy $versiondata = getVersionData(); 2556221d5c4SFrédéric Sheedy $version = trim($versiondata['date']); 2560ab52135SAndreas Gohr $versionnum = $this->dateFromVersion($version); 257fb522b50SAndreas Gohr self::_say($this->getLang('vs_local'), $version); 258f378cb7eSAndreas Gohr 259f378cb7eSAndreas Gohr // compare versions 260f378cb7eSAndreas Gohr if(!$versionnum) { 2616e7afd39SAndreas Gohr $this->_warn($this->getLang('vs_localno')); 262f378cb7eSAndreas Gohr $ok = false; 263f378cb7eSAndreas Gohr } else if($tgzversionnum) { 264f378cb7eSAndreas Gohr if($tgzversionnum < $versionnum) { 2656e7afd39SAndreas Gohr $this->_warn($this->getLang('vs_newer')); 266f378cb7eSAndreas Gohr $ok = false; 26727c6a3e6SAndreas Gohr } elseif($tgzversionnum == $versionnum && $tgzversion == $version) { 2686e7afd39SAndreas Gohr $this->_warn($this->getLang('vs_same')); 269f378cb7eSAndreas Gohr $ok = false; 270f378cb7eSAndreas Gohr } 271f378cb7eSAndreas Gohr } 272f378cb7eSAndreas Gohr 273f378cb7eSAndreas Gohr // check plugin version 274f378cb7eSAndreas Gohr $pluginversion = $http->get($this->pluginversion); 275f378cb7eSAndreas Gohr if($pluginversion) { 276f378cb7eSAndreas Gohr $plugininfo = linesToHash(explode("\n", $pluginversion)); 277f378cb7eSAndreas Gohr $myinfo = $this->getInfo(); 278f378cb7eSAndreas Gohr if($plugininfo['date'] > $myinfo['date']) { 2797cb119ecSAndreas Gohr $this->_warn($this->getLang('vs_plugin'), $plugininfo['date']); 280f378cb7eSAndreas Gohr $ok = false; 281f378cb7eSAndreas Gohr } 282f378cb7eSAndreas Gohr } 283f378cb7eSAndreas Gohr 2849bbe795aSAndreas Gohr // check if PHP is up to date 285*9e48b5c0SAndreas Gohr $minphp = '7.2'; 2869bbe795aSAndreas Gohr if(version_compare(phpversion(), $minphp, '<')) { 287a92a10d4SAndreas Gohr $this->_warn($this->getLang('vs_php'), $minphp, phpversion()); 2889bbe795aSAndreas Gohr $ok = false; 2899bbe795aSAndreas Gohr } 2909bbe795aSAndreas Gohr 291f378cb7eSAndreas Gohr return $ok; 292f378cb7eSAndreas Gohr } 293f378cb7eSAndreas Gohr 294f378cb7eSAndreas Gohr /** 295fb8e77caSAndreas Gohr * Redirect to the start page 296fb8e77caSAndreas Gohr */ 297fb8e77caSAndreas Gohr private function _step_done() { 2984877bd65SAndreas Gohr if (function_exists('opcache_reset')) { 2994877bd65SAndreas Gohr opcache_reset(); 3004877bd65SAndreas Gohr } 301fb8e77caSAndreas Gohr echo $this->getLang('finish'); 30261f0f3bfSAndreas Gohr echo "<script type='text/javascript'>location.href='".DOKU_URL."';</script>"; 303fb8e77caSAndreas Gohr } 304fb8e77caSAndreas Gohr 305fb8e77caSAndreas Gohr /** 306bd08ebd1SAndreas Gohr * Download the tarball 307bd08ebd1SAndreas Gohr * 308bd08ebd1SAndreas Gohr * @return bool 309bd08ebd1SAndreas Gohr */ 31034aae6dbSAndreas Gohr private function _step_download() { 311fb522b50SAndreas Gohr self::_say($this->getLang('dl_from'), $this->tgzurl); 31234aae6dbSAndreas Gohr 31358774abaSFrancis GUDIN @set_time_limit(300); 31434aae6dbSAndreas Gohr @ignore_user_abort(); 31534aae6dbSAndreas Gohr 31634aae6dbSAndreas Gohr $http = new DokuHTTPClient(); 31758774abaSFrancis GUDIN $http->timeout = 300; 31834aae6dbSAndreas Gohr $data = $http->get($this->tgzurl); 31934aae6dbSAndreas Gohr 32034aae6dbSAndreas Gohr if(!$data) { 3216e7afd39SAndreas Gohr $this->_warn($http->error); 3226e7afd39SAndreas Gohr $this->_warn($this->getLang('dl_fail')); 32334aae6dbSAndreas Gohr return false; 32434aae6dbSAndreas Gohr } 32534aae6dbSAndreas Gohr 32634aae6dbSAndreas Gohr if(!io_saveFile($this->tgzfile, $data)) { 3276e7afd39SAndreas Gohr $this->_warn($this->getLang('dl_fail')); 32834aae6dbSAndreas Gohr return false; 32934aae6dbSAndreas Gohr } 33034aae6dbSAndreas Gohr 331fb522b50SAndreas Gohr self::_say($this->getLang('dl_done'), filesize_h(strlen($data))); 3323c38de15SAndreas Gohr 33334aae6dbSAndreas Gohr return true; 33434aae6dbSAndreas Gohr } 33534aae6dbSAndreas Gohr 336bd08ebd1SAndreas Gohr /** 337bd08ebd1SAndreas Gohr * Unpack the tarball 338bd08ebd1SAndreas Gohr * 339bd08ebd1SAndreas Gohr * @return bool 340bd08ebd1SAndreas Gohr */ 34134aae6dbSAndreas Gohr private function _step_unpack() { 342fb522b50SAndreas Gohr self::_say('<b>'.$this->getLang('pk_extract').'</b>'); 34334aae6dbSAndreas Gohr 34458774abaSFrancis GUDIN @set_time_limit(300); 34534aae6dbSAndreas Gohr @ignore_user_abort(); 34634aae6dbSAndreas Gohr 347d04a99cdSAndreas Gohr try { 348d04a99cdSAndreas Gohr $tar = new VerboseTar(); 349d04a99cdSAndreas Gohr $tar->open($this->tgzfile); 350d04a99cdSAndreas Gohr $tar->extract($this->tgzdir, 1); 351d04a99cdSAndreas Gohr $tar->close(); 352d04a99cdSAndreas Gohr } catch (Exception $e) { 353d04a99cdSAndreas Gohr $this->_warn($e->getMessage()); 3546e7afd39SAndreas Gohr $this->_warn($this->getLang('pk_fail')); 35534aae6dbSAndreas Gohr return false; 35634aae6dbSAndreas Gohr } 35734aae6dbSAndreas Gohr 358fb522b50SAndreas Gohr self::_say($this->getLang('pk_done')); 359738c0102SAndreas Gohr 360fb522b50SAndreas Gohr self::_say( 361bd08ebd1SAndreas Gohr $this->getLang('pk_version'), 362738c0102SAndreas Gohr hsc(file_get_contents($this->tgzdir.'/VERSION')), 363bd08ebd1SAndreas Gohr getVersion() 364bd08ebd1SAndreas Gohr ); 36534aae6dbSAndreas Gohr return true; 36634aae6dbSAndreas Gohr } 36734aae6dbSAndreas Gohr 368bd08ebd1SAndreas Gohr /** 369bd08ebd1SAndreas Gohr * Check permissions of files to change 370bd08ebd1SAndreas Gohr * 371bd08ebd1SAndreas Gohr * @return bool 372bd08ebd1SAndreas Gohr */ 3733c38de15SAndreas Gohr private function _step_check() { 374fb522b50SAndreas Gohr self::_say($this->getLang('ck_start')); 3753c38de15SAndreas Gohr $ok = $this->_traverse('', true); 37634aae6dbSAndreas Gohr if($ok) { 377fb522b50SAndreas Gohr self::_say('<b>'.$this->getLang('ck_done').'</b>'); 37834aae6dbSAndreas Gohr } else { 3796e7afd39SAndreas Gohr $this->_warn('<b>'.$this->getLang('ck_fail').'</b>'); 38034aae6dbSAndreas Gohr } 3813c38de15SAndreas Gohr return $ok; 3823c38de15SAndreas Gohr } 38334aae6dbSAndreas Gohr 384bd08ebd1SAndreas Gohr /** 385bd08ebd1SAndreas Gohr * Copy over new files 386bd08ebd1SAndreas Gohr * 387bd08ebd1SAndreas Gohr * @return bool 388bd08ebd1SAndreas Gohr */ 3893c38de15SAndreas Gohr private function _step_copy() { 390fb522b50SAndreas Gohr self::_say($this->getLang('cp_start')); 3913c38de15SAndreas Gohr $ok = $this->_traverse('', false); 3923c38de15SAndreas Gohr if($ok) { 393fb522b50SAndreas Gohr self::_say('<b>'.$this->getLang('cp_done').'</b>'); 39463712694SAndreas Gohr $this->_rmold(); 395fb522b50SAndreas Gohr self::_say('<b>'.$this->getLang('finish').'</b>'); 39634aae6dbSAndreas Gohr } else { 3976e7afd39SAndreas Gohr $this->_warn('<b>'.$this->getLang('cp_fail').'</b>'); 39834aae6dbSAndreas Gohr } 39934aae6dbSAndreas Gohr return $ok; 40034aae6dbSAndreas Gohr } 40134aae6dbSAndreas Gohr 402bd08ebd1SAndreas Gohr /** 403bd08ebd1SAndreas Gohr * Delete outdated files 404bd08ebd1SAndreas Gohr */ 40563712694SAndreas Gohr private function _rmold() { 406a85c9abbSAndreas Gohr global $conf; 407a85c9abbSAndreas Gohr 40863712694SAndreas Gohr $list = file($this->tgzdir.'data/deleted.files'); 40963712694SAndreas Gohr foreach($list as $line) { 41063712694SAndreas Gohr $line = trim(preg_replace('/#.*$/', '', $line)); 41163712694SAndreas Gohr if(!$line) continue; 41263712694SAndreas Gohr $file = DOKU_INC.$line; 41363712694SAndreas Gohr if(!file_exists($file)) continue; 4147b7da9aaSAndreas Gohr 4157b7da9aaSAndreas Gohr // check that the given file is an case sensitive match 4167b7da9aaSAndreas Gohr if(basename(realpath($file)) != basename($file)) { 417fb522b50SAndreas Gohr self::_say($this->getLang('rm_mismatch'), hsc($line)); 418a6a26032SAndreas Gohr continue; 4197b7da9aaSAndreas Gohr } 4207b7da9aaSAndreas Gohr 42163712694SAndreas Gohr if((is_dir($file) && $this->_rdel($file)) || 422bd08ebd1SAndreas Gohr @unlink($file) 423bd08ebd1SAndreas Gohr ) { 424fb522b50SAndreas Gohr self::_say($this->getLang('rm_done'), hsc($line)); 42563712694SAndreas Gohr } else { 4266e7afd39SAndreas Gohr $this->_warn($this->getLang('rm_fail'), hsc($line)); 42763712694SAndreas Gohr } 42863712694SAndreas Gohr } 429331439fbSAndreas Gohr // delete install 430331439fbSAndreas Gohr @unlink(DOKU_INC.'install.php'); 431de440c89SAndreas Gohr 432de440c89SAndreas Gohr // make sure update message will be gone 433de440c89SAndreas Gohr @touch(DOKU_INC.'doku.php'); 434a85c9abbSAndreas Gohr @unlink($conf['cachedir'].'/messages.txt'); 43563712694SAndreas Gohr } 43663712694SAndreas Gohr 437bd08ebd1SAndreas Gohr /** 438bd08ebd1SAndreas Gohr * Traverse over the given dir and compare it to the DokuWiki dir 439bd08ebd1SAndreas Gohr * 440bd08ebd1SAndreas Gohr * Checks what files need an update, tests for writability and copies 441bd08ebd1SAndreas Gohr * 442bd08ebd1SAndreas Gohr * @param string $dir 443bd08ebd1SAndreas Gohr * @param bool $dryrun do not copy but only check permissions 444bd08ebd1SAndreas Gohr * @return bool 445bd08ebd1SAndreas Gohr */ 44634aae6dbSAndreas Gohr private function _traverse($dir, $dryrun) { 44734aae6dbSAndreas Gohr $base = $this->tgzdir; 44834aae6dbSAndreas Gohr $ok = true; 44934aae6dbSAndreas Gohr 45034aae6dbSAndreas Gohr $dh = @opendir($base.'/'.$dir); 451bd08ebd1SAndreas Gohr if(!$dh) return false; 45234aae6dbSAndreas Gohr while(($file = readdir($dh)) !== false) { 45334aae6dbSAndreas Gohr if($file == '.' || $file == '..') continue; 45434aae6dbSAndreas Gohr $from = "$base/$dir/$file"; 45534aae6dbSAndreas Gohr $to = DOKU_INC."$dir/$file"; 45634aae6dbSAndreas Gohr 45734aae6dbSAndreas Gohr if(is_dir($from)) { 45834aae6dbSAndreas Gohr if($dryrun) { 45934aae6dbSAndreas Gohr // just check for writability 46034aae6dbSAndreas Gohr if(!is_dir($to)) { 46134aae6dbSAndreas Gohr if(is_dir(dirname($to)) && !is_writable(dirname($to))) { 4626e7afd39SAndreas Gohr $this->_warn('<b>'.$this->getLang('tv_noperm').'</b>', hsc("$dir/$file")); 46334aae6dbSAndreas Gohr $ok = false; 46434aae6dbSAndreas Gohr } 46534aae6dbSAndreas Gohr } 46634aae6dbSAndreas Gohr } 46734aae6dbSAndreas Gohr 46834aae6dbSAndreas Gohr // recursion 46934aae6dbSAndreas Gohr if(!$this->_traverse("$dir/$file", $dryrun)) { 47034aae6dbSAndreas Gohr $ok = false; 47134aae6dbSAndreas Gohr } 47234aae6dbSAndreas Gohr } else { 473f2fa6d10SAndreas Gohr $fmd5 = md5(@file_get_contents($from)); 474f2fa6d10SAndreas Gohr $tmd5 = md5(@file_get_contents($to)); 4756deeb3b1SAndreas Gohr if($fmd5 != $tmd5 || !file_exists($to)) { 47634aae6dbSAndreas Gohr if($dryrun) { 47734aae6dbSAndreas Gohr // just check for writability 47834aae6dbSAndreas Gohr if((file_exists($to) && !is_writable($to)) || 479bd08ebd1SAndreas Gohr (!file_exists($to) && is_dir(dirname($to)) && !is_writable(dirname($to))) 480bd08ebd1SAndreas Gohr ) { 48134aae6dbSAndreas Gohr 4826e7afd39SAndreas Gohr $this->_warn('<b>'.$this->getLang('tv_noperm').'</b>', hsc("$dir/$file")); 48334aae6dbSAndreas Gohr $ok = false; 48434aae6dbSAndreas Gohr } else { 485fb522b50SAndreas Gohr self::_say($this->getLang('tv_upd'), hsc("$dir/$file")); 48634aae6dbSAndreas Gohr } 48734aae6dbSAndreas Gohr } else { 48834aae6dbSAndreas Gohr // check dir 48934aae6dbSAndreas Gohr if(io_mkdir_p(dirname($to))) { 4907b7da9aaSAndreas Gohr // remove existing (avoid case sensitivity problems) 4917b7da9aaSAndreas Gohr if(file_exists($to) && !@unlink($to)) { 4927b7da9aaSAndreas Gohr $this->_warn('<b>'.$this->getLang('tv_nodel').'</b>', hsc("$dir/$file")); 4937b7da9aaSAndreas Gohr $ok = false; 4947b7da9aaSAndreas Gohr } 49534aae6dbSAndreas Gohr // copy 49634aae6dbSAndreas Gohr if(!copy($from, $to)) { 4976e7afd39SAndreas Gohr $this->_warn('<b>'.$this->getLang('tv_nocopy').'</b>', hsc("$dir/$file")); 49834aae6dbSAndreas Gohr $ok = false; 49934aae6dbSAndreas Gohr } else { 500fb522b50SAndreas Gohr self::_say($this->getLang('tv_done'), hsc("$dir/$file")); 50134aae6dbSAndreas Gohr } 50234aae6dbSAndreas Gohr } else { 5036e7afd39SAndreas Gohr $this->_warn('<b>'.$this->getLang('tv_nodir').'</b>', hsc("$dir")); 50434aae6dbSAndreas Gohr $ok = false; 50534aae6dbSAndreas Gohr } 50634aae6dbSAndreas Gohr } 50734aae6dbSAndreas Gohr } 50834aae6dbSAndreas Gohr } 50934aae6dbSAndreas Gohr } 51034aae6dbSAndreas Gohr closedir($dh); 51134aae6dbSAndreas Gohr return $ok; 51234aae6dbSAndreas Gohr } 5130ab52135SAndreas Gohr 5140ab52135SAndreas Gohr /** 5150ab52135SAndreas Gohr * Figure out the release date from the version string 5160ab52135SAndreas Gohr * 5170ab52135SAndreas Gohr * @param $version 5180ab52135SAndreas Gohr * @return int|string returns 0 if the version can't be read 5190ab52135SAndreas Gohr */ 5200ab52135SAndreas Gohr public function dateFromVersion($version) { 5210ab52135SAndreas Gohr if(preg_match('/(^|[^\d])(\d\d\d\d-\d\d-\d\d)([^\d]|$)/i', $version, $m)) { 5220ab52135SAndreas Gohr return $m[2]; 5230ab52135SAndreas Gohr } 5240ab52135SAndreas Gohr return 0; 5250ab52135SAndreas Gohr } 52634aae6dbSAndreas Gohr} 52734aae6dbSAndreas Gohr 52834aae6dbSAndreas Gohr// vim:ts=4:sw=4:et:enc=utf-8: 529