uiharu/uiharu.php

38 lines
1.1 KiB
PHP
Raw Normal View History

2022-07-14 20:42:37 +00:00
<?php
namespace Uiharu;
use Index\Cache\CacheBackends;
use Index\Config\Fs\FsConfig;
2022-07-14 20:42:37 +00:00
define('UIH_STARTUP', microtime(true));
define('UIH_ROOT', __DIR__);
define('UIH_DEBUG', is_file(UIH_ROOT . '/.debug'));
define('UIH_PUBLIC', UIH_ROOT . '/public');
define('UIH_SOURCE', UIH_ROOT . '/src');
define('UIH_LIBRARY', UIH_ROOT . '/lib');
define('UIH_VERSION', '20241023');
2022-07-14 20:42:37 +00:00
2023-10-21 14:35:09 +00:00
require_once UIH_ROOT . '/vendor/autoload.php';
2024-08-04 21:54:10 +00:00
error_reporting(UIH_DEBUG ? -1 : 0);
mb_internal_encoding('UTF-8');
date_default_timezone_set('GMT');
2022-07-14 20:42:37 +00:00
$cfg = FsConfig::fromFile(UIH_ROOT . '/uiharu.cfg');
2022-07-14 20:42:37 +00:00
2023-12-15 01:40:20 +00:00
if($cfg->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);
});
})($cfg->scopeTo('sentry'));
$cache = CacheBackends::create($cfg->getString('cache:dsn', 'array:'));
$ctx = new UihContext($cache, $cfg);