Add note about fixupx.com

This commit is contained in:
dangered wolf 2023-08-17 02:00:04 -04:00
parent c72e3ec166
commit ace8280e13
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
5 changed files with 23 additions and 13 deletions

View file

@ -1,6 +1,6 @@
# FixTweet <img src="https://abs-0.twimg.com/emoji/v2/svg/1f527.svg" height="28"> # FixTweet / FixupX <img src="https://abs-0.twimg.com/emoji/v2/svg/1f527.svg" height="28">
## Embed Twitter videos, polls, translations, & more on Discord and Telegram! ## Embed X / Twitter videos, polls, translations, & more on Discord and Telegram!
![][icons] ![][icons]
@ -20,11 +20,14 @@
[licensebadge]: https://img.shields.io/github/license/FixTweet/FixTweet [licensebadge]: https://img.shields.io/github/license/FixTweet/FixTweet
[uptimebadge]: https://img.shields.io/uptimerobot/ratio/m792476277-53add6f22c4e6f4d3a2d7e98 [uptimebadge]: https://img.shields.io/uptimerobot/ratio/m792476277-53add6f22c4e6f4d3a2d7e98
## Inspired by [Robin Universe's TwitFix](https://github.com/robinuniverse/TwitFix), rewritten in TypeScript as a Cloudflare Worker to scale, packed with even more features and [best-in-class user privacy 🔒](#built-with-privacy-in-mind). ## Written in TypeScript as a Cloudflare Worker to scale, packed with more features and [best-in-class user privacy 🔒](#built-with-privacy-in-mind).
### Add `fx` before your Twitter link to make it `fxtwitter.com` ### Add `fx` before your `twitter.com` link to make it `fxtwitter.com`, OR
### Change `x.com` to `fixupx.com` in your link
### In a hurry? On Discord, send a Twitter link and type `s/e/p` to make `twittpr.com`. ### For Twitter links on Discord, send a Twitter link and type `s/e/p` to make `twittpr.com`.
### Note: Some extra features described may currently broken due to recent Twitter/X API changes. [Tracking thread for the API changes](https://github.com/FixTweet/FixTweet/issues/333)
<img src="https://cdn.discordapp.com/attachments/165560751363325952/1006346785985417307/fixtweet.webp"> <img src="https://cdn.discordapp.com/attachments/165560751363325952/1006346785985417307/fixtweet.webp">

View file

@ -282,12 +282,14 @@ export const handleStatus = async (
`<meta property="twitter:image" content="0"/>` `<meta property="twitter:image" content="0"/>`
); );
} }
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;
} else if (!flags?.isXDomainTemp) {
siteName = Strings.X_DOMAIN_NOTICE;
} }
/* Push basic headers relating to author, Tweet text, and site name */ /* Push basic headers relating to author, Tweet text, and site name */
@ -317,7 +319,7 @@ export const handleStatus = async (
status status
)}&author=${encodeURIComponent( )}&author=${encodeURIComponent(
tweet.author?.screen_name || '' tweet.author?.screen_name || ''
)}" type="application/json+oembed" title="${tweet.author.name}">` )}&useXbranding=${flags?.isXDomain ? 'true' : 'false'}" type="application/json+oembed" title="${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

@ -68,8 +68,12 @@ const statusRequest = async (
flags.deprecated = true; flags.deprecated = true;
} }
if (/fixup/g.test(url.hostname)) { /* TODO: Figure out what we're doing with FixTweet / FixupX branding in future */
flags.isXDomainTemp = true; if (/fixup/g.test(url.href)) {
console.log(`We're using x domain`);
flags.isXDomain = true;
} else {
console.log(`We're using twitter domain`);
} }
/* Check if request is to api.fxtwitter.com, or the tweet is appended with .json /* Check if request is to api.fxtwitter.com, or the tweet is appended with .json
@ -295,6 +299,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 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];
@ -308,7 +313,7 @@ router.get('/owoembed', async (request: IRequest) => {
provider_name: provider_name:
searchParams.get('deprecated') === 'true' searchParams.get('deprecated') === 'true'
? Strings.DEPRECATED_DOMAIN_NOTICE_DISCORD ? Strings.DEPRECATED_DOMAIN_NOTICE_DISCORD
: name, : (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',

View file

@ -210,5 +210,5 @@ Disallow: /owoembed/
Allow: /watch?v=dQw4w9WgXcQ Allow: /watch?v=dQw4w9WgXcQ
# 0100011101101111011011110110010000100000011000100110111101110100`, # 0100011101101111011011110110010000100000011000100110111101110100`,
X_DOMAIN_NOTICE: 'FixTweet - 🆕 Fix x.com links with fixupx.com!' X_DOMAIN_NOTICE: 'FixTweet - 🆕 x.com link? Try fixupx.com'
}; };

View file

@ -7,7 +7,7 @@ type InputFlags = {
api?: boolean; api?: boolean;
deprecated?: boolean; deprecated?: boolean;
textOnly?: boolean; textOnly?: boolean;
isXDomainTemp?: boolean; isXDomain?: boolean;
}; };
interface StatusResponse { interface StatusResponse {