2022-07-03 23:14:15 +00:00
|
|
|
<?php
|
|
|
|
namespace Awaki;
|
|
|
|
|
|
|
|
use Index\Environment;
|
|
|
|
use Index\Data\ConnectionFailedException;
|
|
|
|
use Index\Data\DbTools;
|
2023-10-21 14:21:02 +00:00
|
|
|
use Syokuhou\SharpConfig;
|
2022-07-03 23:14:15 +00:00
|
|
|
|
|
|
|
define('AWK_STARTUP', microtime(true));
|
|
|
|
define('AWK_ROOT', __DIR__);
|
|
|
|
define('AWK_DEBUG', is_file(AWK_ROOT . '/.debug'));
|
|
|
|
define('AWK_DIR_SRC', AWK_ROOT . '/src');
|
|
|
|
define('AWK_DIR_PUB', AWK_ROOT . '/public');
|
2023-01-07 21:16:49 +00:00
|
|
|
define('AWK_DIR_DBM', AWK_ROOT . '/database');
|
2022-07-03 23:14:15 +00:00
|
|
|
|
2023-10-21 14:16:40 +00:00
|
|
|
require_once AWK_ROOT . '/vendor/autoload.php';
|
2022-07-03 23:14:15 +00:00
|
|
|
|
|
|
|
Environment::setDebug(AWK_DEBUG);
|
|
|
|
|
2023-12-15 02:19:17 +00:00
|
|
|
$config = SharpConfig::fromFile(AWK_ROOT . '/awaki.cfg');
|
2022-07-03 23:14:15 +00:00
|
|
|
|
2023-12-15 01:00:31 +00:00
|
|
|
if($config->hasValues('sentry:dsn'))
|
|
|
|
(function($cfg) {
|
|
|
|
\Sentry\init([
|
|
|
|
'dsn' => $cfg->getString('dsn'),
|
|
|
|
'traces_sample_rate' => $cfg->getFloat('tracesRate', 0.2),
|
|
|
|
'profiles_sample_rate' => $cfg->getFloat('profilesRate', 0.2),
|
|
|
|
]);
|
|
|
|
|
|
|
|
set_exception_handler(function(\Throwable $ex) {
|
|
|
|
\Sentry\captureException($ex);
|
|
|
|
});
|
|
|
|
})($config->scopeTo('sentry'));
|
|
|
|
|
2023-12-15 02:20:49 +00:00
|
|
|
$db = DbTools::create($config->getString('database:dsn', 'null:'));
|
2023-12-15 02:19:17 +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\';');
|
2023-01-07 19:13:09 +00:00
|
|
|
|
2024-05-22 21:56:39 +00:00
|
|
|
$awk = new AwakiContext($db, $config);
|