mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fixed API sending escaped HTML #24
This commit is contained in:
parent
6a556e79d2
commit
fbecb189d4
2 changed files with 12 additions and 2 deletions
|
@ -5,6 +5,7 @@ import { linkFixer } from './linkFixer';
|
||||||
import { handleMosaic } from './mosaic';
|
import { handleMosaic } from './mosaic';
|
||||||
import { colorFromPalette } from './palette';
|
import { colorFromPalette } from './palette';
|
||||||
import { translateTweet } from './translate';
|
import { translateTweet } from './translate';
|
||||||
|
import { unescapeText } from './utils';
|
||||||
|
|
||||||
const processMedia = (media: TweetMedia): APIPhoto | APIVideo | null => {
|
const processMedia = (media: TweetMedia): APIPhoto | APIVideo | null => {
|
||||||
if (media.type === 'photo') {
|
if (media.type === 'photo') {
|
||||||
|
@ -50,7 +51,7 @@ const populateTweetProperties = async (
|
||||||
|
|
||||||
apiTweet.url = `${Constants.TWITTER_ROOT}/${screenName}/status/${tweet.id_str}`;
|
apiTweet.url = `${Constants.TWITTER_ROOT}/${screenName}/status/${tweet.id_str}`;
|
||||||
apiTweet.id = tweet.id_str;
|
apiTweet.id = tweet.id_str;
|
||||||
apiTweet.text = linkFixer(tweet, tweet.full_text);
|
apiTweet.text = unescapeText(linkFixer(tweet, tweet.full_text));
|
||||||
apiTweet.author = {
|
apiTweet.author = {
|
||||||
name: name,
|
name: name,
|
||||||
screen_name: screenName,
|
screen_name: screenName,
|
||||||
|
@ -130,7 +131,7 @@ const populateTweetProperties = async (
|
||||||
);
|
);
|
||||||
if (translateAPI !== null && translateAPI?.translation) {
|
if (translateAPI !== null && translateAPI?.translation) {
|
||||||
apiTweet.translation = {
|
apiTweet.translation = {
|
||||||
text: linkFixer(tweet, translateAPI?.translation || ''),
|
text: unescapeText(linkFixer(tweet, translateAPI?.translation || '')),
|
||||||
source_lang: translateAPI?.sourceLanguage || '',
|
source_lang: translateAPI?.sourceLanguage || '',
|
||||||
target_lang: translateAPI?.destinationLanguage || ''
|
target_lang: translateAPI?.destinationLanguage || ''
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,3 +5,12 @@ export const sanitizeText = (text: string) => {
|
||||||
.replace(/</g, '<')
|
.replace(/</g, '<')
|
||||||
.replace(/>/g, '>');
|
.replace(/>/g, '>');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const unescapeText = (text: string) => {
|
||||||
|
return text
|
||||||
|
.replace(/"/g, '"')
|
||||||
|
.replace(/'/g, "'")
|
||||||
|
.replace(/</g, '<')
|
||||||
|
.replace(/>/g, '>')
|
||||||
|
.replace(/&/g, '&');
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue