mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-06 17:15:38 -08:00
55 lines
1.5 KiB
PHP
Executable File
55 lines
1.5 KiB
PHP
Executable File
<?php
|
|
|
|
// ######################################################################
|
|
// ## Global constants and TimeZone processing
|
|
// ######################################################################
|
|
|
|
$configFolderPath = rtrim(getenv('NETALERTX_CONFIG') ?: '/data/config', '/') . '/';
|
|
$logFolderPath = rtrim(getenv('NETALERTX_LOG') ?: '/tmp/log', '/') . '/';
|
|
|
|
$config_file = "app.conf";
|
|
$workflows_file = "workflows.json";
|
|
|
|
$log_file = "app_front.log";
|
|
$default_tz = "Europe/Berlin";
|
|
|
|
|
|
$fullConfPath = $configFolderPath.$config_file;
|
|
$fullWorkflowsPath = $configFolderPath.$workflows_file;
|
|
|
|
$config_file_lines = file($fullConfPath);
|
|
$config_file_lines_timezone = array_values(preg_grep('/^TIMEZONE\s.*/', $config_file_lines));
|
|
|
|
$timeZone = "";
|
|
|
|
foreach ($config_file_lines as $line)
|
|
{
|
|
if( preg_match('/TIMEZONE(.*?)/', $line, $match) == 1 )
|
|
{
|
|
if (preg_match('/\'(.*?)\'/', $line, $match) == 1) {
|
|
$timeZone = $match[1];
|
|
}
|
|
}
|
|
}
|
|
|
|
if($timeZone == "")
|
|
{
|
|
$timeZone = $default_tz;
|
|
}
|
|
|
|
// Validate the timezone
|
|
if (!in_array($timeZone, timezone_identifiers_list())) {
|
|
error_log("Invalid timezone '$timeZone' in config. Falling back to default: '$default_tz' ");
|
|
$timeZone = $default_tz;
|
|
}
|
|
|
|
date_default_timezone_set($timeZone);
|
|
|
|
$date = new DateTime("now", new DateTimeZone($timeZone) );
|
|
$timestamp = $date->format('Y-m-d_H-i-s');
|
|
|
|
// ######################################################################
|
|
// ## Global constants and TimeZone processing
|
|
// ######################################################################
|
|
|