Subversion Repositories vnag

Rev

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

Rev Author Line No. Line
4 daniel-mar 1
<?php /* <ViaThinkSoftSignature>
29 daniel-mar 2
INj8GHKi/MYGHSHlhnJTyKdQEKnHl1bdkvxhTv3oLplJtJije4a7tidEPZqawrFw0
3
/wniyLDaIptRhe+x+OStEKG7OckSocxRuxK9PQciJOs+/aE4srSrxKW/mZP8v7gAm
4
iuvgRXnoo4VfnNTfAQFLiVcUSRE+Gku4zmPGSHKTKzIWz/IYGeJqc5E6oG47Ult37
5
0FirA6ZTpxEYfD+oc156jqcbF1TmJjQsZewR+n8YFrCLoTq4XpwUtVtfGlHgAimQI
6
UFgPphkdI6QvrhpNw4lyT1VoHuutzaK6o/q6PdbUfluzwuL0oTll4Sex/AjTmWs4q
7
zns+n2/fL6X1L60dqKqYp8oQW2WDw1TEtKdMoPaedjA1TOxvF750SOA22ggv8w3zB
8
TyCcAhxag0ZmwIqVYBukASoUNa+YNG8HPaT2kTmRgdqkMUiHZGfaPuvJmGHooVoae
9
pyzT4lsGT243Vlm/QKDpGwLfygPKg2RB+lE/VEFP5oRIxVPH+BpFu3jZTlj47Rlm8
10
mlpR+5D5iiJYVDzx8JV1sT9lAbP/z552laHjX4p8UXk9MY/0B9UDqb8QFcvJiXoGK
11
+sFpSyAMNJHwJHXkA0UIq4RFFnCBDu5L8lf9crIpE6sGx6dhrSQGAx8WO+ziYXhN7
12
ytCSNLxqt0KNuZfStFw/xf19g2OqN4zv4orimUMBs9qBQ2sDqbWLynqa3MRBPjn4S
13
5oR9lTXFtPXSCnnwDmqacbaCci9w/CslQIFoER7QO57cz3AFvNMDfdBIjxdEcFii7
14
P+mqFn5nhQE0VdvkkkUW0gdicFJVxT24WPvbIdFII3eYmKNznmEVXcCF5FtrZKmyb
15
hpu8GnliOYW1/uL+dQeSEcAgiAaoSg8RihwPvqP8wVNqMR5RXsM3PmIGJqall9ipd
16
eVdeMHrNnV3dn55LVwbgcJbLvCGOA7HQ2Afaiwz/I5TsFoMwKKPZUu3ot7LhYasYN
17
568Z0OSc/ryiriboW4vmQrbQBr7zv7mZZXN0ZcdJLtWNCS9smf9ahKiE1VB7YqqiZ
18
qF0v4arH3ShdKwHK7SircPyAc4XE6bBNjd2Lt54G52lfbuTejgPNdk00RxsjwX1i4
19
5iL+gnZ1YH/C7cnXNjPRseGQIwEz55VDexhIO8KZ/GsjPtCSSwPZZ1XLwWV7T6WVo
20
zIZYOl0Y8nogn9tOw9KyzZJDe993J2of/jP6uICMsT4UgjMPu/D4M/1mIpjbwZzPt
21
mqUKk5wea4a4JKVActG5/UmdoUw5RNlbXOmnWzRTg5isex4E1ORzHQrcjEQDgwia4
22
r0k0p2pHueH7bFbIJpBvDLlR/a1zeb26jQk73y27edYh/beQI2WYZWiQarkaR7f/D
23
A==
4 daniel-mar 24
</ViaThinkSoftSignature> */ ?>
2 daniel-mar 25
<?php
26
 
27
/*
28
 * VNag - Nagios Framework for PHP
29
 * Developed by Daniel Marschall, ViaThinkSoft <www.viathinksoft.com>
30
 * Licensed under the terms of the Apache 2.0 license
31
 *
28 daniel-mar 32
 * Revision 2021-05-13
2 daniel-mar 33
 */
34
 
35
declare(ticks=1);
36
 
37
class PhpMyAdminVersionCheck extends VNag {
38
        protected $argSystemDir = null;
39
 
40
        public function __construct() {
41
                parent::__construct();
42
 
43
                $this->registerExpectedStandardArguments('Vht');
44
 
45
                $this->getHelpManager()->setPluginName('check_phpmyadmin_version');
46
                $this->getHelpManager()->setVersion('1.0');
47
                $this->getHelpManager()->setShortDescription('This plugin checks if a local phpMyAdmin system has the latest version installed.');
48
                $this->getHelpManager()->setCopyright('Copyright (C) 2011-$CURYEAR$ Daniel Marschall, ViaThinkSoft.');
49
                $this->getHelpManager()->setSyntax('$SCRIPTNAME$ [-d <directory>]');
50
                $this->getHelpManager()->setFootNotes('If you encounter bugs, please contact ViaThinkSoft at www.viathinksoft.com');
51
 
52
                // Individual (non-standard) arguments:
53
                $this->addExpectedArgument($this->argSystemDir = new VNagArgument('d', 'directory', VNagArgument::VALUE_REQUIRED, 'phpmyadminPath', 'The local directory where your phpMyAdmin installation is located.'));
54
        }
55
 
56
        protected function get_phpmyadmin_version($path) {
57
                $path = realpath($path) === false ? $path : realpath($path);
58
 
28 daniel-mar 59
                if (file_exists($file = "$path/libraries/classes/Version.php")) { // Variant 3 (5.1.0+)
60
                        $regex = '@VERSION = \'(.*)\'@ismU';
61
                } else if (file_exists($file = "$path/libraries/classes/Config.php")) { // Variant 2 (5.0.x)
62
                        $regex = '@\$this->set\(\'PMA_VERSION\', \'(.*)\'\);@ismU';
63
                } else if (file_exists($file = "$path/libraries/Config.class.php")) { // Variant 1 (very old)
64
                        $regex = '@\$this->set\(\'PMA_VERSION\', \'(.*)\'\);@ismU';
2 daniel-mar 65
                } else {
66
                        throw new Exception("Cannot find the phpMyAdmin version information at $path");
67
                }
68
 
28 daniel-mar 69
                $cont = file_get_contents($file);
70
                if (!preg_match($regex, $cont, $m)) {
2 daniel-mar 71
                        throw new Exception("Cannot parse the phpMyAdmin version information at $path");
72
                }
73
 
74
                return $m[1];
75
        }
76
 
77
        protected function cbRun($optional_args=array()) {
78
                $system_dir = $this->argSystemDir->getValue();
79
                if (empty($system_dir)) {
80
                        throw new Exception("Please specify the directory of the phpMyAdmin installation.");
81
                }
82
                $system_dir = realpath($system_dir) === false ? $system_dir : realpath($system_dir);
83
 
84
                if (!is_dir($system_dir)) {
29 daniel-mar 85
                        throw new Exception('Directory "'.$system_dir.'" not found.');
2 daniel-mar 86
                }
87
 
88
                $version = $this->get_phpmyadmin_version($system_dir);
89
 
90
                $cont = @file_get_contents('https://www.phpmyadmin.net/home_page/version.json'); // alternatively version.php
91
                if (!$cont) {
29 daniel-mar 92
                        throw new Exception('Cannot parse version from phpMyAdmin website. The plugin probably needs to be updated.');
2 daniel-mar 93
                }
94
 
95
                $json = json_decode($cont, true);
96
                $latest_version = $json['version'];
97
 
98
                if ($version == $latest_version) {
99
                        $this->setStatus(VNag::STATUS_OK);
100
                        $this->setHeadline("Version $version (Latest version) at $system_dir", true);
101
                } else {
102
                        $this->setStatus(VNag::STATUS_WARNING);
103
                        $this->setHeadline("Version $version is outdated (Latest version is $latest_version) at $system_dir", true);
104
                }
105
        }
106
}