| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387 |
- /*
- * Copyright 2018 Gildas Lormeau
- * contact : gildas.lormeau <at> gmail.com
- *
- * This file is part of SingleFile.
- *
- * SingleFile is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * SingleFile is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with SingleFile. If not, see <http://www.gnu.org/licenses/>.
- */
- /* global fontFaceProxy */
- this.docHelper = this.docHelper || (() => {
- const REMOVED_CONTENT_ATTRIBUTE_NAME = "data-single-file-removed-content";
- const PRESERVED_SPACE_ELEMENT_ATTRIBUTE_NAME = "data-single-file-preserved-space-element";
- const WIN_ID_ATTRIBUTE_NAME = "data-frame-tree-win-id";
- const RESPONSIVE_IMAGE_ATTRIBUTE_NAME = "data-single-file-responsive-image";
- const IMAGE_ATTRIBUTE_NAME = "data-single-file-image";
- const INPUT_VALUE_ATTRIBUTE_NAME = "data-single-file-value";
- const SHEET_ATTRIBUTE_NAME = "data-single-file-sheet";
- const IGNORED_REMOVED_TAG_NAMES = ["NOSCRIPT", "DISABLED-NOSCRIPT", "META", "LINK", "STYLE", "TITLE", "TEMPLATE", "SOURCE", "OBJECT"];
- const MASK_TAGNAME = "singlefile-mask";
- const BACKDROP_THRESHOLD_SIZE = .95;
- const BACKDROP_THRESHOLD_ZINDEX = 999;
- return {
- preProcessDoc,
- postProcessDoc,
- serialize,
- windowIdAttributeName,
- preservedSpaceAttributeName,
- removedContentAttributeName,
- responsiveImagesAttributeName,
- imagesAttributeName,
- inputValueAttributeName,
- sheetAttributeName
- };
- function preProcessDoc(doc, win, options) {
- doc.querySelectorAll("script").forEach(element => element.textContent = element.textContent.replace(/<\/script>/gi, "<\\/script>"));
- doc.querySelectorAll("noscript").forEach(element => {
- const disabledNoscriptElement = doc.createElement("disabled-noscript");
- Array.from(element.childNodes).forEach(node => disabledNoscriptElement.appendChild(node));
- disabledNoscriptElement.hidden = true;
- element.parentElement.replaceChild(disabledNoscriptElement, element);
- });
- doc.head.querySelectorAll("*:not(base):not(link):not(meta):not(noscript):not(script):not(style):not(template):not(title)").forEach(element => element.hidden = true);
- if (options.removeHiddenElements) {
- const markerRemovedContent = removedContentAttributeName(options.sessionId);
- let ignoredTags = JSON.parse(JSON.stringify(IGNORED_REMOVED_TAG_NAMES));
- if (!options.removeScripts) {
- ignoredTags = ignoredTags.concat("SCRIPT");
- }
- if (win) {
- markHiddenCandidates(win, doc.body, false, markerRemovedContent, new Set(), ignoredTags);
- markHiddenElements(win, doc.body, markerRemovedContent);
- markBackdropBackground(doc, win, markerRemovedContent);
- }
- }
- if (win && options.compressHTML) {
- doc.querySelectorAll("*").forEach(element => {
- const style = win.getComputedStyle(element);
- if (style && style.whiteSpace.startsWith("pre")) {
- element.setAttribute(preservedSpaceAttributeName(options.sessionId), "");
- }
- });
- }
- retrieveInputValues(doc, options);
- return {
- canvasData: win && getCanvasData(doc, win),
- fontsData: getFontsData(doc),
- stylesheetContents: getStylesheetContents(doc),
- responsiveImageData: getResponsiveImageData(doc, options),
- imageData: win && getImageData(doc, win, options),
- postersData: getPostersData(doc)
- };
- }
- function markBackdropBackground(doc, win, markerRemovedContent) {
- const threshold = BACKDROP_THRESHOLD_SIZE;
- let elements = getCandidateElements();
- let fullScreen = true;
- while (elements.length > 1 && fullScreen) {
- elements = getCandidateElements();
- const element = elements[0];
- const style = win.getComputedStyle(element);
- fullScreen = (element.clientWidth >= win.innerWidth * threshold) && (element.clientHeight >= win.innerHeight * threshold) && (style && style.getPropertyValue("z-index") >= BACKDROP_THRESHOLD_ZINDEX);
- if (fullScreen) {
- element.setAttribute(markerRemovedContent, "");
- }
- }
- function getCandidateElements() {
- return Array.from(doc.elementsFromPoint(win.innerWidth / 2, win.innerHeight / 2)).filter(element => element.tagName.toLowerCase() != MASK_TAGNAME && element.getAttribute(markerRemovedContent) == null);
- }
- }
- function markHiddenCandidates(win, element, elementHidden, markerRemovedContent, removedCandidates, ignoredTags) {
- const elements = Array.from(element.childNodes).filter(node => node instanceof win.HTMLElement);
- elements.forEach(element => markHiddenCandidates(win, element, elementHidden || testHiddenElement(win, element), markerRemovedContent, removedCandidates, ignoredTags));
- if (elementHidden && !ignoredTags.includes(element.tagName)) {
- if (elements.length) {
- const hiddenCandidate = !elements.find(element => !removedCandidates.has(element));
- if (hiddenCandidate) {
- removedCandidates.add(element);
- elements.forEach(element => {
- element.setAttribute(markerRemovedContent, "");
- });
- }
- } else {
- removedCandidates.add(element);
- }
- }
- }
- function markHiddenElements(win, element, markerRemovedContent) {
- const elements = Array.from(element.childNodes).filter(node => node.nodeType == win.Node.ELEMENT_NODE);
- elements.forEach(element => markHiddenElements(win, element, markerRemovedContent));
- if (element.parentElement.getAttribute(markerRemovedContent) != "") {
- element.removeAttribute(markerRemovedContent);
- }
- }
- function testHiddenElement(win, element) {
- let hidden = element.hidden;
- if (!hidden) {
- const style = win.getComputedStyle(element);
- if (style) {
- hidden = style.display == "none";
- if (!hidden && (style.opacity == "0" || style.visibility == "hidden")) {
- const boundingRect = element.getBoundingClientRect();
- hidden = !boundingRect.width && !boundingRect.height;
- }
- }
- }
- hidden = Boolean(hidden);
- return hidden;
- }
- function postProcessDoc(doc, options) {
- doc.querySelectorAll("disabled-noscript").forEach(element => {
- const noscriptElement = doc.createElement("noscript");
- Array.from(element.childNodes).forEach(node => noscriptElement.appendChild(node));
- element.parentElement.replaceChild(noscriptElement, element);
- });
- doc.head.querySelectorAll("*:not(base):not(link):not(meta):not(noscript):not(script):not(style):not(template):not(title)").forEach(element => element.removeAttribute("hidden"));
- if (options.removeHiddenElements) {
- doc.querySelectorAll("[" + removedContentAttributeName(options.sessionId) + "]").forEach(element => element.removeAttribute(removedContentAttributeName(options.sessionId)));
- }
- if (options.compressHTML) {
- doc.querySelectorAll("[" + preservedSpaceAttributeName(options.sessionId) + "]").forEach(element => element.removeAttribute(preservedSpaceAttributeName(options.sessionId)));
- }
- doc.querySelectorAll("[" + responsiveImagesAttributeName(options.sessionId) + "]").forEach(element => element.removeAttribute(responsiveImagesAttributeName(options.sessionId)));
- doc.querySelectorAll("[" + imagesAttributeName(options.sessionId) + "]").forEach(element => element.removeAttribute(imagesAttributeName(options.sessionId)));
- doc.querySelectorAll("[" + inputValueAttributeName(options.sessionId) + "]").forEach(element => element.removeAttribute(inputValueAttributeName(options.sessionId)));
- }
- function responsiveImagesAttributeName(sessionId) {
- return RESPONSIVE_IMAGE_ATTRIBUTE_NAME + (sessionId ? "-" + sessionId : "");
- }
- function imagesAttributeName(sessionId) {
- return IMAGE_ATTRIBUTE_NAME + (sessionId || "");
- }
- function preservedSpaceAttributeName(sessionId) {
- return PRESERVED_SPACE_ELEMENT_ATTRIBUTE_NAME + (sessionId || "");
- }
- function removedContentAttributeName(sessionId) {
- return REMOVED_CONTENT_ATTRIBUTE_NAME + (sessionId || "");
- }
- function windowIdAttributeName(sessionId) {
- return WIN_ID_ATTRIBUTE_NAME + (sessionId || "");
- }
- function inputValueAttributeName(sessionId) {
- return INPUT_VALUE_ATTRIBUTE_NAME + (sessionId || "");
- }
- function sheetAttributeName(sessionId) {
- return SHEET_ATTRIBUTE_NAME + (sessionId || "");
- }
- function getCanvasData(doc, win) {
- if (doc) {
- const canvasData = [];
- doc.querySelectorAll("canvas").forEach(canvasElement => {
- try {
- const size = getSize(win, canvasElement);
- canvasData.push({ dataURI: canvasElement.toDataURL("image/png", ""), width: size.width, height: size.height });
- } catch (error) {
- canvasData.push(null);
- }
- });
- return canvasData;
- }
- }
- function getStylesheetContents(doc) {
- if (doc) {
- const contents = [];
- doc.querySelectorAll("style").forEach((styleElement, styleIndex) => {
- let stylesheet;
- try {
- const tempStyleElement = doc.createElement("style");
- tempStyleElement.textContent = styleElement.textContent;
- doc.body.appendChild(tempStyleElement);
- stylesheet = tempStyleElement.sheet;
- tempStyleElement.remove();
- if (!stylesheet || stylesheet.cssRules.length != styleElement.sheet.cssRules.length) {
- contents[styleIndex] = Array.from(styleElement.sheet.cssRules).map(rule => rule.cssText).join("\n");
- }
- } catch (error) {
- /* ignored */
- }
- });
- return contents;
- }
- }
- function getImageData(doc, win, options) {
- if (doc) {
- const data = [];
- doc.querySelectorAll("img").forEach((imageElement, imageElementIndex) => {
- imageElement.setAttribute(imagesAttributeName(options.sessionId), imageElementIndex);
- const imageData = {
- src: imageElement.currentSrc || imageElement.src
- };
- const computedStyle = win.getComputedStyle(imageElement);
- if (computedStyle) {
- imageData.size = getSize(win, imageElement);
- imageData.empty = imageElement.naturalWidth <= 1 && imageElement.naturalHeight <= 1;
- if ((!computedStyle.getPropertyValue("background-image") || computedStyle.getPropertyValue("background-image") == "none") && imageData.size.pxWidth > 1 && imageData.size.pxHeight > 1) {
- imageData.replaceable = true;
- imageData.backgroundColor = computedStyle.getPropertyValue("background-color");
- imageData.objectFit = computedStyle.getPropertyValue("object-fit");
- imageData.objectPosition = computedStyle.getPropertyValue("object-position");
- }
- }
- data.push(imageData);
- });
- return data;
- }
- }
- function getSize(win, imageElement) {
- const computedStyle = win.getComputedStyle(imageElement);
- let paddingLeft, paddingRight, paddingTop, paddingBottom, borderLeft, borderRight, borderTop, borderBottom;
- paddingLeft = getWidth("padding-left", computedStyle);
- paddingRight = getWidth("padding-right", computedStyle);
- paddingTop = getWidth("padding-top", computedStyle);
- paddingBottom = getWidth("padding-bottom", computedStyle);
- borderLeft = getWidth("border-left-width", computedStyle);
- borderRight = getWidth("border-right-width", computedStyle);
- borderTop = getWidth("border-top-width", computedStyle);
- borderBottom = getWidth("border-bottom-width", computedStyle);
- const width = imageElement.clientWidth;
- const height = imageElement.clientHeight;
- if (width >= 0 && height >= 0 && paddingLeft >= 0 && paddingRight >= 0 && paddingTop >= 0 && paddingBottom >= 0 && borderLeft >= 0 && borderRight >= 0 && borderTop >= 0 && borderBottom >= 0) {
- return {
- width: (paddingLeft || paddingRight || borderLeft || borderRight) && (width - paddingLeft - paddingRight - borderLeft - borderRight) + "px",
- pxWidth: Math.round(width - paddingLeft - paddingRight - borderLeft - borderRight),
- height: (paddingTop || paddingBottom || borderTop || borderBottom) && (height - paddingTop - paddingBottom - borderTop - borderBottom) + "px",
- pxHeight: Math.round(height - paddingTop - paddingBottom - borderTop - borderBottom),
- };
- }
- }
- function getWidth(styleName, computedStyle) {
- if (computedStyle.getPropertyValue(styleName).endsWith("px")) {
- return parseFloat(computedStyle.getPropertyValue(styleName));
- }
- }
- function getResponsiveImageData(doc, options) {
- if (doc) {
- const data = [];
- doc.querySelectorAll("picture, img[srcset]").forEach((element, elementIndex) => {
- const tagName = element.tagName.toLowerCase();
- let imageData = {}, imageElement;
- element.setAttribute(responsiveImagesAttributeName(options.sessionId), elementIndex);
- if (tagName == "picture") {
- const sources = Array.from(element.querySelectorAll("source")).map(sourceElement => (
- { src: sourceElement.src, srcset: sourceElement.srcset }
- ));
- imageElement = element.querySelector("img");
- imageData.sources = sources;
- }
- if (tagName == "img") {
- imageElement = element;
- }
- if (imageElement) {
- let naturalWidth = imageElement.naturalWidth, naturalHeight = imageElement.naturalHeight;
- if (naturalWidth <= 1 && naturalHeight <= 1) {
- const imgElement = doc.createElement("img");
- imgElement.src = imageElement.src;
- doc.body.appendChild(imgElement);
- naturalWidth = imgElement.width;
- naturalHeight = imgElement.height;
- imgElement.remove();
- }
- if (naturalWidth > 1 && naturalHeight > 1) {
- imageData.src = (!imageElement.currentSrc.startsWith("data:") && imageElement.currentSrc) || (!imageElement.src.startsWith("data:") && imageElement.src);
- imageData.srcset = imageElement.srcset;
- }
- }
- data.push(imageData);
- });
- return data;
- }
- }
- function getPostersData(doc) {
- if (doc) {
- const postersData = [];
- doc.querySelectorAll("video").forEach(videoElement => {
- if (videoElement.poster) {
- postersData.push(null);
- } else {
- const canvasElement = doc.createElement("canvas");
- const context = canvasElement.getContext("2d");
- canvasElement.width = videoElement.clientWidth;
- canvasElement.height = videoElement.clientHeight;
- try {
- context.drawImage(videoElement, 0, 0, canvasElement.width, canvasElement.height);
- postersData.push(canvasElement.toDataURL("image/png", ""));
- } catch (error) {
- postersData.push(null);
- }
- }
- });
- return postersData;
- }
- }
- function getFontsData() {
- if (typeof fontFaceProxy != "undefined") {
- return fontFaceProxy.getFontsData();
- }
- }
- function retrieveInputValues(doc, options) {
- doc.querySelectorAll("input").forEach(input => input.setAttribute(inputValueAttributeName(options.sessionId), input.value));
- doc.querySelectorAll("textarea").forEach(textarea => textarea.setAttribute(inputValueAttributeName(options.sessionId), textarea.value));
- doc.querySelectorAll("select").forEach(select => {
- select.querySelectorAll("option").forEach(option => {
- if (option.selected) {
- option.setAttribute(inputValueAttributeName(options.sessionId), "");
- }
- });
- });
- }
- function serialize(doc) {
- const docType = doc.doctype;
- let docTypeString = "";
- if (docType) {
- docTypeString = "<!DOCTYPE " + docType.nodeName;
- if (docType.publicId) {
- docTypeString += " PUBLIC \"" + docType.publicId + "\"";
- if (docType.systemId) {
- docTypeString += " \"" + docType.systemId + "\"";
- }
- } else if (docType.systemId) {
- docTypeString += " SYSTEM \"" + docType.systemId + "\"";
- } if (docType.internalSubset) {
- docTypeString += " [" + docType.internalSubset + "]";
- }
- docTypeString += "> ";
- }
- return docTypeString + doc.documentElement.outerHTML;
- }
- })();
|