wavelog/install/run.php
2026-07-29 16:20:56 +02:00

418 lines
No EOL
17 KiB
PHP

<?php
require_once('includes/install_config/install_lib.php');
require_once('includes/install_config/install_config.php');
session_start();
if (file_exists('.lock') || file_exists($db_config_path . 'config.php') || file_exists($db_config_path . 'database.php')) {
http_response_code(403);
exit('forbidden');
}
$form_token = $_POST['form_token'] ?? '';
if (empty($form_token) || !isset($_SESSION['form_token']) || !hash_equals($_SESSION['form_token'], $form_token)) {
header('Location: index.php', true, 303);
exit;
}
unset($_SESSION['form_token']);
$_SESSION['installer_token'] = bin2hex(random_bytes(32));
?>
<!DOCTYPE html>
<html>
<?php include 'includes/interface_assets/header.php'; ?>
<body>
<div class="container" style="max-width: 1200px; margin-top: 8rem; ">
<div class="card mt-4" style="min-height: 750px; margin: 0 auto;">
<div class="card-body text-center">
<h3 style="margin-top: 150px;"><?= __("Installation"); ?></h3>
<p style="margin-bottom: 60px;"><?= __("Please wait..."); ?></p>
<div class="mb-3" id="config_file" style="opacity: 50%;">
<i id="config_file_spinner" class="ld-ext-right"><?= __("Copy config.php to application/config/") ?><div class="ld ld-ring ld-spin"></div></i><i id="config_file_check" class="ms-2 fas fa-check-circle" style="display: none;"></i>
</div>
<div class="mb-3" id="database_file" style="opacity: 50%;">
<i id="database_file_spinner" class="ld-ext-right"><?= __("Copy database.php to application/config/") ?><div class="ld ld-ring ld-spin"></div></i><i id="database_file_check" class="ms-2 fas fa-check-circle" style="display: none;"></i>
</div>
<div class="mb-3" id="database_tables" style="opacity: 50%;">
<i id="database_tables_spinner" class="ld-ext-right"><?= __("Creating database tables") ?><div class="ld ld-ring ld-spin"></div></i><i id="database_tables_check" class="ms-2 fas fa-check-circle" style="display: none;"></i>
</div>
<div class="mb-3" id="database_migrations" style="opacity: 50%;">
<i id="database_migrations_spinner" class="ld-ext-right"><?= __("Running database migrations") ?><div class="ld ld-ring ld-spin"></div></i><i id="database_migrations_check" class="ms-2 fas fa-check-circle" style="display: none;"></i>
</div>
<div class="mb-3" id="update_dxcc" style="opacity: 50%;">
<i id="update_dxcc_spinner" class="ld-ext-right"><?= __("Updating DXCC data") ?><div class="ld ld-ring ld-spin"></div></i><i id="update_dxcc_check" class="ms-2 fas fa-check-circle" style="display: none;"></i>
</div>
<?php
// we can easily add more steps here if necessary
?>
<div class="mb-3" id="installer_lock" style="opacity: 50%;">
<i id="installer_lock_spinner" class="ld-ext-right"><?= __("Lock the installer") ?><div class="ld ld-ring ld-spin"></div></i><i id="installer_lock_check" class="ms-2 fas fa-check-circle" style="display: none;"></i>
</div>
<div class="mb-3" id="success_message" style="display: none;">
<p><?= sprintf(__("All install steps went through. Redirect to user login in %s seconds..."), "<span id='countdown'>4</span>"); ?></p>
</div>
<div class="mb-3" id="success_button" style="display: none;">
<a class="btn btn-primary" href="<?= htmlspecialchars($_POST['websiteurl'] ?? '', ENT_QUOTES, 'UTF-8') ?>index.php/user/login/1"><?= __("Done. Go to the user login ->"); ?></a>
</div>
<div id="error_message"></div>
<div class="container mt-5">
<button id="toggleLogButton" class="btn btn-sm btn-secondary mb-3"><?= __("Show detailled debug log"); ?></button>
<div id="logContainer">
<pre>
<code id="debuglog">
<!-- Log Content -->
</code>
</pre>
</div>
</div>
</div>
</div>
</div>
</body>
<script>
let _POST = <?php echo json_encode($_POST, JSON_HEX_TAG | JSON_HEX_AMP | JSON_HEX_APOS | JSON_HEX_QUOT); ?>;
let _installer_token = '<?= $_SESSION['installer_token'] ?>';
let _cron_token = '';
let _log_polling = true;
$.ajaxSetup({
headers: { 'X-Installer-Token': _installer_token }
});
$(document).ready(async function() {
init_read_log();
try {
await config_file();
await database_file();
await database_tables();
await database_migrations();
await update_dxcc();
await log_message('info', 'Finish. Installer went through successfully.');
await installer_lock();
// close the ajax gateway for the log polling, since we are done with the install steps
_log_polling = false;
if ($('#logContainer').css('display') == 'none') {
// after all install steps went through we can show a success message and redirect to the user/login
$("#success_message").show();
// Initialize the countdown
var countdown = 4;
var countdownInterval = setInterval(function() {
countdown--;
$("#countdown").text(countdown);
if (countdown <= 0) {
clearInterval(countdownInterval);
window.location.href = _POST.websiteurl + "index.php/user/login/1";
}
}, 1000);
} else {
// after all install steps went through we can show the redirect button
$("#success_button").show();
}
} catch (error) {
var errormsg = '';
if (typeof error === 'object') {
errormsg = error.statusText;
} else {
errormsg = error;
}
$("#error_message").text("Installation failed: " + errormsg).show();
}
});
// Poll the debug logfile with a self-scheduling timeout instead of a fixed
// interval: only one request is ever in flight, so a slow answer can never
// pile up further requests on top of the running install step.
function init_read_log() {
if (!_log_polling) {
return;
}
$.ajax({
type: 'POST',
url: 'ajax.php',
timeout: 10000,
data: {
read_logfile: 1
},
success: function(response) {
$("#debuglog").text(response);
},
error: function(xhr) {
// 403 means the installer got locked -- stop polling
if (xhr.status === 403) {
_log_polling = false;
}
},
complete: function() {
if (_log_polling) {
setTimeout(init_read_log, 500);
}
}
});
}
$('#toggleLogButton').on('click', function() {
var logContainer = $('#logContainer');
logContainer.toggle();
if (logContainer.css('display') == 'none') {
$('#toggleLogButton').text("<?= __("Show detailled debug log"); ?>");
} else {
$('#toggleLogButton').text("<?= __("Hide detailled debug log"); ?>");
}
});
async function config_file() {
var field = '#config_file';
running(field, true);
await log_message('debug', 'Start writing config.php');
return new Promise((resolve, reject) => {
$.ajax({
type: 'POST',
url: 'ajax.php',
data: {
data: _POST,
run_config_file: 1
},
success: async function(response) {
if (response == 'success') {
running(field, false);
await log_message('debug', 'File: config.php successfully written');
resolve();
} else {
running(field, false, true);
await log_message('error', 'File: Could not write file. Check Permissions.');
reject("<?= __("Could not create application/config/config.php"); ?>");
}
},
error: async function(error) {
await log_message('error', 'File: Could not write file. Ajax failed. Status: ' + error.status + ' Status Text: ' + error.statusText);
running(field, false, true);
reject(error);
}
});
});
}
async function database_file() {
var field = '#database_file';
running(field, true);
await log_message('debug', 'Start writing database.php');
return new Promise((resolve, reject) => {
$.ajax({
type: 'POST',
url: 'ajax.php',
data: {
data: _POST,
run_database_file: 1
},
success: async function(response) {
if (response == 'success') {
running(field, false);
await log_message('debug', 'File: database.php successfully written');
resolve();
} else {
running(field, false, true);
await log_message('error', 'File: Could not write file. Check Permissions.');
reject("<?= __("Could not create application/config/database.php"); ?>");
}
},
error: async function(error) {
await log_message('error', 'File: Could not write file. Ajax failed. Status: ' + error.status + ' Status Text: ' + error.statusText);
running(field, false, true);
reject(error);
}
});
});
}
async function database_tables() {
var field = '#database_tables';
running(field, true);
await log_message('debug', 'Start creating database structure with assets/install.sql');
return new Promise((resolve, reject) => {
$.ajax({
type: 'POST',
url: 'ajax.php',
data: {
data: _POST,
run_database_tables: 1
},
success: async function(response) {
if (response == 'success') {
await log_message('debug', 'Tables successfully created');
running(field, false);
resolve();
} else {
running(field, false, true);
await log_message('error', 'Creating database tables from assets/install.sql failed. Response: ' + response);
reject("<?= __("Could not create database tables"); ?>");
}
},
error: async function(error) {
running(field, false, true);
await log_message('error', 'Creating database tables failed. Ajax crashed. Status: ' + error.status + ' Status Text: ' + error.statusText);
reject(error);
}
});
});
}
async function database_migrations() {
var field = '#database_migrations';
running(field, true);
await log_message('debug', 'Start migrating database to the newest version.');
return new Promise((resolve, reject) => {
$.ajax({
url: <?= json_encode(($_POST['websiteurl'] ?? '') . 'index.php/migrate', JSON_HEX_TAG | JSON_HEX_AMP) ?>,
dataType: 'json',
success: async function(response) {
if (response.status == 'success') {
running(field, false);
await log_message('debug', 'Database successfully migrated. Latest Version: ' + response.version);
resolve();
} else {
running(field, false, true);
await log_message('error', 'Could not migrate database. Response: ' + response.status);
reject("<?= __("Could not run database migrations"); ?>");
}
},
error: async function(error) {
running(field, false, true);
await log_message('error', 'Could not migrate database. Ajax crashed. Status: ' + error.status + ' Status Text: ' + error.statusText);
reject(error);
}
});
});
}
async function fetch_cron_token() {
return new Promise((resolve) => {
$.ajax({
type: 'POST',
url: 'ajax.php',
data: {
run_cron_token: 1
},
success: function(response) {
_cron_token = response;
resolve();
},
error: async function(error) {
await log_message('error', 'Could not fetch the cron auth token. Ajax crashed. Status: ' + error.status + ' Status Text: ' + error.statusText);
resolve();
}
});
});
}
async function update_dxcc() {
var field = '#update_dxcc';
await log_message('debug', 'Start updating DXCC database. This can take a moment or two... Please wait');
running(field, true);
await fetch_cron_token();
return new Promise((resolve, reject) => {
$.ajax({
url: <?= json_encode(($_POST['websiteurl'] ?? '') . 'index.php/update/dxcc', JSON_HEX_TAG | JSON_HEX_AMP) ?>,
headers: {
'X-Wavelog-Auth': _cron_token
},
success: async function(response) {
if (response == 'success') {
running(field, false);
await log_message('debug', 'Successfully update DXCC database');
resolve();
} else {
running(field, false, true);
await log_message('error', 'Could not update DXCC data. Check application/logs for any error messages.');
reject("<?= __("Could not update DXCC data"); ?>");
}
},
error: async function(error) {
running(field, false, true);
await log_message('error', 'Could not update DXCC data. Ajax crashed. Status: ' + error.status + ' Status Text: ' + error.statusText);
reject(error);
}
});
});
}
async function installer_lock() {
var field = '#installer_lock';
await log_message('debug', 'Try to create .lock file for the installer');
running(field, true);
return new Promise((resolve, reject) => {
$.ajax({
type: 'POST',
url: 'ajax.php',
data: {
run_installer_lock: 1
},
success: async function(response) {
if (response == 'success') {
localStorage.clear();
running(field, false);
resolve();
} else {
running(field, false, true);
await log_message('error', 'Could not create .lock file.');
reject("<?= __("Could not create install/.lock file"); ?>");
}
},
error: async function(error) {
running(field, false, true);
await log_message('error', 'Could not create .lock file. Ajax crashed. Status: ' + error.status + ' Status Text: ' + error.statusText);
reject(error);
}
});
});
}
//
function running(field, running, failure = false) {
if (running) {
$(field).css('opacity', '100%');
$(field + '_spinner').addClass("running");
} else {
$(field + '_spinner').removeClass("running");
if (failure) {
$(field + '_check').addClass('fa-times-circle');
$(field + '_check').css('color', 'red');
} else {
$(field + '_check').addClass('fa-check-circle');
$(field + '_check').css('color', '#04a004');
}
$(field + '_check').css('display', 'inline');
}
}
</script>
<?php include 'includes/interface_assets/footer.php'; ?>
</html>