Run prettier

This commit is contained in:
dangered wolf 2023-12-08 16:04:52 -05:00
parent 26163178ae
commit 7327ab5c1a
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
9 changed files with 68 additions and 39 deletions

View file

@ -105,10 +105,10 @@ export const handleStatus = async (
!flags?.gallery &&
!flags?.api &&
(status.media?.photos?.[0] || // Force instant view for photos for now https://bugs.telegram.org/c/33679
status.media?.mosaic ||
status.is_note_tweet ||
status.quote ||
status.translation ||
status.media?.mosaic ||
status.is_note_tweet ||
status.quote ||
status.translation ||
flags?.forceInstantView);
/* Force enable IV for archivers */
@ -167,7 +167,7 @@ export const handleStatus = async (
`<link rel="canonical" href="${Constants.TWITTER_ROOT}/${status.author.screen_name}/status/${status.id}"/>`,
`<meta property="og:url" content="${Constants.TWITTER_ROOT}/${status.author.screen_name}/status/${status.id}"/>`,
`<meta property="twitter:site" content="@${status.author.screen_name}"/>`,
`<meta property="twitter:creator" content="@${status.author.screen_name}"/>`,
`<meta property="twitter:creator" content="@${status.author.screen_name}"/>`
];
if (!flags.gallery) {
@ -205,7 +205,7 @@ export const handleStatus = async (
}
}
console.log('translation', status.translation)
console.log('translation', status.translation);
/* This status has a translation attached to it, so we'll render it. */
if (status.translation) {
@ -400,27 +400,24 @@ export const handleStatus = async (
const useCard = status.embed_card === 'tweet' ? status.quote?.embed_card : status.embed_card;
/* Push basic headers relating to author, Tweet text, and site name */
headers.push(
`<meta property="twitter:card" content="${useCard}"/>`
);
headers.push(`<meta property="twitter:card" content="${useCard}"/>`);
if (!flags.gallery) {
headers.push(
`<meta property="og:title" content="${status.author.name} (@${status.author.screen_name})"/>`,
`<meta property="og:description" content="${text}"/>`,
`<meta property="og:site_name" content="${siteName}"/>`,
`<meta property="og:site_name" content="${siteName}"/>`
);
} else {
if (isTelegram) {
headers.push(
`<meta property="og:site_name" content="${status.author.name} (@${status.author.screen_name})"/>`
)
);
} else {
headers.push(
`<meta property="og:title" content="${status.author.name} (@${status.author.screen_name})"/>`
)
);
}
}
@ -442,7 +439,9 @@ export const handleStatus = async (
`<link rel="alternate" href="{base}/owoembed?text={text}{deprecatedFlag}&status={status}&author={author}" type="application/json+oembed" title="{name}">`.format(
{
base: Constants.HOST_URL,
text: flags.gallery ? status.author.name : encodeURIComponent(truncateWithEllipsis(authorText, 255)),
text: flags.gallery
? status.author.name
: encodeURIComponent(truncateWithEllipsis(authorText, 255)),
deprecatedFlag: flags?.deprecated ? '&deprecated=true' : '',
status: encodeURIComponent(statusId),
author: encodeURIComponent(status.author.screen_name || ''),

View file

@ -52,7 +52,9 @@ export const translateStatus = async (
}
try {
const url = `${Constants.TWITTER_ROOT}/i/api/1.1/strato/column/None/tweetId=${tweet.rest_id ?? tweet.legacy?.id_str},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 ?? tweet.legacy?.id_str
},destinationLanguage=None,translationSource=Some(Google),feature=None,timeout=None,onlyCached=None/translation/service/translateTweet`;
console.log(url, headers);
translationApiResponse = (await withTimeout(
(signal: AbortSignal) =>

View file

@ -57,7 +57,6 @@ export async function withTimeout<T>(
}
}
const numberFormat = new Intl.NumberFormat('en-US');
export const formatNumber = (num: number) => numberFormat.format(num);

View file

@ -181,10 +181,14 @@ const processResponse = (instructions: ThreadInstruction[]): GraphQLProcessBucke
if (itemContentType === 'TimelineTweet') {
const entryType = content.itemContent.tweet_results.result.__typename;
if (entryType === 'Tweet') {
bucket.statuses.push(content.itemContent.tweet_results.result as GraphQLTwitterStatus);
bucket.statuses.push(
content.itemContent.tweet_results.result as GraphQLTwitterStatus
);
}
if (entryType === 'TweetWithVisibilityResults') {
bucket.statuses.push(content.itemContent.tweet_results.result.tweet as GraphQLTwitterStatus);
bucket.statuses.push(
content.itemContent.tweet_results.result.tweet as GraphQLTwitterStatus
);
}
} else if (itemContentType === 'TimelineTimelineCursor') {
bucket.cursors.push(content.itemContent as GraphQLTimelineCursor);
@ -197,7 +201,9 @@ const processResponse = (instructions: ThreadInstruction[]): GraphQLProcessBucke
if (itemContentType === 'TimelineTweet') {
const entryType = item.item.itemContent.tweet_results?.result?.__typename;
if (entryType === 'Tweet') {
bucket.statuses.push(item.item.itemContent.tweet_results.result as GraphQLTwitterStatus);
bucket.statuses.push(
item.item.itemContent.tweet_results.result as GraphQLTwitterStatus
);
}
if (entryType === 'TweetWithVisibilityResults') {
bucket.statuses.push(
@ -216,7 +222,10 @@ const processResponse = (instructions: ThreadInstruction[]): GraphQLProcessBucke
return bucket;
};
const findStatusInBucket = (id: string, bucket: GraphQLProcessBucket): GraphQLTwitterStatus | null => {
const findStatusInBucket = (
id: string,
bucket: GraphQLProcessBucket
): GraphQLTwitterStatus | null => {
return bucket.statuses.find(status => (status.rest_id ?? status.legacy?.id_str) === id) ?? null;
};
@ -231,7 +240,8 @@ const findPreviousStatus = (id: string, bucket: GraphQLProcessBucket): number =>
return -1;
}
return bucket.statuses.findIndex(
_status => (_status.rest_id ?? _status.legacy?.id_str) === status.legacy?.in_reply_to_status_id_str
_status =>
(_status.rest_id ?? _status.legacy?.id_str) === status.legacy?.in_reply_to_status_id_str
);
};
@ -322,7 +332,13 @@ export const constructTwitterThread = async (
return { status: null, thread: null, author: null, code: 404 };
}
status = (await buildAPITwitterStatus(c, originalStatus, undefined, false, legacyAPI)) as APITwitterStatus;
status = (await buildAPITwitterStatus(
c,
originalStatus,
undefined,
false,
legacyAPI
)) as APITwitterStatus;
if (status === null) {
return { status: null, thread: null, author: null, code: 404 };
@ -480,7 +496,9 @@ export const constructTwitterThread = async (
};
threadStatuses.forEach(async status => {
socialThread.thread?.push((await buildAPITwitterStatus(c, status, undefined, true, false)) as APITwitterStatus);
socialThread.thread?.push(
(await buildAPITwitterStatus(c, status, undefined, true, false)) as APITwitterStatus
);
});
return socialThread;

View file

@ -9,7 +9,10 @@ export const api = new Hono();
api.use('*', async (c, next) => {
if (!c.req.header('user-agent')) {
c.status(401);
return c.json({"error":"You must identify yourself with a User-Agent header in order to use the FixTweet API. We recommend using a descriptive User-Agent header to identify your app, such as 'MyAwesomeBot/1.0 (+http://example.com/myawesomebot)'. We don\'t track or save what kinds of data you are pulling, but you may be blocked if you send too many requests from an unidentifiable user agent."});
return c.json({
error:
"You must identify yourself with a User-Agent header in order to use the FixTweet API. We recommend using a descriptive User-Agent header to identify your app, such as 'MyAwesomeBot/1.0 (+http://example.com/myawesomebot)'. We don't track or save what kinds of data you are pulling, but you may be blocked if you send too many requests from an unidentifiable user agent."
});
}
await next();
});
@ -28,4 +31,4 @@ api.get('/:handle', profileRequest);
api.get('/:handle/', profileRequest);
/* TODO: Figure out why / won't resolve but * does */
api.get('*', async c => c.redirect(Constants.API_DOCS_URL, 302));
api.get('*', async c => c.redirect(Constants.API_DOCS_URL, 302));

View file

@ -36,14 +36,8 @@ twitter.get('/:endpoint{status(es)?}/:id', twitterStatusRequest);
twitter.get('/:endpoint{status(es)?}/:id/', twitterStatusRequest);
twitter.get('/:endpoint{status(es)?}/:id/:language/', twitterStatusRequest);
twitter.get('/:endpoint{status(es)?}/:id/:language', twitterStatusRequest);
twitter.get(
'/:handle{[0-9a-zA-Z_]+}/:endpoint{status(es)?}/:id/:language',
twitterStatusRequest
);
twitter.get(
'/:handle{[0-9a-zA-Z_]+}/:endpoint{status(es)?}/:id/:language/',
twitterStatusRequest
);
twitter.get('/:handle{[0-9a-zA-Z_]+}/:endpoint{status(es)?}/:id/:language', twitterStatusRequest);
twitter.get('/:handle{[0-9a-zA-Z_]+}/:endpoint{status(es)?}/:id/:language/', twitterStatusRequest);
twitter.get('/:handle{[0-9a-zA-Z_]+}/:endpoint{status(es)?}/:id', twitterStatusRequest);
twitter.get('/:handle{[0-9a-zA-Z_]+}/:endpoint{status(es)?}/:id/', twitterStatusRequest);
twitter.get(

View file

@ -132,7 +132,9 @@ const generateStatusFooter = (status: APIStatus, isQuote = false): string => {
{aboutSection}
`.format({
socialText: getSocialTextIV(status as APITwitterStatus) || '',
viewOriginal: !isQuote ? `<a href="${status.url}">View original post</a>` : notApplicableComment,
viewOriginal: !isQuote
? `<a href="${status.url}">View original post</a>`
: notApplicableComment,
aboutSection: isQuote
? ''
: `<h2>About author</h2>

View file

@ -206,4 +206,4 @@ interface OEmbed {
title?: string | null;
type: 'link';
version: '1.0';
}
}

View file

@ -107,14 +107,26 @@ app.use('*', async (c, next) => {
if (c.req.raw.cf) {
const cf = c.req.raw.cf;
console.log(`Hello from ⛅ ${cf.colo ?? 'UNK'}`);
console.log(`📶 ${cf.httpProtocol ?? 'Unknown HTTP Protocol'} 🏓 ${cf.clientTcpRtt ?? 'N/A'} ms RTT 🔒 ${cf.tlsVersion ?? 'Unencrypted Connection'} (${cf.tlsCipher ?? ''})`)
console.log(`🗺️ ${cf.city ?? 'Unknown City'}, ${cf.regionCode ? (cf.regionCode + ', ') : ''}${cf.country ?? 'Unknown Country'} ${cf.isEUCountry ? '(EU)' : ''}`);
console.log(`🌐 ${c.req.header('x-real-ip') ?? ''} (${cf.asn ? ('AS' + cf.asn) : 'Unknown ASN'}, ${cf.asOrganization ?? 'Unknown Organization'})`);
console.log(
`📶 ${cf.httpProtocol ?? 'Unknown HTTP Protocol'} 🏓 ${cf.clientTcpRtt ?? 'N/A'} ms RTT 🔒 ${
cf.tlsVersion ?? 'Unencrypted Connection'
} (${cf.tlsCipher ?? ''})`
);
console.log(
`🗺️ ${cf.city ?? 'Unknown City'}, ${cf.regionCode ? cf.regionCode + ', ' : ''}${
cf.country ?? 'Unknown Country'
} ${cf.isEUCountry ? '(EU)' : ''}`
);
console.log(
`🌐 ${c.req.header('x-real-ip') ?? ''} (${cf.asn ? 'AS' + cf.asn : 'Unknown ASN'}, ${
cf.asOrganization ?? 'Unknown Organization'
})`
);
} else {
console.log(`🌐 ${c.req.header('x-real-ip') ?? ''}`);
}
console.log('🕵️‍♂️', c.req.header('user-agent'));
console.log('------------------')
console.log('------------------');
await next();
});