allerta-vvf/server/core.php

932 lines
35 KiB
PHP

<?php
require_once 'vendor/autoload.php';
use DebugBar\StandardDebugBar;
if(!file_exists("config.php") && !file_exists("../../config.php")) {
header('Location: install/install.php');
exit();
}
require_once 'config.php';
if(SENTRY_ENABLED){
\Sentry\init([
'dsn' => SENTRY_DSN,
'traces_sample_rate' => 0.8,
'environment' => SENTRY_ENV
]);
}
session_start();
date_default_timezone_set('Europe/Rome');
function bdump($message){
global $debugbar;
if(!is_null($debugbar)){
$debugbar["messages"]->addMessage($message);
}
}
class tools
{
public $check_cf_ip;
public $profiler_enabled;
public $profiler_last_name = "";
public function __construct($check_cf_ip, $profiler_enabled)
{
$this->check_cf_ip = $check_cf_ip;
$this->profiler_enabled = $profiler_enabled;
}
public function validate_form($data, $expected_value=null, $data_source=null)
{
if(is_array($data)){
foreach($data as $element){
if (!$this->validate_form($element, $expected_value, $data_source)) return false;
}
return true;
} else {
if(is_null($data_source) || !is_array($data_source)){
$data_source = $_POST;
}
return !is_null($data) && isset($data_source[$data]) && !is_null($data_source[$data]) && (!is_null($expected_value) ? $data_source[$data] == $expected_value : true);
}
}
public function get_ip()
{
if(!empty($_SERVER['HTTP_CLIENT_IP'])) {
$ip = $_SERVER['HTTP_CLIENT_IP'];
}elseif(!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
}else{
$ip = $_SERVER['REMOTE_ADDR'];
}
if($this->check_cf_ip) {
if(!empty($_SERVER['HTTP_CF_CONNECTING_IP'])) {
$ip = $_SERVER['HTTP_CF_CONNECTING_IP'];
}
}
return $ip;
}
public function get_page_url()
{
if(!empty($_SERVER["HTTPS"])) {
if($_SERVER["HTTPS"] == "on") {
$protocol = "https";
} else {
$protocol = "http";
}
} else {
$protocol = "http";
}
$port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]);
return $protocol . "://" . $_SERVER['SERVER_NAME'] . $port . $_SERVER['REQUEST_URI'];
}
public function redirect($url)
{
global $debugbar;
if(!is_null($debugbar)) $debugbar->stackData();
if (!headers_sent()) {
header('Location: '.$url);
exit;
} else {
echo '<script type="text/javascript">';
echo 'window.location.href="'.$url.'";';
echo '</script>';
echo '<noscript>';
echo '<meta http-equiv="refresh" content="0;url='.$url.'" />';
echo '</noscript>';
}
}
public function rickroll()
{
$rickrolls = [
"https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"https://www.youtube.com/watch?v=ub82Xb1C8os",
"https://www.youtube.com/watch?v=Wjy3o0FoLYc",
"https://www.youtube.com/watch?v=bxqLsrlakK8",
"https://www.youtube.com/watch?v=Lrj2Hq7xqQ8"
];
$this->redirect($rickrolls[array_rand($rickrolls)]); //Dear attacker/bot, have fun!
}
function extract_unique($data)
{
$this->profiler_start("Extract unique");
$array2=[];
foreach($data as $arr){
if(is_array($arr)) {
$tmp = $this->extract_unique($arr);
foreach($tmp as $temp){
if(!is_array($temp)) {
if(!in_array($temp, $array2)) {
$array2[] = $temp;
}
}
}
} else {
if(!in_array($arr, $array2)) {
$array2[] = $arr;
}
}
}
$this->profiler_stop();
return $array2;
}
public function createKey($lenght=32)
{
return bin2hex(random_bytes($lenght));
}
public function sanitize($string, $htmlAllowed=false, $htmlPurifierOptions=[])
{
$this->profiler_start("Sanitize");
$htmlAllowed=false; //TODO: fix HTMLPurifier_Config
if($htmlAllowed) {
$config = HTMLPurifier_Config::createDefault();
foreach ($htmlPurifierOptions as $key => $value) {
$config->set($key, $value);
}
$purifier = new HTMLPurifier($config);
$string = $purifier->purify($string);
} else {
$string = htmlspecialchars($string);
}
$this->profiler_stop();
return $string;
}
public function profiler_start($name=null)
{
global $debugbar;
if($this->profiler_enabled && !is_null($debugbar)) {
if(is_null($name)) {
$name = $this->profiler_last_name;
}
if($name !== "") $debugbar['time']->startMeasure($name);
}
}
public function profiler_stop($name=null)
{
global $debugbar;
if($this->profiler_enabled && !is_null($debugbar)) {
if(is_null($name) || $name == "") {
$name = $this->profiler_last_name;
}
if($name !== "") $debugbar['time']->stopMeasure($name);
}
}
public function ajax_page_response($response)
{
global $debugbar;
$json_response = json_encode($response);
$response_data = substr(crc32($json_response), 0, 10);
header("data: ".$response_data);
header("Content-type: application/json");
if(!is_null($debugbar)) $debugbar->sendDataInHeaders(true);
if(isset($_GET["oldData"]) && $_GET["oldData"] !== $response_data){
print($json_response);
} else {
print("{}");
}
}
}
class database
{
protected $db_host = DB_HOST;
protected $db_dbname = DB_NAME;
protected $db_username = DB_USER;
protected $db_password = DB_PASSWORD;
public $connection = null;
public $query = null;
public $stmt = null;
public $load_from_file = true;
public $options = [];
public $options_cache_file = null;
public function connect()
{
try {
$this->connection = new DebugBar\DataCollector\PDO\TraceablePDO(new PDO("mysql:host=" . $this->db_host . ";dbname=" . $this->db_dbname, $this->db_username, $this->db_password));
$this->connection->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
$this->connection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
catch(PDOException $e)
{
exit($e->getMessage());
}
}
public function isOptionsEmpty()
{
return empty($this->exec("SELECT * FROM `%PREFIX%_options`;", true));
}
public function __construct()
{
$this->connect();
if($this->isOptionsEmpty()) {
header('Location: install/install.php');
}
$file_infos = pathinfo(array_reverse(debug_backtrace())[0]['file']);
if(strpos($file_infos['dirname'], 'resources') !== false) {
$this->options_cache_file = "../../options.txt";
} else {
$this->options_cache_file = "options.txt";
}
if($this->load_from_file) {
if(file_exists($this->options_cache_file)/* && time()-@filemtime($this->options_cache_file) < 604800*/) {
$this->options = json_decode(file_get_contents($this->options_cache_file), true);
} else {
$this->options = $this->exec("SELECT * FROM `%PREFIX%_options` WHERE `enabled` = 1", true);
file_put_contents($this->options_cache_file, json_encode($this->options));
}
} else {
$this->options = $this->exec("SELECT * FROM `%PREFIX%_options` WHERE `enabled` = 1", true);
}
}
public function close()
{
$this->connection = null;
}
public function exec($sql1, $fetch=false, $param=null, ...$others_params)
{
try{
//$this->connection->beginTransaction();
array_unshift($others_params, $sql1);
bdump($others_params);
$toReturn = [];
foreach($others_params as $sql){
$sql = str_replace("%PREFIX%", DB_PREFIX, $sql);
bdump($sql);
$this->stmt = $this->connection->prepare($sql);
if(!is_null($param)) {
$this->query = $this->stmt->execute($param);
} else {
$this->query = $this->stmt->execute();
}
bdump($this->query);
if($fetch == true) {
if(count($others_params) > 1) {
$toReturn[] = $this->stmt->fetchAll(PDO::FETCH_ASSOC);
} else {
$toReturn = $this->stmt->fetchAll(PDO::FETCH_ASSOC);
}
}
}
//$this->connection->commit();
//$this->stmt->closeCursor();
return $toReturn;
} catch (PDOException $e) {
print "Error!: " . $e->getMessage() . "<br/>";
//$this->connection->rollBack();
die();
}
}
public function exists($table, $id)
{
$result = $this->exec("SELECT :table FROM `%PREFIX%_services` WHERE id = :id;", true, [":table" => $table, ":id" => $id]);
return !empty($result);
}
public function get_option($name)
{
if(defined($name)) {
return constant($name);
} else {
//$option = $this->exec("SELECT `value` FROM `%PREFIX%_options` WHERE `name` = :name AND `enabled` = 1;", true, [":name" => $name]);
//return empty($option) ? "" : $option[0]["value"];
foreach($this->options as $option){
if($name == $option["name"]) {
return empty($option["value"]) ? false : $option["value"];
}
}
return false;
}
}
}
final class Role
{
//https://github.com/delight-im/PHP-Auth/blob/master/src/Role.php
const GUEST = \Delight\Auth\Role::AUTHOR;
const BASIC_VIEWER = \Delight\Auth\Role::COLLABORATOR;
const FULL_VIEWER = \Delight\Auth\Role::CONSULTANT;
const EDITOR = \Delight\Auth\Role::CONSUMER;
const SUPER_EDITOR = \Delight\Auth\Role::CONTRIBUTOR;
const DEVELOPER = \Delight\Auth\Role::DEVELOPER;
const TESTER = \Delight\Auth\Role::CREATOR;
const EXTERNAL_VIEWER = \Delight\Auth\Role::REVIEWER;
const ADMIN = \Delight\Auth\Role::ADMIN;
const SUPER_ADMIN = \Delight\Auth\Role::SUPER_ADMIN;
public function __construct()
{
}
}
class user
{
private $database = null;
private $tools = null;
private $profile_names = null;
public $auth = null;
public $authenticated = false;
public function __construct($database, $tools)
{
$this->database = $database;
$this->tools = $tools;
$this->auth = new \Delight\Auth\Auth($database->connection, $tools->get_ip(), DB_PREFIX."_", false);
\header_remove('X-Frame-Options');
if(isset($_REQUEST["apiKey"]) && !is_null($_REQUEST["apiKey"])){
$api_key_row = $this->database->exec("SELECT * FROM `%PREFIX%_api_keys` WHERE apikey = :apikey;", true, [":apikey" => $_REQUEST["apiKey"]]);
if(!empty($api_key_row)){
$user = $this->database->exec("SELECT * FROM `%PREFIX%_profiles` WHERE id = :id;", true, [":id" => $api_key_row[0]["user"]]);
$user_id = $user[0]["id"];
$this->auth->admin()->logInAsUserById($user_id);
if(!empty($user)) {
if(is_null($user[0]["name"])) {
$_SESSION['_user_name'] = $this->auth->getUsername();
} else {
$_SESSION['_user_name'] = $user[0]["name"];
}
$_SESSION['_user_hidden'] = $user[0]["hidden"];
$_SESSION['_user_disabled'] = $user[0]["disabled"];
$_SESSION['_user_chief'] = $user[0]["chief"];
setcookie("authenticated", true);
}
}
}
$this->authenticated = $this->auth->isLoggedIn();
$this->profile_names = $this->database->exec("SELECT `id`, `name` FROM `%PREFIX%_profiles`;", true);
$this->user_names = $this->database->exec("SELECT `id`, `username` FROM `%PREFIX%_users`;", true);
}
public function authenticated()
{
return $this->authenticated;
}
public function requirelogin($redirect=true)
{
$this->tools->profiler_start("Require login");
if(!$this->authenticated()) {
if($this->database->get_option("intrusion_save")) {
if($this->database->get_option("intrusion_save_info")) {
$params = [":page" => $this->tools->get_page_url(), ":ip" => $this->tools->get_ip(), ":date" => date("d/m/Y"), ":hour" => date("H:i.s"), ":server_var" => json_encode($_SERVER)];
} else {
$params = [":page" => $this->tools->get_page_url(), ":ip" => "redacted", ":date" => date("d/m/Y"), ":hour" => date("H:i.s"), ":server_var" => json_encode(["redacted" => "true"])];
}
$sql = "INSERT INTO `%PREFIX%_intrusions` (`id`, `page`, `date`, `hour`, `ip`, `server_var`) VALUES (NULL, :page, :date, :hour, :ip, :server_var)";
$this->database->exec($sql, false, $params);
}
if($redirect) {
$this->tools->redirect($this->database->get_option("web_url"));
} else {
exit();
}
}
$this->tools->profiler_stop();
}
public function requireRole($role, $adminGranted=true)
{
return $this->auth->hasRole($role) || $adminGranted && $role !== Role::DEVELOPER && $this->auth->hasRole(Role::ADMIN) || $role !== Role::DEVELOPER && $this->auth->hasRole(Role::SUPER_ADMIN);
}
public function name($replace=false)
{
if(isset($_SESSION['_user_name'])) {
$return_name = $_SESSION['_user_name'];
} else {
$check_name = $this->nameById($this->auth->getUserId());
if($check_name) {
$return_name = $check_name;
} else {
$return_name = "not authenticated";
}
}
if($replace) {
return str_replace(" ", "_", $return_name);
} else {
return $return_name;
}
}
public function nameById($id)
{
$name = null;
foreach($this->profile_names as $profile) {
if($profile["id"] == $id && !is_null($profile["name"])) {
$name = s($profile["name"], false);
}
}
if(is_null($name)){
foreach($this->user_names as $user) {
if($user["id"] == $id){
return(s($user["username"], false));
}
}
if(is_null($name)) return false;
}
return $name;
}
public function hidden()
{
$profiles = $this->database->exec("SELECT `name` FROM `%PREFIX%_profiles` WHERE hidden = 1;", true);
return $profiles;
}
public function available($name)
{
$user = $this->database->exec("SELECT available FROM `%PREFIX%_users` WHERE name = :name;", true, [":name" => $name]);
if(empty($user)) {
return false;
} else {
return $user[0]["available"];
}
}
public function info()
{
return array("autenticated" => $this->authenticated(), "id" => $this->auth->getUserId(), "name" => $this->name(), "full_viewer" => $this->requireRole(Role::FULL_VIEWER), "tester" => $this->requireRole(Role::TESTER), "developer" => $this->requireRole(Role::DEVELOPER));
}
public function login($name, $password, $remember_me)
{
$this->tools->profiler_start("Login");
if(!empty($name)) {
if(!empty($password)) {
try {
if ($remember_me) {
// keep logged in for one year
$rememberDuration = (int) (60 * 60 * 24 * 365.25);
} else {
// do not keep logged in after session ends
$rememberDuration = null;
}
$this->auth->loginWithUsername($name, $password, $rememberDuration);
}
catch (\Delight\Auth\InvalidEmailException $e) {
$this->tools->profiler_stop();
return ["status" => "error", "code" => 010, "text" => "Wrong email address"];
}
catch (\Delight\Auth\InvalidPasswordException $e) {
$this->tools->profiler_stop();
return ["status" => "error", "code" => 011, "text" => "Wrong password"];
}
catch (\Delight\Auth\EmailNotVerifiedException $e) {
$this->tools->profiler_stop();
return ["status" => "error", "code" => 012, "text" => "Email not verified"];
}
catch (\Delight\Auth\UnknownUsernameException $e) {
$this->tools->profiler_stop();
return ["status" => "error", "code" => 013, "text" => "Wrong username"];
}
catch (\Delight\Auth\TooManyRequestsException $e) {
$this->tools->profiler_stop();
return ["status" => "error", "code" => 020, "text" => "Too many requests"];
}
if($this->auth->isLoggedIn()) {
$this->log("Login", $this->auth->getUserId());
$user = $this->database->exec("SELECT * FROM `%PREFIX%_profiles` WHERE id = :id;", true, [":id" => $this->auth->getUserId()]);
if(!empty($user)) {
if(is_null($user[0]["name"])) {
$_SESSION['_user_name'] = $this->auth->getUsername();
} else {
$_SESSION['_user_name'] = $user[0]["name"];
}
$_SESSION['_user_hidden'] = $user[0]["hidden"];
$_SESSION['_user_disabled'] = $user[0]["disabled"];
$_SESSION['_user_chief'] = $user[0]["chief"];
$this->tools->profiler_stop();
setcookie("authenticated", true);
return true;
}
}
} else {
$this->tools->profiler_stop();
return ["status" => "error", "code" => 002];
}
} else {
$this->tools->profiler_stop();
return ["status" => "error", "code" => 001];
}
}
public function log($action, $changed=null, $editor=null, $timestamp=null)
{
$this->tools->profiler_start("Log");
if(is_null($timestamp)){
$date = new Datetime('now');
$timestamp = $date->format('Y-m-d H:i:s');
}
if(is_null($changed)){
$changed = $this->auth->getUserId();
}
if(is_null($editor)){
$editor = $changed;
}
if($this->database->get_option("log_save_ip")){
$ip = $this->tools->get_ip();
} else {
$ip = null;
}
$source_type = defined("REQUEST_USING_API") ? "api" : "web";
$user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? mb_strimwidth($_SERVER['HTTP_USER_AGENT'], 0, 200, "...") : null;
$params = [":action" => $action, ":changed" => $changed, ":editor" => $editor, ":timestamp" => $timestamp, ":ip" => $ip, "source_type" => $source_type, "user_agent" => $user_agent];
$sql = "INSERT INTO `%PREFIX%_log` (`id`, `action`, `changed`, `editor`, `timestamp`, `ip`, `source_type`, `user_agent`) VALUES (NULL, :action, :changed, :editor, :timestamp, :ip, :source_type, :user_agent)";
$this->database->exec($sql, false, $params);
$this->tools->profiler_stop();
}
public function logout()
{
try {
$this->log("Logout");
$this->auth->logOut();
$this->auth->destroySession();
setcookie("authenticated", false, time() - 3600);
}
catch (\Delight\Auth\NotLoggedInException $e) {
die('Not logged in');
}
}
public function add_user($email, $name, $username, $password, $phone_number, $birthday, $chief, $driver, $hidden, $disabled, $inserted_by)
{
//TODO: save birthday in db
bdump($birthday);
$this->tools->profiler_start("Add user");
$userId = $this->auth->admin()->createUserWithUniqueUsername($email, $password, $username);
if($userId) {
$hidden = $hidden ? 1 : 0;
$disabled = $disabled ? 1 : 0;
$chief = $chief ? 1 : 0;
$driver = $driver ? 1 : 0;
$sql = "INSERT INTO `%PREFIX%_profiles` (`hidden`, `disabled`, `name`, `phone_number`, `chief`, `driver`) VALUES (:hidden, :disabled, :name, :phone_number, :chief, :driver)";
$this->database->exec($sql, false, [":hidden" => $hidden, ":disabled" => $disabled, ":name" => $name, ":phone_number" => $phone_number, ":chief" => $chief, ":driver" => $driver]);
if($chief == 1) {
$this->auth->admin()->addRoleForUserById($userId, Role::FULL_VIEWER);
}
$this->log("User added", $userId, $inserted_by);
$this->tools->profiler_stop();
return $userId;
} else {
$this->tools->profiler_stop();
return false;
}
}
public function remove_user($id, $removed_by)
{
$this->tools->profiler_start("Remove user");
$this->database->exec("DELETE FROM `%PREFIX%_users` WHERE `id` = :id", true, [":id" => $id], "DELETE FROM `%PREFIX%_profiles` WHERE `id` = :id");
$this->log("User removed", null, $removed_by);
$this->tools->profiler_stop();
}
public function online_time_update($id=null){
$this->tools->profiler_start("Update online timestamp");
if(is_null($id)) $id = $this->auth->getUserId();
$time = time();
$sql = "UPDATE `%PREFIX%_profiles` SET online_time = '$time' WHERE id = '" . $id ."'";
$this->database->exec($sql, true);
bdump(["id" => $id, "time" => $time]);
$this->tools->profiler_stop();
}
}
class crud
{
public $tools = null;
public $database = null;
public $user = null;
public function __construct($tools, $database, $user)
{
$this->tools = $tools;
$this->database = $database;
$this->user = $user;
}
public function increment($increment)
{
bdump($increment);
$sql = "UPDATE `%PREFIX%_profiles` SET `services`= services + 1 WHERE id IN ($increment);";
$this->database->exec($sql, false);
}
public function getIncrement($id)
{
bdump($id);
$sql = "SELECT `increment` FROM `%PREFIX%_services` WHERE `id` = :id";
$increment = $this->database->exec($sql, true, [":id" => $id])[0]['increment'];
bdump($increment);
return $increment;
}
public function decrease($id)
{
$sql = "UPDATE `%PREFIX%_profiles` SET `services`= services - 1 WHERE id IN ({$this->getIncrement($id)});";
$this->database->exec($sql, false);
}
public function increment_trainings($increment)
{
bdump($increment);
$sql = "UPDATE `%PREFIX%_profiles` SET `trainings`= trainings + 1 WHERE id IN ($increment);";
$this->database->exec($sql, false);
}
public function getIncrement_trainings($id)
{
bdump($id);
$sql = "SELECT `increment` FROM `%PREFIX%_trainings` WHERE `id` = :id";
$increment = $this->database->exec($sql, true, [":id" => $id])[0]['increment'];
bdump($increment);
return $increment;
}
public function decrease_trainings($id)
{
$sql = "UPDATE `%PREFIX%_profiles` SET `trainings`= trainings - 1 WHERE id IN ({$this->getIncrement_trainings($id)});";
$this->database->exec($sql, false);
}
public function add_service($date, $code, $beginning, $end, $chief, $drivers, $crew, $place, $notes, $type, $increment, $inserted_by)
{
$drivers = implode(",", $drivers);
bdump($drivers);
$crew = implode(",", $crew);
bdump($crew);
$increment = implode(",", $increment);
bdump($increment);
$date = date('Y-m-d H:i:s', strtotime($date));
$sql = "INSERT INTO `%PREFIX%_services` (`id`, `date`, `code`, `beginning`, `end`, `chief`, `drivers`, `crew`, `place`, `notes`, `type`, `increment`, `inserted_by`) VALUES (NULL, :date, :code, :beginning, :end, :chief, :drivers, :crew, :place, :notes, :type, :increment, :inserted_by);";
$this->database->exec($sql, false, [":date" => $date, ":code" => $code, "beginning" => $beginning, ":end" => $end, ":chief" => $chief, ":drivers" => $drivers, ":crew" => $crew, ":place" => $place, ":notes" => $notes, ":type" => $type, ":increment" => $increment, ":inserted_by" => $inserted_by]);
$this->increment($increment);
$this->user->log("Service added");
}
public function remove_service($id)
{
$this->decrease($id);
$this->database->exec("DELETE FROM `%PREFIX%_services` WHERE `id` = :id", true, [":id" => $id]);
$this->user->log("Service removed");
}
public function edit_service($id, $date, $code, $beginning, $end, $chief, $drivers, $crew, $place, $notes, $type, $increment, $inserted_by)
{
$this->remove_service($id);
$this->add_service($date, $code, $beginning, $end, $chief, $drivers, $crew, $place, $notes, $type, $increment, $inserted_by);
$this->user->log("Service edited");
}
public function add_training($date, $name, $start_time, $end_time, $chief, $crew, $place, $notes, $increment, $inserted_by)
{
$crew = implode(",", $crew);
bdump($crew);
$increment = implode(",", $increment);
bdump($increment);
$date = date('Y-m-d H:i:s', strtotime($date));
$sql = "INSERT INTO `%PREFIX%_trainings` (`id`, `date`, `name`, `beginning`, `end`, `chief`, `crew`, `place`, `notes`, `increment`, `inserted_by`) VALUES (NULL, :date, :name, :start_time, :end_time, :chief, :crew, :place, :notes, :increment, :inserted_by);";
$this->database->exec($sql, false, [":date" => $date, ":name" => $name, "start_time" => $start_time, ":end_time" => $end_time, ":chief" => $chief, ":crew" => $crew, ":place" => $place, ":notes" => $notes, ":increment" => $increment, ":inserted_by" => $inserted_by]);
$this->increment_trainings($increment);
$this->user->log("Training added");
}
public function remove_training($id)
{
$this->decrease_trainings($id);
bdump($id);
$this->database->exec("DELETE FROM `%PREFIX%_trainings` WHERE `id` = :id", true, [":id" => $id]);
$this->user->log("Training removed");
}
public function edit_training($id, $date, $name, $start_time, $end_time, $chief, $crew, $place, $notes, $increment, $inserted_by)
{
$this->remove_training($id);
$this->add_training($date, $name, $start_time, $end_time, $chief, $crew, $place, $notes, $increment, $inserted_by);
$this->user->log("Training edited");
}
}
class translations
{
public $loaded_languages = ["en", "it"];
public $default_language = "en";
public $language = null;
public $client_languages = ["en"];
public $loaded_translations = [];
public $filename = "";
public function client_languages()
{
if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
$client_languages = $_SERVER['HTTP_ACCEPT_LANGUAGE'];
} else {
$client_languages = "en-US;q=0.5,en;q=0.3";
}
if(strpos($client_languages, ';') == false) {
if(strpos($client_languages, '-') !== false) {
return [substr($client_languages, 0, 5)];
} else {
return [substr($client_languages, 0, 2)];
}
} else {
$client_languages = explode(",", $client_languages);
$tmp_languages = [];
foreach($client_languages as $language){
if(strpos($language, ';') == false) {
$tmp_languages[$language] = 1;
} else {
$tmp_languages[explode(";q=", $language)[0]] = (float) explode(";q=", $language)[1];
}
}
arsort($tmp_languages);
return array_keys($tmp_languages);
}
}
public function __construct($force_language)
{
$this->client_languages = $this->client_languages();
if(isset($_COOKIE["forceLanguage"]) && in_array($_COOKIE["forceLanguage"], $this->loaded_languages)){
$this->language = $_COOKIE["forceLanguage"];
} else if($force_language && in_array($force_language, $this->loaded_languages)){
$this->language = $force_language;
} else {
foreach($this->client_languages as $language){
if(in_array($language, $this->loaded_languages) && $this->language == null) {
$this->language = $language;
}
}
if($this->language == null) {
$this->language = "en";
}
}
$file_infos = pathinfo(array_reverse(debug_backtrace())[0]['file']);
if(strpos($file_infos['dirname'], 'resources') !== false) {
$this->filename = "../../translations/".$this->language."/".$file_infos['basename'];
} else {
$this->filename = "translations/".$this->language."/".$file_infos['basename'];
}
if (file_exists($this->filename)) {
$this->loaded_translations = array_merge(include "translations/".$this->language."/base.php", include $this->filename);
} else {
try{
$this->loaded_translations = include "translations/".$this->language."/base.php";
} catch(Exception $e) {
$this->loaded_translations = include "../../translations/".$this->language."/base.php";
}
}
}
public function translate($string)
{
bdump($string);
try {
if (!array_key_exists($string, $this->loaded_translations)) {
throw new Exception('string does not exist');
}
return $this->loaded_translations[$string];
} catch (\Exception $e) {
bdump($this->filename);
bdump($e, $string);
return $string;
}
}
}
$webpack_manifest_path = realpath("resources/dist/manifest.json");
function init_class($enableDebugger=true, $headers=true)
{
global $tools, $database, $user, $crud, $translations, $debugbar;
if(!isset($tools) && !isset($database) && !isset($translations)) {
$database = new database();
$tools = new tools($database->get_option("check_cf_ip"), $enableDebugger);
$user = new user($database, $tools);
$crud = new crud($tools, $database, $user);
$translations = new translations($database->get_option("force_language"));
}
if($headers) {
//TODO adding require-trusted-types-for 'script';
$csp = "default-src 'self' data: *.tile.openstreetmap.org nominatim.openstreetmap.org; connect-src 'self' *.sentry.io nominatim.openstreetmap.org; script-src 'self' 'unsafe-inline' 'unsafe-eval'; img-src 'self' data: *.tile.openstreetmap.org; object-src; style-src 'self' 'unsafe-inline';";
if(defined(SENTRY_CSP_REPORT_URI) && SENTRY_CSP_REPORT_URI !== false){
$csp .= " report-uri ".SENTRY_CSP_REPORT_URI.";";
}
header("Content-Security-Policy: $csp");
header("X-Content-Security-Policy: $csp");
header("X-WebKit-CSP: $csp");
header("X-XSS-Protection: 1; mode=block");
header("X-Content-Type-Options: nosniff");
header("Feature-Policy: autoplay 'none'; camera 'none'; microphone 'none'; payment 'none'");
}
//var_dump($user);
//exit();
if(SENTRY_ENABLED){
Sentry\configureScope(function (Sentry\State\Scope $scope): void {
global $user, $translations;
if($user->authenticated()){
$id = $user->auth->getUserId();
$username = $user->nameById($id);
if($username !== false){
$scope->setUser([
'id' => $id,
'username' => $username
]);
}
}
$scope->setTag('page.locale', $translations->client_languages[0]);
});
} else {
//TODO: add Monolog here
}
if($enableDebugger && $user->requireRole(Role::DEVELOPER)) {
$debugbar = new StandardDebugBar();
bdump(__DIR__);
$dir = str_replace("resources\ajax\\", "", __DIR__).DIRECTORY_SEPARATOR.'debug_storage';
$debugbar->setStorage(new DebugBar\Storage\FileStorage($dir));
$debugbar->addCollector(new DebugBar\DataCollector\PDO\PDOCollector($database->connection));
$debugbar->addCollector(new DebugBar\DataCollector\ConfigCollector($database->options));
} else {
$debugbar = null;
}
function customErrorPage() {
global $webpack_manifest_path;
$error = error_get_last();
if ($error) {
bdump($webpack_manifest_path);
require("error_page.php");
show_error_page(500);
}
}
register_shutdown_function('customErrorPage');
if(isset($_GET["disableSW"])){
setcookie("disableServiceWorkerInstallation", true);
$tools->redirect("?");
} else if(isset($_GET["enableSW"])){
setcookie("disableServiceWorkerInstallation", false, time() - 3600);
setcookie("forceServiceWorkerInstallation", false, time() - 3600);
$tools->redirect("?");
} else if(isset($_GET["forceSW"])){
setcookie("disableServiceWorkerInstallation", false, time() - 3600);
setcookie("forceServiceWorkerInstallation", true);
$tools->redirect("?");
}
}
function t($string, $echo=true)
{
global $translations;
if($echo) {
echo $translations->translate($string);
} else {
return $translations->translate($string);
}
}
function s($string, $echo=true, $htmlAllowed=false, $htmlPurifierOptions=[])
{
global $tools;
if($echo) {
echo $tools->sanitize($string, $htmlAllowed, $htmlPurifierOptions);
} else {
return $tools->sanitize($string, $htmlAllowed, $htmlPurifierOptions);
}
}
function p_start($name=null)
{
global $tools;
$tools->profiler_start($name);
}
function p_stop($name=null)
{
global $tools;
$tools->profiler_stop($name);
}