diff --git a/src/quote.ts b/src/quote.ts index a0ec98d..9594458 100644 --- a/src/quote.ts +++ b/src/quote.ts @@ -1,12 +1,14 @@ import { linkFixer } from './linkFixer'; +import { Strings } from './strings'; export const handleQuote = (quote: TweetPartial): string | null => { console.log('quote tweet: ', quote); let str = `\n`; - str += `════ ↘️ Quoting ${quote.user?.name} (@${quote.user?.screen_name}) ════`; - - // str += '═'.repeat(Math.max(60 - str.length, 0)); + str += Strings.QUOTE_TEXT.format({ + name: quote.user?.name, + screen_name: quote.user?.screen_name + }); str += ` \n\n`; str += linkFixer(quote, quote.full_text); diff --git a/src/server.ts b/src/server.ts index e23ecd7..c869169 100644 --- a/src/server.ts +++ b/src/server.ts @@ -110,7 +110,7 @@ router.get('/owoembed', async (request: any) => { )}/status/${encodeURIComponent(status)}`, provider_name: Constants.BRANDING_NAME, provider_url: Constants.REDIRECT_URL, - title: Strings.TWITTER, + title: Strings.DEFAULT_AUTHOR_TEXT, type: 'link', version: '1.0' }; diff --git a/src/strings.ts b/src/strings.ts index d55c2e8..a1a8a24 100644 --- a/src/strings.ts +++ b/src/strings.ts @@ -19,7 +19,6 @@ String.prototype.format = function (options: any) { /* Maybe we should, but pxTwitter doesn't use strings as much as pronouns bot did */ export const Strings = { - TWITTER: 'Twitter', BASE_HTML: ` {headers}`, DEFAULT_AUTHOR_TEXT: 'Twitter', + QUOTE_TEXT: `════ ↘️ Quoting {name} (@{screen_name}) ════`, ERROR_API_FAIL: 'Tweet failed to load due to an API error :(', ERROR_PRIVATE: `I can't embed Tweets from private accounts, sorry about that :(`, ERROR_TWEET_NOT_FOUND: `Sorry, that Tweet doesn't exist :(`