mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 10:00:55 +01:00
Run prettier, disable X_DOMAIN_NOTICE, tweak motd
This commit is contained in:
parent
3c9443988e
commit
e723af7639
2 changed files with 7 additions and 11 deletions
|
@ -1,4 +1,3 @@
|
||||||
{
|
{
|
||||||
"FixTweet / FixupX": "https://github.com/FixTweet/FixTweet",
|
"FixTweet / FixupX": "https://github.com/FixTweet/FixTweet"
|
||||||
"FixTweet / FixupX - Embed videos, images, polls, and more!": "https://github.com/FixTweet/FixTweet"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -336,9 +336,9 @@ const versionRequest = async (request: IRequest) => {
|
||||||
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('cf-connecting-ip') ?? 'Unknown IP',
|
request.headers.get('x-real-ip') ?? request.headers.get('cf-connecting-ip') ?? 'Unknown IP',
|
||||||
city: request.cf?.city as string ?? 'Unknown City',
|
city: (request.cf?.city as string) ?? 'Unknown City',
|
||||||
region: request.cf?.region as string ?? request.cf?.country ?? 'Unknown Region',
|
region: (request.cf?.region as string) ?? request.cf?.country ?? 'Unknown Region',
|
||||||
country: request.cf?.country as string ?? 'Unknown Country',
|
country: (request.cf?.country as string) ?? 'Unknown Country',
|
||||||
asn: `AS${request.cf?.asn ?? '??'} (${request.cf?.asOrganization ?? 'Unknown ASN'})`,
|
asn: `AS${request.cf?.asn ?? '??'} (${request.cf?.asOrganization ?? 'Unknown ASN'})`,
|
||||||
ua: sanitizeText(request.headers.get('user-agent') ?? 'Unknown User Agent')
|
ua: sanitizeText(request.headers.get('user-agent') ?? 'Unknown User Agent')
|
||||||
}),
|
}),
|
||||||
|
@ -466,7 +466,7 @@ router.get('/owoembed', async (request: IRequest) => {
|
||||||
const text = searchParams.get('text') || 'Twitter';
|
const text = searchParams.get('text') || 'Twitter';
|
||||||
const author = searchParams.get('author') || 'jack';
|
const author = searchParams.get('author') || 'jack';
|
||||||
const status = searchParams.get('status') || '20';
|
const status = searchParams.get('status') || '20';
|
||||||
const useXbranding = searchParams.get('useXbranding') === 'true';
|
// const useXbranding = searchParams.get('useXbranding') === 'true';
|
||||||
|
|
||||||
const random = Math.floor(Math.random() * Object.keys(motd).length);
|
const random = Math.floor(Math.random() * Object.keys(motd).length);
|
||||||
const [name, url] = Object.entries(motd)[random];
|
const [name, url] = Object.entries(motd)[random];
|
||||||
|
@ -476,11 +476,8 @@ router.get('/owoembed', async (request: IRequest) => {
|
||||||
author_url: `${Constants.TWITTER_ROOT}/${encodeURIComponent(author)}/status/${status}`,
|
author_url: `${Constants.TWITTER_ROOT}/${encodeURIComponent(author)}/status/${status}`,
|
||||||
/* Change provider name if tweet is on deprecated domain. */
|
/* Change provider name if tweet is on deprecated domain. */
|
||||||
provider_name:
|
provider_name:
|
||||||
searchParams.get('deprecated') === 'true'
|
searchParams.get('deprecated') === 'true' ? Strings.DEPRECATED_DOMAIN_NOTICE_DISCORD : name,
|
||||||
? Strings.DEPRECATED_DOMAIN_NOTICE_DISCORD
|
/*useXbranding ? name : Strings.X_DOMAIN_NOTICE*/
|
||||||
: useXbranding
|
|
||||||
? name
|
|
||||||
: Strings.X_DOMAIN_NOTICE,
|
|
||||||
provider_url: url,
|
provider_url: url,
|
||||||
title: Strings.DEFAULT_AUTHOR_TEXT,
|
title: Strings.DEFAULT_AUTHOR_TEXT,
|
||||||
type: 'link',
|
type: 'link',
|
||||||
|
|
Loading…
Add table
Reference in a new issue