mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-04 10:04:54 +02:00
fix: cache 400 and 404, and refactor token auth (#4388)
* fix(cache): also cache 400 and 404 responses * refactor(token_auth)
This commit is contained in:
parent
be51ba17df
commit
3fc38c15a3
6 changed files with 22 additions and 13 deletions
|
@ -13,7 +13,7 @@ class CacheMiddleware implements Middleware
|
|||
|
||||
public function __invoke(Request $request, $next): Response
|
||||
{
|
||||
$action = $request->attribute('action');
|
||||
$action = $request->getAttribute('action');
|
||||
|
||||
if ($action !== 'DisplayAction') {
|
||||
// We only cache DisplayAction (for now)
|
||||
|
@ -43,9 +43,14 @@ class CacheMiddleware implements Middleware
|
|||
/** @var Response $response */
|
||||
$response = $next($request);
|
||||
|
||||
if (in_array($response->getCode(), [403, 429, 500, 503])) {
|
||||
if ($response->getCode() === 200) {
|
||||
// Do nothing because DisplayAction has already cached this on $cacheKey
|
||||
} elseif (in_array($response->getCode(), [400, 403, 404, 429, 500, 503])) {
|
||||
// Cache these responses for about ~10 mins on average
|
||||
$this->cache->set($cacheKey, $response, 60 * 5 + rand(1, 60 * 10));
|
||||
} else {
|
||||
// Should never happen
|
||||
$this->cache->set($cacheKey, $response, 60 * 5);
|
||||
}
|
||||
|
||||
// For 1% of requests, prune cache
|
||||
|
|
|
@ -10,20 +10,24 @@ class TokenAuthenticationMiddleware implements Middleware
|
|||
return $next($request);
|
||||
}
|
||||
|
||||
// Always add token to request attribute
|
||||
$request = $request->withAttribute('token', $request->get('token'));
|
||||
$token = $request->get('token');
|
||||
|
||||
if (! $request->attribute('token')) {
|
||||
if (! $token) {
|
||||
return new Response(render(__DIR__ . '/../templates/token.html.php', [
|
||||
'message' => 'Missing token',
|
||||
'message' => 'Missing token',
|
||||
'token' => '',
|
||||
]), 401);
|
||||
}
|
||||
if (! hash_equals(Configuration::getConfig('authentication', 'token'), $request->attribute('token'))) {
|
||||
|
||||
if (! hash_equals(Configuration::getConfig('authentication', 'token'), $token)) {
|
||||
return new Response(render(__DIR__ . '/../templates/token.html.php', [
|
||||
'message' => 'Invalid token',
|
||||
'message' => 'Invalid token',
|
||||
'token' => $token,
|
||||
]), 401);
|
||||
}
|
||||
|
||||
$request = $request->withAttribute('token', $token);
|
||||
|
||||
return $next($request);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue