mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Multiple fixes for testing
This commit is contained in:
parent
d509965a3d
commit
91cadb2fca
6 changed files with 24 additions and 18 deletions
|
@ -17,7 +17,17 @@ export const cacheMiddleware = (): MiddlewareHandler => async (c, next) => {
|
||||||
|
|
||||||
console.log('cacheUrl', cacheUrl);
|
console.log('cacheUrl', cacheUrl);
|
||||||
|
|
||||||
const cacheKey = new Request(cacheUrl.toString(), request);
|
let cacheKey: Request;
|
||||||
|
|
||||||
|
try {
|
||||||
|
cacheKey = new Request(cacheUrl.toString(), request);
|
||||||
|
} catch(e) {
|
||||||
|
/* In Miniflare, you can't really create requests like this, so we ignore caching in the test environment */
|
||||||
|
await next();
|
||||||
|
return c.res.clone();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
const cache = caches.default;
|
const cache = caches.default;
|
||||||
|
|
||||||
switch (request.method) {
|
switch (request.method) {
|
||||||
|
|
10
src/fetch.ts
10
src/fetch.ts
|
@ -24,7 +24,7 @@ export const twitterFetch = async (
|
||||||
url: string,
|
url: string,
|
||||||
useElongator = experimentCheck(
|
useElongator = experimentCheck(
|
||||||
Experiment.ELONGATOR_BY_DEFAULT,
|
Experiment.ELONGATOR_BY_DEFAULT,
|
||||||
typeof c.env.TwitterProxy !== 'undefined'
|
typeof c.env?.TwitterProxy !== 'undefined'
|
||||||
),
|
),
|
||||||
validateFunction: (response: unknown) => boolean,
|
validateFunction: (response: unknown) => boolean,
|
||||||
elongatorRequired = false
|
elongatorRequired = false
|
||||||
|
@ -141,10 +141,10 @@ export const twitterFetch = async (
|
||||||
let apiRequest;
|
let apiRequest;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
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 c.env.TwitterProxy.fetch(url, {
|
apiRequest = await c.env?.TwitterProxy.fetch(url, {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: headers
|
headers: headers
|
||||||
});
|
});
|
||||||
|
@ -189,7 +189,7 @@ export const twitterFetch = async (
|
||||||
if (
|
if (
|
||||||
!wasElongatorDisabled &&
|
!wasElongatorDisabled &&
|
||||||
!useElongator &&
|
!useElongator &&
|
||||||
typeof c.env.TwitterProxy !== 'undefined' &&
|
typeof c.env?.TwitterProxy !== 'undefined' &&
|
||||||
(response as TweetResultsByRestIdResult)?.data?.tweetResult?.result?.reason ===
|
(response as TweetResultsByRestIdResult)?.data?.tweetResult?.result?.reason ===
|
||||||
'NsfwLoggedOut'
|
'NsfwLoggedOut'
|
||||||
) {
|
) {
|
||||||
|
@ -251,7 +251,7 @@ export const fetchUser = async (
|
||||||
c: Context,
|
c: Context,
|
||||||
useElongator = experimentCheck(
|
useElongator = experimentCheck(
|
||||||
Experiment.ELONGATOR_PROFILE_API,
|
Experiment.ELONGATOR_PROFILE_API,
|
||||||
typeof c.env.TwitterProxy !== 'undefined'
|
typeof c.env?.TwitterProxy !== 'undefined'
|
||||||
)
|
)
|
||||||
): Promise<GraphQLUserResponse> => {
|
): Promise<GraphQLUserResponse> => {
|
||||||
return (await twitterFetch(
|
return (await twitterFetch(
|
||||||
|
|
|
@ -46,14 +46,14 @@ export const translateTweet = async (
|
||||||
headers['x-twitter-client-language'] = language;
|
headers['x-twitter-client-language'] = language;
|
||||||
|
|
||||||
/* As of August 2023, you can no longer fetch translations with guest token */
|
/* As of August 2023, you can no longer fetch translations with guest token */
|
||||||
if (typeof c.env.TwitterProxy === 'undefined') {
|
if (typeof c.env?.TwitterProxy === 'undefined') {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const url = `${Constants.TWITTER_ROOT}/i/api/1.1/strato/column/None/tweetId=${tweet.rest_id},destinationLanguage=None,translationSource=Some(Google),feature=None,timeout=None,onlyCached=None/translation/service/translateTweet`;
|
const url = `${Constants.TWITTER_ROOT}/i/api/1.1/strato/column/None/tweetId=${tweet.rest_id},destinationLanguage=None,translationSource=Some(Google),feature=None,timeout=None,onlyCached=None/translation/service/translateTweet`;
|
||||||
console.log(url, headers);
|
console.log(url, headers);
|
||||||
translationApiResponse = await c.env.TwitterProxy.fetch(url, {
|
translationApiResponse = await c.env?.TwitterProxy.fetch(url, {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: headers
|
headers: headers
|
||||||
});
|
});
|
||||||
|
|
|
@ -8,7 +8,7 @@ import { Context } from 'hono';
|
||||||
export const fetchTweetDetail = async (
|
export const fetchTweetDetail = async (
|
||||||
c: Context,
|
c: Context,
|
||||||
status: string,
|
status: string,
|
||||||
useElongator = typeof c.env.TwitterProxy !== 'undefined',
|
useElongator = typeof c.env?.TwitterProxy !== 'undefined',
|
||||||
cursor: string | null = null
|
cursor: string | null = null
|
||||||
): Promise<TweetDetailResult> => {
|
): Promise<TweetDetailResult> => {
|
||||||
return (await twitterFetch(
|
return (await twitterFetch(
|
||||||
|
@ -93,7 +93,7 @@ export const fetchByRestId = async (
|
||||||
c: Context,
|
c: Context,
|
||||||
useElongator = experimentCheck(
|
useElongator = experimentCheck(
|
||||||
Experiment.ELONGATOR_BY_DEFAULT,
|
Experiment.ELONGATOR_BY_DEFAULT,
|
||||||
typeof c.env.TwitterProxy !== 'undefined'
|
typeof c.env?.TwitterProxy !== 'undefined'
|
||||||
)
|
)
|
||||||
): Promise<TweetResultsByRestIdResult> => {
|
): Promise<TweetResultsByRestIdResult> => {
|
||||||
return (await twitterFetch(
|
return (await twitterFetch(
|
||||||
|
@ -287,7 +287,7 @@ export const constructTwitterThread = async (
|
||||||
Also - dirty hack. Right now, TweetDetail requests aren't working with language and I haven't figured out why.
|
Also - dirty hack. Right now, TweetDetail requests aren't working with language and I haven't figured out why.
|
||||||
I'll figure out why eventually, but for now just don't use TweetDetail for this. */
|
I'll figure out why eventually, but for now just don't use TweetDetail for this. */
|
||||||
if (
|
if (
|
||||||
typeof c.env.TwitterProxy !== 'undefined' &&
|
typeof c.env?.TwitterProxy !== 'undefined' &&
|
||||||
!language &&
|
!language &&
|
||||||
(experimentCheck(Experiment.TWEET_DETAIL_API) || processThread)
|
(experimentCheck(Experiment.TWEET_DETAIL_API) || processThread)
|
||||||
) {
|
) {
|
||||||
|
|
7
src/types/env.d.ts
vendored
7
src/types/env.d.ts
vendored
|
@ -12,9 +12,4 @@ declare const MOSAIC_DOMAIN_LIST: string;
|
||||||
declare const API_HOST_LIST: string;
|
declare const API_HOST_LIST: string;
|
||||||
|
|
||||||
declare const SENTRY_DSN: string;
|
declare const SENTRY_DSN: string;
|
||||||
declare const RELEASE_NAME: string;
|
declare const RELEASE_NAME: string;
|
||||||
|
|
||||||
declare const TEST: boolean | undefined;
|
|
||||||
|
|
||||||
declare const TwitterProxy: Fetcher;
|
|
||||||
declare const AnalyticsEngine: AnalyticsEngineDataset;
|
|
|
@ -52,7 +52,8 @@ if (SENTRY_DSN) {
|
||||||
allowedSearchParams: /(.*)/
|
allowedSearchParams: /(.*)/
|
||||||
},
|
},
|
||||||
|
|
||||||
// integrations: [new RewriteFrames({ root: '/' }) as any],
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
|
integrations: [new RewriteFrames({ root: '/' }) as any],
|
||||||
release: RELEASE_NAME
|
release: RELEASE_NAME
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue