mirror of https://gitlab.com/octtspacc/sitoctt
247 lines
6.5 KiB
JavaScript
247 lines
6.5 KiB
JavaScript
"use strict";
|
|
module.exports = {
|
|
// NOTE: The `serializeOne()` function used to live on the `Node.prototype`
|
|
// as a private method `Node#_serializeOne(child)`, however that requires
|
|
// a megamorphic property access `this._serializeOne` just to get to the
|
|
// method, and this is being done on lots of different `Node` subclasses,
|
|
// which puts a lot of pressure on V8's megamorphic stub cache. So by
|
|
// moving the helper off of the `Node.prototype` and into a separate
|
|
// function in this helper module, we get a monomorphic property access
|
|
// `NodeUtils.serializeOne` to get to the function and reduce pressure
|
|
// on the megamorphic stub cache.
|
|
// See https://github.com/fgnass/domino/pull/142 for more information.
|
|
serializeOne: serializeOne,
|
|
|
|
// Export util functions so that we can run extra test for them.
|
|
// Note: we prefix function names with `ɵ`, similar to what we do
|
|
// with internal functions in Angular packages.
|
|
ɵescapeMatchingClosingTag: escapeMatchingClosingTag,
|
|
ɵescapeClosingCommentTag: escapeClosingCommentTag,
|
|
ɵescapeProcessingInstructionContent: escapeProcessingInstructionContent
|
|
};
|
|
|
|
var utils = require('./utils');
|
|
var NAMESPACE = utils.NAMESPACE;
|
|
|
|
var hasRawContent = {
|
|
STYLE: true,
|
|
SCRIPT: true,
|
|
XMP: true,
|
|
IFRAME: true,
|
|
NOEMBED: true,
|
|
NOFRAMES: true,
|
|
PLAINTEXT: true
|
|
};
|
|
|
|
var emptyElements = {
|
|
area: true,
|
|
base: true,
|
|
basefont: true,
|
|
bgsound: true,
|
|
br: true,
|
|
col: true,
|
|
embed: true,
|
|
frame: true,
|
|
hr: true,
|
|
img: true,
|
|
input: true,
|
|
keygen: true,
|
|
link: true,
|
|
meta: true,
|
|
param: true,
|
|
source: true,
|
|
track: true,
|
|
wbr: true
|
|
};
|
|
|
|
var extraNewLine = {
|
|
/* Removed in https://github.com/whatwg/html/issues/944
|
|
pre: true,
|
|
textarea: true,
|
|
listing: true
|
|
*/
|
|
};
|
|
|
|
const ESCAPE_REGEXP = /[&<>\u00A0]/g;
|
|
const ESCAPE_ATTR_REGEXP = /[&"<>\u00A0]/g;
|
|
|
|
function escape(s) {
|
|
if (!ESCAPE_REGEXP.test(s)) {
|
|
// nothing to do, fast path
|
|
return s;
|
|
}
|
|
|
|
return s.replace(ESCAPE_REGEXP, (c) => {
|
|
switch (c) {
|
|
case "&":
|
|
return "&";
|
|
case "<":
|
|
return "<";
|
|
case ">":
|
|
return ">";
|
|
case "\u00A0":
|
|
return " ";
|
|
}
|
|
});
|
|
}
|
|
|
|
function escapeAttr(s) {
|
|
if (!ESCAPE_ATTR_REGEXP.test(s)) {
|
|
// nothing to do, fast path
|
|
return s;
|
|
}
|
|
|
|
return s.replace(ESCAPE_ATTR_REGEXP, (c) => {
|
|
switch (c) {
|
|
case "<":
|
|
return "<";
|
|
case ">":
|
|
return ">";
|
|
case "&":
|
|
return "&";
|
|
case '"':
|
|
return """;
|
|
case "\u00A0":
|
|
return " ";
|
|
}
|
|
});
|
|
}
|
|
|
|
function attrname(a) {
|
|
var ns = a.namespaceURI;
|
|
if (!ns)
|
|
return a.localName;
|
|
if (ns === NAMESPACE.XML)
|
|
return 'xml:' + a.localName;
|
|
if (ns === NAMESPACE.XLINK)
|
|
return 'xlink:' + a.localName;
|
|
|
|
if (ns === NAMESPACE.XMLNS) {
|
|
if (a.localName === 'xmlns') return 'xmlns';
|
|
else return 'xmlns:' + a.localName;
|
|
}
|
|
return a.name;
|
|
}
|
|
|
|
/**
|
|
* Escapes matching closing tag in a raw text.
|
|
*
|
|
* For example, given `<style>#text(</style><script></script>)</style>`,
|
|
* the parent tag would by "style" and the raw text is
|
|
* "</style><script></script>". If we come across a matching closing tag
|
|
* (in out case `</style>`) - replace `<` with `<` to avoid unexpected
|
|
* and unsafe behavior after de-serialization.
|
|
*/
|
|
function escapeMatchingClosingTag(rawText, parentTag) {
|
|
const parentClosingTag = '</' + parentTag;
|
|
if (!rawText.toLowerCase().includes(parentClosingTag)) {
|
|
return rawText; // fast path
|
|
}
|
|
const result = [...rawText];
|
|
const matches = rawText.matchAll(new RegExp(parentClosingTag, 'ig'));
|
|
for (const match of matches) {
|
|
result[match.index] = '<';
|
|
}
|
|
return result.join('');
|
|
}
|
|
|
|
const CLOSING_COMMENT_REGEXP = /--!?>/;
|
|
|
|
/**
|
|
* Escapes closing comment tag in a comment content.
|
|
*
|
|
* For example, given `#comment('-->')`, the content of a comment would be
|
|
* updated to `-->` to avoid unexpected and unsafe behavior after
|
|
* de-serialization.
|
|
*/
|
|
function escapeClosingCommentTag(rawContent) {
|
|
if (!CLOSING_COMMENT_REGEXP.test(rawContent)) {
|
|
return rawContent; // fast path
|
|
}
|
|
return rawContent.replace(/(--\!?)>/g, '$1>');
|
|
}
|
|
|
|
/**
|
|
* Escapes processing instruction content by replacing `>` with `>`.
|
|
*/
|
|
function escapeProcessingInstructionContent(rawContent) {
|
|
return rawContent.includes('>')
|
|
? rawContent.replaceAll('>', '>')
|
|
: rawContent;
|
|
}
|
|
|
|
function serializeOne(kid, parent) {
|
|
var s = '';
|
|
switch(kid.nodeType) {
|
|
case 1: //ELEMENT_NODE
|
|
var ns = kid.namespaceURI;
|
|
var html = ns === NAMESPACE.HTML;
|
|
var tagname = (html || ns === NAMESPACE.SVG || ns === NAMESPACE.MATHML) ? kid.localName : kid.tagName;
|
|
|
|
s += '<' + tagname;
|
|
|
|
for(var j = 0, k = kid._numattrs; j < k; j++) {
|
|
var a = kid._attr(j);
|
|
s += ' ' + attrname(a);
|
|
if (a.value !== undefined) s += '="' + escapeAttr(a.value) + '"';
|
|
}
|
|
s += '>';
|
|
|
|
if (!(html && emptyElements[tagname])) {
|
|
var ss = kid.serialize();
|
|
// If an element can have raw content, this content may
|
|
// potentially require escaping to avoid XSS.
|
|
if (hasRawContent[tagname.toUpperCase()]) {
|
|
ss = escapeMatchingClosingTag(ss, tagname);
|
|
}
|
|
if (html && extraNewLine[tagname] && ss.charAt(0)==='\n') s += '\n';
|
|
// Serialize children and add end tag for all others
|
|
s += ss;
|
|
s += '</' + tagname + '>';
|
|
}
|
|
break;
|
|
case 3: //TEXT_NODE
|
|
case 4: //CDATA_SECTION_NODE
|
|
var parenttag;
|
|
if (parent.nodeType === 1 /*ELEMENT_NODE*/ &&
|
|
parent.namespaceURI === NAMESPACE.HTML)
|
|
parenttag = parent.tagName;
|
|
else
|
|
parenttag = '';
|
|
|
|
if (hasRawContent[parenttag] ||
|
|
(parenttag==='NOSCRIPT' && parent.ownerDocument._scripting_enabled)) {
|
|
s += kid.data;
|
|
} else {
|
|
s += escape(kid.data);
|
|
}
|
|
break;
|
|
case 8: //COMMENT_NODE
|
|
s += '<!--' + escapeClosingCommentTag(kid.data) + '-->';
|
|
break;
|
|
case 7: //PROCESSING_INSTRUCTION_NODE
|
|
const content = escapeProcessingInstructionContent(kid.data);
|
|
s += '<?' + kid.target + ' ' + content + '?>';
|
|
break;
|
|
case 10: //DOCUMENT_TYPE_NODE
|
|
s += '<!DOCTYPE ' + kid.name;
|
|
|
|
if (false) {
|
|
// Latest HTML serialization spec omits the public/system ID
|
|
if (kid.publicID) {
|
|
s += ' PUBLIC "' + kid.publicId + '"';
|
|
}
|
|
|
|
if (kid.systemId) {
|
|
s += ' "' + kid.systemId + '"';
|
|
}
|
|
}
|
|
|
|
s += '>';
|
|
break;
|
|
default:
|
|
utils.InvalidStateError();
|
|
}
|
|
return s;
|
|
}
|