Skip to content
Snippets Groups Projects
Commit c1b5a334 authored by Jared Hancock's avatar Jared Hancock
Browse files

upgrade: Add [Upgrade Available] button to sys info page

parent 4ce58d91
No related branches found
Tags v1.9.11
No related merge requests found
...@@ -6,6 +6,7 @@ osTicket v1.9.11 ...@@ -6,6 +6,7 @@ osTicket v1.9.11
* Log to syslog on php mail() error (#2128) * Log to syslog on php mail() error (#2128)
* Full path of help topics shown in filter management (3d98dff) * Full path of help topics shown in filter management (3d98dff)
* Auto rebuild the search index if %_search table is dropped (#2250) * Auto rebuild the search index if %_search table is dropped (#2250)
* New version available message in system information (0cca608)
### Improvements ### Improvements
* Fix appearance of ` <div>` in user names (*regression in v1.9.9*) (be2f138) * Fix appearance of ` <div>` in user names (*regression in v1.9.9*) (be2f138)
......
...@@ -304,6 +304,7 @@ define('I18N_DIR', INCLUDE_DIR.'i18n/'); ...@@ -304,6 +304,7 @@ define('I18N_DIR', INCLUDE_DIR.'i18n/');
#Current version && schema signature (Changes from version to version) #Current version && schema signature (Changes from version to version)
define('THIS_VERSION','1.8-git'); //Shown on admin panel define('THIS_VERSION','1.8-git'); //Shown on admin panel
define('GIT_VERSION','$git'); define('GIT_VERSION','$git');
define('MAJOR_VERSION', '1.9');
//Path separator //Path separator
if(!defined('PATH_SEPARATOR')){ if(!defined('PATH_SEPARATOR')){
if(strpos($_ENV['OS'],'Win')!==false || !strcasecmp(substr(PHP_OS, 0, 3),'WIN')) if(strpos($_ENV['OS'],'Win')!==false || !strcasecmp(substr(PHP_OS, 0, 3),'WIN'))
......
...@@ -361,6 +361,75 @@ class osTicket { ...@@ -361,6 +361,75 @@ class osTicket {
return null; return null;
} }
/**
* Fetch the current version(s) of osTicket softwares via DNS. The
* constants of MAJOR_VERSION, THIS_VERSION, and GIT_VERSION will be
* consulted to arrive at the most relevant version code for the latest
* release.
*
* Parameters:
* $product - (string|default:'core') the product to fetch versions for
* $major - (string|optional) optional major version to compare. This is
* useful if more than one version is available. Only versions
* specifying this major version ('m') are considered as version
* candidates.
*
* Dns:
* The DNS zone will have TXT records for the product will be published
* in this format:
*
* "v=1; m=1.9; V=1.9.11; c=deadbeef"
*
* Where the string is a semicolon-separated string of key/value pairs
* with the following meanings:
*
* --+--------------------------
* v | DNS record format version
*
* For v=1, this is the meaning of the other keys
* --+-------------------------------------------
* m | (optional) major product version
* V | Full product version (usually a git tag)
* c | Git commit id of the release tag
* s | Schema signature of the version, which might help detect
* | required migration
*
* Returns:
* (string|bool|null)
* - 'v1.9.11' or 'deadbeef' if release tag or git commit id seems to
* be most appropriate based on the value of GIT_VERSION
* - null if the $major version is no longer supported
* - false if no information is available in DNS
*/
function getLatestVersion($product='core', $major=null) {
$records = dns_get_record($product.'.updates.osticket.com', DNS_TXT);
if (!$records)
return false;
$versions = array();
foreach ($records as $r) {
$txt = $r['txt'];
$info = array();
foreach (explode(';', $r['txt']) as $kv) {
list($k, $v) = explode('=', $kv);
if (!($k = trim($k)))
continue;
$info[$k] = trim($v);
}
$versions[] = $info;
}
foreach ($versions as $info) {
switch ($info['v']) {
case '1':
if ($major && $info['m'] && $info['m'] != $major)
continue;
if ($product == 'core' && GIT_VERSION == '$git')
return $info['c'];
return $info['V'];
}
}
}
static function get_root_path($dir) { static function get_root_path($dir) {
/* If run from the commandline, DOCUMENT_ROOT will not be set. It is /* If run from the commandline, DOCUMENT_ROOT will not be set. It is
......
...@@ -532,27 +532,19 @@ abstract class Plugin { ...@@ -532,27 +532,19 @@ abstract class Plugin {
return self::VERIFY_ERROR; return self::VERIFY_ERROR;
} }
require_once(PEAR_DIR.'Net/DNS2.php');
$P = new Phar($phar); $P = new Phar($phar);
$sig = $P->getSignature(); $sig = $P->getSignature();
$info = array(); $info = array();
try { if ($r = dns_get_record($sig['hash'].'.'.self::$verify_domain, DNS_TXT)) {
$q = new Net_DNS2_Resolver(); foreach ($r as $rec) {
$r = $q->query(strtolower($sig['hash']) . '.' . self::$verify_domain, 'TXT'); foreach (explode(';', $rec['txt']) as $kv) {
foreach ($r->answer as $rec) { list($k, $v) = explode('=', trim($kv));
foreach ($rec->text as $txt) { $info[$k] = trim($v);
foreach (explode(';', $txt) as $kv) {
list($k, $v) = explode('=', trim($kv));
$info[$k] = trim($v);
}
if ($info['v'] && $info['s'])
break;
} }
if ($info['v'] && $info['s'])
break;
} }
} }
catch (Net_DNS2_Exception $e) {
// TODO: Differenciate NXDOMAIN and DNS failure
}
if (is_array($info) && isset($info['v'])) { if (is_array($info) && isset($info['v'])) {
switch ($info['v']) { switch ($info['v']) {
......
...@@ -49,7 +49,35 @@ $extensions = array( ...@@ -49,7 +49,35 @@ $extensions = array(
<tbody> <tbody>
<tr><td><?php echo __('osTicket Version'); ?></td> <tr><td><?php echo __('osTicket Version'); ?></td>
<td><span class="ltr"><?php <td><span class="ltr"><?php
echo sprintf("%s (%s)", THIS_VERSION, trim($commit)); ?></span></td></tr> echo sprintf("%s (%s)", THIS_VERSION, trim($commit)); ?></span>
<?php
$lv = $ost->getLatestVersion('core', MAJOR_VERSION);
$tv = THIS_VERSION;
$gv = GIT_VERSION == '$git' ? substr(@`git rev-parse HEAD`, 0, 7) : false ?: GIT_VERSION;
if ($lv && $tv[0] == 'v' ? version_compare(THIS_VERSION, $lv, '>=') : $lv == $gv) { ?>
<span style="color:green"><i class="icon-check"></i> <?php echo __('Up to date'); ?></span>
<?php
}
else {
// Report current version (v1.9.x ?: deadbeef ?: $git)
$cv = $tv[0] == 'v' ? $tv : $gv;
?>
<a class="green button action-button pull-right"
href="http://osticket.com/download?cv=<?php echo $cv; ?>"><i class="icon-rocket"></i>
<?php echo __('Upgrade'); ?></a>
<?php if ($lv) { ?>
<strong><?php echo str_replace(
'%s', $lv, __("%s is available")
); ?></strong>
<?php }
}
if (!$lv) { ?>
<strong><?php echo __('This osTicket version is no longer supported. Please consider upgrading');
?></strong>
<?php
}
?>
</td></tr>
<tr><td><?php echo __('Web Server Software'); ?></td> <tr><td><?php echo __('Web Server Software'); ?></td>
<td><span class="ltr"><?php echo $_SERVER['SERVER_SOFTWARE']; ?></span></td></tr> <td><span class="ltr"><?php echo $_SERVER['SERVER_SOFTWARE']; ?></span></td></tr>
<tr><td><?php echo __('MySQL Version'); ?></td> <tr><td><?php echo __('MySQL Version'); ?></td>
......
...@@ -20,6 +20,10 @@ class Packager extends Deployment { ...@@ -20,6 +20,10 @@ class Packager extends Deployment {
'action'=>'store_true', 'default'=>false, 'action'=>'store_true', 'default'=>false,
'help'=>'Skip regression testing (NOT RECOMMENDED)', 'help'=>'Skip regression testing (NOT RECOMMENDED)',
), ),
'version' => array('', '--dns',
'action'=>'store_true', 'default'=>false,
'help'=>'Print current version tag for DNS'
),
); );
var $arguments = array(); var $arguments = array();
...@@ -30,6 +34,9 @@ class Packager extends Deployment { ...@@ -30,6 +34,9 @@ class Packager extends Deployment {
} }
function run($args, $options) { function run($args, $options) {
if ($options['dns'])
return $this->print_dns();
// Set some forced args and options // Set some forced args and options
$temp = rtrim(sys_get_temp_dir(), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR; $temp = rtrim(sys_get_temp_dir(), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
$stage_path = $temp . 'osticket' $stage_path = $temp . 'osticket'
...@@ -87,6 +94,15 @@ class Packager extends Deployment { ...@@ -87,6 +94,15 @@ class Packager extends Deployment {
return (require "$root/setup/test/run-tests.php"); return (require "$root/setup/test/run-tests.php");
} }
function print_dns() {
$streams = DatabaseMigrater::getUpgradeStreams(INCLUDE_DIR.'upgrader/streams/');
$this->stdout->write(sprintf(
'"v=1; m=%s; V=%s; c=%s; s=%s"',
MAJOR_VERSION, trim(`git describe`), substr(`git rev-parse HEAD`, 0, 7),
substr($streams['core'], 0, 8)
));
}
function packageZip($name, $path) { function packageZip($name, $path) {
$zip = new ZipArchive(); $zip = new ZipArchive();
if (!$zip->open($name, ZipArchive::CREATE | ZipArchive::OVERWRITE) === true) if (!$zip->open($name, ZipArchive::CREATE | ZipArchive::OVERWRITE) === true)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment