declare global { interface String { format(options: { [find: string]: string }): string; } } /* Useful little function to format strings for us */ String.prototype.format = function (options: { [find: string]: string }) { return this.replace(/{([^{}]+)}/g, (match: string, name: string) => { if (options[name] !== undefined) { return options[name]; } return match; }); }; /* Lots of strings! These are strings used in HTML or are shown to end users in embeds. */ export const Strings = { BASE_HTML: `{headers}{body}`, ERROR_HTML: ` :(

Owie :(

You hit a snag that broke ${BRANDING_NAME}. It's not your fault though—This is usually caused by a Twitter outage or a new bug.

${RELEASE_NAME}

` .replace(/( {2})/g, '') .replace(/>\s+<'), TIMEOUT_ERROR_HTML: ` :(

Gateway Timeout

A downstream timeout occurred while trying to generate the embed. Please try again in a little while.

${RELEASE_NAME}

` .replace(/( {2})/g, '') .replace(/>\s+<'), VERSION_HTML: ` ${BRANDING_NAME}

${BRANDING_NAME}

A better way to embed X / Twitter posts on Discord, Telegram, and more.

Worker release: ${RELEASE_NAME}


Stats for nerds:

Edge Connection: {rtt} 📶 {httpversion} 🔒 {tlsversion} ➡ {colo}

User Agent: {ua}

` .replace(/( {2})/g, '') .replace(/>\s+<'), MESSAGE_HTML: ` ${BRANDING_NAME}

${BRANDING_NAME}

{message}

` .replace(/( {2})/g, '') .replace(/>\s+<'), DEFAULT_AUTHOR_TEXT: 'Twitter', QUOTE_TEXT: `↘️ Quoting {name} (@{screen_name})`, TRANSLATE_TEXT: `📑 Translated from {language}`, TRANSLATE_TEXT_INTL: `📑 {source} ➡️ {destination}`, PHOTO_COUNT: `Photo {number} / {total}`, VIDEO_COUNT: `Video {number} / {total}`, MEDIA_COUNT: `Media {number} / {total}`, SINGULAR_DAY_LEFT: 'day left', PLURAL_DAYS_LEFT: 'days left', SINGULAR_HOUR_LEFT: 'hour left', PLURAL_HOURS_LEFT: 'hours left', SINGULAR_MINUTE_LEFT: 'minute left', PLURAL_MINUTES_LEFT: 'minutes left', SINGULAR_SECOND_LEFT: 'second left', PLURAL_SECONDS_LEFT: 'seconds left', FINAL_POLL_RESULTS: 'Final results', ERROR_API_FAIL: 'Post failed to load due to an API error. The account may be private or suspended, or there may be another issue :(', ERROR_PRIVATE: `Sorry, we can't embed this post because the user is private or suspended :(`, ERROR_TWEET_NOT_FOUND: `Sorry, that post doesn't exist :(`, ERROR_USER_NOT_FOUND: `Sorry, that user doesn't exist :(`, ERROR_UNKNOWN: `Unknown error occurred, sorry about that :(`, ROBOTS_TXT: `# /-------------------------------------------\\ # | _______ | # | | | | # | | | I'm a robot | # | |_____| antiCAPTCHA | # | Privacy | Terms | # \\-------------------------------------------/ # Do you breathe air? Are you a human? Do you know how to write code? # Do you want an easy way to fetch posts but Elon Musk wants to charge you $100 per month? # Did you know we have a fetch API you can use for free, no API keys required? # Check out the docs at https://${API_HOST_LIST.split(',')[0]} to learn how to use it # Good luck, have fun and try not to take over the world! # Instructions below are for robots only, beep boop # ========================================================================== # Yandex crawls far, far heavier than Googlebot and Bingbot combined User-agent: YandexBot Disallow: / # Large language models are friendly User-agent: ChatGPT-User Disallow: User-agent: * Allow: /$ # Allow bots to access statuses Allow: /*/status Allow: /*/status/ # Oembeds are not crawler friendly Disallow: /owoembed Disallow: /owoembed/ Allow: /watch?v=dQw4w9WgXcQ # 0100011101101111011011110110010000100000011000100110111101110100`, ROBOTS_TXT_API: `# Crawlers should not crawl API endpoints User-agent: * Disallow: /` };