2006-10-25 01:17:41 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the 'Science Fair In A Box' project
2025-02-10 19:54:20 +00:00
* Science - ation Website : https :// science - ation . ca /
2025-01-29 03:30:48 +00:00
*
* Copyright ( C ) 2006 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2006 James Grant < james @ lightbox . org >
2025-02-10 19:54:20 +00:00
* Copyright ( C ) 2024 AlgoLibre Inc . < science - ation @ algolibre . io >
2025-01-29 03:30:48 +00:00
*
* 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 , version 2.
*
* 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 ; see the file COPYING . If not , write to
* the Free Software Foundation , Inc . , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*/
2006-10-25 01:17:41 +00:00
?>
< ?
2025-02-10 19:54:20 +00:00
require ( '../common.inc.php' );
require_once ( '../user.inc.php' );
2025-01-29 03:30:48 +00:00
user_auth_required ( 'committee' , 'config' );
2025-02-10 19:54:20 +00:00
send_header (
'Version Checker' ,
array (
'Committee Main' => 'committee_main.php' ,
'SFIAB Configuration' => 'config/index.php'
),
'new_version_checker'
);
2006-10-25 01:17:41 +00:00
2025-01-29 03:30:48 +00:00
echo i18n ( " Checking for new versions will access a remote server, if you wish to continue click the 'Check for new versions' link below " );
echo '<br />' ;
echo '<br />' ;
echo i18n ( 'Your currently installed version: <b>%1</b>' , array ( $config [ 'version' ]));
echo '<br />' ;
2006-10-25 01:17:41 +00:00
2025-01-29 03:30:48 +00:00
function loadVersions ()
{
$ret = array ();
2024-12-13 01:49:54 -05:00
// FIXME Replace
2025-01-29 03:30:48 +00:00
// if($v=file("http://www.sfiab.ca/version.txt"))
if ( false ) {
list ( $version , $date ) = explode ( " \t " , trim ( $v [ 0 ]));
$ret [ 'version' ] = $version ;
$ret [ 'date' ] = $date ;
} else
echo error ( i18n ( 'There was an error connecting to the version checker server' ));
2006-10-25 01:17:41 +00:00
return $ret ;
2025-01-29 03:30:48 +00:00
}
2006-10-25 01:17:41 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'action' ) == 'check' ) {
$v = loadVersions ();
echo i18n ( 'Newest version available: <b>%1</b> (%2)' , array ( get_value_from_array ( $v , 'version' ), get_value_from_array ( $v , 'date' )));
echo '<br />' ;
echo '<br />' ;
$val = version_compare ( get_value_from_array ( $config , 'version' , '' ), get_value_from_array ( $v , 'version' , ' ' ));
if ( $val == 0 ) {
echo happy ( i18n ( 'Your current version (%1) is up-to-date' , array ( $config [ 'version' ])));
} else if ( $val < 0 ) {
echo error ( i18n ( 'There is a new version available!<br />Newest version: %1 Released on %2' , array ( $v [ 'version' ], $v [ 'date' ])));
echo i18n ( 'The newest version can be downloaded from <a target="_blank" href="http://www.sfiab.ca/download.php">http://www.sfiab.ca/download.php</a>' );
} else if ( $val > 0 ) {
echo happy ( i18n ( 'You are running a newer (probably a development) version (%1) that is newer than the most recent release (%2)' , array ( get_value_from_array ( $config , 'version' ), get_value_from_array ( $v , 'version' ))));
2006-10-25 01:17:41 +00:00
}
2025-01-29 03:30:48 +00:00
} else
echo '<a href="versionchecker.php?action=check">' . i18n ( 'Check for new versions' ) . '</a><br />' ;
2006-10-25 01:17:41 +00:00
2025-01-29 03:30:48 +00:00
send_footer ();
2006-10-25 01:17:41 +00:00
?>