mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Determine correct content-type for HEAD, OPTIONS, etc (#604)
This commit is contained in:
parent
ae8417cd71
commit
034a9614cc
1 changed files with 9 additions and 4 deletions
|
@ -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('');
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue