2017-05-17 01:20:58 +08:00
|
|
|
<?php
|
2018-08-04 02:31:33 +08:00
|
|
|
logger();
|
2019-10-21 03:25:58 +08:00
|
|
|
|
|
|
|
$hash = $js_minifier->getDataHash();
|
|
|
|
$JSPath = '/tmp/' . $hash . '.js';
|
|
|
|
if(!file_exists($JSPath)) {
|
|
|
|
$js_minifier->minify($JSPath);
|
|
|
|
cleanupJS($hash);
|
|
|
|
}
|
2021-09-23 02:47:10 +08:00
|
|
|
|
|
|
|
$alertbox_log_parser = alertbox_log_parser($_SESSION);
|
|
|
|
$alerts = [];
|
|
|
|
if (is_array($alertbox_log_parser)) {
|
|
|
|
foreach ($alertbox_log_parser as $log) {
|
2021-11-29 05:48:08 +08:00
|
|
|
$message = strtr($log['msg'], ["\n" => '', "\r" => '', "\t" => '<br>']);
|
|
|
|
$alerts[trim($log['type'], '"')][] = trim($message, '"');
|
2020-11-16 02:32:37 +08:00
|
|
|
}
|
2021-09-23 02:47:10 +08:00
|
|
|
$alert = array_filter(array_unique($alerts));
|
|
|
|
foreach($alert as $alert_type => $alert_msg) {
|
2021-10-16 21:23:39 +08:00
|
|
|
$alerts[$alert_type] = implode('<hr class="alert-hr">', $alert_msg);
|
2020-11-16 02:32:37 +08:00
|
|
|
}
|
2018-08-04 02:31:33 +08:00
|
|
|
unset($_SESSION['return']);
|
2021-09-23 02:47:10 +08:00
|
|
|
}
|
2017-05-17 01:20:58 +08:00
|
|
|
|
2021-09-23 02:47:10 +08:00
|
|
|
$globalVariables = [
|
|
|
|
'js_path' => '/cache/'.basename($JSPath),
|
|
|
|
'pending_tfa_method' => @$_SESSION['pending_tfa_method'],
|
|
|
|
'pending_mailcow_cc_username' => @$_SESSION['pending_mailcow_cc_username'],
|
|
|
|
'lang_footer' => json_encode($lang['footer']),
|
|
|
|
'lang_acl' => json_encode($lang['acl']),
|
|
|
|
'lang_tfa' => json_encode($lang['tfa']),
|
|
|
|
'lang_fido2' => json_encode($lang['fido2']),
|
|
|
|
'docker_timeout' => $DOCKER_TIMEOUT,
|
|
|
|
'session_lifetime' => (int)$SESSION_LIFETIME,
|
|
|
|
'csrf_token' => $_SESSION['CSRF']['TOKEN'],
|
|
|
|
'pagination_size' => $PAGINATION_SIZE,
|
|
|
|
'log_pagination_size' => $LOG_PAGINATION_SIZE,
|
|
|
|
'alerts' => $alerts,
|
2021-10-21 06:10:05 +08:00
|
|
|
'totp_secret' => $tfa->createSecret(),
|
2021-09-23 02:47:10 +08:00
|
|
|
];
|
2019-09-22 21:10:56 +08:00
|
|
|
|
2021-09-23 02:47:10 +08:00
|
|
|
foreach ($globalVariables as $globalVariableName => $globalVariableValue) {
|
|
|
|
$twig->addGlobal($globalVariableName, $globalVariableValue);
|
|
|
|
}
|
|
|
|
|
2021-10-30 14:03:41 +08:00
|
|
|
if (is_array($template_data)) {
|
|
|
|
echo $twig->render($template, $template_data);
|
|
|
|
}
|
2019-10-24 04:09:10 +08:00
|
|
|
|
2021-05-20 21:51:52 +08:00
|
|
|
if (isset($_SESSION['mailcow_cc_api'])) {
|
|
|
|
session_regenerate_id(true);
|
|
|
|
session_unset();
|
|
|
|
session_destroy();
|
|
|
|
session_write_close();
|
|
|
|
header("Location: /");
|
|
|
|
}
|
2017-05-17 01:20:58 +08:00
|
|
|
$stmt = null;
|
2017-12-09 20:17:15 +08:00
|
|
|
$pdo = null;
|