Subversion Repositories oidplus

Rev

Rev 1000 | Rev 1061 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
635 daniel-mar 1
<?php
2
 
3
/*
4
 * OIDplus 2.0
807 daniel-mar 5
 * Copyright 2019 - 2022 Daniel Marschall, ViaThinkSoft
635 daniel-mar 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
 
1050 daniel-mar 20
namespace ViaThinkSoft\OIDplus;
635 daniel-mar 21
 
22
class OIDplusPageAdminSoftwareUpdate extends OIDplusPagePluginAdmin {
23
 
24
        public function init($html=true) {
25
        }
26
 
697 daniel-mar 27
        private function getGitCommand() {
698 daniel-mar 28
                return 'git --git-dir='.escapeshellarg(OIDplus::findGitFolder().'/').' --work-tree='.escapeshellarg(OIDplus::localpath()).' -C "" pull origin master -s recursive -X theirs';
697 daniel-mar 29
        }
30
 
31
        private function getSvnCommand() {
32
                return 'svn update --accept theirs-full';
33
        }
34
 
635 daniel-mar 35
        public function action($actionID, $params) {
36
                if ($actionID == 'update_now') {
647 daniel-mar 37
                        @set_time_limit(0);
635 daniel-mar 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
 
662 daniel-mar 43
                        if (OIDplus::getInstallType() === 'git-wc') {
697 daniel-mar 44
                                $cmd = $this->getGitCommand().' 2>&1';
662 daniel-mar 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
                                }
653 daniel-mar 57
                        }
662 daniel-mar 58
                        else if (OIDplus::getInstallType() === 'svn-wc') {
697 daniel-mar 59
                                $cmd = $this->getSvnCommand().' 2>&1';
653 daniel-mar 60
 
662 daniel-mar 61
                                $ec = -1;
62
                                $out = array();
63
                                exec($cmd, $out, $ec);
635 daniel-mar 64
 
662 daniel-mar 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
                                }
650 daniel-mar 72
                        }
662 daniel-mar 73
                        else if (OIDplus::getInstallType() === 'svn-snapshot') {
635 daniel-mar 74
 
662 daniel-mar 75
                                $rev = $params['rev'];
650 daniel-mar 76
 
807 daniel-mar 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
 
662 daniel-mar 82
                                // Download and unzip
651 daniel-mar 83
 
716 daniel-mar 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
                                        }
651 daniel-mar 99
                                }
662 daniel-mar 100
                                if ($cont === false) throw new OIDplusException(_L("Update %1 could not be downloaded from ViaThinkSoft server. Please try again later.",$rev));
651 daniel-mar 101
 
662 daniel-mar 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
 
651 daniel-mar 120
                                }
121
 
662 daniel-mar 122
                                // All OK! Now write file
651 daniel-mar 123
 
662 daniel-mar 124
                                $tmp_filename = 'update_'.generateRandomString(10).'.tmp.php';
125
                                $local_file = OIDplus::localpath().$tmp_filename;
651 daniel-mar 126
 
662 daniel-mar 127
                                @file_put_contents($local_file, $cont);
635 daniel-mar 128
 
662 daniel-mar 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
                                }
647 daniel-mar 132
 
807 daniel-mar 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);
662 daniel-mar 147
                                }
653 daniel-mar 148
                        }
662 daniel-mar 149
                        else {
716 daniel-mar 150
                                throw new OIDplusException(_L('Multiple version files/directories (oidplus_version.txt, .version.php, .git, or .svn) are existing! Therefore, the version is ambiguous!'));
662 daniel-mar 151
                        }
635 daniel-mar 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');
801 daniel-mar 163
                        $out['icon']  = OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon.png';
635 daniel-mar 164
 
165
                        if (!OIDplus::authUtils()->isAdminLoggedIn()) {
800 daniel-mar 166
                                $out['icon'] = 'img/error.png';
635 daniel-mar 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
 
665 daniel-mar 171
                        $out['text'] .= '<div id="update_versioninfo">';
172
 
635 daniel-mar 173
                        $out['text'] .= '<p><u>'._L('There are three possibilities how to keep OIDplus up-to-date').':</u></p>';
174
 
840 daniel-mar 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>';
699 daniel-mar 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
                        }
635 daniel-mar 184
 
840 daniel-mar 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>';
699 daniel-mar 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
                        }
635 daniel-mar 194
 
699 daniel-mar 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
                        }
635 daniel-mar 200
 
699 daniel-mar 201
 
635 daniel-mar 202
                        $out['text'] .= '<hr>';
203
 
204
                        $installType = OIDplus::getInstallType();
205
 
206
                        if ($installType === 'ambigous') {
906 daniel-mar 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>';
665 daniel-mar 208
                                $out['text'] .= '</div>';
635 daniel-mar 209
                        } else if ($installType === 'unknown') {
906 daniel-mar 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>';
665 daniel-mar 211
                                $out['text'] .= '</div>';
662 daniel-mar 212
                        } else if (($installType === 'svn-wc') || ($installType === 'git-wc') || ($installType === 'svn-snapshot')) {
635 daniel-mar 213
                                if ($installType === 'svn-wc') {
214
                                        $out['text'] .= '<p>'._L('You are using <b>method A</b> (SVN working copy).').'</p>';
662 daniel-mar 215
                                        $requireInfo = _L('shell access with svn/svnversion tool, or PDO/SQLite3 PHP extension');
697 daniel-mar 216
                                        $updateCommand = $this->getSvnCommand();
662 daniel-mar 217
                                } else if ($installType === 'git-wc') {
635 daniel-mar 218
                                        $out['text'] .= '<p>'._L('You are using <b>method B</b> (Git working copy).').'</p>';
662 daniel-mar 219
                                        $requireInfo = _L('shell access with Git client');
697 daniel-mar 220
                                        $updateCommand = $this->getGitCommand();
662 daniel-mar 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
635 daniel-mar 225
                                }
226
 
227
                                $local_installation = OIDplus::getVersion();
648 daniel-mar 228
                                $newest_version = $this->getLatestRevision();
635 daniel-mar 229
 
230
                                $out['text'] .= _L('Local installation: %1',($local_installation ? $local_installation : _L('unknown'))).'<br>';
662 daniel-mar 231
                                $out['text'] .= _L('Latest published version: %1',($newest_version ? $newest_version : _L('unknown'))).'<br><br>';
635 daniel-mar 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>';
662 daniel-mar 235
                                        $out['text'] .= '</div>';
654 daniel-mar 236
                                } else if (!$local_installation) {
662 daniel-mar 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>';
635 daniel-mar 241
                                        }
647 daniel-mar 242
                                        $out['text'] .= '</div>';
997 daniel-mar 243
                                } else if (version_compare($local_installation, $newest_version) >= 0) {
635 daniel-mar 244
                                        $out['text'] .= '<p><font color="green">'._L('You are already using the latest version of OIDplus.').'</font></p>';
647 daniel-mar 245
                                        $out['text'] .= '</div>';
635 daniel-mar 246
                                } else {
662 daniel-mar 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
                                        }
635 daniel-mar 251
 
648 daniel-mar 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>';
635 daniel-mar 253
 
662 daniel-mar 254
                                        // TODO: Open "system_file_check" without page reload.
255
                                        // TODO: Only show link if the plugin is installed
906 daniel-mar 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>';
662 daniel-mar 257
 
647 daniel-mar 258
                                        $out['text'] .= '</div>';
259
 
662 daniel-mar 260
                                        $out['text'] .= $this->showPreview($local_installation, $newest_version);
635 daniel-mar 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
 
800 daniel-mar 271
                if (file_exists(__DIR__.'/img/main_icon16.png')) {
801 daniel-mar 272
                        $tree_icon = OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon16.png';
635 daniel-mar 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
        }
648 daniel-mar 289
 
290
        private $releases_ser = null;
291
 
292
        private function showChangelog($local_ver) {
293
 
294
                try {
295
                        if (is_null($this->releases_ser)) {
716 daniel-mar 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
                                }
648 daniel-mar 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) {
997 daniel-mar 314
                                if (version_compare("svn-$rev", $local_ver) <= 0) continue;
648 daniel-mar 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;
1050 daniel-mar 321
                } catch (\Exception $e) {
648 daniel-mar 322
                        return false;
323
                }
324
 
325
        }
326
 
327
        private function getLatestRevision() {
328
                try {
329
                        if (is_null($this->releases_ser)) {
716 daniel-mar 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
                                }
648 daniel-mar 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;
1050 daniel-mar 349
                } catch (\Exception $e) {
648 daniel-mar 350
                        return false;
351
                }
352
        }
662 daniel-mar 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);
1050 daniel-mar 360
                } catch (\Exception $e) {
662 daniel-mar 361
                        $cont = _L('Error: %1',$e->getMessage());
362
                }
363
                ob_end_clean();
364
 
831 daniel-mar 365
                $cont = preg_replace('@!!!(.+)\\n@', '<font color="red">!!!\\1</font>'."\n", "$cont\n");
662 daniel-mar 366
 
367
                $out .= '<pre id="update_infobox">'.$cont.'</pre>';
368
 
369
                return $out;
370
        }
1000 daniel-mar 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
 
661 daniel-mar 441
}