make more flex

This commit is contained in:
2025-12-04 02:06:50 +01:00
parent e83302c7d8
commit d50787a1c6
5 changed files with 98 additions and 67 deletions

4
config/domaindata.php Normal file
View File

@@ -0,0 +1,4 @@
<?php
define('APP_DOMAIN_NAME', 'usbcheck.it');
define('APP_PREFIX', 'usbcheck');

View File

@@ -1,20 +1,63 @@
<?php <?php
// 0) Umgebung / Domains / Error-Level // -----------------------------------------------------------
// 0) Umgebung / Domains / Error-Level laden
// → Diese Datei DEFINIERT die Konstanten wie
// APP_COOKIE_PREFIX, APP_COOKIE_DOMAIN, APP_ENV etc.
// -----------------------------------------------------------
require_once __DIR__ . "/config.php"; require_once __DIR__ . "/config.php";
// Diese Werte später ins Template schieben:
$GLOBALS['app_env'] = APP_ENV;
$GLOBALS['app_base_url'] = APP_URL_PRIMARY;
$GLOBALS['app_api_base'] = $apiBaseUrl;
// ----------------------------------------------------------- // -----------------------------------------------------------
// Session starten // set cookie / session parameters
// -----------------------------------------------------------
if (!defined('CUSTOM_PREFIX')) {
define('CUSTOM_PREFIX', APP_PREFIX);
}
if(!defined('APP_COOKIE_PREFIX')) {
if(APP_ENV==="staging"){
define('APP_COOKIE_PREFIX', APP_PREFIX.'_stg'.'_');
} else
{
define('APP_COOKIE_PREFIX', APP_PREFIX.'_');
}
}
if (!defined('APP_COOKIE_DOMAIN')) {
// Fallback: aktuelle Domain des Hosts
define('APP_COOKIE_DOMAIN', '.'.APP_DOMAIN_PRIMARY);
define('APP_PRIMARY_DOMAIN', APP_DOMAIN_PRIMARY);
}
if (!defined('APP_CLIENT_COOKIE_LIFETIME')) {
define('APP_CLIENT_COOKIE_LIFETIME', 365 * 24 * 60 * 60); // 1 Jahr
}
// Einheitliche Cookie-Namen (projektübergreifend steuerbar)
$sessionCookieName = APP_COOKIE_PREFIX . 'session';
$clientCookieName = APP_COOKIE_PREFIX . 'client';
// -----------------------------------------------------------
// 1) PHP-Session starten
// ----------------------------------------------------------- // -----------------------------------------------------------
if (php_sapi_name() !== 'cli') { if (php_sapi_name() !== 'cli') {
if (session_status() === PHP_SESSION_NONE) { if (session_status() === PHP_SESSION_NONE) {
session_name('usbcheck_session'); session_name($sessionCookieName);
session_set_cookie_params([ session_set_cookie_params([
'lifetime' => 0, 'lifetime' => 0,
'path' => '/', 'path' => '/',
'domain' => '', 'domain' => APP_COOKIE_DOMAIN ?: '',
'secure' => (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off'), 'secure' => (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off'),
'httponly' => true, 'httponly' => true,
'samesite' => 'Lax', 'samesite' => 'Lax',
@@ -24,72 +67,55 @@ if (php_sapi_name() !== 'cli') {
} }
} }
/**
* ---------------------------------------------------------
* Persistente Client-ID (über Logins & Sessions hinweg)
* ---------------------------------------------------------
* Cookie-Name: usbcheck_client
* Domain:
* - staging: .staging.usbcheck.it
* - live: .usbcheck.it
*/
if (php_sapi_name() !== 'cli') {
$clientId = $_COOKIE['usbcheck_client'] ?? null;
// jetzt 64 Hex-Zeichen (32 Bytes → 64 Hex) // -----------------------------------------------------------
// 2) Persistente Client-ID (für Tracking über Besuche hinweg)
// -----------------------------------------------------------
if (php_sapi_name() !== 'cli') {
$clientId = $_COOKIE[$clientCookieName] ?? null;
// Erwartet wird: 64 Hex-Zeichen (32 Bytes)
if ( if (
!is_string($clientId) !is_string($clientId) ||
|| $clientId === '' $clientId === '' ||
|| !preg_match('/^[a-f0-9]{64}$/', $clientId) !preg_match('/^[a-f0-9]{64}$/', $clientId)
) { ) {
// neue ID erzeugen // neue ID erzeugen
try { try {
$clientId = bin2hex(random_bytes(32)); // 32 Bytes → 64 Hex $clientId = bin2hex(random_bytes(32)); // 32 bytes → 64 hex
} catch (Throwable $e) { } catch (Throwable $e) {
// Fallback sollte praktisch nie passieren
$clientId = bin2hex(openssl_random_pseudo_bytes(32)); $clientId = bin2hex(openssl_random_pseudo_bytes(32));
} }
$host = $_SERVER['HTTP_HOST'] ?? '';
$cookieDomain = null;
if (preg_match('/\.staging\.usbcheck\.it$/', $host)) {
$cookieDomain = '.staging.usbcheck.it';
} elseif (preg_match('/\.usbcheck\.it$/', $host)) {
$cookieDomain = '.usbcheck.it';
}
$cookieOpts = [ $cookieOpts = [
'expires' => time() + 365 * 24 * 60 * 60, // ~1 Jahr 'expires' => time() + APP_CLIENT_COOKIE_LIFETIME,
'path' => '/', 'path' => '/',
'secure' => (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off'), 'secure' => (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off'),
'httponly' => false, // darf JS lesen, falls du es mal brauchst 'httponly' => false, // JS darf es lesen, wenn erwünscht
'samesite' => 'Lax', 'samesite' => 'Lax',
]; ];
if ($cookieDomain) { if (!empty(APP_COOKIE_DOMAIN)) {
$cookieOpts['domain'] = $cookieDomain; $cookieOpts['domain'] = APP_COOKIE_DOMAIN;
} }
setcookie('usbcheck_client', $clientId, $cookieOpts); setcookie($clientCookieName, $clientId, $cookieOpts);
$_COOKIE['usbcheck_client'] = $clientId; // lokal auch verfügbar $_COOKIE[$clientCookieName] = $clientId;
} }
// global verfügbar machen // global verfügbar machen (NEUER NAME!)
$GLOBALS['usb_client_id'] = $clientId; $GLOBALS['cookie_client_id'] = $clientId;
} }
require_once __DIR__ . '/i18n.php'; // <— zentrale Sprachlogik
// ab hier kannst du überall $GLOBALS['lang'] und $GLOBALS['availableLangs'] nutzen
// und für JS:
$usbConfig = [
// ... dein sonstiges Zeug ...
'i18n' => app_i18n_get_frontend_config(),
];
// ----------------------------------------------------------- // -----------------------------------------------------------
// Rest des Systems laden // 3) Sprachlogik laden (bleibt sinnvoll zentral)
// -----------------------------------------------------------
require_once __DIR__ . '/i18n.php';
// -----------------------------------------------------------
// 4) Rest des Systems laden (DB, Funktionen, Hilfs-Libs)
// ----------------------------------------------------------- // -----------------------------------------------------------
require_once __DIR__ . "/db.php"; require_once __DIR__ . "/db.php";
require_once __DIR__ . "/../src/functions.php"; require_once __DIR__ . '/../src/functions.php';

View File

@@ -3,13 +3,16 @@ ini_set('display_errors', 1);
ini_set('display_startup_errors', 1); ini_set('display_startup_errors', 1);
error_reporting(E_ALL); error_reporting(E_ALL);
require_once __DIR__ . "/domaindata.php";
// Umgebung (optional, aber hilfreich für Debugging / Logik)
define('APP_ENV', 'prod'); // oder 'prod', 'local', ...
if (!defined('ASSET_VERSION')) { if (!defined('ASSET_VERSION')) {
define('ASSET_VERSION', '2024-11-22'); // oder deine aktuelle Version define('ASSET_VERSION', '2024-11-22'); // oder deine aktuelle Version
} }
// Domain-Konfiguration (kann pro Umgebung angepasst werden) // Domain-Konfiguration (kann pro Umgebung angepasst werden)
if (!defined('APP_DOMAIN_PRIMARY')) { if (!defined('APP_DOMAIN_PRIMARY')) {
define('APP_DOMAIN_PRIMARY', 'usbcheck.it'); define('APP_DOMAIN_PRIMARY', APP_DOMAIN_NAME);
} }
if (!defined('APP_URL_PRIMARY')) { if (!defined('APP_URL_PRIMARY')) {
define('APP_URL_PRIMARY', 'https://' . APP_DOMAIN_PRIMARY); define('APP_URL_PRIMARY', 'https://' . APP_DOMAIN_PRIMARY);
@@ -26,10 +29,6 @@ define('MATOMO_URL', 'https://matomo.my-statistics.info/');
define('MATOMO_ENABLED', true); define('MATOMO_ENABLED', true);
define('MATOMO_SITE_ID', 7); define('MATOMO_SITE_ID', 7);
$env = 'prod'; $env = 'prod';
$baseUrl = 'https://usbcheck.it'; $baseUrl = 'https://'.APP_DOMAIN_NAME;
$apiBaseUrl = 'https://api.usbcheck.it'; $apiBaseUrl = 'https://api.'.APP_DOMAIN_NAME;
// Diese Werte später ins Template schieben:
$GLOBALS['usb_env'] = $env;
$GLOBALS['usb_base_url'] = $baseUrl;
$GLOBALS['usb_api_base'] = $apiBaseUrl;

View File

@@ -3,13 +3,19 @@ ini_set('display_errors', 1);
ini_set('display_startup_errors', 1); ini_set('display_startup_errors', 1);
error_reporting(E_ALL); error_reporting(E_ALL);
require_once __DIR__ . "/domaindata.php";
// Umgebung (optional, aber hilfreich für Debugging / Logik)
define('APP_ENV', 'staging'); // oder 'prod', 'local', ...
if (!defined('ASSET_VERSION')) { if (!defined('ASSET_VERSION')) {
define('ASSET_VERSION', time()); // oder deine aktuelle Version define('ASSET_VERSION', time()); // oder deine aktuelle Version
} }
// Domain-Konfiguration (kann pro Umgebung angepasst werden) // Domain-Konfiguration (kann pro Umgebung angepasst werden)
if (!defined('APP_DOMAIN_PRIMARY')) { if (!defined('APP_DOMAIN_PRIMARY')) {
define('APP_DOMAIN_PRIMARY', 'staging.usbcheck.it'); define('APP_DOMAIN_PRIMARY', 'staging.'.APP_DOMAIN_NAME);
} }
if (!defined('APP_URL_PRIMARY')) { if (!defined('APP_URL_PRIMARY')) {
define('APP_URL_PRIMARY', 'https://' . APP_DOMAIN_PRIMARY); define('APP_URL_PRIMARY', 'https://' . APP_DOMAIN_PRIMARY);
@@ -25,10 +31,6 @@ if (!defined('APP_URL_FAKECHECK')) {
define('MATOMO_URL', 'https://matomo.my-statistics.info/'); define('MATOMO_URL', 'https://matomo.my-statistics.info/');
define('MATOMO_ENABLED', false); define('MATOMO_ENABLED', false);
define('MATOMO_SITE_ID', 8); define('MATOMO_SITE_ID', 8);
$env = 'staging'; $baseUrl = 'https://'.APP_DOMAIN_PRIMARY;
$apiBaseUrl = 'https://api.'.APP_DOMAIN_PRIMARY; $apiBaseUrl = 'https://api.'.APP_DOMAIN_PRIMARY;
// Diese Werte später ins Template schieben:
$GLOBALS['usb_env'] = $env;
$GLOBALS['usb_base_url'] = APP_URL_PRIMARY;
$GLOBALS['usb_api_base'] = $apiBaseUrl;

View File

@@ -10,8 +10,8 @@ $requestUri = $_SERVER['REQUEST_URI'] ?? '/';
$currentLang = $GLOBALS['lang'] ?? ($lang ?? 'en'); $currentLang = $GLOBALS['lang'] ?? ($lang ?? 'en');
$allAvailable = $GLOBALS['availableLangs'] ?? []; $allAvailable = $GLOBALS['availableLangs'] ?? [];
// Optional: Environment aus config.php (du hattest $env → $GLOBALS['usb_env']) // Optional: Environment aus config.php (du hattest $env → $GLOBALS['app_env'])
$env = $GLOBALS['usb_env'] ?? 'prod'; $env = $GLOBALS['app_env'] ?? 'prod';
// ----------------------------------------------- // -----------------------------------------------
// USBCheck JavaScript-Konfiguration // USBCheck JavaScript-Konfiguration
@@ -38,11 +38,11 @@ $usbConfig = [
// Fakecheck-Tool-Config // Fakecheck-Tool-Config
'fakecheck' => [ 'fakecheck' => [
'baseUrl' => $GLOBALS['usb_base_url'] ?? '', 'baseUrl' => $GLOBALS['app_url'] ?? '',
'apiBaseUrl' => $GLOBALS['usb_api_base'] ?? 'https://api.usbcheck.it', 'apiBaseUrl' => $GLOBALS['app_api_url'] ?? 'https://api.usbcheck.it',
'locale' => $currentLang, 'locale' => $currentLang,
], ],
'i18n' => app_i18n_get_frontend_config(),
// i18n-Konfiguration // i18n-Konfiguration
'i18n' => [ 'i18n' => [
'available' => $allAvailable, 'available' => $allAvailable,