mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
56 lines
2.4 KiB
TypeScript
56 lines
2.4 KiB
TypeScript
import sanitizeHtml = require('sanitize-html');
|
|
import sanitizeUrl = require('@braintree/sanitize-url');
|
|
|
|
// intended mainly as protection against XSS via import
|
|
// secondarily, it (partly) protects against "CSS takeover"
|
|
// sanitize also note titles, label values etc. - there are so many usages which make it difficult
|
|
// to guarantee all of them are properly handled
|
|
function sanitize(dirtyHtml: string) {
|
|
if (!dirtyHtml) {
|
|
return dirtyHtml;
|
|
}
|
|
|
|
// avoid H1 per https://github.com/zadam/trilium/issues/1552
|
|
// demote H1, and if that conflicts with existing H2, demote that, etc
|
|
const transformTags: Record<string, string> = {};
|
|
const lowercasedHtml = dirtyHtml.toLowerCase();
|
|
for (let i = 1; i < 6; ++i) {
|
|
if (lowercasedHtml.includes(`<h${i}`)) {
|
|
transformTags[`h${i}`] = `h${i + 1}`;
|
|
}
|
|
else {
|
|
break;
|
|
}
|
|
}
|
|
|
|
// to minimize document changes, compress H
|
|
return sanitizeHtml(dirtyHtml, {
|
|
allowedTags: [
|
|
'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'blockquote', 'p', 'a', 'ul', 'ol',
|
|
'li', 'b', 'i', 'strong', 'em', 'strike', 's', 'del', 'abbr', 'code', 'hr', 'br', 'div',
|
|
'table', 'thead', 'caption', 'tbody', 'tfoot', 'tr', 'th', 'td', 'pre', 'section', 'img',
|
|
'figure', 'figcaption', 'span', 'label', 'input', 'details', 'summary', 'address', 'aside', 'footer',
|
|
'header', 'hgroup', 'main', 'nav', 'dl', 'dt', 'menu', 'bdi', 'bdo', 'dfn', 'kbd', 'mark', 'q', 'time',
|
|
'var', 'wbr', 'area', 'map', 'track', 'video', 'audio', 'picture', 'del', 'ins',
|
|
'en-media' // for ENEX import
|
|
],
|
|
allowedAttributes: {
|
|
'*': [ 'class', 'style', 'title', 'src', 'href', 'hash', 'disabled', 'align', 'alt', 'center', 'data-*' ]
|
|
},
|
|
allowedSchemes: [
|
|
'http', 'https', 'ftp', 'ftps', 'mailto', 'data', 'evernote', 'file', 'facetime', 'irc', 'gemini', 'git',
|
|
'gopher', 'imap', 'irc', 'irc6', 'jabber', 'jar', 'lastfm', 'ldap', 'ldaps', 'magnet', 'message',
|
|
'mumble', 'nfs', 'onenote', 'pop', 'rmi', 's3', 'sftp', 'skype', 'sms', 'spotify', 'steam', 'svn', 'udp',
|
|
'view-source', 'vnc', 'ws', 'wss', 'xmpp', 'jdbc', 'slack'
|
|
],
|
|
transformTags,
|
|
});
|
|
}
|
|
|
|
export = {
|
|
sanitize,
|
|
sanitizeUrl: (url: string) => {
|
|
return sanitizeUrl.sanitizeUrl(url).trim();
|
|
}
|
|
};
|