Add random motds

This commit is contained in:
dangered wolf 2022-08-17 04:38:10 -04:00
parent f32797a872
commit 81615eef00
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
3 changed files with 16 additions and 2 deletions

4
motd.json Normal file
View file

@ -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"
}

View file

@ -5,6 +5,8 @@ import { Constants } from './constants';
import { handleStatus } from './status'; import { handleStatus } from './status';
import { Strings } from './strings'; import { Strings } from './strings';
import motd from '../motd.json';
const router = Router(); const router = Router();
/* Handler for status (Tweet) request */ /* Handler for status (Tweet) request */
@ -163,6 +165,9 @@ router.get('/owoembed', async (request: Request) => {
const author = searchParams.get('author') || 'dangeredwolf'; const author = searchParams.get('author') || 'dangeredwolf';
const status = searchParams.get('status') || '1547514042146865153'; 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 = { const test = {
author_name: decodeURIComponent(text), author_name: decodeURIComponent(text),
author_url: `${Constants.TWITTER_ROOT}/${encodeURIComponent( author_url: `${Constants.TWITTER_ROOT}/${encodeURIComponent(
@ -173,8 +178,8 @@ router.get('/owoembed', async (request: Request) => {
provider_name: provider_name:
searchParams.get('deprecated') === 'true' searchParams.get('deprecated') === 'true'
? Strings.DEPRECATED_DOMAIN_NOTICE_DISCORD ? Strings.DEPRECATED_DOMAIN_NOTICE_DISCORD
: Constants.BRANDING_NAME_DISCORD, : name,
provider_url: Constants.EMBED_URL, provider_url: url,
title: Strings.DEFAULT_AUTHOR_TEXT, title: Strings.DEFAULT_AUTHOR_TEXT,
type: 'link', type: 'link',
version: '1.0' version: '1.0'
@ -333,6 +338,10 @@ const sentryWrapper = async (event: FetchEvent, test = false): Promise<void> =>
} catch (err: unknown) { } catch (err: unknown) {
sentry && sentry.captureException(err); sentry && sentry.captureException(err);
/* workaround for silly TypeScript things */
const error = err as Error;
console.error(error.stack);
return new Response(Strings.ERROR_HTML, { return new Response(Strings.ERROR_HTML, {
headers: { headers: {
...Constants.RESPONSE_HEADERS, ...Constants.RESPONSE_HEADERS,

View file

@ -8,6 +8,7 @@
"strict": true, "strict": true,
"preserveConstEnums": true, "preserveConstEnums": true,
"moduleResolution": "node", "moduleResolution": "node",
"resolveJsonModule": true,
"allowJs": true, "allowJs": true,
"sourceMap": true, "sourceMap": true,
"esModuleInterop": true, "esModuleInterop": true,