mirror of
https://github.com/xevidos/codiad.git
synced 2024-11-13 07:11:14 +01:00
65 lines
3 KiB
PHP
Executable file
65 lines
3 KiB
PHP
Executable file
<?php
|
|
|
|
/*
|
|
* Copyright (c) Codiad & daeks (codiad.com), distributed
|
|
* as-is and without warranty under the MIT License. See
|
|
* [root]/license.txt for more. This information must remain intact.
|
|
*/
|
|
|
|
require_once('../../common.php');
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
// Verify Session or Key
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
checkSession();
|
|
|
|
switch($_GET['action']){
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Update
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
case 'check':
|
|
|
|
if(!checkAccess()){
|
|
?>
|
|
<label><?php i18n("Restricted"); ?></label>
|
|
<pre><?php i18n("You can not check for updates"); ?></pre>
|
|
<button onclick="codiad.modal.unload();return false;"><?php i18n("Close"); ?></button>
|
|
<?php } else {
|
|
require_once('class.update.php');
|
|
$update = new Update();
|
|
$vars = json_decode($update->Check(), true);
|
|
?>
|
|
<form>
|
|
<input type="hidden" name="archive" value="<?php echo $vars[0]['data']['archive']; ?>">
|
|
<input type="hidden" name="remoteversion" value="<?php echo $vars[0]['data']['remoteversion']; ?>">
|
|
<label><?php i18n("Update Check"); ?></label>
|
|
<br><table>
|
|
<tr><td width="40%"><?php i18n("Your Version"); ?></td><td><?php echo $vars[0]['data']['currentversion']; ?></td></tr>
|
|
<tr><td width="40%"><?php i18n("Latest Version"); ?></td><td><?php echo $vars[0]['data']['remoteversion']; ?></td></tr>
|
|
</table>
|
|
<?php if($vars[0]['data']['currentversion'] != $vars[0]['data']['remoteversion']) { ?>
|
|
<br><label><?php i18n("Changes on Codiad"); ?></label>
|
|
<pre style="overflow: auto; max-height: 200px; max-width: 510px;"><?php echo $vars[0]['data']['message']; ?></pre>
|
|
<?php } else { ?>
|
|
<br><br><b><label><?php i18n("Congratulation, your system is up to date."); ?></label></b>
|
|
<?php if($vars[0]['data']['name'] != '') { ?>
|
|
<em><?php i18n("Last update was done by "); ?><?php echo $vars[0]['data']['name']; ?>.</em>
|
|
<?php } } ?>
|
|
<?php if($vars[0]['data']['nightly']) { ?>
|
|
<br><em class="note"><?php i18n("Note: Your installation is a nightly build. Codiad might be unstable."); ?></em><br>
|
|
<?php } ?>
|
|
<br><?php
|
|
if($vars[0]['data']['currentversion'] != $vars[0]['data']['remoteversion']) {
|
|
echo '<button class="btn-left" onclick="codiad.update.download();return false;">'.get_i18n("Download Codiad").'</button> ';
|
|
}
|
|
?><button class="btn-right" onclick="codiad.modal.unload();return false;"><?php i18n("Cancel"); ?></button>
|
|
<form>
|
|
<?php }
|
|
break;
|
|
|
|
}
|
|
|
|
?>
|