mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Add random motds
This commit is contained in:
parent
f32797a872
commit
81615eef00
3 changed files with 16 additions and 2 deletions
4
motd.json
Normal file
4
motd.json
Normal 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"
|
||||||
|
}
|
|
@ -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,
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue