Skip to content

Commit

Permalink
refactor: change the way dependencies are wired (#4194)
Browse files Browse the repository at this point in the history
* refactor: change the way dependencies are setup

* lint
  • Loading branch information
dvikan authored Aug 7, 2024
1 parent 6ec9193 commit 4faaa79
Show file tree
Hide file tree
Showing 10 changed files with 91 additions and 79 deletions.
17 changes: 15 additions & 2 deletions bin/cache-clear
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,21 @@

require __DIR__ . '/../lib/bootstrap.php';

$rssBridge = new RssBridge();
$config = [];
if (file_exists(__DIR__ . '/../config.ini.php')) {
$config = parse_ini_file(__DIR__ . '/../config.ini.php', true, INI_SCANNER_TYPED);
if (!$config) {
http_response_code(500);
exit("Error parsing config.ini.php\n");
}
}
Configuration::loadConfiguration($config, getenv());

$cache = RssBridge::getCache();
$logger = new SimpleLogger('rssbridge');

$logger->addHandler(new StreamHandler('php://stderr', Logger::INFO));

$cacheFactory = new CacheFactory($logger);
$cache = $cacheFactory->create();

$cache->clear();
17 changes: 15 additions & 2 deletions bin/cache-prune
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,21 @@

require __DIR__ . '/../lib/bootstrap.php';

$rssBridge = new RssBridge();
$config = [];
if (file_exists(__DIR__ . '/../config.ini.php')) {
$config = parse_ini_file(__DIR__ . '/../config.ini.php', true, INI_SCANNER_TYPED);
if (!$config) {
http_response_code(500);
exit("Error parsing config.ini.php\n");
}
}
Configuration::loadConfiguration($config, getenv());

$cache = RssBridge::getCache();
$logger = new SimpleLogger('rssbridge');

$logger->addHandler(new StreamHandler('php://stderr', Logger::INFO));

$cacheFactory = new CacheFactory($logger);
$cache = $cacheFactory->create();

$cache->prune();
3 changes: 3 additions & 0 deletions caches/ArrayCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

declare(strict_types=1);

/**
* Also known as an in-memory/runtime cache
*/
class ArrayCache implements CacheInterface
{
private array $data = [];
Expand Down
14 changes: 2 additions & 12 deletions docs/04_For_Developers/05_Debug_mode.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<h1 align="center">Warning!</h1>

Enabling debug mode on a public server may result in malicious clients retrieving sensitive data about your server and possibly gaining access to it. Do not enable debug mode on a public server, unless you understand the implications of your doing!
Enabling debug mode on a public server may result in malicious clients retrieving sensitive data about your server and possibly gaining access to it.
Do not enable debug mode on a public server, unless you understand the implications of your doing!

***

Expand All @@ -20,14 +21,3 @@ _Notice_:
* The bridge whitelist still applies! (debug mode does **not** enable all bridges)

RSS-Bridge will give you a visual feedback when debug mode is enabled.

While debug mode is active, RSS-Bridge will write additional data to your servers `error.log`.

Debug mode is controlled by the static class `Debug`. It provides three core functions:

* `Debug::isEnabled()`: Returns `true` if debug mode is enabled.
* `Debug::log($message)`: Adds a message to `error.log`. It takes one parameter, which can be anything.

Example: `Debug::log('Hello World!');`

**Notice**: `Debug::log($message)` calls `Debug::isEnabled()` internally. You don't have to do that manually.
61 changes: 32 additions & 29 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,31 @@

if (version_compare(\PHP_VERSION, '7.4.0') === -1) {
http_response_code(500);
print 'RSS-Bridge requires minimum PHP version 7.4';
exit;
exit("RSS-Bridge requires minimum PHP version 7.4\n");
}

if (! is_readable(__DIR__ . '/lib/bootstrap.php')) {
http_response_code(500);
print 'Unable to read lib/bootstrap.php. Check file permissions.';
exit;
require_once __DIR__ . '/lib/bootstrap.php';

$config = [];
if (file_exists(__DIR__ . '/config.ini.php')) {
$config = parse_ini_file(__DIR__ . '/config.ini.php', true, INI_SCANNER_TYPED);
if (!$config) {
http_response_code(500);
exit("Error parsing config.ini.php\n");
}
}
Configuration::loadConfiguration($config, getenv());

require_once __DIR__ . '/lib/bootstrap.php';
$logger = new SimpleLogger('rssbridge');

set_exception_handler(function (\Throwable $e) {
set_exception_handler(function (\Throwable $e) use ($logger) {
$response = new Response(render(__DIR__ . '/templates/exception.html.php', ['e' => $e]), 500);
$response->send();
RssBridge::getLogger()->error('Uncaught Exception', ['e' => $e]);
$logger->error('Uncaught Exception', ['e' => $e]);
});

set_error_handler(function ($code, $message, $file, $line) {
set_error_handler(function ($code, $message, $file, $line) use ($logger) {
// Consider: ini_set('error_reporting', E_ALL & ~E_DEPRECATED);
if ((error_reporting() & $code) === 0) {
// Deprecation messages and other masked errors are typically ignored here
return false;
Expand All @@ -35,11 +41,12 @@
sanitize_root($file),
$line
);
RssBridge::getLogger()->warning($text);
$logger->warning($text);
// todo: return false to prevent default error handler from running?
});

// There might be some fatal errors which are not caught by set_error_handler() or \Throwable.
register_shutdown_function(function () {
register_shutdown_function(function () use ($logger) {
$error = error_get_last();
if ($error) {
$message = sprintf(
Expand All @@ -49,33 +56,29 @@
sanitize_root($error['file']),
$error['line']
);
RssBridge::getLogger()->error($message);
if (Debug::isEnabled()) {
// This output can interfere with json output etc
// This output is written at the bottom
print sprintf("<pre>%s</pre>\n", e($message));
}
$logger->error($message);
}
});

$errors = Configuration::checkInstallation();
if ($errors) {
http_response_code(500);
print '<pre>' . implode("\n", $errors) . '</pre>';
exit;
$cacheFactory = new CacheFactory($logger);
if (Debug::isEnabled()) {
$logger->addHandler(new StreamHandler('php://stderr', Logger::DEBUG));
$cache = $cacheFactory->create('array');
} else {
$logger->addHandler(new StreamHandler('php://stderr', Logger::INFO));
$cache = $cacheFactory->create();
}

// Consider: ini_set('error_reporting', E_ALL & ~E_DEPRECATED);
$httpClient = new CurlHttpClient();

date_default_timezone_set(Configuration::getConfig('system', 'timezone'));

try {
$rssBridge = new RssBridge();
$rssBridge = new RssBridge($logger, $cache, $httpClient);
$response = $rssBridge->main($argv ?? []);
$response->send();
} catch (\Throwable $e) {
// Probably an exception inside an action
RssBridge::getLogger()->error('Exception in RssBridge::main()', ['e' => $e]);
http_response_code(500);
print render(__DIR__ . '/templates/exception.html.php', ['e' => $e]);
$logger->error('Exception in RssBridge::main()', ['e' => $e]);
$response = new Response(render(__DIR__ . '/templates/exception.html.php', ['e' => $e]), 500);
$response->send();
}
3 changes: 3 additions & 0 deletions lib/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,9 @@ public static function loadConfiguration(array $customConfig = [], array $env =

public static function getConfig(string $section, string $key, $default = null)
{
if (self::$config === []) {
throw new \Exception('Config has not been loaded');
}
return self::$config[strtolower($section)][strtolower($key)] ?? $default;
}

Expand Down
3 changes: 3 additions & 0 deletions lib/Debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ public static function isEnabled(): bool
return false;
}

/**
* @deprecated Use $this->logger->debug()
*/
public static function log($message)
{
$e = new \Exception();
Expand Down
33 changes: 13 additions & 20 deletions lib/RssBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,18 @@

final class RssBridge
{
private static CacheInterface $cache;
private static Logger $logger;
private static CacheInterface $cache;
private static HttpClient $httpClient;

public function __construct()
{
self::$logger = new SimpleLogger('rssbridge');
if (Debug::isEnabled()) {
self::$logger->addHandler(new StreamHandler(Logger::DEBUG));
} else {
self::$logger->addHandler(new StreamHandler(Logger::INFO));
}
self::$httpClient = new CurlHttpClient();
$cacheFactory = new CacheFactory(self::$logger);
if (Debug::isEnabled()) {
self::$cache = $cacheFactory->create('array');
} else {
self::$cache = $cacheFactory->create();
}
public function __construct(
Logger $logger,
CacheInterface $cache,
HttpClient $httpClient
) {
self::$logger = $logger;
self::$cache = $cache;
self::$httpClient = $httpClient;
}

public function main(array $argv = []): Response
Expand Down Expand Up @@ -105,14 +98,14 @@ public function main(array $argv = []): Response
return $response;
}

public static function getCache(): CacheInterface
public static function getLogger(): Logger
{
return self::$cache;
return self::$logger;
}

public static function getLogger(): Logger
public static function getCache(): CacheInterface
{
return self::$logger;
return self::$cache;
}

public static function getHttpClient(): HttpClient
Expand Down
6 changes: 0 additions & 6 deletions lib/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,3 @@
}
}
});

$customConfig = [];
if (file_exists(__DIR__ . '/../config.ini.php')) {
$customConfig = parse_ini_file(__DIR__ . '/../config.ini.php', true, INI_SCANNER_TYPED);
}
Configuration::loadConfiguration($customConfig, getenv());
13 changes: 5 additions & 8 deletions lib/logger.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,12 @@ private function log(int $level, string $message, array $context = []): void

final class StreamHandler
{
private $stream;
private int $level;

public function __construct(int $level = Logger::DEBUG)
public function __construct(string $stream, int $level = Logger::DEBUG)
{
$this->stream = $stream;
$this->level = $level;
}

Expand Down Expand Up @@ -147,13 +149,8 @@ public function __invoke(array $record)
$record['message'],
$context
);
error_log($text);
if ($record['level'] < Logger::ERROR && Debug::isEnabled()) {
// The record level is INFO or WARNING here
// Not a good idea to print here because http headers might not have been sent
print sprintf("<pre>%s</pre>\n", e($text));
}
//$bytes = file_put_contents('/tmp/rss-bridge.log', $text, FILE_APPEND | LOCK_EX);

$bytes = file_put_contents($this->stream, $text, FILE_APPEND | LOCK_EX);
}
}

Expand Down

0 comments on commit 4faaa79

Please sign in to comment.