mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
move bot regex to Constants
This commit is contained in:
parent
a00cc95a3d
commit
ad8d1081c5
2 changed files with 3 additions and 4 deletions
|
@ -18,6 +18,8 @@ export const Constants = {
|
|||
API_DOCS_URL: `https://github.com/dangeredwolf/FixTweet/wiki/API-Home`,
|
||||
TWITTER_ROOT: 'https://twitter.com',
|
||||
TWITTER_API_ROOT: 'https://api.twitter.com',
|
||||
BOT_UA_REGEX:
|
||||
/bot|facebook|embed|got|firefox\/92|curl|wget|go-http|yahoo|generator|whatsapp|preview|link|proxy|vkshare|images|analyzer|index|crawl|spider|python|cfnetwork|node/gi,
|
||||
/* 3 hours */
|
||||
GUEST_TOKEN_MAX_AGE: 3 * 60 * 60,
|
||||
/* Twitter Web App actually uses Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA
|
||||
|
|
|
@ -31,10 +31,7 @@ const statusRequest = async (
|
|||
|
||||
On the very rare off chance someone happens to be using specifically Firefox 92,
|
||||
the http-equiv="refresh" meta tag will ensure an actual human is sent to the destination. */
|
||||
const isBotUA =
|
||||
userAgent.match(
|
||||
/bot|facebook|embed|got|firefox\/92|curl|wget|go-http|yahoo|generator|whatsapp|preview|link|proxy|vkshare|images|analyzer|index|crawl|spider|python|cfnetwork|node/gi
|
||||
) !== null;
|
||||
const isBotUA = userAgent.match(Constants.BOT_UA_REGEX) !== null;
|
||||
|
||||
/* Check if domain is a direct media domain (i.e. d.fxtwitter.com),
|
||||
the tweet is prefixed with /dl/ or /dir/ (for TwitFix interop), or the
|
||||
|
|
Loading…
Add table
Reference in a new issue