Determine correct content-type for HEAD, OPTIONS, etc (#604)

This commit is contained in:
dangered wolf 2024-01-22 19:37:47 -05:00
parent ae8417cd71
commit 034a9614cc
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -20,6 +20,7 @@ export const cacheMiddleware = (): MiddlewareHandler => async (c, next) => {
console.log('cacheUrl', cacheUrl);
let cacheKey: Request;
const returnAsJson = Constants.API_HOST_LIST.includes(cacheUrl.hostname);
try {
cacheKey = new Request(cacheUrl.toString(), request);
@ -74,17 +75,21 @@ export const cacheMiddleware = (): MiddlewareHandler => async (c, next) => {
case 'DELETE':
console.log('Purging cache as requested');
await cache.delete(cacheKey);
return c.text('');
if (returnAsJson) return c.json('');
return c.html('');
/* yes, we do give HEAD */
case 'HEAD':
return c.text('');
if (returnAsJson) return c.json('');
return c.html('');
/* We properly state our OPTIONS when asked */
case 'OPTIONS':
c.header('allow', Constants.RESPONSE_HEADERS.allow);
c.status(204);
return c.text('');
if (returnAsJson) return c.json('');
return c.html('');
default:
c.status(405);
return c.text('');
if (returnAsJson) return c.json('');
return c.html('');
}
};