summaryrefslogtreecommitdiffstats
path: root/pts-core/modules/update_checker.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-09-28 09:40:02 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-09-28 09:40:02 -0400
commita236ad4d45d8f87ef87c99c2c5898d46236b3b7b (patch)
treec4c647da1a712fc7913a458ba8ae2df74145de08 /pts-core/modules/update_checker.php
parent9ced9f62cffb3767057aa7797582fb7d812ad78e (diff)
downloadphoronix-test-suite-upstream-a236ad4d45d8f87ef87c99c2c5898d46236b3b7b.tar.gz
phoronix-test-suite-upstream-a236ad4d45d8f87ef87c99c2c5898d46236b3b7b.tar.xz
phoronix-test-suite-upstream-a236ad4d45d8f87ef87c99c2c5898d46236b3b7b.zip
update_checker: Move code to check for PTS updates out of pts-core and
into its own module
Diffstat (limited to 'pts-core/modules/update_checker.php')
-rw-r--r--pts-core/modules/update_checker.php52
1 files changed, 52 insertions, 0 deletions
diff --git a/pts-core/modules/update_checker.php b/pts-core/modules/update_checker.php
new file mode 100644
index 0000000..1102d9e
--- /dev/null
+++ b/pts-core/modules/update_checker.php
@@ -0,0 +1,52 @@
+<?php
+
+/*
+ Phoronix Test Suite
+ URLs: http://www.phoronix.com, http://www.phoronix-test-suite.com/
+ Copyright (C) 2008, Phoronix Media
+ Copyright (C) 2004-2008, Michael Larabel
+ update_override.php: This module checks to see if the Phoronix Test Suite -- and its tests and suites -- are up to date.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+class update_checker extends pts_module_interface
+{
+ const module_name = "Update Checker";
+ const module_version = "0.1.0";
+ const module_description = "This module checks to see if the Phoronix Test Suite -- and its tests and suites -- are up to date.";
+ const module_author = "Phoronix Media";
+
+ public static function __startup()
+ {
+ // Once a day check for new version
+ if(IS_FIRST_RUN_TODAY)
+ {
+ // Check For pts-core updates
+ $latest_reported_version = trim(@file_get_contents("http://www.phoronix-test-suite.com/LATEST"));
+ $current_e = explode(".", PTS_VERSION);
+ $latest_e = explode(".", $latest_reported_version);
+
+ if($latest_reported_version != PTS_VERSION && $latest_e[0] >= $current_e[0] && $latest_e[1] >= $current_e[1])
+ {
+ // New version of PTS is available
+ echo pts_string_header("Currently you're using an outdated version of the Phoronix Test Suite.\nThe version in use is v" . PTS_VERSION . ", but the latest is v" . $latest_reported_version . ".\nPlease visit http://www.phoronix-test-suite.com/ to update this software.");
+ }
+ }
+
+ return PTS_MODULE_UNLOAD; // This module doesn't have anything else to do
+ }
+}
+
+?>