misuzu/misuzu.php

48 lines
1.5 KiB
PHP
Raw Normal View History

<?php
namespace Misuzu;
2024-10-28 18:35:19 +00:00
use Index\Db\DbBackends;
2024-10-05 02:40:29 +00:00
use Index\Config\Db\DbConfig;
use Index\Config\Fs\FsConfig;
2019-09-28 22:38:39 +00:00
define('MSZ_STARTUP', microtime(true));
define('MSZ_ROOT', __DIR__);
define('MSZ_CLI', PHP_SAPI === 'cli');
define('MSZ_DEBUG', is_file(MSZ_ROOT . '/.debug'));
2020-06-07 20:37:03 +00:00
define('MSZ_PUBLIC', MSZ_ROOT . '/public');
define('MSZ_SOURCE', MSZ_ROOT . '/src');
define('MSZ_CONFIG', MSZ_ROOT . '/config');
define('MSZ_TEMPLATES', MSZ_ROOT . '/templates');
define('MSZ_MIGRATIONS', MSZ_ROOT . '/database');
define('MSZ_ASSETS', MSZ_ROOT . '/assets');
require_once MSZ_ROOT . '/vendor/autoload.php';
error_reporting(MSZ_DEBUG ? -1 : 0);
2024-01-24 22:14:48 +00:00
mb_internal_encoding('UTF-8');
date_default_timezone_set('GMT');
2018-05-27 23:24:16 +00:00
2025-01-29 00:25:53 +00:00
$env = FsConfig::fromFile(MSZ_CONFIG . '/config.cfg');
2025-01-29 00:25:53 +00:00
if($env->hasValues('sentry:dsn'))
(function($env) {
\Sentry\init([
2025-01-29 00:25:53 +00:00
'dsn' => $env->getString('dsn'),
'traces_sample_rate' => $env->getFloat('tracesRate', 0.2),
'profiles_sample_rate' => $env->getFloat('profilesRate', 0.2),
]);
set_exception_handler(function(\Throwable $ex) {
\Sentry\captureException($ex);
});
2025-01-29 00:25:53 +00:00
})($env->scopeTo('sentry'));
2025-01-29 00:25:53 +00:00
$db = DbBackends::create($env->getString('database:dsn', 'null:'));
2023-08-31 00:31:11 +00:00
$db->execute('SET SESSION time_zone = \'+00:00\', sql_mode = \'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION\';');
$cfg = new DbConfig($db, 'msz_config');
2023-07-18 21:48:44 +00:00
Mailer::init($cfg->scopeTo('mail'));
2018-10-05 09:14:54 +00:00
2025-01-29 00:25:53 +00:00
$msz = new MisuzuContext($db, $cfg, $env);