mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Run prettier
This commit is contained in:
parent
4bd2c7b9c8
commit
ae8417cd71
5 changed files with 23 additions and 24 deletions
13
src/fetch.ts
13
src/fetch.ts
|
@ -138,13 +138,12 @@ export const twitterFetch = async (
|
||||||
if (useElongator && typeof c.env?.TwitterProxy !== 'undefined') {
|
if (useElongator && typeof c.env?.TwitterProxy !== 'undefined') {
|
||||||
console.log('Fetching using elongator');
|
console.log('Fetching using elongator');
|
||||||
const performanceStart = performance.now();
|
const performanceStart = performance.now();
|
||||||
apiRequest = await withTimeout(
|
apiRequest = await withTimeout((signal: AbortSignal) =>
|
||||||
(signal: AbortSignal) =>
|
c.env?.TwitterProxy.fetch(url, {
|
||||||
c.env?.TwitterProxy.fetch(url, {
|
method: 'GET',
|
||||||
method: 'GET',
|
headers: headers,
|
||||||
headers: headers,
|
signal: signal
|
||||||
signal: signal
|
})
|
||||||
})
|
|
||||||
);
|
);
|
||||||
const performanceEnd = performance.now();
|
const performanceEnd = performance.now();
|
||||||
console.log(`Elongator request successful after ${performanceEnd - performanceStart}ms`);
|
console.log(`Elongator request successful after ${performanceEnd - performanceStart}ms`);
|
||||||
|
|
|
@ -64,13 +64,12 @@ export const translateStatus = async (
|
||||||
tweet.rest_id ?? tweet.legacy?.id_str
|
tweet.rest_id ?? tweet.legacy?.id_str
|
||||||
},destinationLanguage=None,translationSource=Some(Google),feature=None,timeout=None,onlyCached=None/translation/service/translateTweet`;
|
},destinationLanguage=None,translationSource=Some(Google),feature=None,timeout=None,onlyCached=None/translation/service/translateTweet`;
|
||||||
console.log(url, headers);
|
console.log(url, headers);
|
||||||
translationApiResponse = (await withTimeout(
|
translationApiResponse = (await withTimeout((signal: AbortSignal) =>
|
||||||
(signal: AbortSignal) =>
|
c.env?.TwitterProxy.fetch(url, {
|
||||||
c.env?.TwitterProxy.fetch(url, {
|
method: 'GET',
|
||||||
method: 'GET',
|
headers: headers,
|
||||||
headers: headers,
|
signal: signal
|
||||||
signal: signal
|
})
|
||||||
})
|
|
||||||
)) as Response;
|
)) as Response;
|
||||||
translationResults = (await translationApiResponse.json()) as TranslationPartial;
|
translationResults = (await translationApiResponse.json()) as TranslationPartial;
|
||||||
|
|
||||||
|
|
|
@ -58,11 +58,11 @@ export async function withTimeout<T>(
|
||||||
}
|
}
|
||||||
|
|
||||||
export const formatNumber = (num: number) => {
|
export const formatNumber = (num: number) => {
|
||||||
if (num >= 1e6) {
|
if (num >= 1e6) {
|
||||||
return (num / 1e6).toFixed(2) + 'M';
|
return (num / 1e6).toFixed(2) + 'M';
|
||||||
} else if (num >= 1e3) {
|
} else if (num >= 1e3) {
|
||||||
return (num / 1e3).toFixed(1) + 'K';
|
return (num / 1e3).toFixed(1) + 'K';
|
||||||
} else {
|
} else {
|
||||||
return num.toString();
|
return num.toString();
|
||||||
}
|
}
|
||||||
};
|
};
|
|
@ -58,7 +58,7 @@ export const statusRequest = async (c: Context) => {
|
||||||
} else if (Constants.GALLERY_DOMAINS.includes(url.hostname)) {
|
} else if (Constants.GALLERY_DOMAINS.includes(url.hostname)) {
|
||||||
console.log('Gallery embed request');
|
console.log('Gallery embed request');
|
||||||
flags.gallery = true;
|
flags.gallery = true;
|
||||||
} else if (Constants.FORCE_MOSAIC_DOMAINS.includes(url.hostname)) {
|
} else if (Constants.FORCE_MOSAIC_DOMAINS.includes(url.hostname)) {
|
||||||
console.log('Force mosaic request');
|
console.log('Force mosaic request');
|
||||||
flags.forceMosaic = true;
|
flags.forceMosaic = true;
|
||||||
} else if (prefix === 'dl' || prefix === 'dir') {
|
} else if (prefix === 'dl' || prefix === 'dir') {
|
||||||
|
|
|
@ -10,7 +10,8 @@ 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|revoltchat|preview)/gi;
|
const embeddingClientRegex =
|
||||||
|
/(discordbot|telegrambot|facebook|whatsapp|firefox\/92|vkshare|revoltchat|preview)/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".
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue