mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 10:00:55 +01:00
Fixed escaping of tweet in meta tags
This commit is contained in:
parent
280a2d0376
commit
502fb7256a
2 changed files with 6 additions and 11 deletions
|
@ -5,6 +5,7 @@ import { linkFixer } from './linkFixer';
|
|||
import { colorFromPalette } from './palette';
|
||||
import { renderPoll } from './poll';
|
||||
import { handleQuote } from './quote';
|
||||
import { sanitizeText } from './utils';
|
||||
|
||||
export const handleStatus = async (
|
||||
status: string,
|
||||
|
@ -109,7 +110,7 @@ export const handleStatus = async (
|
|||
`<meta name="twitter:title" content="${name} (@${screenName})"/>`,
|
||||
`<meta name="twitter:image" content="0"/>`,
|
||||
`<meta name="twitter:creator" content="@${name}"/>`,
|
||||
`<meta content="${text}" property="og:description"/>`
|
||||
`<meta content="${sanitizeText(text)}" property="og:description"/>`
|
||||
);
|
||||
} else {
|
||||
console.log('Media available');
|
||||
|
@ -194,7 +195,7 @@ export const handleStatus = async (
|
|||
|
||||
headers.push(
|
||||
`<meta content="${name} (@${screenName})" property="og:title"/>`,
|
||||
`<meta content="${text}" property="og:description"/>`
|
||||
`<meta content="${sanitizeText(text)}" property="og:description"/>`
|
||||
);
|
||||
}
|
||||
|
||||
|
|
12
src/utils.ts
12
src/utils.ts
|
@ -1,9 +1,3 @@
|
|||
// https://stackoverflow.com/questions/5623838/rgb-to-hex-and-hex-to-rgb
|
||||
|
||||
const componentToHex = (component: number) => {
|
||||
let hex = component.toString(16);
|
||||
return hex.length === 1 ? '0' + hex : hex;
|
||||
};
|
||||
|
||||
export const rgbToHex = (r: number, g: number, b: number) =>
|
||||
`#${componentToHex(r)}${componentToHex(g)}${componentToHex(b)}`;
|
||||
export const sanitizeText = (text: string) => {
|
||||
return text.replace(/\"/g, '"').replace(/\</g, '<').replace(/\>/g, '>');
|
||||
}
|
Loading…
Add table
Reference in a new issue