Subversion Repositories vnag

Rev

Rev 29 | 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>
57 daniel-mar 2
Jwv2QTTUkaqqNzdKRCyG3W5V7ue0Kdy89/G/x4LhQxUQUZP0Erf3P2EI8rxUdQ2uA
3
0OjWHGS0+1D6yEB8M/HEFCTRzHnMsl8zzo4Uiemi+ZzJytqtYi93HrR6SOWNzzblN
4
iFhmDvZs6+4cmH17wvwXutfabzKhUaVFNMavBdkko6sH62dgy3+U5o/qhqAFoAccR
5
FTvD3fMG9CSNnEGMVFcFjpKMIUWQjQj7bB0PA8EMawJlE7R9ydNJBLET0KMnMG6zD
6
LNF72ENl9mQ4tfLp1e9qYVJ68Lf2WGu0u4E1Vb2fDgT4c+d31WlmyrcgmqIfKM8hK
7
U5ht/SvmM5OT9OOR6cjZBHVN+ulsibzCYq1szcpKUSlLHiLh0B5keoSpJduGxxz98
8
7ECTN/s0VWYo4AzwvqSlEl1wmlStXxyM2ixZXcLcSjKvTZEIUQOfoSM2Vx9hFrIQX
9
eKJccTu92VTbN/E7Q+79sMA+ULM/FBixrsoghViu9jcwYaGlQ9mnhNAEOIVmROgcA
10
KkAHbhoCnBn5lImlVDpvfkaCTgv/SIMkG92gzmNHA/LUOhGFb/A3BQyqU8nhhGtrR
11
FKPBmZWw/0IvNliNWauxodL+jNZp46LOaV3AeDCC2Rfs39A9Aw6tuSaSxZH9XM++p
12
FIRpPUQkCJC04t+wTZPfLER1IRWmRBa3c+CMCIgtTZOm0RcAoS3etHf4kWd3L9+GU
13
D5OLe06C3FgWmlUBPfBTI6h9IQY2VdjxjCP+SvwjGY2Iy7AxBVszapt69YbSnjI6V
14
g0lHNGm4vtnDXtyZgBUVulVU0nO+JizB2LKtkfRxkBbjpeL/ZlOQBF7NNjUeGZo1H
15
WJl0xAQxHSIA4oGPOX2958fB0oAyHK+JOPx5AkQ4O+kvM72tte4eDUap1WDOMa7zU
16
aVzu43FzP3vXBKPsOm0n2cY+fDy56G/MX7hGQAIvriw9ajADxx43QjiLNOKS+N1HK
17
MNDzW12Ridr0Gnt5NGP8cA/hYZRlpy4kAPJFttA8TTbIdQZHhZaaQCBSfX45jSbPs
18
Mh9mJmjBvP3bXU4za3XrCxcK/aELxNvczp/UlmL5KDYMalA7arHhaIahLgN2sYNGh
19
2tzJywxNGVdWcRQJoFNRCbqRMcroP6ro/VAO4gELfq1RE7C3ZJqjcfwAno6XABi3I
20
PuR+LzADuh9yM+1xdYrpAmYfrMEYgBzyx05vn33GDRsaryHYtvkjNRrjBAujnYY0n
21
Obus4i/hVah6yUgURhprwARav1gPn4IaZbjV0C93CpIWvodwruNW1eTEMoPOw3Fl6
22
x4N1r5Q1uQpHkfJoOnEOSzUxVLa6kMYamF6fE9ckM55RkzJCX+ff4tUPzDGXhS6/x
23
w==
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
 *
57 daniel-mar 32
 * Revision 2022-09-12
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
 
57 daniel-mar 98
                if (version_compare($version,$latest_version) >= 0) {
2 daniel-mar 99
                        $this->setStatus(VNag::STATUS_OK);
57 daniel-mar 100
                        if ($version == $latest_version) {
101
                                $this->setHeadline("Version $version (Latest version) at $system_dir", true);
102
                        } else {
103
                                $this->setHeadline("Version $version (Latest version $latest_version) at $system_dir", true);
104
                        }
2 daniel-mar 105
                } else {
106
                        $this->setStatus(VNag::STATUS_WARNING);
107
                        $this->setHeadline("Version $version is outdated (Latest version is $latest_version) at $system_dir", true);
108
                }
109
        }
110
}