Subversion Repositories oidplus

Rev

Rev 1000 | Rev 1061 | 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 - 2022 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. class OIDplusPageAdminSoftwareUpdate extends OIDplusPagePluginAdmin {
  23.  
  24.         public function init($html=true) {
  25.         }
  26.  
  27.         private function getGitCommand() {
  28.                 return 'git --git-dir='.escapeshellarg(OIDplus::findGitFolder().'/').' --work-tree='.escapeshellarg(OIDplus::localpath()).' -C "" pull origin master -s recursive -X theirs';
  29.         }
  30.  
  31.         private function getSvnCommand() {
  32.                 return 'svn update --accept theirs-full';
  33.         }
  34.  
  35.         public function action($actionID, $params) {
  36.                 if ($actionID == 'update_now') {
  37.                         @set_time_limit(0);
  38.  
  39.                         if (!OIDplus::authUtils()->isAdminLoggedIn()) {
  40.                                 throw new OIDplusException(_L('You need to <a %1>log in</a> as administrator.',OIDplus::gui()->link('oidplus:login$admin')));
  41.                         }
  42.  
  43.                         if (OIDplus::getInstallType() === 'git-wc') {
  44.                                 $cmd = $this->getGitCommand().' 2>&1';
  45.  
  46.                                 $ec = -1;
  47.                                 $out = array();
  48.                                 exec($cmd, $out, $ec);
  49.  
  50.                                 $res = _L('Execute command:').' '.$cmd."\n\n".trim(implode("\n",$out));
  51.                                 if ($ec === 0) {
  52.                                         $rev = 'HEAD'; // do not translate
  53.                                         return array("status" => 0, "content" => $res, "rev" => $rev);
  54.                                 } else {
  55.                                         return array("status" => -1, "error" => $res, "content" => "");
  56.                                 }
  57.                         }
  58.                         else if (OIDplus::getInstallType() === 'svn-wc') {
  59.                                 $cmd = $this->getSvnCommand().' 2>&1';
  60.  
  61.                                 $ec = -1;
  62.                                 $out = array();
  63.                                 exec($cmd, $out, $ec);
  64.  
  65.                                 $res = _L('Execute command:').' '.$cmd."\n\n".trim(implode("\n",$out));
  66.                                 if ($ec === 0) {
  67.                                         $rev = 'HEAD'; // do not translate
  68.                                         return array("status" => 0, "content" => $res, "rev" => $rev);
  69.                                 } else {
  70.                                         return array("status" => -1, "error" => $res, "content" => "");
  71.                                 }
  72.                         }
  73.                         else if (OIDplus::getInstallType() === 'svn-snapshot') {
  74.  
  75.                                 $rev = $params['rev'];
  76.  
  77.                                 $update_version = isset($params['update_version']) ? $params['update_version'] : 1;
  78.                                 if (($update_version != 1) && ($update_version != 2)) {
  79.                                         throw new OIDplusException(_L('Unknown update version'));
  80.                                 }
  81.  
  82.                                 // Download and unzip
  83.  
  84.                                 $cont = false;
  85.                                 for ($retry=1; $retry<=3; $retry++) {
  86.                                         if (function_exists('gzdecode')) {
  87.                                                 $url = sprintf(OIDplus::getEditionInfo()['update_package_gz'], $rev-1, $rev);
  88.                                                 $cont = url_get_contents($url);
  89.                                                 if ($cont !== false) $cont = @gzdecode($cont);
  90.                                         } else {
  91.                                                 $url = sprintf(OIDplus::getEditionInfo()['update_package'], $rev-1, $rev);
  92.                                                 $cont = url_get_contents($url);
  93.                                         }
  94.                                         if ($cont !== false) {
  95.                                                 break;
  96.                                         } else {
  97.                                                 sleep(1);
  98.                                         }
  99.                                 }
  100.                                 if ($cont === false) throw new OIDplusException(_L("Update %1 could not be downloaded from ViaThinkSoft server. Please try again later.",$rev));
  101.  
  102.                                 // Check signature...
  103.  
  104.                                 if (function_exists('openssl_verify')) {
  105.  
  106.                                         $m = array();
  107.                                         if (!preg_match('@<\?php /\* <ViaThinkSoftSignature>(.+)</ViaThinkSoftSignature> \*/ \?>\n@ismU', $cont, $m)) {
  108.                                                 throw new OIDplusException(_L("Update package file of revision %1 not digitally signed",$rev));
  109.                                         }
  110.                                         $signature = base64_decode($m[1]);
  111.  
  112.                                         $naked = preg_replace('@<\?php /\* <ViaThinkSoftSignature>(.+)</ViaThinkSoftSignature> \*/ \?>\n@ismU', '', $cont);
  113.                                         $hash = hash("sha256", $naked."update_".($rev-1)."_to_".($rev).".txt");
  114.  
  115.                                         $public_key = file_get_contents(__DIR__.'/public.pem');
  116.                                         if (!openssl_verify($hash, $signature, $public_key, OPENSSL_ALGO_SHA256)) {
  117.                                                 throw new OIDplusException(_L("Update package file of revision %1: Signature invalid",$rev));
  118.                                         }
  119.  
  120.                                 }
  121.  
  122.                                 // All OK! Now write file
  123.  
  124.                                 $tmp_filename = 'update_'.generateRandomString(10).'.tmp.php';
  125.                                 $local_file = OIDplus::localpath().$tmp_filename;
  126.  
  127.                                 @file_put_contents($local_file, $cont);
  128.  
  129.                                 if (!file_exists($local_file) || (@file_get_contents($local_file) !== $cont)) {
  130.                                         throw new OIDplusException(_L('Update file could not written. Probably there are no write-permissions to the root folder.'));
  131.                                 }
  132.  
  133.                                 if ($update_version == 1) {
  134.                                         // Now call the written file
  135.                                         // Note: we may not use eval($cont) because the script uses die(),
  136.                                         // and things in the script might collide with currently (un)loaded source code files, shutdown procedues, etc.
  137.                                         $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
  138.                                         $res = url_get_contents($web_file);
  139.                                         if ($res === false) {
  140.                                                 throw new OIDplusException(_L('Update-script %1 could not be executed',$web_file));
  141.                                         }
  142.                                         return array("status" => 0, "content" => $res, "rev" => $rev);
  143.                                 } else if ($update_version == 2) {
  144.                                         // In this version, the client will call the web-update file.
  145.                                         // This has the advantage that it will also work if the system is htpasswd protected
  146.                                         return array("status" => 0, "update_file" => $tmp_filename, "rev" => $rev);
  147.                                 }
  148.                         }
  149.                         else {
  150.                                 throw new OIDplusException(_L('Multiple version files/directories (oidplus_version.txt, .version.php, .git, or .svn) are existing! Therefore, the version is ambiguous!'));
  151.                         }
  152.                 }
  153.         }
  154.  
  155.         public function gui($id, &$out, &$handled) {
  156.                 $parts = explode('.',$id,2);
  157.                 if (!isset($parts[1])) $parts[1] = '';
  158.                 if ($parts[0] == 'oidplus:software_update') {
  159.                         @set_time_limit(0);
  160.  
  161.                         $handled = true;
  162.                         $out['title'] = _L('Software update');
  163.                         $out['icon']  = OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon.png';
  164.  
  165.                         if (!OIDplus::authUtils()->isAdminLoggedIn()) {
  166.                                 $out['icon'] = 'img/error.png';
  167.                                 $out['text'] = '<p>'._L('You need to <a %1>log in</a> as administrator.',OIDplus::gui()->link('oidplus:login$admin')).'</p>';
  168.                                 return;
  169.                         }
  170.  
  171.                         $out['text'] .= '<div id="update_versioninfo">';
  172.  
  173.                         $out['text'] .= '<p><u>'._L('There are three possibilities how to keep OIDplus up-to-date').':</u></p>';
  174.  
  175.                         if (isset(OIDplus::getEditionInfo()['svnrepo']) && (OIDplus::getEditionInfo()['svnrepo'] != '')) {
  176.                                 $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/');
  177.                                 if (!str_starts_with(PHP_OS, 'WIN')) {
  178.                                         $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');
  179.                                 }
  180.                                 $out['text'] .= '</p>';
  181.                         } else {
  182.                                 $out['text'] .= '<p><b>'._L('Method A').'</b>: '._L('Distribution via %1 is not possible with this edition of OIDplus','GIT').'</p>';
  183.                         }
  184.  
  185.                         if (isset(OIDplus::getEditionInfo()['gitrepo']) && (OIDplus::getEditionInfo()['gitrepo'] != '')) {
  186.                                 $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'));
  187.                                 if (!str_starts_with(PHP_OS, 'WIN')) {
  188.                                         $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');
  189.                                 }
  190.                                 $out['text'] .= '</p>';
  191.                         } else {
  192.                                 $out['text'] .= '<p><b>'._L('Method B').'</b>: '._L('Distribution via %1 is not possible with this edition of OIDplus','SVN').'</p>';
  193.                         }
  194.  
  195.                         if (isset(OIDplus::getEditionInfo()['downloadpage']) && (OIDplus::getEditionInfo()['downloadpage'] != '')) {
  196.                                 $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>';
  197.                         } else {
  198.                                 $out['text'] .= '<p><b>'._L('Method C').'</b>: '._L('Distribution via %1 is not possible with this edition of OIDplus','Snapshot').'</p>';
  199.                         }
  200.  
  201.  
  202.                         $out['text'] .= '<hr>';
  203.  
  204.                         $installType = OIDplus::getInstallType();
  205.  
  206.                         if ($installType === 'ambigous') {
  207.                                 $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>';
  208.                                 $out['text'] .= '</div>';
  209.                         } else if ($installType === 'unknown') {
  210.                                 $out['text'] .= '<font color="red">'.mb_strtoupper(_L('Error')).': '._L('The version cannot be determined, and the update needs to be applied manually!').'</font>';
  211.                                 $out['text'] .= '</div>';
  212.                         } else if (($installType === 'svn-wc') || ($installType === 'git-wc') || ($installType === 'svn-snapshot')) {
  213.                                 if ($installType === 'svn-wc') {
  214.                                         $out['text'] .= '<p>'._L('You are using <b>method A</b> (SVN working copy).').'</p>';
  215.                                         $requireInfo = _L('shell access with svn/svnversion tool, or PDO/SQLite3 PHP extension');
  216.                                         $updateCommand = $this->getSvnCommand();
  217.                                 } else if ($installType === 'git-wc') {
  218.                                         $out['text'] .= '<p>'._L('You are using <b>method B</b> (Git working copy).').'</p>';
  219.                                         $requireInfo = _L('shell access with Git client');
  220.                                         $updateCommand = $this->getGitCommand();
  221.                                 } else if ($installType === 'svn-snapshot') {
  222.                                         $out['text'] .= '<p>'._L('You are using <b>method C</b> (Snapshot TAR.GZ file with .version.php file).').'</p>';
  223.                                         $requireInfo = ''; // unused
  224.                                         $updateCommand = ''; // unused
  225.                                 }
  226.  
  227.                                 $local_installation = OIDplus::getVersion();
  228.                                 $newest_version = $this->getLatestRevision();
  229.  
  230.                                 $out['text'] .= _L('Local installation: %1',($local_installation ? $local_installation : _L('unknown'))).'<br>';
  231.                                 $out['text'] .= _L('Latest published version: %1',($newest_version ? $newest_version : _L('unknown'))).'<br><br>';
  232.  
  233.                                 if (!$newest_version) {
  234.                                         $out['text'] .= '<p><font color="red">'._L('OIDplus could not determine the latest version. Probably the ViaThinkSoft server could not be reached.').'</font></p>';
  235.                                         $out['text'] .= '</div>';
  236.                                 } else if (!$local_installation) {
  237.                                         if ($installType === 'svn-snapshot') {
  238.                                                 $out['text'] .= '<p><font color="red">'._L('OIDplus could not determine its version.').'</font></p>';
  239.                                         } else {
  240.                                                 $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>';
  241.                                         }
  242.                                         $out['text'] .= '</div>';
  243.                                 } else if (version_compare($local_installation, $newest_version) >= 0) {
  244.                                         $out['text'] .= '<p><font color="green">'._L('You are already using the latest version of OIDplus.').'</font></p>';
  245.                                         $out['text'] .= '</div>';
  246.                                 } else {
  247.                                         if (($installType === 'svn-wc') || ($installType === 'git-wc')) {
  248.                                                 $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>';
  249.                                                 $out['text'] .= '<p>'._L('Alternatively, click this button to execute the command through the web-interface (command execution and write permissions required).').'</p>';
  250.                                         }
  251.  
  252.                                         $out['text'] .= '<p><input type="button" onclick="OIDplusPageAdminSoftwareUpdate.doUpdateOIDplus('.((int)substr($local_installation,4)+1).', '.substr($newest_version,4).')" value="'._L('Update NOW').'"></p>';
  253.  
  254.                                         // TODO: Open "system_file_check" without page reload.
  255.                                         // TODO: Only show link if the plugin is installed
  256.                                         $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>';
  257.  
  258.                                         $out['text'] .= '</div>';
  259.  
  260.                                         $out['text'] .= $this->showPreview($local_installation, $newest_version);
  261.                                 }
  262.                         }
  263.                 } else {
  264.                         $handled = false;
  265.                 }
  266.         }
  267.  
  268.         public function tree(&$json, $ra_email=null, $nonjs=false, $req_goto='') {
  269.                 if (!OIDplus::authUtils()->isAdminLoggedIn()) return false;
  270.  
  271.                 if (file_exists(__DIR__.'/img/main_icon16.png')) {
  272.                         $tree_icon = OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon16.png';
  273.                 } else {
  274.                         $tree_icon = null; // default icon (folder)
  275.                 }
  276.  
  277.                 $json[] = array(
  278.                         'id' => 'oidplus:software_update',
  279.                         'icon' => $tree_icon,
  280.                         'text' => _L('Software update')
  281.                 );
  282.  
  283.                 return true;
  284.         }
  285.  
  286.         public function tree_search($request) {
  287.                 return false;
  288.         }
  289.  
  290.         private $releases_ser = null;
  291.  
  292.         private function showChangelog($local_ver) {
  293.  
  294.                 try {
  295.                         if (is_null($this->releases_ser)) {
  296.                                 if (function_exists('gzdecode')) {
  297.                                         $url = OIDplus::getEditionInfo()['revisionlog_gz'];
  298.                                         $cont = url_get_contents($url);
  299.                                         if ($cont !== false) $cont = @gzdecode($cont);
  300.                                 } else {
  301.                                         $url = OIDplus::getEditionInfo()['revisionlog'];
  302.                                         $cont = url_get_contents($url);
  303.                                 }
  304.                                 if ($cont === false) return false;
  305.                                 $this->releases_ser = $cont;
  306.                         } else {
  307.                                 $cont = $this->releases_ser;
  308.                         }
  309.                         $content = '';
  310.                         $ary = @unserialize($cont);
  311.                         if ($ary === false) return false;
  312.                         krsort($ary);
  313.                         foreach ($ary as $rev => $data) {
  314.                                 if (version_compare("svn-$rev", $local_ver) <= 0) continue;
  315.                                 $comment = empty($data['msg']) ? _L('No comment') : $data['msg'];
  316.                                 $tex = _L("New revision %1 by %2",$rev,$data['author'])." (".$data['date'].") ";
  317.                                 $content .= trim($tex . str_replace("\n", "\n".str_repeat(' ', strlen($tex)), $comment));
  318.                                 $content .= "\n";
  319.                         }
  320.                         return $content;
  321.                 } catch (\Exception $e) {
  322.                         return false;
  323.                 }
  324.  
  325.         }
  326.  
  327.         private function getLatestRevision() {
  328.                 try {
  329.                         if (is_null($this->releases_ser)) {
  330.                                 if (function_exists('gzdecode')) {
  331.                                         $url = OIDplus::getEditionInfo()['revisionlog_gz'];
  332.                                         $cont = url_get_contents($url);
  333.                                         if ($cont !== false) $cont = @gzdecode($cont);
  334.                                 } else {
  335.                                         $url = OIDplus::getEditionInfo()['revisionlog'];
  336.                                         $cont = url_get_contents($url);
  337.                                 }
  338.                                 if ($cont === false) return false;
  339.                                 $this->releases_ser = $cont;
  340.                         } else {
  341.                                 $cont = $this->releases_ser;
  342.                         }
  343.                         $ary = @unserialize($cont);
  344.                         if ($ary === false) return false;
  345.                         krsort($ary);
  346.                         $max_rev = array_keys($ary)[0];
  347.                         $newest_version = 'svn-' . $max_rev;
  348.                         return $newest_version;
  349.                 } catch (\Exception $e) {
  350.                         return false;
  351.                 }
  352.         }
  353.  
  354.         private function showPreview($local_installation, $newest_version) {
  355.                 $out = '<h2 id="update_header">'._L('Preview of update %1 &rarr; %2',$local_installation,$newest_version).'</h2>';
  356.  
  357.                 ob_start();
  358.                 try {
  359.                         $cont = $this->showChangelog($local_installation);
  360.                 } catch (\Exception $e) {
  361.                         $cont = _L('Error: %1',$e->getMessage());
  362.                 }
  363.                 ob_end_clean();
  364.  
  365.                 $cont = preg_replace('@!!!(.+)\\n@', '<font color="red">!!!\\1</font>'."\n", "$cont\n");
  366.  
  367.                 $out .= '<pre id="update_infobox">'.$cont.'</pre>';
  368.  
  369.                 return $out;
  370.         }
  371.  
  372.         public function implementsFeature($id) {
  373.                 if (strtolower($id) == '1.3.6.1.4.1.37476.2.5.2.3.8') return true; // getNotifications()
  374.                 return false;
  375.         }
  376.  
  377.         public function getNotifications($user=null): array {
  378.                 // Interface 1.3.6.1.4.1.37476.2.5.2.3.8
  379.                 $notifications = array();
  380.                 if ((!$user || ($user == 'admin')) && OIDplus::authUtils()->isAdminLoggedIn()) {
  381.  
  382.                         // Following code is based on the VNag plugin (admin 901) code
  383.  
  384.                         $installType = OIDplus::getInstallType();
  385.  
  386.                         if ($installType === 'ambigous') {
  387.                                 $out_stat = 'WARN';
  388.                                 $out_msg  = _L('Multiple version files/directories (oidplus_version.txt, .version.php, .git, or .svn) are existing! Therefore, the version is ambiguous!');
  389.                         } else if ($installType === 'unknown') {
  390.                                 $out_stat = 'WARN';
  391.                                 $out_msg  = _L('The version cannot be determined, and the update needs to be applied manually!');
  392.                         } else if (($installType === 'svn-wc') || ($installType === 'git-wc')) {
  393.                                 $local_installation = OIDplus::getVersion();
  394.                                 $newest_version = $this->getLatestRevision();
  395.  
  396.                                 $requireInfo = ($installType === 'svn-wc') ? _L('shell access with svn/svnversion tool, or PDO/SQLite3 PHP extension') : _L('shell access with Git client');
  397.                                 $updateCommand = ($installType === 'svn-wc') ? 'svn update' : 'git pull';
  398.  
  399.                                 if (!$newest_version) {
  400.                                         $out_stat = 'WARN';
  401.                                         $out_msg  = _L('OIDplus could not determine the latest version. Probably the ViaThinkSoft server could not be reached.');
  402.                                 } else if (!$local_installation) {
  403.                                         $out_stat = 'WARN';
  404.                                         $out_msg  = _L('OIDplus could not determine its version (Required: %1). Please update your system manually via the "%2" command regularly.', $requireInfo, $updateCommand);
  405.                                 } else if (version_compare($local_installation, $newest_version) >= 0) {
  406.                                         $out_stat = 'INFO';
  407.                                         $out_msg  = _L('You are using the latest version of OIDplus (%1 local / %2 remote)', $local_installation, $newest_version);
  408.                                 } else {
  409.                                         $out_stat = 'WARN';
  410.                                         $out_msg  = _L('OIDplus is outdated. (%1 local / %2 remote)', $local_installation, $newest_version);
  411.                                 }
  412.                         } else if ($installType === 'svn-snapshot') {
  413.                                 $local_installation = OIDplus::getVersion();
  414.                                 $newest_version = $this->getLatestRevision();
  415.  
  416.                                 if (!$newest_version) {
  417.                                         $out_stat = 'WARN';
  418.                                         $out_msg  = _L('OIDplus could not determine the latest version. Probably the ViaThinkSoft server could not be reached.');
  419.                                 } else if (version_compare($local_installation, $newest_version) >= 0) {
  420.                                         $out_stat = 'INFO';
  421.                                         $out_msg  = _L('You are using the latest version of OIDplus (%1 local / %2 remote)', $local_installation, $newest_version);
  422.                                 } else {
  423.                                         $out_stat = 'WARN';
  424.                                         $out_msg  = _L('OIDplus is outdated. (%1 local / %2 remote)', $local_installation, $newest_version);
  425.                                 }
  426.                         } else {
  427.                                 assert(false);
  428.                                 return $notifications;
  429.                         }
  430.  
  431.                         if ($out_stat != 'INFO') {
  432.                                 $out_msg = '<a '.OIDplus::gui()->link('oidplus:software_update').'>'._L('Software update').'</a>: ' . $out_msg;
  433.  
  434.                                 $notifications[] = array($out_stat, $out_msg);
  435.                         }
  436.  
  437.                 }
  438.                 return $notifications;
  439.         }
  440.  
  441. }
  442.