Fixed API sending escaped HTML #24

This commit is contained in:
dangered wolf 2022-08-06 04:09:21 -04:00
parent 6a556e79d2
commit fbecb189d4
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 12 additions and 2 deletions

View file

@ -5,6 +5,7 @@ import { linkFixer } from './linkFixer';
import { handleMosaic } from './mosaic';
import { colorFromPalette } from './palette';
import { translateTweet } from './translate';
import { unescapeText } from './utils';
const processMedia = (media: TweetMedia): APIPhoto | APIVideo | null => {
if (media.type === 'photo') {
@ -50,7 +51,7 @@ const populateTweetProperties = async (
apiTweet.url = `${Constants.TWITTER_ROOT}/${screenName}/status/${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 = {
name: name,
screen_name: screenName,
@ -130,7 +131,7 @@ const populateTweetProperties = async (
);
if (translateAPI !== null && translateAPI?.translation) {
apiTweet.translation = {
text: linkFixer(tweet, translateAPI?.translation || ''),
text: unescapeText(linkFixer(tweet, translateAPI?.translation || '')),
source_lang: translateAPI?.sourceLanguage || '',
target_lang: translateAPI?.destinationLanguage || ''
};

View file

@ -5,3 +5,12 @@ export const sanitizeText = (text: string) => {
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;');
};
export const unescapeText = (text: string) => {
return text
.replace(/&#34;/g, '"')
.replace(/&#39;/g, "'")
.replace(/&lt;/g, '<')
.replace(/&gt;/g, '>')
.replace(/&amp;/g, '&');
}