mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 19:10:54 +01:00
Don't duplicate embedding client regex
This commit is contained in:
parent
00e5243305
commit
bbe3424499
1 changed files with 4 additions and 15 deletions
|
@ -10,6 +10,7 @@ import { twitter } from './realms/twitter/router';
|
||||||
import { cacheMiddleware } from './caches';
|
import { cacheMiddleware } from './caches';
|
||||||
|
|
||||||
const noCache = 'max-age=0, no-cache, no-store, must-revalidate';
|
const noCache = 'max-age=0, no-cache, no-store, must-revalidate';
|
||||||
|
const embeddingClientRegex = /(discordbot|telegrambot|facebook|whatsapp|firefox\/92|vkshare)/gi;
|
||||||
|
|
||||||
/* This is the root app which contains route trees for multiple "realms".
|
/* This is the root app which contains route trees for multiple "realms".
|
||||||
|
|
||||||
|
@ -84,11 +85,7 @@ app.onError((err, c) => {
|
||||||
errorCode = 504;
|
errorCode = 504;
|
||||||
}
|
}
|
||||||
/* We return it as a 200 so embedded applications can display the error */
|
/* We return it as a 200 so embedded applications can display the error */
|
||||||
if (
|
if (c.req.header('User-Agent')?.match(embeddingClientRegex)) {
|
||||||
c.req
|
|
||||||
.header('User-Agent')
|
|
||||||
?.match(/(discordbot|telegrambot|facebook|whatsapp|firefox\/92|vkshare)/gi)
|
|
||||||
) {
|
|
||||||
errorCode = 200;
|
errorCode = 200;
|
||||||
}
|
}
|
||||||
c.status(errorCode);
|
c.status(errorCode);
|
||||||
|
@ -139,11 +136,7 @@ app.route(`/twitter`, twitter);
|
||||||
app.all('/error', async c => {
|
app.all('/error', async c => {
|
||||||
c.header('cache-control', noCache);
|
c.header('cache-control', noCache);
|
||||||
|
|
||||||
if (
|
if (c.req.header('User-Agent')?.match(embeddingClientRegex)) {
|
||||||
c.req
|
|
||||||
.header('User-Agent')
|
|
||||||
?.match(/(discordbot|telegrambot|facebook|whatsapp|firefox\/92|vkshare)/gi)
|
|
||||||
) {
|
|
||||||
c.status(200);
|
c.status(200);
|
||||||
return c.html(Strings.ERROR_HTML);
|
return c.html(Strings.ERROR_HTML);
|
||||||
}
|
}
|
||||||
|
@ -166,11 +159,7 @@ export default {
|
||||||
errorCode = 504;
|
errorCode = 504;
|
||||||
}
|
}
|
||||||
/* We return it as a 200 so embedded applications can display the error */
|
/* We return it as a 200 so embedded applications can display the error */
|
||||||
if (
|
if (request.headers.get('user-agent')?.match(embeddingClientRegex)) {
|
||||||
request.headers
|
|
||||||
.get('user-agent')
|
|
||||||
?.match(/(discordbot|telegrambot|facebook|whatsapp|firefox\/92|vkshare)/gi)
|
|
||||||
) {
|
|
||||||
errorCode = 200;
|
errorCode = 200;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue