mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
fix(DisplayAction): improve error handling and cache logic (#3558)
* fix(DisplayAction): improve error handling and cache logic * restore prev timeouts * refactor * yup * test: fix unit test * leave twitter client unchanged * leave twitter bridge unchanged
This commit is contained in:
parent
38ca124de0
commit
74635fd752
@ -1,27 +1,38 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
|
||||||
* This file is part of RSS-Bridge, a PHP project capable of generating RSS and
|
|
||||||
* Atom feeds for websites that don't have one.
|
|
||||||
*
|
|
||||||
* For the full license information, please view the UNLICENSE file distributed
|
|
||||||
* with this source code.
|
|
||||||
*
|
|
||||||
* @package Core
|
|
||||||
* @license http://unlicense.org/ UNLICENSE
|
|
||||||
* @link https://github.com/rss-bridge/rss-bridge
|
|
||||||
*/
|
|
||||||
|
|
||||||
class DisplayAction implements ActionInterface
|
class DisplayAction implements ActionInterface
|
||||||
{
|
{
|
||||||
|
private CacheInterface $cache;
|
||||||
|
|
||||||
public function execute(array $request)
|
public function execute(array $request)
|
||||||
{
|
{
|
||||||
if (Configuration::getConfig('system', 'enable_maintenance_mode')) {
|
if (Configuration::getConfig('system', 'enable_maintenance_mode')) {
|
||||||
return new Response('503 Service Unavailable', 503);
|
return new Response('503 Service Unavailable', 503);
|
||||||
}
|
}
|
||||||
|
$this->cache = RssBridge::getCache();
|
||||||
|
$this->cache->setScope('http');
|
||||||
|
$this->cache->setKey($request);
|
||||||
|
// avg timeout of 20m
|
||||||
|
$timeout = 60 * 15 + rand(1, 60 * 10);
|
||||||
|
/** @var Response $cachedResponse */
|
||||||
|
$cachedResponse = $this->cache->loadData($timeout);
|
||||||
|
if ($cachedResponse && !Debug::isEnabled()) {
|
||||||
|
//Logger::info(sprintf('Returning cached (http) response: %s', $cachedResponse->getBody()));
|
||||||
|
return $cachedResponse;
|
||||||
|
}
|
||||||
|
$response = $this->createResponse($request);
|
||||||
|
if (in_array($response->getCode(), [429, 503])) {
|
||||||
|
//Logger::info(sprintf('Storing cached (http) response: %s', $response->getBody()));
|
||||||
|
$this->cache->setScope('http');
|
||||||
|
$this->cache->setKey($request);
|
||||||
|
$this->cache->saveData($response);
|
||||||
|
}
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
|
||||||
|
private function createResponse(array $request)
|
||||||
|
{
|
||||||
$bridgeFactory = new BridgeFactory();
|
$bridgeFactory = new BridgeFactory();
|
||||||
|
|
||||||
$bridgeClassName = $bridgeFactory->createBridgeClassName($request['bridge'] ?? '');
|
$bridgeClassName = $bridgeFactory->createBridgeClassName($request['bridge'] ?? '');
|
||||||
|
|
||||||
$format = $request['format'] ?? null;
|
$format = $request['format'] ?? null;
|
||||||
@ -87,46 +98,36 @@ class DisplayAction implements ActionInterface
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
$cache = RssBridge::getCache();
|
$this->cache->setScope('');
|
||||||
$cache->setScope('');
|
$this->cache->setKey($cache_params);
|
||||||
$cache->setKey($cache_params);
|
|
||||||
|
|
||||||
$items = [];
|
$items = [];
|
||||||
$infos = [];
|
$infos = [];
|
||||||
|
|
||||||
$feed = $cache->loadData($cacheTimeout);
|
$feed = $this->cache->loadData($cacheTimeout);
|
||||||
|
|
||||||
if (
|
if ($feed && !Debug::isEnabled()) {
|
||||||
$feed
|
|
||||||
&& !Debug::isEnabled()
|
|
||||||
) {
|
|
||||||
if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])) {
|
if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])) {
|
||||||
$modificationTime = $cache->getTime();
|
$modificationTime = $this->cache->getTime();
|
||||||
// The client wants to know if the feed has changed since its last check
|
// The client wants to know if the feed has changed since its last check
|
||||||
$modifiedSince = strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']);
|
$modifiedSince = strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']);
|
||||||
if ($modificationTime <= $modifiedSince) {
|
if ($modificationTime <= $modifiedSince) {
|
||||||
$lastModified2 = gmdate('D, d M Y H:i:s ', $modificationTime) . 'GMT';
|
$modificationTimeGMT = gmdate('D, d M Y H:i:s ', $modificationTime);
|
||||||
return new Response('', 304, ['Last-Modified' => $lastModified2]);
|
return new Response('', 304, ['Last-Modified' => $modificationTimeGMT . 'GMT']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (isset($feed['items']) && isset($feed['extraInfos'])) {
|
||||||
isset($feed['items'])
|
|
||||||
&& isset($feed['extraInfos'])
|
|
||||||
) {
|
|
||||||
foreach ($feed['items'] as $item) {
|
foreach ($feed['items'] as $item) {
|
||||||
$items[] = new FeedItem($item);
|
$items[] = new FeedItem($item);
|
||||||
}
|
}
|
||||||
$infos = $feed['extraInfos'];
|
$infos = $feed['extraInfos'];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// At this point we did NOT find the feed in the cache or debug mode is enabled.
|
|
||||||
try {
|
try {
|
||||||
$bridge->setDatas($bridge_params);
|
$bridge->setDatas($bridge_params);
|
||||||
$bridge->collectData();
|
$bridge->collectData();
|
||||||
|
|
||||||
$items = $bridge->getItems();
|
$items = $bridge->getItems();
|
||||||
|
|
||||||
if (isset($items[0]) && is_array($items[0])) {
|
if (isset($items[0]) && is_array($items[0])) {
|
||||||
$feedItems = [];
|
$feedItems = [];
|
||||||
foreach ($items as $item) {
|
foreach ($items as $item) {
|
||||||
@ -141,46 +142,62 @@ class DisplayAction implements ActionInterface
|
|||||||
'icon' => $bridge->getIcon()
|
'icon' => $bridge->getIcon()
|
||||||
];
|
];
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
|
$errorOutput = Configuration::getConfig('error', 'output');
|
||||||
|
$reportLimit = Configuration::getConfig('error', 'report_limit');
|
||||||
if ($e instanceof HttpException) {
|
if ($e instanceof HttpException) {
|
||||||
Logger::warning(sprintf('Exception in DisplayAction(%s): %s', $bridgeClassName, create_sane_exception_message($e)));
|
// Reproduce (and log) these responses regardless of error output and report limit
|
||||||
if ($e->getCode() === 429) {
|
if ($e->getCode() === 429) {
|
||||||
|
Logger::info(sprintf('Exception in DisplayAction(%s): %s', $bridgeClassName, create_sane_exception_message($e)));
|
||||||
|
return new Response('429 Too Many Requests', 429);
|
||||||
|
}
|
||||||
|
if ($e->getCode() === 503) {
|
||||||
|
Logger::info(sprintf('Exception in DisplayAction(%s): %s', $bridgeClassName, create_sane_exception_message($e)));
|
||||||
return new Response('503 Service Unavailable', 503);
|
return new Response('503 Service Unavailable', 503);
|
||||||
}
|
}
|
||||||
} else {
|
// Might want to cache other codes such as 504 Gateway Timeout
|
||||||
|
}
|
||||||
|
if (in_array($errorOutput, ['feed', 'none'])) {
|
||||||
Logger::error(sprintf('Exception in DisplayAction(%s): %s', $bridgeClassName, create_sane_exception_message($e)), ['e' => $e]);
|
Logger::error(sprintf('Exception in DisplayAction(%s): %s', $bridgeClassName, create_sane_exception_message($e)), ['e' => $e]);
|
||||||
}
|
}
|
||||||
|
$errorCount = 1;
|
||||||
// Emit error only if we are passed the error report limit
|
if ($reportLimit > 1) {
|
||||||
$errorCount = self::logBridgeError($bridge->getName(), $e->getCode());
|
$errorCount = $this->logBridgeError($bridge->getName(), $e->getCode());
|
||||||
if ($errorCount >= Configuration::getConfig('error', 'report_limit')) {
|
}
|
||||||
if (Configuration::getConfig('error', 'output') === 'feed') {
|
// Let clients know about the error if we are passed the report limit
|
||||||
// Emit the error as a feed item in a feed so that feed readers can pick it up
|
if ($errorCount >= $reportLimit) {
|
||||||
|
if ($errorOutput === 'feed') {
|
||||||
|
// Render the exception as a feed item
|
||||||
$items[] = $this->createFeedItemFromException($e, $bridge);
|
$items[] = $this->createFeedItemFromException($e, $bridge);
|
||||||
} elseif (Configuration::getConfig('error', 'output') === 'http') {
|
} elseif ($errorOutput === 'http') {
|
||||||
|
// Rethrow so that the main exception handler in RssBridge.php produces an HTTP 500
|
||||||
throw $e;
|
throw $e;
|
||||||
|
} elseif ($errorOutput === 'none') {
|
||||||
|
// Do nothing (produces an empty feed)
|
||||||
|
} else {
|
||||||
|
// Do nothing, unknown error output? Maybe throw exception or validate in Configuration.php
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Unfortunately need to set scope and key again because they might be modified
|
// Unfortunately need to set scope and key again because they might be modified
|
||||||
$cache->setScope('');
|
$this->cache->setScope('');
|
||||||
$cache->setKey($cache_params);
|
$this->cache->setKey($cache_params);
|
||||||
$cache->saveData([
|
$this->cache->saveData([
|
||||||
'items' => array_map(function (FeedItem $item) {
|
'items' => array_map(function (FeedItem $item) {
|
||||||
return $item->toArray();
|
return $item->toArray();
|
||||||
}, $items),
|
}, $items),
|
||||||
'extraInfos' => $infos
|
'extraInfos' => $infos
|
||||||
]);
|
]);
|
||||||
$cache->purgeCache();
|
$this->cache->purgeCache();
|
||||||
}
|
}
|
||||||
|
|
||||||
$format->setItems($items);
|
$format->setItems($items);
|
||||||
$format->setExtraInfos($infos);
|
$format->setExtraInfos($infos);
|
||||||
$lastModified = $cache->getTime();
|
$newModificationTime = $this->cache->getTime();
|
||||||
$format->setLastModified($lastModified);
|
$format->setLastModified($newModificationTime);
|
||||||
$headers = [];
|
$headers = [];
|
||||||
if ($lastModified) {
|
if ($newModificationTime) {
|
||||||
$headers['Last-Modified'] = gmdate('D, d M Y H:i:s ', $lastModified) . 'GMT';
|
$headers['Last-Modified'] = gmdate('D, d M Y H:i:s ', $newModificationTime) . 'GMT';
|
||||||
}
|
}
|
||||||
$headers['Content-Type'] = $format->getMimeType() . '; charset=' . $format->getCharset();
|
$headers['Content-Type'] = $format->getMimeType() . '; charset=' . $format->getCharset();
|
||||||
return new Response($format->stringify(), 200, $headers);
|
return new Response($format->stringify(), 200, $headers);
|
||||||
@ -210,13 +227,12 @@ class DisplayAction implements ActionInterface
|
|||||||
return $item;
|
return $item;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static function logBridgeError($bridgeName, $code)
|
private function logBridgeError($bridgeName, $code)
|
||||||
{
|
{
|
||||||
$cache = RssBridge::getCache();
|
$this->cache->setScope('error_reporting');
|
||||||
$cache->setScope('error_reporting');
|
$this->cache->setkey([$bridgeName . '_' . $code]);
|
||||||
$cache->setkey([$bridgeName . '_' . $code]);
|
$report = $this->cache->loadData();
|
||||||
|
if ($report) {
|
||||||
if ($report = $cache->loadData()) {
|
|
||||||
$report = Json::decode($report);
|
$report = Json::decode($report);
|
||||||
$report['time'] = time();
|
$report['time'] = time();
|
||||||
$report['count']++;
|
$report['count']++;
|
||||||
@ -227,7 +243,7 @@ class DisplayAction implements ActionInterface
|
|||||||
'count' => 1,
|
'count' => 1,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
$cache->saveData(Json::encode($report));
|
$this->cache->saveData(Json::encode($report));
|
||||||
return $report['count'];
|
return $report['count'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ class GoogleSearchBridge extends BridgeAbstract
|
|||||||
const MAINTAINER = 'sebsauvage';
|
const MAINTAINER = 'sebsauvage';
|
||||||
const NAME = 'Google search';
|
const NAME = 'Google search';
|
||||||
const URI = 'https://www.google.com/';
|
const URI = 'https://www.google.com/';
|
||||||
const CACHE_TIMEOUT = 1800; // 30min
|
const CACHE_TIMEOUT = 60 * 30; // 30m
|
||||||
const DESCRIPTION = 'Returns max 100 results from the past year.';
|
const DESCRIPTION = 'Returns max 100 results from the past year.';
|
||||||
|
|
||||||
const PARAMETERS = [[
|
const PARAMETERS = [[
|
||||||
|
@ -63,6 +63,11 @@ final class Response
|
|||||||
return $this->body;
|
return $this->body;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getCode()
|
||||||
|
{
|
||||||
|
return $this->code;
|
||||||
|
}
|
||||||
|
|
||||||
public function getHeaders()
|
public function getHeaders()
|
||||||
{
|
{
|
||||||
return $this->headers;
|
return $this->headers;
|
||||||
|
@ -51,11 +51,13 @@ function get_current_url(): string
|
|||||||
|
|
||||||
function create_sane_exception_message(\Throwable $e): string
|
function create_sane_exception_message(\Throwable $e): string
|
||||||
{
|
{
|
||||||
|
$sanitizedMessage = sanitize_root($e->getMessage());
|
||||||
|
$sanitizedFilepath = sanitize_root($e->getFile());
|
||||||
return sprintf(
|
return sprintf(
|
||||||
'%s: %s in %s line %s',
|
'%s: %s in %s line %s',
|
||||||
get_class($e),
|
get_class($e),
|
||||||
sanitize_root($e->getMessage()),
|
$sanitizedMessage,
|
||||||
sanitize_root($e->getFile()),
|
$sanitizedFilepath,
|
||||||
$e->getLine()
|
$e->getLine()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user