229 lines
8.3 KiB
PHP
229 lines
8.3 KiB
PHP
<?php // phpcs:ignore PSR1.Files.SideEffects
|
|
|
|
/********************************************************************
|
|
* AUTHOR: Clemens Schwaighofer
|
|
* CREATED: 2003/06/10
|
|
* SHORT DESCRIPTION:
|
|
* configuration file
|
|
* HISTORY:
|
|
*********************************************************************/
|
|
|
|
declare(strict_types=1);
|
|
|
|
/************* PATHS *********************/
|
|
// [DEPRECATED] directory seperator
|
|
define('DS', DIRECTORY_SEPARATOR);
|
|
// ** NEW/BETTER DIR DECLARATIONS **
|
|
// path to original file (if symlink)
|
|
define('DIR', __DIR__ . DIRECTORY_SEPARATOR);
|
|
// base dir root folder level
|
|
define('BASE', str_replace('/configs', '', __DIR__) . DIRECTORY_SEPARATOR);
|
|
|
|
// ** OLD DIR DECLARATIONS **
|
|
// path to document root of file called
|
|
define('ROOT', getcwd() . DIRECTORY_SEPARATOR);
|
|
// libs path
|
|
define('LIB', 'lib' . DIRECTORY_SEPARATOR);
|
|
define('LIBS', 'lib' . DIRECTORY_SEPARATOR);
|
|
// configs folder
|
|
define('CONFIGS', 'configs' . DIRECTORY_SEPARATOR);
|
|
// includes (strings, arrays for static, etc)
|
|
define('INCLUDES', 'includes' . DIRECTORY_SEPARATOR);
|
|
// data folder (mostly in includes, or root for internal data)
|
|
define('DATA', 'data' . DIRECTORY_SEPARATOR);
|
|
// layout base path
|
|
define('LAYOUT', 'layout' . DIRECTORY_SEPARATOR);
|
|
// pic-root (compatible to CMS)
|
|
define('PICTURES', 'images' . DIRECTORY_SEPARATOR);
|
|
// images
|
|
define('IMAGES', 'images' . DIRECTORY_SEPARATOR);
|
|
// icons (below the images/ folder)
|
|
define('ICONS', 'icons' . DIRECTORY_SEPARATOR);
|
|
// media (accessable from outside)
|
|
define('MEDIA', 'media' . DIRECTORY_SEPARATOR);
|
|
// uploads (anything to keep or data)
|
|
define('UPLOADS', 'uploads' . DIRECTORY_SEPARATOR);
|
|
// files (binaries) (below media or data)
|
|
define('BINARIES', 'binaries' . DIRECTORY_SEPARATOR);
|
|
// files (videos) (below media or data)
|
|
define('VIDEOS', 'videos' . DIRECTORY_SEPARATOR);
|
|
// files (documents) (below media or data)
|
|
define('DOCUMENTS', 'documents' . DIRECTORY_SEPARATOR);
|
|
// files (pdfs) (below media or data)
|
|
define('PDFS', 'documents' . DIRECTORY_SEPARATOR);
|
|
// files (general) (below media or data)
|
|
define('FILES', 'files' . DIRECTORY_SEPARATOR);
|
|
// CSV
|
|
define('CSV', 'csv' . DIRECTORY_SEPARATOR);
|
|
// css
|
|
define('CSS', 'css' . DIRECTORY_SEPARATOR);
|
|
// font (web)
|
|
define('FONT', 'font' . DIRECTORY_SEPARATOR);
|
|
// js
|
|
define('JS', 'javascript' . DIRECTORY_SEPARATOR);
|
|
// table arrays
|
|
define('TABLE_ARRAYS', 'table_arrays' . DIRECTORY_SEPARATOR);
|
|
// smarty libs path
|
|
define('SMARTY', 'Smarty' . DIRECTORY_SEPARATOR);
|
|
// po locale file
|
|
define('LOCALE', 'locale' . DIRECTORY_SEPARATOR);
|
|
// cache path
|
|
define('CACHE', 'cache' . DIRECTORY_SEPARATOR);
|
|
// temp path
|
|
define('TMP', 'tmp' . DIRECTORY_SEPARATOR);
|
|
// log files
|
|
define('LOG', 'log' . DIRECTORY_SEPARATOR);
|
|
// compiled template folder
|
|
define('TEMPLATES_C', 'templates_c' . DIRECTORY_SEPARATOR);
|
|
// template base
|
|
define('TEMPLATES', 'templates' . DIRECTORY_SEPARATOR);
|
|
|
|
/************* HASH / ACL DEFAULT *************/
|
|
// default hash type
|
|
define('DEFAULT_HASH', 'sha256');
|
|
// default acl level
|
|
define('DEFAULT_ACL_LEVEL', $ENV['DEFAULT_ACL_LEVEL'] ?? 80);
|
|
|
|
/************* OVERALL CONTROL NAMES *************/
|
|
// BELOW has HAS to be changed
|
|
// base name for all session and log names
|
|
// only alphanumeric characters, strip all others
|
|
define('BASE_NAME', preg_replace('/[^A-Za-z0-9]/', '', $_ENV['BASE_NAME'] ?? ''));
|
|
|
|
/************* SESSION NAMES *************/
|
|
// server name HASH
|
|
define('SERVER_NAME_HASH', hash('crc32b', $_SERVER['HTTP_HOST']));
|
|
define('SERVER_PATH_HASH', hash('crc32b', BASE));
|
|
// backend
|
|
define('EDIT_SESSION_NAME', BASE_NAME . 'Admin' . SERVER_NAME_HASH . SERVER_PATH_HASH);
|
|
// frontend
|
|
define('SESSION_NAME', BASE_NAME . SERVER_NAME_HASH . SERVER_PATH_HASH);
|
|
|
|
/************* CACHE/COMPILE IDS *************/
|
|
define('CACHE_ID', 'CACHE_' . BASE_NAME . '_' . SERVER_NAME_HASH);
|
|
define('COMPILE_ID', 'COMPILE_' . BASE_NAME . '_' . SERVER_NAME_HASH);
|
|
|
|
/************* LANGUAGE / ENCODING *******/
|
|
// default lang + encoding
|
|
define('DEFAULT_LOCALE', $_ENV['LOCALE'] ?? 'en_US.UTF-8');
|
|
// default web page encoding setting
|
|
define('DEFAULT_ENCODING', (string)array_pad(explode('.', DEFAULT_LOCALE, 2), 2, 'UTF-8')[1]);
|
|
|
|
/************* HOST NAME *****************/
|
|
// get the name without the port
|
|
list($HOST_NAME) = array_pad(explode(':', $_SERVER['HTTP_HOST'], 2), 2, null);
|
|
// set HOST name
|
|
define('HOST_NAME', $HOST_NAME);
|
|
|
|
/************* CORE HOST SETTINGS *****************/
|
|
if (file_exists(BASE . CONFIGS . 'config.host.php')) {
|
|
require BASE . CONFIGS . 'config.host.php';
|
|
}
|
|
if (!isset($SITE_CONFIG)) {
|
|
$SITE_CONFIG = [];
|
|
}
|
|
// BAIL ON MISSING MASTER SITE CONFIG
|
|
if (!isset($SITE_CONFIG[HOST_NAME]['location'])) {
|
|
throw new \InvalidArgumentException(
|
|
'Missing SITE_CONFIG entry for: "' . HOST_NAME . '". Contact Administrator'
|
|
);
|
|
}
|
|
// set target first
|
|
define('TARGET', $_ENV['TARGET'] ?? $SITE_CONFIG[HOST_NAME]['location'] ?? 'test');
|
|
/************* DB ACCESS *****************/
|
|
if (file_exists(BASE . CONFIGS . 'config.db.php')) {
|
|
require BASE . CONFIGS . 'config.db.php';
|
|
}
|
|
if (!isset($DB_CONFIG)) {
|
|
$DB_CONFIG = [];
|
|
}
|
|
/************* OTHER PATHS *****************/
|
|
if (file_exists(BASE . CONFIGS . 'config.path.php')) {
|
|
require BASE . CONFIGS . 'config.path.php';
|
|
}
|
|
|
|
/************* MASTER INIT *****************/
|
|
// BAIL ON MISSING DB CONFIG:
|
|
// we have either no db selction for this host but have db config entries
|
|
// or we have a db selection but no db config as array or empty
|
|
// or we have a selection but no matching db config entry
|
|
if (
|
|
(!isset($SITE_CONFIG[HOST_NAME]['db_host']) && count($DB_CONFIG)) ||
|
|
(isset($SITE_CONFIG[HOST_NAME]['db_host']) &&
|
|
// missing DB CONFIG
|
|
((is_array($DB_CONFIG) && !count($DB_CONFIG)) ||
|
|
!is_array($DB_CONFIG) ||
|
|
// has DB CONFIG but no match
|
|
empty($DB_CONFIG[$SITE_CONFIG[HOST_NAME]['db_host']]))
|
|
)
|
|
) {
|
|
throw new \InvalidArgumentException(
|
|
'No matching DB config found for: "' . HOST_NAME . '". Contact Administrator'
|
|
);
|
|
}
|
|
// set SSL on
|
|
$is_secure = false;
|
|
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') {
|
|
$is_secure = true;
|
|
} elseif (
|
|
!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https' ||
|
|
!empty($_SERVER['HTTP_X_FORWARDED_SSL']) && $_SERVER['HTTP_X_FORWARDED_SSL'] == 'on'
|
|
) {
|
|
$is_secure = true;
|
|
}
|
|
if ($is_secure) {
|
|
define('HOST_SSL', true);
|
|
define('HOST_PROTOCOL', 'https://');
|
|
} else {
|
|
define('HOST_SSL', false);
|
|
define('HOST_PROTOCOL', 'http://');
|
|
}
|
|
// define the db config set name, the db config and the db schema
|
|
define('DB_CONFIG_NAME', $SITE_CONFIG[HOST_NAME]['db_host'] ?? '');
|
|
define('DB_CONFIG', $DB_CONFIG[DB_CONFIG_NAME] ?? [
|
|
'db_name' => '',
|
|
'db_user' => '',
|
|
'db_pass' => '',
|
|
'db_host' => '',
|
|
'db_port' => 5432,
|
|
'db_schema' => '',
|
|
'db_encoding' => '',
|
|
'db_type' => '',
|
|
'db_ssl' => ''
|
|
]);
|
|
// because we can't change constant, but we want to for db debug flag
|
|
$GLOBALS['DB_CONFIG_SET'] = DB_CONFIG;
|
|
// debug settings, site lang, etc
|
|
define('DEBUG_LEVEL', $SITE_CONFIG[HOST_NAME]['debug_level'] ?? 'debug');
|
|
define('SITE_LOCALE', $SITE_CONFIG[HOST_NAME]['site_locale'] ?? DEFAULT_LOCALE);
|
|
define('SITE_DOMAIN', str_replace(DIRECTORY_SEPARATOR, '', CONTENT_PATH));
|
|
define('SITE_ENCODING', $SITE_CONFIG[HOST_NAME]['site_encoding'] ?? DEFAULT_ENCODING);
|
|
define('LOGIN_ENABLED', $SITE_CONFIG[HOST_NAME]['login_enabled'] ?? false);
|
|
define('AUTH', $SITE_CONFIG[HOST_NAME]['auth'] ?? false);
|
|
|
|
// NOTE: everything below is smarty related and should be removed from here
|
|
/************* GENERAL PAGE TITLE ********/
|
|
define('G_TITLE', $_ENV['G_TITLE'] ?? '');
|
|
/************* LAYOUT WIDTHS *************/
|
|
define('PAGE_WIDTH', $_ENV['SMARTY.PAGE_WIDTH'] ?? '100%');
|
|
define('CONTENT_WIDTH', $_ENV['SMARTY.CONTENT_WIDTH'] ?? '100%');
|
|
// the default template name
|
|
define('MASTER_TEMPLATE_NAME', $_ENV['MASTER_TEMPLATE_NAME'] ?? 'main_body.tpl');
|
|
/************* JS LIBRARIES *************/
|
|
define('USE_PROTOTYPE', false);
|
|
define('USE_SCRIPTACULOUS', false);
|
|
define('USE_JQUERY', true);
|
|
/************ STYLE SHEETS / JS **********/
|
|
define('ADMIN_STYLESHEET', $_ENV['ADMIN.STYLESHEET'] ?? 'edit.css');
|
|
define('ADMIN_JAVASCRIPT', $_ENV['ADMIN.JAVASCRIPT'] ?? 'edit.js');
|
|
define('STYLESHEET', $_ENV['STYLESHEET'] ?? 'frontend.css');
|
|
define('JAVASCRIPT', $_ENV['JAVASCRIPT'] ?? 'frontend.js');
|
|
// anything optional
|
|
/************* INTERNAL ******************/
|
|
// any other global definitons in the config.other.php
|
|
if (file_exists(BASE . CONFIGS . 'config.other.php')) {
|
|
require BASE . CONFIGS . 'config.other.php';
|
|
}
|
|
|
|
// __END__
|