mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 16:33:17 +01:00
allow to sepecify last security release for multiple major versions
This commit is contained in:
parent
178b476aad
commit
b26c82bae6
@ -854,6 +854,7 @@ netherlands antilles common de NIEDERLÄNDISCHE ANTILLEN
|
||||
never common de Niemals
|
||||
new common de Neu
|
||||
new caledonia common de NEU CALEDONIEN
|
||||
new egroupware release %1 available common de Neues EGroupware Release %1 verfügbar
|
||||
new entry added sucessfully common de Neuer Eintrag wurde erfolgreich hinzugefügt
|
||||
new favorite common de Erstellen Sie hier einen neuen Favorit
|
||||
new main category common de neue Hauptkategorie
|
||||
@ -998,8 +999,8 @@ please run setup to become current common de Bitte rufen Sie Setup auf um zu akt
|
||||
please select common de Bitte wählen
|
||||
please set your global preferences common de Bitte editieren Sie Ihre globalen Einstellungen !
|
||||
please set your preferences for this application common de Bitte editieren Sie Ihre Einstellungen für diese Anwendung !
|
||||
please type 1 more character common de Bitte 1 weiteres Zeichen eingeben
|
||||
please type %1 more characters common de Bitte %1 weiteres Zeichen eingeben
|
||||
please type 1 more character common de Bitte 1 weiteres Zeichen eingeben
|
||||
please wait... common de bitte warten ...
|
||||
please, check back with us shortly. common de Bitte schauen Sie bald wieder vorbei.
|
||||
pm common de Nachmittag
|
||||
|
@ -854,6 +854,7 @@ netherlands antilles common en NETHERLANDS ANTILLES
|
||||
never common en Never
|
||||
new common en New
|
||||
new caledonia common en NEW CALEDONIA
|
||||
new egroupware release %1 available common en New EGroupware release %1 available
|
||||
new entry added sucessfully common en New entry added successfully.
|
||||
new favorite common en New favorite
|
||||
new main category common en New main category
|
||||
@ -998,8 +999,8 @@ please run setup to become current common en Run setup to become current
|
||||
please select common en Please select
|
||||
please set your global preferences common en Set your global preferences!
|
||||
please set your preferences for this application common en Set your preferences for this application!
|
||||
please type 1 more character common en Please type 1 more character
|
||||
please type %1 more characters common en Please type %1 more characters
|
||||
please type 1 more character common en Please type 1 more character
|
||||
please wait... common en please wait...
|
||||
please, check back with us shortly. common en Please, check back with us shortly.
|
||||
pm common en pm
|
||||
|
@ -8,7 +8,6 @@
|
||||
* @package api
|
||||
* @subpackage framework
|
||||
* @access public
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
namespace EGroupware\Api\Framework;
|
||||
@ -19,13 +18,21 @@ use EGroupware\Api;
|
||||
|
||||
/**
|
||||
* Check for updates
|
||||
*
|
||||
* https://www.egroupware.org/currentversion
|
||||
*
|
||||
* Contains multiple lines with version numbers:
|
||||
* 1. current stable version eg. 17.1.20180118
|
||||
* 2. last stable security update eg. 17.1.20180118
|
||||
* 3. last old-stable security up.eg. 16.1.20171106 (only if that is still secure!)
|
||||
* 4. further old secure versions, if available
|
||||
*/
|
||||
class Updates
|
||||
{
|
||||
/**
|
||||
* URL to check for security or maintenance updates
|
||||
*/
|
||||
const CURRENT_VERSION_URL = 'http://www.egroupware.org/currentversion';
|
||||
const CURRENT_VERSION_URL = 'https://www.egroupware.org/currentversion';
|
||||
/**
|
||||
* How long to cache (in secs) / often to check for updates
|
||||
*/
|
||||
@ -33,23 +40,30 @@ class Updates
|
||||
/**
|
||||
* After how many days of not applied security updates, start warning non-admins too
|
||||
*/
|
||||
const WARN_USERS_DAYS = 3;
|
||||
const WARN_USERS_DAYS = 5;
|
||||
|
||||
/**
|
||||
* Get versions of available updates
|
||||
*
|
||||
* @param string $api =null major api version to return security for, default latest
|
||||
* @return array verions for keys "current" and "security"
|
||||
*/
|
||||
public static function available()
|
||||
public static function available($api=null)
|
||||
{
|
||||
$versions = Cache::getTree(__CLASS__, 'versions', function()
|
||||
$versions = Cache::getTree(__CLASS__, 'versions', function() use ($api)
|
||||
{
|
||||
$versions = array();
|
||||
$security = null;
|
||||
if (($remote = file_get_contents(self::CURRENT_VERSION_URL, false, Api\Framework::proxy_context())))
|
||||
{
|
||||
list($current, $security) = explode("\n", $remote);
|
||||
if (empty($security)) $security = $current;
|
||||
$all_versions = explode("\n", $remote);
|
||||
$current = array_shift($all_versions);
|
||||
if (empty($all_versions)) $all_versions = array($current);
|
||||
// find latest security release for optional API version
|
||||
foreach(array_reverse($all_versions) as $security)
|
||||
{
|
||||
if (isset($api) && $api === substr($security, 0, strlen($api))) break;
|
||||
}
|
||||
$versions = array(
|
||||
'current' => $current, // last maintenance update
|
||||
'security' => $security, // last security update
|
||||
@ -58,6 +72,7 @@ class Updates
|
||||
return $versions;
|
||||
}, array(), self::VERSIONS_CACHE_TIMEOUT);
|
||||
|
||||
//error_log(__METHOD__."($api) returning ".array2string($versions));
|
||||
return $versions;
|
||||
}
|
||||
|
||||
@ -69,9 +84,14 @@ class Updates
|
||||
*/
|
||||
public static function notification()
|
||||
{
|
||||
$versions = self::available();
|
||||
|
||||
$api = self::api_version();
|
||||
$api_major = $matches = null;
|
||||
if (preg_match('/^(\d+\.\d+)\./', $api, $matches))
|
||||
{
|
||||
$api_major = $matches[1];
|
||||
}
|
||||
|
||||
$versions = self::available($api_major);
|
||||
|
||||
if ($versions)
|
||||
{
|
||||
@ -86,7 +106,10 @@ class Updates
|
||||
}
|
||||
if ($GLOBALS['egw_info']['user']['apps']['admin'] && version_compare($api, $versions['current'], '<'))
|
||||
{
|
||||
return Html::a_href(Html::image('api', 'update', lang('EGroupware maintenance update %1 available', $versions['current'])),
|
||||
$msg = substr($versions['current'], 0, strlen($api_major)) == $api_major ?
|
||||
lang('EGroupware maintenance update %1 available', $versions['current']) :
|
||||
lang('New EGroupware release %1 available', $versions['current']);
|
||||
return Html::a_href(Html::image('api', 'update', $msg),
|
||||
'http://www.egroupware.org/changelog', null, ' target="_blank"');
|
||||
}
|
||||
}
|
||||
@ -98,7 +121,7 @@ class Updates
|
||||
$error .= "\n".lang('%1 setting "%2" = %3 disallows access via http!',
|
||||
'php.ini', 'allow_url_fopen', array2string(ini_get('allow_url_fopen')));
|
||||
}
|
||||
return Html::a_href(Html::image('phpgwapi', 'update', $error),
|
||||
return Html::a_href(Html::image('api', 'update', $error),
|
||||
'http://www.egroupware.org/changelog', null, ' target="_blank" data-api-version="'.$api.'"');
|
||||
}
|
||||
return null;
|
||||
|
Loading…
Reference in New Issue
Block a user