Run prettier

This commit is contained in:
dangered wolf 2023-08-21 03:40:47 -04:00
parent 86f786b8e5
commit 7c85ac86b0
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
9 changed files with 55 additions and 42 deletions

View file

@ -42,7 +42,11 @@ export const handleStatus = async (
isTelegram /*&& !tweet.possibly_sensitive*/ &&
!flags?.direct &&
!flags?.api &&
(tweet.media?.mosaic || tweet.is_note_tweet || tweet.quote || tweet.translation || flags?.forceInstantView);
(tweet.media?.mosaic ||
tweet.is_note_tweet ||
tweet.quote ||
tweet.translation ||
flags?.forceInstantView);
let ivbody = '';

View file

@ -3,10 +3,10 @@ export enum Experiment {
}
type ExperimentConfig = {
name: string,
description: string,
name: string;
description: string;
percentage: number;
}
};
const Experiments: { [key in Experiment]: ExperimentConfig } = {
[Experiment.ELONGATOR_BY_DEFAULT]: {
@ -14,11 +14,12 @@ const Experiments: { [key in Experiment]: ExperimentConfig } = {
description: 'Enable Elongator by default (guest token lockout bypass)',
percentage: 0.5
}
}
};
export const experimentCheck = (experiment: Experiment, condition = true) => {
console.log(`Checking experiment ${experiment}`)
const experimentEnabled = Experiments[experiment].percentage > Math.random() && condition;
console.log(`Experiment ${experiment} enabled: ${experimentEnabled}`)
console.log(`Checking experiment ${experiment}`);
const experimentEnabled =
Experiments[experiment].percentage > Math.random() && condition;
console.log(`Experiment ${experiment} enabled: ${experimentEnabled}`);
return experimentEnabled;
}
};

View file

@ -15,7 +15,8 @@ function generateCSRFToken() {
export const twitterFetch = async (
url: string,
event: FetchEvent,
useElongator = typeof TwitterProxy !== 'undefined' && experimentCheck(Experiment.ELONGATOR_BY_DEFAULT),
useElongator = typeof TwitterProxy !== 'undefined' &&
experimentCheck(Experiment.ELONGATOR_BY_DEFAULT),
validateFunction: (response: unknown) => boolean
): Promise<unknown> => {
let apiAttempts = 0;
@ -144,7 +145,8 @@ export const twitterFetch = async (
/* We'll usually only hit this if we get an invalid response from Twitter.
It's uncommon, but it happens */
console.error('Unknown error while fetching from API', e);
!useElongator && event &&
!useElongator &&
event &&
event.waitUntil(
cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true })
);
@ -158,7 +160,13 @@ export const twitterFetch = async (
}
// @ts-expect-error This is safe due to optional chaining
if (!wasElongatorDisabled && !useElongator && typeof TwitterProxy !== 'undefined' && (response as TweetResultsByRestIdResult)?.data?.tweetResult?.result?.reason === 'NsfwLoggedOut') {
if (
!wasElongatorDisabled &&
!useElongator &&
typeof TwitterProxy !== 'undefined' &&
(response as TweetResultsByRestIdResult)?.data?.tweetResult?.result?.reason ===
'NsfwLoggedOut'
) {
console.log(`nsfw tweet detected, it's elongator time`);
useElongator = true;
continue;
@ -213,7 +221,8 @@ export const twitterFetch = async (
export const fetchConversation = async (
status: string,
event: FetchEvent,
useElongator = typeof TwitterProxy !== 'undefined' && experimentCheck(Experiment.ELONGATOR_BY_DEFAULT)
useElongator = typeof TwitterProxy !== 'undefined' &&
experimentCheck(Experiment.ELONGATOR_BY_DEFAULT)
): Promise<TweetResultsByRestIdResult> => {
return (await twitterFetch(
`${
@ -272,7 +281,7 @@ export const fetchConversation = async (
return true;
}
if (tweet?.__typename === 'TweetUnavailable') {
console.log('generic tweet unavailable error')
console.log('generic tweet unavailable error');
return true;
}
// Final clause for checking if it's valid is if there's errors

View file

@ -20,7 +20,7 @@ export const translateTweet = async (
'x-csrf-token': csrfToken,
'x-twitter-active-user': 'yes',
'x-guest-token': guestToken,
'Referer': `${Constants.TWITTER_ROOT}/i/status/${tweet.rest_id}`,
'Referer': `${Constants.TWITTER_ROOT}/i/status/${tweet.rest_id}`
};
let translationApiResponse;
@ -45,19 +45,16 @@ export const translateTweet = async (
/* As of August 2023, you can no longer fetch translations with guest token */
if (typeof TwitterProxy === 'undefined') {
return null
return null;
}
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`;
console.log(url, headers);
translationApiResponse = await TwitterProxy.fetch(
url,
{
translationApiResponse = await TwitterProxy.fetch(url, {
method: 'GET',
headers: headers
}
);
});
translationResults = (await translationApiResponse.json()) as TranslationPartial;
console.log(`translationResults`, translationResults);

View file

@ -106,7 +106,9 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => {
${
!isQuote
? `<table>
<img src="${tweet.author.avatar_url?.replace('_200x200', '_400x400')}" alt="${tweet.author.name}'s profile picture" />
<img src="${tweet.author.avatar_url?.replace('_200x200', '_400x400')}" alt="${
tweet.author.name
}'s profile picture" />
<h2>${tweet.author.name}</h2>
<p>@${tweet.author.screen_name}</p>
<p>${getSocialTextIV(tweet)}</p>
@ -154,8 +156,7 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc
<section class="section-backgroundImage">
<figure class="graf--layoutFillWidth"></figure>
</section>
<section class="section--first" style="font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 64px;">${''
}If you can see this, your browser is doing something weird with your user agent.<a href="${
<section class="section--first" style="font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 64px;">${''}If you can see this, your browser is doing something weird with your user agent.<a href="${
tweet.url
}">View original post</a>
</section>
@ -164,7 +165,7 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc
<p>Instant View ( Beta) - <a href="${tweet.url}">View original</a></p>
${generateTweet(tweet)}
</article>`
</article>`;
return instructions;
};

View file

@ -146,7 +146,7 @@ This is caused by Twitter API downtime or a new bug. Try again in a little while
FINAL_POLL_RESULTS: 'Final results',
ERROR_API_FAIL:
"Post failed to load due to an API error. The account may be private or suspended, or there may be another issue :(",
'Post failed to load due to an API error. The account may be private or suspended, or there may be another issue :(',
ERROR_PRIVATE: `Sorry, we can't embed this post because the user is private or suspended :(`,
ERROR_TWEET_NOT_FOUND: `Sorry, that post doesn't exist :(`,
ERROR_USER_NOT_FOUND: `Sorry, that user doesn't exist :(`,

View file

@ -17,6 +17,7 @@ export const isGraphQLTweet = (response: unknown): response is GraphQLTweet => {
typeof response === 'object' &&
response !== null &&
'__typename' in response &&
(response.__typename === 'Tweet' || response.__typename === 'TweetWithVisibilityResults')
(response.__typename === 'Tweet' ||
response.__typename === 'TweetWithVisibilityResults')
);
};