2017-12-16 19:17:29 +00:00
|
|
|
<?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
|
|
|
|
2018-09-16 19:45:40 +00:00
|
|
|
define('MSZ_STARTUP', microtime(true));
|
2018-10-04 20:30:55 +00:00
|
|
|
define('MSZ_ROOT', __DIR__);
|
2019-12-06 01:04:10 +00:00
|
|
|
define('MSZ_CLI', PHP_SAPI === 'cli');
|
2018-10-04 20:30:55 +00:00
|
|
|
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');
|
2023-01-07 04:15:19 +00:00
|
|
|
define('MSZ_MIGRATIONS', MSZ_ROOT . '/database');
|
2023-07-15 23:58:17 +00:00
|
|
|
define('MSZ_ASSETS', MSZ_ROOT . '/assets');
|
2019-04-30 20:55:12 +00:00
|
|
|
|
2023-07-21 18:58:37 +00:00
|
|
|
require_once MSZ_ROOT . '/vendor/autoload.php';
|
2018-09-16 19:45:40 +00:00
|
|
|
|
2024-08-04 21:37:12 +00:00
|
|
|
error_reporting(MSZ_DEBUG ? -1 : 0);
|
2024-01-24 22:14:48 +00:00
|
|
|
mb_internal_encoding('UTF-8');
|
2024-08-04 21:37:12 +00:00
|
|
|
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');
|
2023-09-10 20:46:58 +00:00
|
|
|
|
2025-01-29 00:25:53 +00:00
|
|
|
if($env->hasValues('sentry:dsn'))
|
|
|
|
(function($env) {
|
2023-10-21 23:45:40 +00:00
|
|
|
\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),
|
2023-10-21 23:45:40 +00:00
|
|
|
]);
|
2023-09-10 20:46:58 +00:00
|
|
|
|
2023-10-21 23:45:40 +00:00
|
|
|
set_exception_handler(function(\Throwable $ex) {
|
|
|
|
\Sentry\captureException($ex);
|
|
|
|
});
|
2025-01-29 00:25:53 +00:00
|
|
|
})($env->scopeTo('sentry'));
|
2018-09-16 21:03:56 +00:00
|
|
|
|
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\';');
|
2019-08-14 19:40:36 +00:00
|
|
|
|
2023-10-20 22:29:28 +00:00
|
|
|
$cfg = new DbConfig($db, 'msz_config');
|
2018-03-14 01:39:02 +00:00
|
|
|
|
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);
|