forked from fossar/selfoss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.php
73 lines (61 loc) · 2.05 KB
/
common.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
use Monolog\Logger;
use Monolog\Formatter\LineFormatter;
use Monolog\Handler\StreamHandler;
$autoloader = @include __DIR__ . '/vendor/autoload.php'; // we will show custom error
if ($autoloader === false) {
echo 'The PHP dependencies are missing. Did you run `composer install` in the selfoss directory?';
exit;
}
$f3 = $f3 = Base::instance();
$f3->set('DEBUG', 0);
$f3->set('version', '2.17-SNAPSHOT');
$f3->set('AUTOLOAD', false);
$f3->set('cache', __DIR__ . '/data/cache');
$f3->set('BASEDIR', __DIR__);
$f3->set('LOCALES', __DIR__ . '/public/lang/');
$f3->set('FTRSS_CUSTOM_DATA_DIR', __DIR__ . '/data/fulltextrss/custom');
// read defaults
$f3->config('defaults.ini');
// read config, if it exists
if (file_exists('config.ini')) {
$f3->config('config.ini');
}
// overwrite config with ENV variables
$env_prefix = $f3->get('env_prefix');
foreach ($f3->get('ENV') as $key => $value) {
if (strncasecmp($key, $env_prefix, strlen($env_prefix)) == 0) {
$f3->set(strtolower(substr($key, strlen($env_prefix))), $value);
}
}
// init logger
$log = new Logger('selfoss');
if ($f3->get('logger_level') !== 'NONE') {
$handler = new StreamHandler(__DIR__ . '/data/logs/default.log', $f3->get('logger_level'));
$formatter = new LineFormatter(null, null, true, true);
$formatter->includeStacktraces(true);
$handler->setFormatter($formatter);
$log->pushHandler($handler);
}
$f3->set('logger', $log);
// init error handling
$f3->set('ONERROR',
function(Base $f3) {
$exception = $f3->get('EXCEPTION');
if ($exception) {
\F3::get('logger')->error($exception->getMessage(), ['exception' => $exception]);
} else {
\F3::get('logger')->error($f3->get('ERROR.text'));
}
if (\F3::get('DEBUG') != 0) {
echo $f3->get('lang_error') . ': ';
echo $f3->get('ERROR.text') . "\n";
echo $f3->get('ERROR.trace');
} else {
echo $f3->get('lang_error');
}
}
);
if (\F3::get('DEBUG') != 0) {
ini_set('display_errors', 0);
}