diff --git a/src/api/status.ts b/src/api/status.ts index 1b9bc06..ba12198 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -13,7 +13,7 @@ import { isGraphQLTweet } from '../utils/graphql'; and using it to create FixTweet's streamlined API responses */ const populateTweetProperties = async ( tweet: GraphQLTweet, - conversation: any, // TimelineBlobPartial, + conversation: TweetResultsByRestIdResult, // TimelineBlobPartial, language: string | undefined // eslint-disable-next-line sonarjs/cognitive-complexity ): Promise => { @@ -44,6 +44,8 @@ const populateTweetProperties = async ( const graphQLUser = tweet.core.user_results.result; const apiUser = convertToApiUser(graphQLUser); + console.log(JSON.stringify(graphQLUser)) + /* Populating a lot of the basics */ apiTweet.url = `${Constants.TWITTER_ROOT}/${apiUser.screen_name}/status/${tweet.rest_id}`; apiTweet.id = tweet.rest_id; @@ -53,15 +55,24 @@ const populateTweetProperties = async ( name: apiUser.name, screen_name: apiUser.screen_name, avatar_url: (apiUser.avatar_url || '').replace('_normal', '_200x200') || '', - avatar_color: '0000FF' /* colorFromPalette( - tweet.user?.profile_image_extensions_media_color?.palette || [] - ),*/, - banner_url: apiUser.banner_url || '' + avatar_color: null, + banner_url: apiUser.banner_url || '', + description: apiUser.description || '', + location: apiUser.location || '', + url: apiUser.url || '', + followers: apiUser.followers, + following: apiUser.following, + joined: apiUser.joined, + tweets: apiUser.tweets, + likes: apiUser.likes, + protected: apiUser.protected, + birthday: apiUser.birthday, + website: apiUser.website, }; apiTweet.replies = tweet.legacy.reply_count; apiTweet.retweets = tweet.legacy.retweet_count; apiTweet.likes = tweet.legacy.favorite_count; - apiTweet.color = apiTweet.author.avatar_color; + apiTweet.color = null; apiTweet.twitter_card = 'tweet'; apiTweet.created_at = tweet.legacy.created_at; apiTweet.created_timestamp = new Date(tweet.legacy.created_at).getTime() / 1000; diff --git a/src/api/user.ts b/src/api/user.ts index 3eca62d..09cadf1 100644 --- a/src/api/user.ts +++ b/src/api/user.ts @@ -41,6 +41,16 @@ export const convertToApiUser = (user: GraphQLUser): APIUser => { if (typeof birthdate.month === 'number') apiUser.birthday.month = birthdate.month; if (typeof birthdate.year === 'number') apiUser.birthday.year = birthdate.year; } + const website = user.legacy.entities?.url?.urls?.[0]; + + if (website) { + apiUser.website = { + url: website.expanded_url, + display_url: website.display_url + }; + } else { + apiUser.website = null; + } return apiUser; }; @@ -61,7 +71,7 @@ const populateUserProperties = async ( export const userAPI = async ( username: string, event: FetchEvent, - flags?: InputFlags + // flags?: InputFlags ): Promise => { const userResponse = await fetchUser(username, event); if (!userResponse || !Object.keys(userResponse).length) { diff --git a/src/embed/status.ts b/src/embed/status.ts index 97f9d8d..b17441d 100644 --- a/src/embed/status.ts +++ b/src/embed/status.ts @@ -113,7 +113,8 @@ export const handleStatus = async ( /* Base headers included in all responses */ const headers = [ - ``, + ``, + ``, ``, ` +

${author.name}

+

@${author.screen_name}

+

${description}

+

${author.location ? `📌 ${author.location}` : ''}${' ' + }${author.website ? `🔗 ${author.website.display_url}` : ''}${' ' + }${author.joined ? `📆 ${formatDate(new Date(author.joined))}` : ''}

+

${truncateSocialCount(author.following)} Following  + ${truncateSocialCount(author.followers)} Followers  + ${truncateSocialCount(author.tweets)} Posts

+ ` + : '' + }`; +} + const generateTweet = (tweet: APITweet, isQuote = false): string => { let text = paragraphify(sanitizeText(tweet.text), isQuote); text = htmlifyLinks(text); @@ -102,19 +154,6 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => { const translatedText = getTranslatedText(tweet, isQuote); return ` - - ${ - !isQuote - ? ` - ${
-      tweet.author.name
-    }'s profile picture -

${tweet.author.name}

-

@${tweet.author.screen_name}

-

${getSocialTextIV(tweet)}

-
` - : '' - } ${ isQuote ? ` @@ -123,14 +162,15 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => { ` : '' } + + ${generateTweetMedia(tweet)} ${translatedText ? translatedText : notApplicableComment} ${text} - - ${generateTweetMedia(tweet)} ${!isQuote && tweet.quote ? generateTweet(tweet.quote, true) : notApplicableComment} + ${generateTweetFooter(tweet)}
${!isQuote ? `View original` : notApplicableComment} `; }; diff --git a/src/types/twitterTypes.d.ts b/src/types/twitterTypes.d.ts index 5f45302..bdf395e 100644 --- a/src/types/twitterTypes.d.ts +++ b/src/types/twitterTypes.d.ts @@ -239,6 +239,14 @@ type GraphQLUser = { indices: [0, 23]; }[]; }; + url?: { + urls?: { + display_url: string; // "about.twitter.com", + expanded_url: string; // "https://about.twitter.com/", + url: string; // "https://t.co/DAtOo6uuHk", + indices: [0, 23]; + }[]; + } }; fast_followers_count: 0; favourites_count: number; // 126708, @@ -502,6 +510,7 @@ type GraphQLTweetFoundResponse = { }; }; type TweetResultsByRestIdResult = { + guestToken?: string; errors?: unknown[]; data?: { tweetResult?: { diff --git a/src/types/types.d.ts b/src/types/types.d.ts index 4afb63c..185861d 100644 --- a/src/types/types.d.ts +++ b/src/types/types.d.ts @@ -87,10 +87,6 @@ interface BaseUser { banner_url?: string; } -interface APITweetAuthor extends BaseUser { - avatar_color: string; -} - interface APIExternalMedia { type: 'video'; url: string; @@ -155,7 +151,7 @@ interface APITweet { quote?: APITweet; poll?: APIPoll; translation?: APITranslate; - author: APITweetAuthor; + author: APIUser; media?: { external?: APIExternalMedia; @@ -179,17 +175,22 @@ interface APITweet { } interface APIUser extends BaseUser { + // verified: 'legacy' | 'blue'| 'business' | 'government'; + // verified_label: string; description: string; location: string; url: string; + avatar_color?: string | null; protected: boolean; - // verified: 'legacy' | 'blue'| 'business' | 'government'; - // verified_label: string; followers: number; following: number; tweets: number; likes: number; joined: string; + website: { + url: string; + display_url: string; + } | null; birthday: { day?: number; month?: number;