diff --git a/motd.json b/motd.json new file mode 100644 index 0000000..ecf7e08 --- /dev/null +++ b/motd.json @@ -0,0 +1,4 @@ +{ + "FixTweet - Embed videos, polls & more": "https://github.com/dangeredwolf/FixTweet", + "FixTweet - ✨ Click to join our Discord Server": "https://discord.gg/6CQTTTkGaH" +} \ No newline at end of file diff --git a/src/server.ts b/src/server.ts index 3bee672..83d8ad9 100644 --- a/src/server.ts +++ b/src/server.ts @@ -5,6 +5,8 @@ import { Constants } from './constants'; import { handleStatus } from './status'; import { Strings } from './strings'; +import motd from '../motd.json'; + const router = Router(); /* Handler for status (Tweet) request */ @@ -163,6 +165,9 @@ router.get('/owoembed', async (request: Request) => { const author = searchParams.get('author') || 'dangeredwolf'; const status = searchParams.get('status') || '1547514042146865153'; + const random = Math.floor(Math.random() * Object.keys(motd).length); + const [name, url] = Object.entries(motd)[random]; + const test = { author_name: decodeURIComponent(text), author_url: `${Constants.TWITTER_ROOT}/${encodeURIComponent( @@ -173,8 +178,8 @@ router.get('/owoembed', async (request: Request) => { provider_name: searchParams.get('deprecated') === 'true' ? Strings.DEPRECATED_DOMAIN_NOTICE_DISCORD - : Constants.BRANDING_NAME_DISCORD, - provider_url: Constants.EMBED_URL, + : name, + provider_url: url, title: Strings.DEFAULT_AUTHOR_TEXT, type: 'link', version: '1.0' @@ -333,6 +338,10 @@ const sentryWrapper = async (event: FetchEvent, test = false): Promise => } catch (err: unknown) { sentry && sentry.captureException(err); + /* workaround for silly TypeScript things */ + const error = err as Error; + console.error(error.stack); + return new Response(Strings.ERROR_HTML, { headers: { ...Constants.RESPONSE_HEADERS, diff --git a/tsconfig.json b/tsconfig.json index 860a7d9..fad2fcd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,6 +8,7 @@ "strict": true, "preserveConstEnums": true, "moduleResolution": "node", + "resolveJsonModule": true, "allowJs": true, "sourceMap": true, "esModuleInterop": true,