mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-03 17:40:56 +01:00
Invert forcemosaic -> native multi-image
This commit is contained in:
parent
9866433bee
commit
7008bb18b9
8 changed files with 9 additions and 9 deletions
|
@ -4,7 +4,7 @@ DIRECT_MEDIA_DOMAINS = "d.fxtwitter.com,dl.fxtwitter.com,d.twittpr.com,dl.twittp
|
|||
TEXT_ONLY_DOMAINS = "t.fxtwitter.com,t.twittpr.com,t.fixupx.com"
|
||||
INSTANT_VIEW_DOMAINS = "i.fxtwitter.com,i.twittpr.com,i.fixupx.com"
|
||||
GALLERY_DOMAINS = "g.fxtwitter.com,g.twittpr.com,g.fixupx.com"
|
||||
FORCE_MOSAIC_DOMAINS = "m.fxtwitter.com,m.twittpr.com,m.fixupx.com"
|
||||
NATIVE_MULTI_IMAGE_DOMAINS = "m.fxtwitter.com,m.twittpr.com,m.fixupx.com"
|
||||
MOSAIC_DOMAIN_LIST = "mosaic.fxtwitter.com"
|
||||
API_HOST_LIST = "api.fxtwitter.com,api-canary.fxtwitter.com"
|
||||
HOST_URL = "https://fxtwitter.com"
|
||||
|
|
|
@ -38,7 +38,7 @@ let envVariables = [
|
|||
'TEXT_ONLY_DOMAINS',
|
||||
'INSTANT_VIEW_DOMAINS',
|
||||
'GALLERY_DOMAINS',
|
||||
'FORCE_MOSAIC_DOMAINS',
|
||||
'NATIVE_MULTI_IMAGE_DOMAINS',
|
||||
'HOST_URL',
|
||||
'REDIRECT_URL',
|
||||
'EMBED_URL',
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
"TEXT_ONLY_DOMAINS": "t.fxtwitter.com,t.twittpr.com,t.fixupx.com",
|
||||
"INSTANT_VIEW_DOMAINS": "i.fxtwitter.com,i.twittpr.com,i.fixupx.com",
|
||||
"GALLERY_DOMAINS": "g.fxtwitter.com,g.twittpr.com,g.fixupx.com",
|
||||
"FORCE_MOSAIC_DOMAINS": "m.fxtwitter.com,m.twittpr.com,m.fixupx.com",
|
||||
"NATIVE_MULTI_IMAGE_DOMAINS": "m.fxtwitter.com,m.twittpr.com,m.fixupx.com",
|
||||
"STANDARD_DOMAIN_LIST": "fxtwitter.com,fixupx.com,twittpr.com",
|
||||
"DIRECT_MEDIA_DOMAINS": "d.fxtwitter.com,dl.fxtwitter.com,d.fixupx.com,dl.fixupx.com",
|
||||
"MOSAIC_DOMAIN_LIST": "mosaic.fxtwitter.com",
|
||||
|
|
|
@ -6,7 +6,7 @@ export const Constants = {
|
|||
TEXT_ONLY_DOMAINS: TEXT_ONLY_DOMAINS.split(','),
|
||||
INSTANT_VIEW_DOMAINS: INSTANT_VIEW_DOMAINS.split(','),
|
||||
GALLERY_DOMAINS: GALLERY_DOMAINS.split(','),
|
||||
FORCE_MOSAIC_DOMAINS: FORCE_MOSAIC_DOMAINS.split(','),
|
||||
NATIVE_MULTI_IMAGE_DOMAINS: NATIVE_MULTI_IMAGE_DOMAINS.split(','),
|
||||
MOSAIC_DOMAIN_LIST: MOSAIC_DOMAIN_LIST.split(','),
|
||||
API_HOST_LIST: API_HOST_LIST.split(','),
|
||||
HOST_URL: HOST_URL,
|
||||
|
|
|
@ -291,7 +291,7 @@ export const handleStatus = async (
|
|||
siteName = instructions.siteName;
|
||||
}
|
||||
} else if (media?.mosaic) {
|
||||
if (experimentCheck(Experiment.DISCORD_NATIVE_MULTI_IMAGE, isDiscord) && !flags.forceMosaic) {
|
||||
if (experimentCheck(Experiment.DISCORD_NATIVE_MULTI_IMAGE, isDiscord) && flags.nativeMultiImage) {
|
||||
const photos = status.media?.photos || [];
|
||||
|
||||
photos.forEach(photo => {
|
||||
|
|
|
@ -58,9 +58,9 @@ export const statusRequest = async (c: Context) => {
|
|||
} else if (Constants.GALLERY_DOMAINS.includes(url.hostname)) {
|
||||
console.log('Gallery embed request');
|
||||
flags.gallery = true;
|
||||
} else if (Constants.FORCE_MOSAIC_DOMAINS.includes(url.hostname)) {
|
||||
} else if (Constants.NATIVE_MULTI_IMAGE_DOMAINS.includes(url.hostname)) {
|
||||
console.log('Force mosaic request');
|
||||
flags.forceMosaic = true;
|
||||
flags.nativeMultiImage = true;
|
||||
} else if (prefix === 'dl' || prefix === 'dir') {
|
||||
console.log('Direct media request by path prefix');
|
||||
flags.direct = true;
|
||||
|
|
2
src/types/env.d.ts
vendored
2
src/types/env.d.ts
vendored
|
@ -4,7 +4,7 @@ declare const DIRECT_MEDIA_DOMAINS: string;
|
|||
declare const TEXT_ONLY_DOMAINS: string;
|
||||
declare const INSTANT_VIEW_DOMAINS: string;
|
||||
declare const GALLERY_DOMAINS: string;
|
||||
declare const FORCE_MOSAIC_DOMAINS: string;
|
||||
declare const NATIVE_MULTI_IMAGE_DOMAINS: string;
|
||||
declare const HOST_URL: string;
|
||||
declare const EMBED_URL: string;
|
||||
declare const REDIRECT_URL: string;
|
||||
|
|
2
src/types/types.d.ts
vendored
2
src/types/types.d.ts
vendored
|
@ -10,7 +10,7 @@ type InputFlags = {
|
|||
forceInstantView?: boolean;
|
||||
archive?: boolean;
|
||||
gallery?: boolean;
|
||||
forceMosaic?: boolean;
|
||||
nativeMultiImage?: boolean;
|
||||
};
|
||||
|
||||
interface StatusResponse {
|
||||
|
|
Loading…
Add table
Reference in a new issue