2020-05-08 22:53:21 +00:00
< ? php
namespace EEPROM ;
2024-10-05 16:04:29 +00:00
use Index\Config\Fs\FsConfig ;
2024-11-19 21:29:12 +00:00
use Index\Db\DbBackends ;
2022-07-06 16:58:40 +00:00
2020-05-08 22:53:21 +00:00
define ( 'PRM_STARTUP' , microtime ( true ));
define ( 'PRM_ROOT' , __DIR__ );
define ( 'PRM_CLI' , PHP_SAPI === 'cli' );
define ( 'PRM_DEBUG' , is_file ( PRM_ROOT . '/.debug' ));
define ( 'PRM_PUBLIC' , PRM_ROOT . '/public' );
define ( 'PRM_SOURCE' , PRM_ROOT . '/src' );
2023-10-31 19:54:54 +00:00
define ( 'PRM_MIGRATIONS' , PRM_ROOT . '/database' );
2020-05-08 22:53:21 +00:00
2023-10-21 01:02:04 +00:00
require_once PRM_ROOT . '/vendor/autoload.php' ;
2022-07-06 16:58:40 +00:00
2024-08-04 22:41:45 +00:00
error_reporting ( PRM_DEBUG ? - 1 : 0 );
mb_internal_encoding ( 'UTF-8' );
date_default_timezone_set ( 'GMT' );
2020-05-08 22:53:21 +00:00
2024-10-05 16:04:29 +00:00
$cfg = FsConfig :: fromFile ( PRM_ROOT . '/config.cfg' );
2023-10-31 16:10:32 +00:00
2023-10-31 16:19:58 +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' ));
2020-05-08 22:53:21 +00:00
2024-11-19 21:29:12 +00:00
$db = DbBackends :: create ( $cfg -> getString ( 'database:dsn' , 'null:' ));
2023-10-31 16:10:32 +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-11-07 17:12:47 +00:00
$eeprom = new EEPROMContext ( $cfg , $db );