mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 18:15:28 +03:00
27b3d7c34e
* feat: improve logging and error handling * trim absolute path from file name * fix: suppress php errors from xml parsing * fix: respect the error reporting level in the custom error handler * feat: dont log error which is produced by bots * ignore error about invalid bridge name * upgrade bridge exception from warning to error * remove remnants of using phps builin error handler * move responsibility of printing php error from logger to error handler * feat: include url in log record context * fix: always include url in log record contect Also ignore more non-interesting exceptions. * more verbose httpexception * fix * fix
65 lines
2 KiB
PHP
65 lines
2 KiB
PHP
<?php
|
|
|
|
final class RssBridge
|
|
{
|
|
public function main(array $argv = [])
|
|
{
|
|
if ($argv) {
|
|
parse_str(implode('&', array_slice($argv, 1)), $cliArgs);
|
|
$request = $cliArgs;
|
|
} else {
|
|
$request = $_GET;
|
|
}
|
|
|
|
try {
|
|
$this->run($request);
|
|
} catch (\Throwable $e) {
|
|
Logger::error('Exception in main', ['e' => $e]);
|
|
http_response_code(500);
|
|
print render('error.html.php', [
|
|
'message' => create_sane_exception_message($e),
|
|
'stacktrace' => create_sane_stacktrace($e),
|
|
]);
|
|
}
|
|
}
|
|
|
|
private function run($request): void
|
|
{
|
|
Configuration::verifyInstallation();
|
|
|
|
$customConfig = [];
|
|
if (file_exists(__DIR__ . '/../config.ini.php')) {
|
|
$customConfig = parse_ini_file(__DIR__ . '/../config.ini.php', true, INI_SCANNER_TYPED);
|
|
}
|
|
Configuration::loadConfiguration($customConfig, getenv());
|
|
|
|
set_error_handler(function ($code, $message, $file, $line) {
|
|
if ((error_reporting() & $code) === 0) {
|
|
return false;
|
|
}
|
|
$text = sprintf('%s at %s line %s', $message, trim_path_prefix($file), $line);
|
|
Logger::warning($text);
|
|
if (Debug::isEnabled()) {
|
|
print sprintf('<pre>%s</pre>', $text);
|
|
}
|
|
});
|
|
|
|
date_default_timezone_set(Configuration::getConfig('system', 'timezone'));
|
|
|
|
$authenticationMiddleware = new AuthenticationMiddleware();
|
|
if (Configuration::getConfig('authentication', 'enable')) {
|
|
$authenticationMiddleware();
|
|
}
|
|
|
|
foreach ($request as $key => $value) {
|
|
if (!is_string($value)) {
|
|
throw new \Exception("Query parameter \"$key\" is not a string.");
|
|
}
|
|
}
|
|
|
|
$actionFactory = new ActionFactory();
|
|
$action = $request['action'] ?? 'Frontpage';
|
|
$action = $actionFactory->create($action);
|
|
$action->execute($request);
|
|
}
|
|
}
|