Prettier and tweaks

This commit is contained in:
dangered wolf 2023-09-10 19:15:48 -04:00
parent e880cc7c37
commit e36b94bb0b
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
9 changed files with 100 additions and 85 deletions

View file

@ -12,5 +12,8 @@
}, },
"env": { "env": {
"es6": true "es6": true
},
"parserOptions": {
"sourceType": "module"
} }
} }

View file

@ -1,24 +1,16 @@
import { sentryEsbuildPlugin } from "@sentry/esbuild-plugin"; import { sentryEsbuildPlugin } from '@sentry/esbuild-plugin';
import { config } from 'dotenv'; import { config } from 'dotenv';
import { execSync } from 'child_process'; import { execSync } from 'child_process';
import * as esbuild from 'esbuild' import * as esbuild from 'esbuild';
import fs from 'fs'; import fs from 'fs';
config(); config();
const gitCommit = execSync('git rev-parse --short HEAD') const gitCommit = execSync('git rev-parse --short HEAD').toString().trim();
.toString() const gitCommitFull = execSync('git rev-parse HEAD').toString().trim();
.trim(); const gitUrl = execSync('git remote get-url origin').toString().trim();
const gitCommitFull = execSync('git rev-parse HEAD') const gitBranch = execSync('git rev-parse --abbrev-ref HEAD').toString().trim();
.toString()
.trim();
const gitUrl = execSync('git remote get-url origin')
.toString()
.trim();
const gitBranch = execSync('git rev-parse --abbrev-ref HEAD')
.toString()
.trim();
let workerName = 'fixtweet'; let workerName = 'fixtweet';
@ -29,13 +21,15 @@ try {
.readFileSync('wrangler.toml') .readFileSync('wrangler.toml')
.toString() .toString()
.match(/name ?= ?"(.+?)"/)[1]; .match(/name ?= ?"(.+?)"/)[1];
} catch(e) { } catch (e) {
console.error(`Error reading wrangler.toml to find worker name, using 'fixtweet' instead.`) console.error(
`Error reading wrangler.toml to find worker name, using 'fixtweet' instead.`
);
} }
const releaseName = `${workerName}-${gitBranch}-${gitCommit}-${new Date() const releaseName = `${workerName}-${gitBranch}-${gitCommit}-${new Date()
.toISOString() .toISOString()
.substring(0, 19)}`; .substring(0, 19)}`;
let envVariables = [ let envVariables = [
'BRANDING_NAME', 'BRANDING_NAME',
@ -53,7 +47,6 @@ let envVariables = [
'DEPRECATED_DOMAIN_EPOCH' 'DEPRECATED_DOMAIN_EPOCH'
]; ];
// Create defines for all environment variables // Create defines for all environment variables
let defines = {}; let defines = {};
for (let envVar of envVariables) { for (let envVar of envVariables) {
@ -63,7 +56,7 @@ for (let envVar of envVariables) {
defines['RELEASE_NAME'] = `"${releaseName}"`; defines['RELEASE_NAME'] = `"${releaseName}"`;
await esbuild.build({ await esbuild.build({
entryPoints: ["src/worker.ts"], entryPoints: ['src/worker.ts'],
sourcemap: 'external', sourcemap: 'external',
outdir: 'dist', outdir: 'dist',
minify: true, minify: true,
@ -87,8 +80,8 @@ await esbuild.build({
// Auth tokens can be obtained from // Auth tokens can be obtained from
// https://sentry.io/orgredirect/organizations/:orgslug/settings/auth-tokens/ // https://sentry.io/orgredirect/organizations/:orgslug/settings/auth-tokens/
authToken: process.env.SENTRY_AUTH_TOKEN, authToken: process.env.SENTRY_AUTH_TOKEN
}), })
], ],
define: defines define: defines

View file

@ -330,10 +330,6 @@ export const handleStatus = async (
} }
} }
if (!flags?.isXDomain) {
siteName = Strings.X_DOMAIN_NOTICE;
}
/* Notice that user is using deprecated domain */ /* Notice that user is using deprecated domain */
if (flags?.deprecated) { if (flags?.deprecated) {
siteName = Strings.DEPRECATED_DOMAIN_NOTICE; siteName = Strings.DEPRECATED_DOMAIN_NOTICE;
@ -357,7 +353,7 @@ export const handleStatus = async (
`<meta property="og:site_name" content="${siteName}"/>`, `<meta property="og:site_name" content="${siteName}"/>`,
`<meta property="twitter:card" content="${ `<meta property="twitter:card" content="${
tweet.quote?.twitter_card || tweet.twitter_card tweet.quote?.twitter_card || tweet.twitter_card
}"/>`, }"/>`
); );
/* Special reply handling if authorText is not overriden */ /* Special reply handling if authorText is not overriden */
@ -374,7 +370,8 @@ export const handleStatus = async (
/* The additional oembed is pulled by Discord to enable improved embeds. /* The additional oembed is pulled by Discord to enable improved embeds.
Telegram does not use this. */ Telegram does not use this. */
headers.push( headers.push(
`<link rel="alternate" href="{base}/owoembed?text={text}{deprecatedFlag}&status={status}&author={author}&useXbranding={useXBranding}" type="application/json+oembed" title="{name}">`.format({ `<link rel="alternate" href="{base}/owoembed?text={text}{deprecatedFlag}&status={status}&author={author}&useXbranding={useXBranding}" type="application/json+oembed" title="{name}">`.format(
{
base: Constants.HOST_URL, base: Constants.HOST_URL,
text: encodeURIComponent(truncateWithEllipsis(authorText, 250)), text: encodeURIComponent(truncateWithEllipsis(authorText, 250)),
deprecatedFlag: flags?.deprecated ? '&deprecated=true' : '', deprecatedFlag: flags?.deprecated ? '&deprecated=true' : '',
@ -382,7 +379,8 @@ export const handleStatus = async (
author: encodeURIComponent(tweet.author?.screen_name || ''), author: encodeURIComponent(tweet.author?.screen_name || ''),
useXBranding: flags?.isXDomain ? 'true' : 'false', useXBranding: flags?.isXDomain ? 'true' : 'false',
name: tweet.author.name || '' name: tweet.author.name || ''
}) }
)
); );
/* When dealing with a Tweet of unknown lang, fall back to en */ /* When dealing with a Tweet of unknown lang, fall back to en */

View file

@ -300,7 +300,11 @@ export const fetchConversation = async (
return true; return true;
} }
console.log('invalid graphql tweet'); console.log('invalid graphql tweet');
if (!tweet && typeof conversation.data?.tweetResult === 'object' && Object.keys(conversation.data?.tweetResult || {}).length === 0) { if (
!tweet &&
typeof conversation.data?.tweetResult === 'object' &&
Object.keys(conversation.data?.tweetResult || {}).length === 0
) {
console.log('tweet was not found'); console.log('tweet was not found');
return true; return true;
} }

View file

@ -15,7 +15,8 @@ export const unescapeText = (text: string) => {
.replace(/&amp;/g, '&'); .replace(/&amp;/g, '&');
}; };
export const truncateWithEllipsis = (str: string, maxLength: number): string => str.length > maxLength ? str.substring(0, maxLength - 1) + '…' : str; export const truncateWithEllipsis = (str: string, maxLength: number): string =>
str.length > maxLength ? str.substring(0, maxLength - 1) + '…' : str;
const numberFormat = new Intl.NumberFormat('en-US'); const numberFormat = new Intl.NumberFormat('en-US');

View file

@ -1,6 +1,6 @@
/* eslint-disable no-case-declarations */ /* eslint-disable no-case-declarations */
import { Toucan } from 'toucan-js'; import { Toucan } from 'toucan-js';
import { RewriteFrames } from "@sentry/integrations"; import { RewriteFrames } from '@sentry/integrations';
import { IRequest, Router } from 'itty-router'; import { IRequest, Router } from 'itty-router';
import { Constants } from './constants'; import { Constants } from './constants';
@ -164,7 +164,7 @@ const statusRequest = async (
return new Response(null, { return new Response(null, {
status: 302, status: 302,
headers: { headers: {
'Location': `${baseUrl}/${handle || 'i'}/status/${id}`, Location: `${baseUrl}/${handle || 'i'}/status/${id}`,
...(cacheControl ? { 'cache-control': cacheControl } : {}) ...(cacheControl ? { 'cache-control': cacheControl } : {})
} }
}); });
@ -203,11 +203,10 @@ const statusRequest = async (
return new Response(null, { return new Response(null, {
status: 302, status: 302,
headers: { headers: {
'Location': `${baseUrl}/${handle || 'i'}/status/${id?.match(/\d{2,20}/)?.[0]}`, Location: `${baseUrl}/${handle || 'i'}/status/${id?.match(/\d{2,20}/)?.[0]}`,
...(cacheControl ? { 'cache-control': cacheControl } : {}) ...(cacheControl ? { 'cache-control': cacheControl } : {})
} }
}); });
} }
}; };
@ -273,7 +272,7 @@ const profileRequest = async (
return new Response(null, { return new Response(null, {
status: 302, status: 302,
headers: { headers: {
'Location': `${baseUrl}/${handle}`, Location: `${baseUrl}/${handle}`,
...(cacheControl ? { 'cache-control': cacheControl } : {}) ...(cacheControl ? { 'cache-control': cacheControl } : {})
} }
}); });
@ -315,7 +314,7 @@ const profileRequest = async (
return new Response(null, { return new Response(null, {
status: 302, status: 302,
headers: { headers: {
'Location': `${baseUrl}/${handle}`, Location: `${baseUrl}/${handle}`,
...(cacheControl ? { 'cache-control': cacheControl } : {}) ...(cacheControl ? { 'cache-control': cacheControl } : {})
} }
}); });
@ -331,7 +330,7 @@ const genericTwitterRedirect = async (request: IRequest) => {
return new Response(null, { return new Response(null, {
status: 302, status: 302,
headers: { headers: {
'Location': `${baseUrl}${url.pathname}`, Location: `${baseUrl}${url.pathname}`,
...(cacheControl ? { 'cache-control': cacheControl } : {}) ...(cacheControl ? { 'cache-control': cacheControl } : {})
} }
}); });
@ -342,9 +341,9 @@ const versionRequest = async (request: IRequest) => {
return new Response( return new Response(
Strings.VERSION_HTML.format({ Strings.VERSION_HTML.format({
rtt: request.cf?.clientTcpRtt ? `🏓 ${request.cf.clientTcpRtt} ms RTT` : '', rtt: request.cf?.clientTcpRtt ? `🏓 ${request.cf.clientTcpRtt} ms RTT` : '',
colo: request.cf?.colo as string ?? '??', colo: (request.cf?.colo as string) ?? '??',
httpversion: request.cf?.httpProtocol as string ?? 'Unknown HTTP Version', httpversion: (request.cf?.httpProtocol as string) ?? 'Unknown HTTP Version',
tlsversion: request.cf?.tlsVersion as string ?? 'Unknown TLS Version', tlsversion: (request.cf?.tlsVersion as string) ?? 'Unknown TLS Version',
ip: ip:
request.headers.get('x-real-ip') ?? request.headers.get('x-real-ip') ??
request.headers.get('cf-connecting-ip') ?? request.headers.get('cf-connecting-ip') ??
@ -360,7 +359,7 @@ const versionRequest = async (request: IRequest) => {
{ {
headers: { headers: {
...Constants.RESPONSE_HEADERS, ...Constants.RESPONSE_HEADERS,
'cache-control': 'max-age=0, no-cache, no-store, must-revalidate', 'cache-control': 'max-age=0, no-cache, no-store, must-revalidate'
}, },
status: 200 status: 200
} }
@ -395,7 +394,9 @@ const setRedirectRequest = async (request: IRequest) => {
{ {
headers: { headers: {
'set-cookie': `base_redirect=; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; secure; HttpOnly`, 'set-cookie': `base_redirect=; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; secure; HttpOnly`,
'content-security-policy': `frame-ancestors ${Constants.STANDARD_DOMAIN_LIST.join(' ')};`, 'content-security-policy': `frame-ancestors ${Constants.STANDARD_DOMAIN_LIST.join(
' '
)};`,
...Constants.RESPONSE_HEADERS ...Constants.RESPONSE_HEADERS
}, },
status: 200 status: 200
@ -419,7 +420,9 @@ const setRedirectRequest = async (request: IRequest) => {
{ {
headers: { headers: {
'set-cookie': `base_redirect=; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; secure; HttpOnly`, 'set-cookie': `base_redirect=; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; secure; HttpOnly`,
'content-security-policy': `frame-ancestors ${Constants.STANDARD_DOMAIN_LIST.join(' ')};`, 'content-security-policy': `frame-ancestors ${Constants.STANDARD_DOMAIN_LIST.join(
' '
)};`,
...Constants.RESPONSE_HEADERS ...Constants.RESPONSE_HEADERS
}, },
status: 200 status: 200
@ -440,7 +443,9 @@ const setRedirectRequest = async (request: IRequest) => {
{ {
headers: { headers: {
'set-cookie': `base_redirect=${url}; path=/; max-age=63072000; secure; HttpOnly`, 'set-cookie': `base_redirect=${url}; path=/; max-age=63072000; secure; HttpOnly`,
'content-security-policy': `frame-ancestors ${Constants.STANDARD_DOMAIN_LIST.join(' ')};`, 'content-security-policy': `frame-ancestors ${Constants.STANDARD_DOMAIN_LIST.join(
' '
)};`,
...Constants.RESPONSE_HEADERS ...Constants.RESPONSE_HEADERS
}, },
status: 200 status: 200
@ -654,7 +659,7 @@ const sentryWrapper = async (event: FetchEvent, test = false): Promise<void> =>
request: event.request, request: event.request,
requestDataOptions: { requestDataOptions: {
allowedHeaders: /(.*)/, allowedHeaders: /(.*)/,
allowedSearchParams: /(.*)/, allowedSearchParams: /(.*)/
}, },
/* TODO: Figure out what changed between @sentry/integration 7.65.0 and 7.66.0 /* TODO: Figure out what changed between @sentry/integration 7.65.0 and 7.66.0

View file

@ -8,17 +8,21 @@ const humanHeaders = {
const githubUrl = 'https://github.com/FixTweet/FixTweet'; const githubUrl = 'https://github.com/FixTweet/FixTweet';
const twitterBaseUrl = 'https://twitter.com'; const twitterBaseUrl = 'https://twitter.com';
// @ts-expect-error - Performance not included in jest environment // eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore - Performance not included in miniflare environment
if (!globalThis.performance) { if (!globalThis.performance) {
// @ts-expect-error - Performance not included in jest environment // @ts-expect-error - Performance not included in jest environment
globalThis.performance = {}; globalThis.performance = {};
} }
// @ts-expect-error - Performance not included in jest environment // eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore - Performance not included in miniflare environment
if (!globalThis.performance.now) { if (!globalThis.performance.now) {
// eslint-disable-next-line no-var
var start = Date.now(); var start = Date.now();
// @ts-expect-error - Performance not included in jest environment // eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore - Performance not included in miniflare environment
globalThis.performance.now = function () { globalThis.performance.now = function () {
return Date.now() - start; return Date.now() - start;
}; };
@ -58,7 +62,10 @@ test('Tweet redirect human custom base redirect', async () => {
const result = await cacheWrapper( const result = await cacheWrapper(
new Request('https://fxtwitter.com/jack/status/20', { new Request('https://fxtwitter.com/jack/status/20', {
method: 'GET', method: 'GET',
headers: { ...humanHeaders, 'Cookie': 'cf_clearance=a; base_redirect=https://nitter.net' } headers: {
...humanHeaders,
Cookie: 'cf_clearance=a; base_redirect=https://nitter.net'
}
}) })
); );
expect(result.status).toEqual(302); expect(result.status).toEqual(302);

View file

@ -12,7 +12,11 @@
"allowJs": true, "allowJs": true,
"sourceMap": true, "sourceMap": true,
"esModuleInterop": true, "esModuleInterop": true,
"types": ["@cloudflare/workers-types/2022-11-30", "@types/jest", "@sentry/integrations"] "types": [
"@cloudflare/workers-types/2023-07-01",
"@types/jest",
"@sentry/integrations"
]
}, },
"include": ["src"], "include": ["src"],
"exclude": ["node_modules", "dist", "test"] "exclude": ["node_modules", "dist", "test"]