misuzu/misuzu.php

48 lines
1.3 KiB
PHP
Raw Normal View History

<?php
namespace Misuzu;
2022-02-26 01:27:52 +00:00
use Index\Environment;
use Index\Data\DbTools;
2023-01-01 20:23:53 +00:00
use Misuzu\Config\DbConfig;
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';
2022-02-26 01:27:52 +00:00
Environment::setDebug(MSZ_DEBUG);
mb_internal_encoding('utf-8');
date_default_timezone_set('utc');
2018-05-27 23:24:16 +00:00
require_once MSZ_ROOT . '/utility.php';
require_once MSZ_SOURCE . '/url.php';
2020-06-07 20:37:03 +00:00
$dbConfig = parse_ini_file(MSZ_CONFIG . '/config.ini', true, INI_SCANNER_TYPED);
if(empty($dbConfig)) {
echo 'Database config is missing.';
exit;
}
define('MSZ_DB_INIT', '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-09-28 22:38:39 +00:00
$db = DbTools::create($dbConfig['dsn']);
$db->execute(MSZ_DB_INIT);
DB::init(DbTools::parse($dbConfig['dsn']));
DB::exec(MSZ_DB_INIT);
2023-01-01 20:23:53 +00:00
$cfg = new DbConfig($db);
2023-07-18 21:48:44 +00:00
Mailer::init($cfg->scopeTo('mail'));
2018-10-05 09:14:54 +00:00
$msz = new MisuzuContext($db, $cfg);