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