Subversion Repositories oidplus

Rev

Rev 1130 | Rev 1132 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. /*
  4.  * OIDplus 2.0
  5.  * Copyright 2019 - 2023 Daniel Marschall, ViaThinkSoft
  6.  *
  7.  * Licensed under the Apache License, Version 2.0 (the "License");
  8.  * you may not use this file except in compliance with the License.
  9.  * You may obtain a copy of the License at
  10.  *
  11.  *     http://www.apache.org/licenses/LICENSE-2.0
  12.  *
  13.  * Unless required by applicable law or agreed to in writing, software
  14.  * distributed under the License is distributed on an "AS IS" BASIS,
  15.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16.  * See the License for the specific language governing permissions and
  17.  * limitations under the License.
  18.  */
  19.  
  20. namespace ViaThinkSoft\OIDplus;
  21.  
  22. // phpcs:disable PSR1.Files.SideEffects
  23. \defined('INSIDE_OIDPLUS') or die;
  24. // phpcs:enable PSR1.Files.SideEffects
  25.  
  26. class OIDplusPageAdminSoftwareUpdate extends OIDplusPagePluginAdmin
  27.         implements INTF_OID_1_3_6_1_4_1_37476_2_5_2_3_8 /* getNotifications */
  28. {
  29.  
  30.         /**
  31.          * @param bool $html
  32.          * @return void
  33.          */
  34.         public function init(bool $html=true) {
  35.         }
  36.  
  37.         /**
  38.          * @return string
  39.          */
  40.         private function getGitCommand(): string {
  41.                 return 'git --git-dir='.escapeshellarg(OIDplus::findGitFolder().'/').' --work-tree='.escapeshellarg(OIDplus::localpath()).' -C "" pull origin master -s recursive -X theirs';
  42.         }
  43.  
  44.         /**
  45.          * @return string
  46.          */
  47.         private function getSvnCommand(): string {
  48.                 return 'svn update --accept theirs-full';
  49.         }
  50.  
  51.         /**
  52.          * @param string $actionID
  53.          * @param array $params
  54.          * @return array
  55.          * @throws OIDplusException
  56.          */
  57.         public function action(string $actionID, array $params): array {
  58.                 if ($actionID == 'update_now') {
  59.                         @set_time_limit(0);
  60.  
  61.                         if (!OIDplus::authUtils()->isAdminLoggedIn()) {
  62.                                 throw new OIDplusException(_L('You need to <a %1>log in</a> as administrator.',OIDplus::gui()->link('oidplus:login$admin')));
  63.                         }
  64.  
  65.                         if (OIDplus::getInstallType() === 'git-wc') {
  66.                                 $cmd = $this->getGitCommand().' 2>&1';
  67.  
  68.                                 $ec = -1;
  69.                                 $out = array();
  70.                                 exec($cmd, $out, $ec);
  71.  
  72.                                 $res = _L('Execute command:').' '.$cmd."\n\n".trim(implode("\n",$out));
  73.                                 if ($ec === 0) {
  74.                                         $rev = 'HEAD'; // do not translate
  75.                                         return array("status" => 0, "content" => $res, "rev" => $rev);
  76.                                 } else {
  77.                                         return array("status" => -1, "error" => $res, "content" => "");
  78.                                 }
  79.                         }
  80.                         else if (OIDplus::getInstallType() === 'svn-wc') {
  81.                                 $cmd = $this->getSvnCommand().' 2>&1';
  82.  
  83.                                 $ec = -1;
  84.                                 $out = array();
  85.                                 exec($cmd, $out, $ec);
  86.  
  87.                                 $res = _L('Execute command:').' '.$cmd."\n\n".trim(implode("\n",$out));
  88.                                 if ($ec === 0) {
  89.                                         $rev = 'HEAD'; // do not translate
  90.                                         return array("status" => 0, "content" => $res, "rev" => $rev);
  91.                                 } else {
  92.                                         return array("status" => -1, "error" => $res, "content" => "");
  93.                                 }
  94.                         }
  95.                         else if (OIDplus::getInstallType() === 'svn-snapshot') {
  96.  
  97.                                 $rev = $params['rev'];
  98.  
  99.                                 $update_version = $params['update_version'] ?? 1;
  100.                                 if (($update_version != 1) && ($update_version != 2)) {
  101.                                         throw new OIDplusException(_L('Unknown update version'));
  102.                                 }
  103.  
  104.                                 // Download and unzip
  105.  
  106.                                 $cont = false;
  107.                                 for ($retry=1; $retry<=3; $retry++) {
  108.                                         if (function_exists('gzdecode')) {
  109.                                                 $url = sprintf(OIDplus::getEditionInfo()['update_package_gz'], $rev-1, $rev);
  110.                                                 $cont = url_get_contents($url);
  111.                                                 if ($cont !== false) $cont = @gzdecode($cont);
  112.                                         } else {
  113.                                                 $url = sprintf(OIDplus::getEditionInfo()['update_package'], $rev-1, $rev);
  114.                                                 $cont = url_get_contents($url);
  115.                                         }
  116.                                         if ($cont !== false) {
  117.                                                 break;
  118.                                         } else {
  119.                                                 sleep(1);
  120.                                         }
  121.                                 }
  122.                                 if ($cont === false) throw new OIDplusException(_L("Update %1 could not be downloaded from ViaThinkSoft server. Please try again later.",$rev));
  123.  
  124.                                 // Check signature...
  125.  
  126.                                 if (function_exists('openssl_verify')) {
  127.  
  128.                                         $m = array();
  129.                                         if (!preg_match('@<\?php /\* <ViaThinkSoftSignature>(.+)</ViaThinkSoftSignature> \*/ \?>\n@ismU', $cont, $m)) {
  130.                                                 throw new OIDplusException(_L("Update package file of revision %1 not digitally signed",$rev));
  131.                                         }
  132.                                         $signature = base64_decode($m[1]);
  133.  
  134.                                         $naked = preg_replace('@<\?php /\* <ViaThinkSoftSignature>(.+)</ViaThinkSoftSignature> \*/ \?>\n@ismU', '', $cont);
  135.                                         $hash = hash("sha256", $naked."update_".($rev-1)."_to_".($rev).".txt");
  136.  
  137.                                         $public_key = file_get_contents(__DIR__.'/public.pem');
  138.                                         if (!openssl_verify($hash, $signature, $public_key, OPENSSL_ALGO_SHA256)) {
  139.                                                 throw new OIDplusException(_L("Update package file of revision %1: Signature invalid",$rev));
  140.                                         }
  141.  
  142.                                 }
  143.  
  144.                                 // All OK! Now write file
  145.  
  146.                                 $tmp_filename = 'update_'.generateRandomString(10).'.tmp.php';
  147.                                 $local_file = OIDplus::localpath().$tmp_filename;
  148.  
  149.                                 @file_put_contents($local_file, $cont);
  150.  
  151.                                 if (!file_exists($local_file) || (@file_get_contents($local_file) !== $cont)) {
  152.                                         throw new OIDplusException(_L('Update file could not written. Probably there are no write-permissions to the root folder.'));
  153.                                 }
  154.  
  155.                                 if ($update_version == 1) {
  156.                                         // Now call the written file
  157.                                         // Note: we may not use eval($cont) because the script uses die(),
  158.                                         // and things in the script might collide with currently (un)loaded source code files, shutdown procedues, etc.
  159.                                         $web_file = OIDplus::webpath(null,OIDplus::PATH_ABSOLUTE).$tmp_filename; // NOT canonical URL! This might fail with reverse proxies which can only be executed from outside
  160.                                         $res = url_get_contents($web_file);
  161.                                         if ($res === false) {
  162.                                                 throw new OIDplusException(_L('Update-script %1 could not be executed',$web_file));
  163.                                         }
  164.                                         return array("status" => 0, "content" => $res, "rev" => $rev);
  165.                                 } else if ($update_version == 2) {
  166.                                         // In this version, the client will call the web-update file.
  167.                                         // This has the advantage that it will also work if the system is htpasswd protected
  168.                                         return array("status" => 0, "update_file" => $tmp_filename, "rev" => $rev);
  169.                                 } else {
  170.                                         throw new OIDplusException(_L("Unexpected update version"));
  171.                                 }
  172.                         }
  173.                         else {
  174.                                 throw new OIDplusException(_L('Multiple version files/directories (oidplus_version.txt, .version.php, .git, or .svn) are existing! Therefore, the version is ambiguous!'));
  175.                         }
  176.                 } else {
  177.                         return parent::action($actionID, $params);
  178.                 }
  179.         }
  180.  
  181.         /**
  182.          * @param string $id
  183.          * @param array $out
  184.          * @param bool $handled
  185.          * @return void
  186.          * @throws OIDplusException
  187.          */
  188.         public function gui(string $id, array &$out, bool &$handled) {
  189.                 $parts = explode('.',$id,2);
  190.                 if (!isset($parts[1])) $parts[1] = '';
  191.                 if ($parts[0] == 'oidplus:software_update') {
  192.                         @set_time_limit(0);
  193.  
  194.                         $handled = true;
  195.                         $out['title'] = _L('Software update');
  196.                         $out['icon']  = OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon.png';
  197.  
  198.                         if (!OIDplus::authUtils()->isAdminLoggedIn()) {
  199.                                 $out['icon'] = 'img/error.png';
  200.                                 $out['text'] = '<p>'._L('You need to <a %1>log in</a> as administrator.',OIDplus::gui()->link('oidplus:login$admin')).'</p>';
  201.                                 return;
  202.                         }
  203.  
  204.                         $out['text'] .= '<div id="update_versioninfo">';
  205.  
  206.                         $out['text'] .= '<p><u>'._L('There are three possibilities how to keep OIDplus up-to-date').':</u></p>';
  207.  
  208.                         if (isset(OIDplus::getEditionInfo()['svnrepo']) && (OIDplus::getEditionInfo()['svnrepo'] != '')) {
  209.                                 $out['text'] .= '<p><b>'._L('Method A').'</b>: '._L('Install OIDplus using the subversion tool in your SSH/Linux shell using the command <code>svn co %1</code> and update it regularly with the command <code>svn update</code> . This will automatically download the latest version and check for conflicts.',htmlentities(OIDplus::getEditionInfo()['svnrepo']).'/trunk/');
  210.                                 if (!str_starts_with(PHP_OS, 'WIN')) {
  211.                                         $out['text'] .= ' '._L('Make sure that you invoke the <code>%1</code> command as the user who runs PHP or that you <code>chown -R</code> the files after invoking <code>%1</code>','svn update');
  212.                                 }
  213.                                 $out['text'] .= '</p>';
  214.                         } else {
  215.                                 $out['text'] .= '<p><b>'._L('Method A').'</b>: '._L('Distribution via %1 is not possible with this edition of OIDplus','GIT').'</p>';
  216.                         }
  217.  
  218.                         if (isset(OIDplus::getEditionInfo()['gitrepo']) && (OIDplus::getEditionInfo()['gitrepo'] != '')) {
  219.                                 $out['text'] .= '<p><b>'._L('Method B').'</b>: '._L('Install OIDplus using the Git client in your SSH/Linux shell using the command <code>git clone %1</code> and update it regularly with the command <code>git pull</code> . This will automatically download the latest version and check for conflicts.',htmlentities(OIDplus::getEditionInfo()['gitrepo'].'.git'));
  220.                                 if (!str_starts_with(PHP_OS, 'WIN')) {
  221.                                         $out['text'] .= ' '._L('Make sure that you invoke the <code>%1</code> command as the user who runs PHP or that you <code>chown -R</code> the files after invoking <code>%1</code>','git pull');
  222.                                 }
  223.                                 $out['text'] .= '</p>';
  224.                         } else {
  225.                                 $out['text'] .= '<p><b>'._L('Method B').'</b>: '._L('Distribution via %1 is not possible with this edition of OIDplus','SVN').'</p>';
  226.                         }
  227.  
  228.                         if (isset(OIDplus::getEditionInfo()['downloadpage']) && (OIDplus::getEditionInfo()['downloadpage'] != '')) {
  229.                                 $out['text'] .= '<p><b>'._L('Method C').'</b>: '._L('Install OIDplus by downloading a TAR.GZ file from %1, which contains an SVN snapshot, and extract it to your webspace. The TAR.GZ file contains a file named ".version.php" which contains the SVN revision of the snapshot. This update-tool will then try to update your files on-the-fly by downloading them from the ViaThinkSoft SVN repository directly into your webspace directory. A change conflict detection is NOT implemented. It is required that the files on your webspace have create/write/delete permissions. Only recommended if you have no access to the SSH/Linux shell.','<a href="'.OIDplus::getEditionInfo()['downloadpage'].'">'.parse_url(OIDplus::getEditionInfo()['downloadpage'])['host'].'</a>').'</p>';
  230.                         } else {
  231.                                 $out['text'] .= '<p><b>'._L('Method C').'</b>: '._L('Distribution via %1 is not possible with this edition of OIDplus','Snapshot').'</p>';
  232.                         }
  233.  
  234.  
  235.                         $out['text'] .= '<hr>';
  236.  
  237.                         $installType = OIDplus::getInstallType();
  238.  
  239.                         if ($installType === 'ambigous') {
  240.                                 $out['text'] .= '<font color="red">'.mb_strtoupper(_L('Error')).': '._L('Multiple version files/directories (oidplus_version.txt, .version.php, .git, or .svn) are existing! Therefore, the version is ambiguous!').'</font>';
  241.                                 $out['text'] .= '</div>';
  242.                         } else if ($installType === 'unknown') {
  243.                                 $out['text'] .= '<font color="red">'.mb_strtoupper(_L('Error')).': '._L('The version cannot be determined, and the update needs to be applied manually!').'</font>';
  244.                                 $out['text'] .= '</div>';
  245.                         } else if (($installType === 'svn-wc') || ($installType === 'git-wc') || ($installType === 'svn-snapshot')) {
  246.                                 if ($installType === 'svn-wc') {
  247.                                         $out['text'] .= '<p>'._L('You are using <b>method A</b> (SVN working copy).').'</p>';
  248.                                         $requireInfo = _L('shell access with svn/svnversion tool, or PDO/SQLite3 PHP extension');
  249.                                         $updateCommand = $this->getSvnCommand();
  250.                                 } else if ($installType === 'git-wc') {
  251.                                         $out['text'] .= '<p>'._L('You are using <b>method B</b> (Git working copy).').'</p>';
  252.                                         $requireInfo = _L('shell access with Git client');
  253.                                         $updateCommand = $this->getGitCommand();
  254.                                 } else if ($installType === 'svn-snapshot') {
  255.                                         $out['text'] .= '<p>'._L('You are using <b>method C</b> (Snapshot TAR.GZ file with .version.php file).').'</p>';
  256.                                         $requireInfo = ''; // unused
  257.                                         $updateCommand = ''; // unused
  258.                                 }
  259.  
  260.                                 $local_installation = OIDplus::getVersion();
  261.                                 $newest_version = $this->getLatestRevision();
  262.  
  263.                                 $out['text'] .= _L('Local installation: %1',($local_installation ?: _L('unknown'))).'<br>';
  264.                                 $out['text'] .= _L('Latest published version: %1',($newest_version ?: _L('unknown'))).'<br><br>';
  265.  
  266.                                 if (!$newest_version) {
  267.                                         if (!function_exists('curl_init')) {
  268.                                                 $out['text'] .= '<p><font color="red">'._L('OIDplus could not determine the latest version.').'<br>'._L('The "%1" PHP extension is not installed at your system. Please enable the PHP extension <code>%2</code>.','CURL','php_curl').'</font></p>';
  269.                                         } else {
  270.                                                 $out['text'] .= '<p><font color="red">'._L('OIDplus could not determine the latest version.').'<br>'._L('Probably the ViaThinkSoft server could not be reached.').'</font></p>';
  271.                                         }
  272.                                         $out['text'] .= '</div>';
  273.                                 } else if (!$local_installation) {
  274.                                         if ($installType === 'svn-snapshot') {
  275.                                                 $out['text'] .= '<p><font color="red">'._L('OIDplus could not determine its version.').'</font></p>';
  276.                                         } else {
  277.                                                 $out['text'] .= '<p><font color="red">'._L('OIDplus could not determine its version. (Required: %1). Please update your system manually via the "%2" command regularly.',$requireInfo,$updateCommand).'</font></p>';
  278.                                         }
  279.                                         $out['text'] .= '</div>';
  280.                                 } else if (version_compare($local_installation, $newest_version) >= 0) {
  281.                                         $out['text'] .= '<p><font color="green">'._L('You are already using the latest version of OIDplus.').'</font></p>';
  282.                                         $out['text'] .= '</div>';
  283.                                 } else {
  284.                                         if (($installType === 'svn-wc') || ($installType === 'git-wc')) {
  285.                                                 $out['text'] .= '<p><font color="blue">'._L('Please enter %1 into the SSH shell to update OIDplus to the latest version.','<code>'.$updateCommand.'</code>').'</font></p>';
  286.                                                 $out['text'] .= '<p>'._L('Alternatively, click this button to execute the command through the web-interface (command execution and write permissions required).').'</p>';
  287.                                         }
  288.  
  289.                                         $out['text'] .= '<p><input type="button" onclick="OIDplusPageAdminSoftwareUpdate.doUpdateOIDplus('.((int)substr($local_installation,4)+1).', '.substr($newest_version,4).')" value="'._L('Update NOW').'"></p>';
  290.  
  291.                                         // TODO: Open "system_file_check" without page reload.
  292.                                         // TODO: Only show link if the plugin is installed
  293.                                         $out['text'] .= '<p><font color="red">'.mb_strtoupper(_L('Warning')).': '._L('Please make a backup of your files before updating. In case of an error, the OIDplus system (including this update-assistant) might become unavailable. Also, since the web-update does not contain collision-detection, changes you have applied (like adding, removing or modified files) might get reverted/lost! (<a href="%1">Click here to check which files have been modified</a>) In case the update fails, you can download and extract the complete <a href="%s">SVN-Snapshot TAR.GZ file</a> again. Since all your data should lay inside the folder "userdata" and "userdata_pub", this should be safe.','?goto='.urlencode('oidplus:system_file_check'),OIDplus::getEditionInfo()['downloadpage']).'</font></p>';
  294.  
  295.                                         $out['text'] .= '</div>';
  296.  
  297.                                         $out['text'] .= $this->showPreview($local_installation, $newest_version);
  298.                                 }
  299.                         }
  300.                 } else {
  301.                         $handled = false;
  302.                 }
  303.         }
  304.  
  305.         /**
  306.          * @param array $json
  307.          * @param string|null $ra_email
  308.          * @param bool $nonjs
  309.          * @param string $req_goto
  310.          * @return bool
  311.          * @throws OIDplusException
  312.          */
  313.         public function tree(array &$json, string $ra_email=null, bool $nonjs=false, string $req_goto=''): bool {
  314.                 if (!OIDplus::authUtils()->isAdminLoggedIn()) return false;
  315.  
  316.                 if (file_exists(__DIR__.'/img/main_icon16.png')) {
  317.                         $tree_icon = OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon16.png';
  318.                 } else {
  319.                         $tree_icon = null; // default icon (folder)
  320.                 }
  321.  
  322.                 $json[] = array(
  323.                         'id' => 'oidplus:software_update',
  324.                         'icon' => $tree_icon,
  325.                         'text' => _L('Software update')
  326.                 );
  327.  
  328.                 return true;
  329.         }
  330.  
  331.         /**
  332.          * @param string $request
  333.          * @return array|false
  334.          */
  335.         public function tree_search(string $request) {
  336.                 return false;
  337.         }
  338.  
  339.         /**
  340.          * @var string|null
  341.          */
  342.         private $releases_ser = null;
  343.  
  344.         /**
  345.          * @param string $local_ver
  346.          * @return false|string
  347.          */
  348.         private function showChangelog(string $local_ver) {
  349.  
  350.                 try {
  351.                         if (is_null($this->releases_ser)) {
  352.                                 if (function_exists('gzdecode')) {
  353.                                         $url = OIDplus::getEditionInfo()['revisionlog_gz'];
  354.                                         $cont = url_get_contents($url);
  355.                                         if ($cont !== false) $cont = @gzdecode($cont);
  356.                                 } else {
  357.                                         $url = OIDplus::getEditionInfo()['revisionlog'];
  358.                                         $cont = url_get_contents($url);
  359.                                 }
  360.                                 if ($cont === false) return false;
  361.                                 $this->releases_ser = $cont;
  362.                         } else {
  363.                                 $cont = $this->releases_ser;
  364.                         }
  365.                         $content = '';
  366.                         $ary = @unserialize($cont);
  367.                         if ($ary === false) return false;
  368.                         krsort($ary);
  369.                         foreach ($ary as $rev => $data) {
  370.                                 if (version_compare("svn-$rev", $local_ver) <= 0) continue;
  371.                                 $comment = empty($data['msg']) ? _L('No comment') : $data['msg'];
  372.                                 $tex = _L("New revision %1 by %2",$rev,$data['author'])." (".$data['date'].") ";
  373.                                 $content .= trim($tex . str_replace("\n", "\n".str_repeat(' ', strlen($tex)), $comment));
  374.                                 $content .= "\n";
  375.                         }
  376.                         return $content;
  377.                 } catch (\Exception $e) {
  378.                         return false;
  379.                 }
  380.  
  381.         }
  382.  
  383.         /**
  384.          * @return false|string
  385.          */
  386.         private function getLatestRevision() {
  387.                 try {
  388.                         if (is_null($this->releases_ser)) {
  389.                                 if (function_exists('gzdecode')) {
  390.                                         $url = OIDplus::getEditionInfo()['revisionlog_gz'];
  391.                                         $cont = url_get_contents($url);
  392.                                         if ($cont !== false) $cont = @gzdecode($cont);
  393.                                 } else {
  394.                                         $url = OIDplus::getEditionInfo()['revisionlog'];
  395.                                         $cont = url_get_contents($url);
  396.                                 }
  397.                                 if ($cont === false) return false;
  398.                                 $this->releases_ser = $cont;
  399.                         } else {
  400.                                 $cont = $this->releases_ser;
  401.                         }
  402.                         $ary = @unserialize($cont);
  403.                         if ($ary === false) return false;
  404.                         krsort($ary);
  405.                         $max_rev = array_keys($ary)[0];
  406.                         return 'svn-' . $max_rev;
  407.                 } catch (\Exception $e) {
  408.                         return false;
  409.                 }
  410.         }
  411.  
  412.         /**
  413.          * @param string $local_installation
  414.          * @param string $newest_version
  415.          * @return string
  416.          */
  417.         private function showPreview(string $local_installation, string $newest_version): string {
  418.                 $out = '<h2 id="update_header">'._L('Preview of update %1 &rarr; %2',$local_installation,$newest_version).'</h2>';
  419.  
  420.                 ob_start();
  421.                 try {
  422.                         $cont = $this->showChangelog($local_installation);
  423.                 } catch (\Exception $e) {
  424.                         $cont = _L('Error: %1',$e->getMessage());
  425.                 }
  426.                 ob_end_clean();
  427.  
  428.                 $cont = preg_replace('@!!!(.+)\\n@', '<font color="red">!!!\\1</font>'."\n", "$cont\n");
  429.  
  430.                 $out .= '<pre id="update_infobox">'.$cont.'</pre>';
  431.  
  432.                 return $out;
  433.         }
  434.  
  435.         /**
  436.          * Implements interface INTF_OID_1_3_6_1_4_1_37476_2_5_2_3_8
  437.          * @param string|null $user
  438.          * @return array
  439.          * @throws OIDplusException
  440.          */
  441.         public function getNotifications(string $user=null): array {
  442.                 $notifications = array();
  443.                 if ((!$user || ($user == 'admin')) && OIDplus::authUtils()->isAdminLoggedIn()) {
  444.  
  445.                         // Following code is based on the VNag plugin (admin 901) code
  446.  
  447.                         $installType = OIDplus::getInstallType();
  448.  
  449.                         if ($installType === 'ambigous') {
  450.                                 $out_stat = 'WARN';
  451.                                 $out_msg  = _L('Multiple version files/directories (oidplus_version.txt, .version.php, .git, or .svn) are existing! Therefore, the version is ambiguous!');
  452.                         } else if ($installType === 'unknown') {
  453.                                 $out_stat = 'WARN';
  454.                                 $out_msg  = _L('The version cannot be determined, and the update needs to be applied manually!');
  455.                         } else if (($installType === 'svn-wc') || ($installType === 'git-wc')) {
  456.                                 $local_installation = OIDplus::getVersion();
  457.                                 $newest_version = $this->getLatestRevision();
  458.  
  459.                                 $requireInfo = ($installType === 'svn-wc') ? _L('shell access with svn/svnversion tool, or PDO/SQLite3 PHP extension') : _L('shell access with Git client');
  460.                                 $updateCommand = ($installType === 'svn-wc') ? 'svn update' : 'git pull';
  461.  
  462.                                 if (!$newest_version) {
  463.                                         $out_stat = 'WARN';
  464.                                         if (!function_exists('curl_init')) {
  465.                                                 $out_msg  = _L('OIDplus could not determine the latest version.').' '._L('The "%1" PHP extension is not installed at your system. Please enable the PHP extension <code>%2</code>.','CURL','php_curl');
  466.                                         } else {
  467.                                                 $out_msg  = _L('OIDplus could not determine the latest version.').' '._L('Probably the ViaThinkSoft server could not be reached.');
  468.                                         }
  469.                                 } else if (!$local_installation) {
  470.                                         $out_stat = 'WARN';
  471.                                         $out_msg  = _L('OIDplus could not determine its version (Required: %1). Please update your system manually via the "%2" command regularly.', $requireInfo, $updateCommand);
  472.                                 } else if (version_compare($local_installation, $newest_version) >= 0) {
  473.                                         $out_stat = 'INFO';
  474.                                         $out_msg  = _L('You are using the latest version of OIDplus (%1 local / %2 remote)', $local_installation, $newest_version);
  475.                                 } else {
  476.                                         $out_stat = 'WARN';
  477.                                         $out_msg  = _L('OIDplus is outdated. (%1 local / %2 remote)', $local_installation, $newest_version);
  478.                                 }
  479.                         } else if ($installType === 'svn-snapshot') {
  480.                                 $local_installation = OIDplus::getVersion();
  481.                                 $newest_version = $this->getLatestRevision();
  482.  
  483.                                 if (!$newest_version) {
  484.                                         $out_stat = 'WARN';
  485.                                         if (!function_exists('curl_init')) {
  486.                                                 $out_msg  = _L('OIDplus could not determine the latest version.').' '._L('The "%1" PHP extension is not installed at your system. Please enable the PHP extension <code>%2</code>.','CURL','php_curl');
  487.                                         } else {
  488.                                                 $out_msg  = _L('OIDplus could not determine the latest version.').' '._L('Probably the ViaThinkSoft server could not be reached.');
  489.                                         }
  490.                                 } else if (version_compare($local_installation, $newest_version) >= 0) {
  491.                                         $out_stat = 'INFO';
  492.                                         $out_msg  = _L('You are using the latest version of OIDplus (%1 local / %2 remote)', $local_installation, $newest_version);
  493.                                 } else {
  494.                                         $out_stat = 'WARN';
  495.                                         $out_msg  = _L('OIDplus is outdated. (%1 local / %2 remote)', $local_installation, $newest_version);
  496.                                 }
  497.                         } else {
  498.                                 assert(false);
  499.                                 return $notifications;
  500.                         }
  501.  
  502.                         if ($out_stat != 'INFO') {
  503.                                 $out_msg = '<a '.OIDplus::gui()->link('oidplus:software_update').'>'._L('Software update').'</a>: ' . $out_msg;
  504.  
  505.                                 $notifications[] = array($out_stat, $out_msg);
  506.                         }
  507.  
  508.                 }
  509.                 return $notifications;
  510.         }
  511.  
  512. }
  513.