mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Generally use the term status instead of post
This commit is contained in:
parent
8fbedb20ee
commit
b53fe99831
7 changed files with 35 additions and 35 deletions
|
@ -48,7 +48,7 @@ export const handleStatus = async (
|
||||||
flags?.api ?? false
|
flags?.api ?? false
|
||||||
);
|
);
|
||||||
|
|
||||||
const tweet = thread?.post as APITweet;
|
const tweet = thread?.status as APITweet;
|
||||||
|
|
||||||
const api = {
|
const api = {
|
||||||
code: thread.code,
|
code: thread.code,
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { Strings } from '../strings';
|
import { Strings } from '../strings';
|
||||||
|
|
||||||
/* Helper for Quote Tweets */
|
/* Helper for Quote Tweets */
|
||||||
export const handleQuote = (quote: APIPost): string | null => {
|
export const handleQuote = (quote: APIStatus): string | null => {
|
||||||
console.log('Quoting status ', quote.id);
|
console.log('Quoting status ', quote.id);
|
||||||
|
|
||||||
let str = `\n`;
|
let str = `\n`;
|
||||||
|
|
|
@ -267,7 +267,7 @@ export const constructTwitterThread = async (
|
||||||
console.log('language', language);
|
console.log('language', language);
|
||||||
|
|
||||||
let response: TweetDetailResult | TweetResultsByRestIdResult | null = null;
|
let response: TweetDetailResult | TweetResultsByRestIdResult | null = null;
|
||||||
let post: APITweet;
|
let status: APITweet;
|
||||||
/* We can use TweetDetail on elongator accounts to increase per-account rate limit.
|
/* We can use TweetDetail on elongator accounts to increase per-account rate limit.
|
||||||
We also use TweetDetail to process threads (WIP)
|
We also use TweetDetail to process threads (WIP)
|
||||||
|
|
||||||
|
@ -284,7 +284,7 @@ export const constructTwitterThread = async (
|
||||||
console.log('response', response);
|
console.log('response', response);
|
||||||
|
|
||||||
if (!response?.data) {
|
if (!response?.data) {
|
||||||
return { post: null, thread: null, author: null, code: 404 };
|
return { status: null, thread: null, author: null, code: 404 };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -296,20 +296,20 @@ export const constructTwitterThread = async (
|
||||||
const result = response?.data?.tweetResult?.result as GraphQLTweet;
|
const result = response?.data?.tweetResult?.result as GraphQLTweet;
|
||||||
|
|
||||||
if (typeof result === 'undefined') {
|
if (typeof result === 'undefined') {
|
||||||
return { post: null, thread: null, author: null, code: 404 };
|
return { status: null, thread: null, author: null, code: 404 };
|
||||||
}
|
}
|
||||||
|
|
||||||
const buildPost = await buildAPITweet(c, result, language, false, legacyAPI);
|
const buildStatus = await buildAPITweet(c, result, language, false, legacyAPI);
|
||||||
|
|
||||||
if ((buildPost as FetchResults)?.status === 401) {
|
if ((buildStatus as FetchResults)?.status === 401) {
|
||||||
return { post: null, thread: null, author: null, code: 401 };
|
return { status: null, thread: null, author: null, code: 401 };
|
||||||
} else if (buildPost === null || (buildPost as FetchResults)?.status === 404) {
|
} else if (buildStatus === null || (buildStatus as FetchResults)?.status === 404) {
|
||||||
return { post: null, thread: null, author: null, code: 404 };
|
return { status: null, thread: null, author: null, code: 404 };
|
||||||
}
|
}
|
||||||
|
|
||||||
post = buildPost as APITweet;
|
status = buildStatus as APITweet;
|
||||||
|
|
||||||
return { post: post, thread: null, author: post.author, code: 200 };
|
return { status: status, thread: null, author: status.author, code: 200 };
|
||||||
}
|
}
|
||||||
|
|
||||||
const bucket = processResponse(
|
const bucket = processResponse(
|
||||||
|
@ -319,20 +319,20 @@ export const constructTwitterThread = async (
|
||||||
|
|
||||||
/* Don't bother processing thread on a null tweet */
|
/* Don't bother processing thread on a null tweet */
|
||||||
if (originalTweet === null) {
|
if (originalTweet === null) {
|
||||||
return { post: null, thread: null, author: null, code: 404 };
|
return { status: null, thread: null, author: null, code: 404 };
|
||||||
}
|
}
|
||||||
|
|
||||||
post = (await buildAPITweet(c, originalTweet, undefined, false, legacyAPI)) as APITweet;
|
status = (await buildAPITweet(c, originalTweet, undefined, false, legacyAPI)) as APITweet;
|
||||||
|
|
||||||
if (post === null) {
|
if (status === null) {
|
||||||
return { post: null, thread: null, author: null, code: 404 };
|
return { status: null, thread: null, author: null, code: 404 };
|
||||||
}
|
}
|
||||||
|
|
||||||
const author = post.author;
|
const author = status.author;
|
||||||
|
|
||||||
/* If we're not processing threads, let's be done here */
|
/* If we're not processing threads, let's be done here */
|
||||||
if (!processThread) {
|
if (!processThread) {
|
||||||
return { post: post, thread: null, author: author, code: 200 };
|
return { status: status, thread: null, author: author, code: 200 };
|
||||||
}
|
}
|
||||||
|
|
||||||
const threadTweets = [originalTweet];
|
const threadTweets = [originalTweet];
|
||||||
|
@ -473,7 +473,7 @@ export const constructTwitterThread = async (
|
||||||
}
|
}
|
||||||
|
|
||||||
const socialThread: SocialThread = {
|
const socialThread: SocialThread = {
|
||||||
post: post,
|
status: status,
|
||||||
thread: [],
|
thread: [],
|
||||||
author: author,
|
author: author,
|
||||||
code: 200
|
code: 200
|
||||||
|
|
|
@ -72,7 +72,7 @@ export const buildAPITweet = async (
|
||||||
followers: apiUser.followers,
|
followers: apiUser.followers,
|
||||||
following: apiUser.following,
|
following: apiUser.following,
|
||||||
joined: apiUser.joined,
|
joined: apiUser.joined,
|
||||||
posts: apiUser.posts,
|
statuses: apiUser.statuses,
|
||||||
likes: apiUser.likes,
|
likes: apiUser.likes,
|
||||||
protected: apiUser.protected,
|
protected: apiUser.protected,
|
||||||
birthday: apiUser.birthday,
|
birthday: apiUser.birthday,
|
||||||
|
@ -85,13 +85,13 @@ export const buildAPITweet = async (
|
||||||
apiTweet.retweets = tweet.legacy.retweet_count;
|
apiTweet.retweets = tweet.legacy.retweet_count;
|
||||||
|
|
||||||
// @ts-expect-error `tweets` is only part of legacy API
|
// @ts-expect-error `tweets` is only part of legacy API
|
||||||
apiTweet.author.tweets = apiTweet.author.posts;
|
apiTweet.author.tweets = apiTweet.author.statuses;
|
||||||
// @ts-expect-error Part of legacy API that we no longer are able to track
|
// @ts-expect-error Part of legacy API that we no longer are able to track
|
||||||
apiTweet.author.avatar_color = null;
|
apiTweet.author.avatar_color = null;
|
||||||
// @ts-expect-error Use retweets for legacy API
|
// @ts-expect-error Use retweets for legacy API
|
||||||
delete apiTweet.reposts;
|
delete apiTweet.reposts;
|
||||||
// @ts-expect-error Use tweets and not posts for legacy API
|
// @ts-expect-error Use tweets and not posts for legacy API
|
||||||
delete apiTweet.author.posts;
|
delete apiTweet.author.statuses;
|
||||||
delete apiTweet.author.global_screen_name;
|
delete apiTweet.author.global_screen_name;
|
||||||
} else {
|
} else {
|
||||||
apiTweet.reposts = tweet.legacy.retweet_count;
|
apiTweet.reposts = tweet.legacy.retweet_count;
|
||||||
|
|
|
@ -15,7 +15,7 @@ export const convertToApiUser = (user: GraphQLUser, legacyAPI = false): APIUser
|
||||||
// @ts-expect-error Use tweets for legacy API
|
// @ts-expect-error Use tweets for legacy API
|
||||||
apiUser.tweets = user.legacy.statuses_count;
|
apiUser.tweets = user.legacy.statuses_count;
|
||||||
} else {
|
} else {
|
||||||
apiUser.posts = user.legacy.statuses_count;
|
apiUser.statuses = user.legacy.statuses_count;
|
||||||
}
|
}
|
||||||
apiUser.name = user.legacy.name;
|
apiUser.name = user.legacy.name;
|
||||||
apiUser.screen_name = user.legacy.screen_name;
|
apiUser.screen_name = user.legacy.screen_name;
|
||||||
|
|
|
@ -4,7 +4,7 @@ import { getSocialTextIV } from '../helpers/author';
|
||||||
import { sanitizeText } from '../helpers/utils';
|
import { sanitizeText } from '../helpers/utils';
|
||||||
import { Strings } from '../strings';
|
import { Strings } from '../strings';
|
||||||
|
|
||||||
const populateUserLinks = (tweet: APIPost, text: string): string => {
|
const populateUserLinks = (tweet: APIStatus, text: string): string => {
|
||||||
/* TODO: Maybe we can add username splices to our API so only genuinely valid users are linked? */
|
/* TODO: Maybe we can add username splices to our API so only genuinely valid users are linked? */
|
||||||
text.match(/@(\w{1,15})/g)?.forEach(match => {
|
text.match(/@(\w{1,15})/g)?.forEach(match => {
|
||||||
const username = match.replace('@', '');
|
const username = match.replace('@', '');
|
||||||
|
@ -16,7 +16,7 @@ const populateUserLinks = (tweet: APIPost, text: string): string => {
|
||||||
return text;
|
return text;
|
||||||
};
|
};
|
||||||
|
|
||||||
const generateTweetMedia = (tweet: APIPost): string => {
|
const generateTweetMedia = (tweet: APIStatus): string => {
|
||||||
let media = '';
|
let media = '';
|
||||||
if (tweet.media?.all?.length) {
|
if (tweet.media?.all?.length) {
|
||||||
tweet.media.all.forEach(mediaItem => {
|
tweet.media.all.forEach(mediaItem => {
|
||||||
|
@ -117,7 +117,7 @@ const truncateSocialCount = (count: number): string => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const generateTweetFooter = (tweet: APIPost, isQuote = false): string => {
|
const generateTweetFooter = (tweet: APIStatus, isQuote = false): string => {
|
||||||
const { author } = tweet;
|
const { author } = tweet;
|
||||||
|
|
||||||
let description = author.description;
|
let description = author.description;
|
||||||
|
@ -156,12 +156,12 @@ const generateTweetFooter = (tweet: APIPost, isQuote = false): string => {
|
||||||
joined: author.joined ? `📆 ${formatDate(new Date(author.joined))}` : '',
|
joined: author.joined ? `📆 ${formatDate(new Date(author.joined))}` : '',
|
||||||
following: truncateSocialCount(author.following),
|
following: truncateSocialCount(author.following),
|
||||||
followers: truncateSocialCount(author.followers),
|
followers: truncateSocialCount(author.followers),
|
||||||
tweets: truncateSocialCount(author.posts)
|
tweets: truncateSocialCount(author.statuses)
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const generateTweet = (tweet: APIPost, isQuote = false): string => {
|
const generateTweet = (tweet: APIStatus, isQuote = false): string => {
|
||||||
let text = paragraphify(sanitizeText(tweet.text), isQuote);
|
let text = paragraphify(sanitizeText(tweet.text), isQuote);
|
||||||
text = htmlifyLinks(text);
|
text = htmlifyLinks(text);
|
||||||
text = htmlifyHashtags(text);
|
text = htmlifyHashtags(text);
|
||||||
|
|
14
src/types/types.d.ts
vendored
14
src/types/types.d.ts
vendored
|
@ -110,7 +110,7 @@ interface APIMosaicPhoto extends APIMedia {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
interface APIPost {
|
interface APIStatus {
|
||||||
id: string;
|
id: string;
|
||||||
url: string;
|
url: string;
|
||||||
text: string;
|
text: string;
|
||||||
|
@ -121,7 +121,7 @@ interface APIPost {
|
||||||
reposts: number;
|
reposts: number;
|
||||||
replies: number;
|
replies: number;
|
||||||
|
|
||||||
quote?: APIPost;
|
quote?: APIStatus;
|
||||||
poll?: APIPoll;
|
poll?: APIPoll;
|
||||||
author: APIUser;
|
author: APIUser;
|
||||||
|
|
||||||
|
@ -146,7 +146,7 @@ interface APIPost {
|
||||||
embed_card: 'tweet' | 'summary' | 'summary_large_image' | 'player';
|
embed_card: 'tweet' | 'summary' | 'summary_large_image' | 'player';
|
||||||
}
|
}
|
||||||
|
|
||||||
interface APITweet extends APIPost {
|
interface APITweet extends APIStatus {
|
||||||
views?: number | null;
|
views?: number | null;
|
||||||
translation?: APITranslate;
|
translation?: APITranslate;
|
||||||
|
|
||||||
|
@ -168,7 +168,7 @@ interface APIUser {
|
||||||
protected: boolean;
|
protected: boolean;
|
||||||
followers: number;
|
followers: number;
|
||||||
following: number;
|
following: number;
|
||||||
posts: number;
|
statuses: number;
|
||||||
likes: number;
|
likes: number;
|
||||||
joined: string;
|
joined: string;
|
||||||
website: {
|
website: {
|
||||||
|
@ -183,13 +183,13 @@ interface APIUser {
|
||||||
}
|
}
|
||||||
|
|
||||||
interface SocialPost {
|
interface SocialPost {
|
||||||
post: APIPost | APITweet | null;
|
status: APIStatus | APITweet | null;
|
||||||
author: APIUser | null;
|
author: APIUser | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface SocialThread {
|
interface SocialThread {
|
||||||
post: APIPost | APITweet | null;
|
status: APIStatus | APITweet | null;
|
||||||
thread: (APIPost | APITweet)[] | null;
|
thread: (APIStatus | APITweet)[] | null;
|
||||||
author: APIUser | null;
|
author: APIUser | null;
|
||||||
code: number;
|
code: number;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue