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*/ && isTelegram /*&& !tweet.possibly_sensitive*/ &&
!flags?.direct && !flags?.direct &&
!flags?.api && !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 = ''; let ivbody = '';

View file

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

View file

@ -15,7 +15,8 @@ function generateCSRFToken() {
export const twitterFetch = async ( export const twitterFetch = async (
url: string, url: string,
event: FetchEvent, event: FetchEvent,
useElongator = typeof TwitterProxy !== 'undefined' && experimentCheck(Experiment.ELONGATOR_BY_DEFAULT), useElongator = typeof TwitterProxy !== 'undefined' &&
experimentCheck(Experiment.ELONGATOR_BY_DEFAULT),
validateFunction: (response: unknown) => boolean validateFunction: (response: unknown) => boolean
): Promise<unknown> => { ): Promise<unknown> => {
let apiAttempts = 0; 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. /* We'll usually only hit this if we get an invalid response from Twitter.
It's uncommon, but it happens */ It's uncommon, but it happens */
console.error('Unknown error while fetching from API', e); console.error('Unknown error while fetching from API', e);
!useElongator && event && !useElongator &&
event &&
event.waitUntil( event.waitUntil(
cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true }) cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true })
); );
@ -158,7 +160,13 @@ export const twitterFetch = async (
} }
// @ts-expect-error This is safe due to optional chaining // @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`); console.log(`nsfw tweet detected, it's elongator time`);
useElongator = true; useElongator = true;
continue; continue;
@ -213,7 +221,8 @@ export const twitterFetch = async (
export const fetchConversation = async ( export const fetchConversation = async (
status: string, status: string,
event: FetchEvent, event: FetchEvent,
useElongator = typeof TwitterProxy !== 'undefined' && experimentCheck(Experiment.ELONGATOR_BY_DEFAULT) useElongator = typeof TwitterProxy !== 'undefined' &&
experimentCheck(Experiment.ELONGATOR_BY_DEFAULT)
): Promise<TweetResultsByRestIdResult> => { ): Promise<TweetResultsByRestIdResult> => {
return (await twitterFetch( return (await twitterFetch(
`${ `${
@ -272,7 +281,7 @@ export const fetchConversation = async (
return true; return true;
} }
if (tweet?.__typename === 'TweetUnavailable') { if (tweet?.__typename === 'TweetUnavailable') {
console.log('generic tweet unavailable error') console.log('generic tweet unavailable error');
return true; return true;
} }
// Final clause for checking if it's valid is if there's errors // 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-csrf-token': csrfToken,
'x-twitter-active-user': 'yes', 'x-twitter-active-user': 'yes',
'x-guest-token': guestToken, 'x-guest-token': guestToken,
'Referer': `${Constants.TWITTER_ROOT}/i/status/${tweet.rest_id}`, 'Referer': `${Constants.TWITTER_ROOT}/i/status/${tweet.rest_id}`
}; };
let translationApiResponse; let translationApiResponse;
@ -45,19 +45,16 @@ export const translateTweet = async (
/* 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 TwitterProxy === 'undefined') { if (typeof 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 TwitterProxy.fetch( translationApiResponse = await TwitterProxy.fetch(url, {
url,
{
method: 'GET', method: 'GET',
headers: headers headers: headers
} });
);
translationResults = (await translationApiResponse.json()) as TranslationPartial; translationResults = (await translationApiResponse.json()) as TranslationPartial;
console.log(`translationResults`, translationResults); console.log(`translationResults`, translationResults);

View file

@ -106,7 +106,9 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => {
${ ${
!isQuote !isQuote
? `<table> ? `<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> <h2>${tweet.author.name}</h2>
<p>@${tweet.author.screen_name}</p> <p>@${tweet.author.screen_name}</p>
<p>${getSocialTextIV(tweet)}</p> <p>${getSocialTextIV(tweet)}</p>
@ -154,8 +156,7 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc
<section class="section-backgroundImage"> <section class="section-backgroundImage">
<figure class="graf--layoutFillWidth"></figure> <figure class="graf--layoutFillWidth"></figure>
</section> </section>
<section class="section--first" style="font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 64px;">${'' <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="${
}If you can see this, your browser is doing something weird with your user agent.<a href="${
tweet.url tweet.url
}">View original post</a> }">View original post</a>
</section> </section>
@ -164,7 +165,7 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc
<p>Instant View ( Beta) - <a href="${tweet.url}">View original</a></p> <p>Instant View ( Beta) - <a href="${tweet.url}">View original</a></p>
${generateTweet(tweet)} ${generateTweet(tweet)}
</article>` </article>`;
return instructions; 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', FINAL_POLL_RESULTS: 'Final results',
ERROR_API_FAIL: 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_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_TWEET_NOT_FOUND: `Sorry, that post doesn't exist :(`,
ERROR_USER_NOT_FOUND: `Sorry, that user 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' && typeof response === 'object' &&
response !== null && response !== null &&
'__typename' in response && '__typename' in response &&
(response.__typename === 'Tweet' || response.__typename === 'TweetWithVisibilityResults') (response.__typename === 'Tweet' ||
response.__typename === 'TweetWithVisibilityResults')
); );
}; };