| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436 |
- /*
- * Copyright 2010-2019 Gildas Lormeau
- * contact : gildas.lormeau <at> gmail.com
- *
- * This file is part of SingleFile.
- *
- * The code in this file is free software: you can redistribute it and/or
- * modify it under the terms of the GNU Affero General Public License
- * (GNU AGPL) as published by the Free Software Foundation, either version 3
- * of the License, or (at your option) any later version.
- *
- * The code in this file 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 Affero
- * General Public License for more details.
- *
- * As additional permission under GNU AGPL version 3 section 7, you may
- * distribute UNMODIFIED VERSIONS OF THIS file without the copy of the GNU
- * AGPL normally required by section 4, provided you include this license
- * notice and a URL through which recipients can access the Corresponding
- * Source.
- */
- /* global hooksFrame */
- 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 SHADOW_ROOT_ATTRIBUTE_NAME = "data-single-file-shadow-root-element";
- const WIN_ID_ATTRIBUTE_NAME = "data-frame-tree-win-id";
- const IMAGE_ATTRIBUTE_NAME = "data-single-file-image";
- const INPUT_VALUE_ATTRIBUTE_NAME = "data-single-file-value";
- const LAZY_SRC_ATTRIBUTE_NAME = "data-lazy-loaded-src";
- const IGNORED_REMOVED_TAG_NAMES = ["NOSCRIPT", "DISABLED-NOSCRIPT", "META", "LINK", "STYLE", "TITLE", "TEMPLATE", "SOURCE", "OBJECT"];
- const REGEXP_SIMPLE_QUOTES_STRING = /^'(.*?)'$/;
- const REGEXP_DOUBLE_QUOTES_STRING = /^"(.*?)"$/;
- const FONT_WEIGHTS = {
- normal: "400",
- bold: "700"
- };
- return {
- initDoc,
- preProcessDoc,
- postProcessDoc,
- serialize,
- removeQuotes,
- WIN_ID_ATTRIBUTE_NAME,
- PRESERVED_SPACE_ELEMENT_ATTRIBUTE_NAME,
- REMOVED_CONTENT_ATTRIBUTE_NAME,
- IMAGE_ATTRIBUTE_NAME,
- INPUT_VALUE_ATTRIBUTE_NAME,
- SHADOW_ROOT_ATTRIBUTE_NAME
- };
- function initDoc(doc) {
- doc.querySelectorAll("meta[http-equiv=refresh]").forEach(element => {
- element.removeAttribute("http-equiv");
- element.setAttribute("disabled-http-equiv", "refresh");
- });
- }
- 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);
- });
- initDoc(doc);
- if (doc.head) {
- doc.head.querySelectorAll("*:not(base):not(link):not(meta):not(noscript):not(script):not(style):not(template):not(title)").forEach(element => element.hidden = true);
- }
- let canvasData, imageData, usedFonts;
- if (win) {
- canvasData = getCanvasData(doc, win);
- imageData = getImageData(doc, win, options);
- }
- if (win) {
- if (doc.body && (options.removeHiddenElements || options.removeUnusedFonts || options.compressHTML)) {
- let elementsInfo = getElementsInfo(win, doc.body);
- if (options.removeHiddenElements) {
- let ignoredTags = JSON.parse(JSON.stringify(IGNORED_REMOVED_TAG_NAMES));
- if (!options.removeScripts) {
- ignoredTags = ignoredTags.concat("SCRIPT");
- }
- markHiddenCandidates(win, doc.body, elementsInfo, false, new Set(), ignoredTags);
- markHiddenElements(doc.body, imageData);
- doc.querySelectorAll("iframe").forEach(element => {
- if (element.getBoundingClientRect) {
- const boundingRect = element.getBoundingClientRect();
- if (element.hidden || element.style.display == "none" || boundingRect.width <= 1 && boundingRect.height <= 1) {
- element.setAttribute(REMOVED_CONTENT_ATTRIBUTE_NAME, "");
- }
- }
- });
- elementsInfo = new Map(Array.from(elementsInfo).filter(([element]) => !element.attributes || element.getAttribute(REMOVED_CONTENT_ATTRIBUTE_NAME) != ""));
- }
- if (options.removeUnusedFonts) {
- let loadedFonts;
- if (doc.fonts) {
- loadedFonts = Array.from(doc.fonts).filter(font => font.status == "loaded" || font.status == "loading");
- }
- usedFonts = getUsedFonts(elementsInfo, loadedFonts);
- }
- if (options.compressHTML) {
- elementsInfo.forEach((elementInfo, element) => {
- if (element.attributes && elementInfo.whiteSpace.startsWith("pre")) {
- element.setAttribute(PRESERVED_SPACE_ELEMENT_ATTRIBUTE_NAME, "");
- }
- });
- }
- }
- }
- retrieveInputValues(doc);
- return {
- canvasData,
- fontsData: getFontsData(doc),
- stylesheetsData: getStylesheetsData(doc),
- imageData,
- postersData: getPostersData(doc),
- usedFonts,
- shadowRootsData: getShadowRootsData(doc.body),
- referrer: doc.referrer
- };
- }
- function getShadowRootsData(element, data = { indexElement: 0, shadowRootsData: [] }) {
- element.querySelectorAll("*").forEach(element => {
- if (element.shadowRoot) {
- const indexEntry = data.indexElement;
- element.setAttribute(SHADOW_ROOT_ATTRIBUTE_NAME, indexEntry);
- data.indexElement++;
- getShadowRootsData(element.shadowRoot, data);
- data.shadowRootsData[indexEntry] = { content: element.shadowRoot.innerHTML };
- }
- });
- return data.shadowRootsData;
- }
- function getUsedFonts(styles, loadedFonts) {
- const usedFonts = new Set();
- styles.forEach(style => {
- const fontFamilyNames = style.fontFamily.split(",");
- fontFamilyNames.forEach(fontFamilyName => {
- fontFamilyName = normalizeFontFamily(fontFamilyName);
- if (!loadedFonts || loadedFonts.find(font => normalizeFontFamily(font.family) == fontFamilyName && font.style == style.fontStyle)) {
- const { fontWeight, fontStyle, fontVariant } = style;
- usedFonts.add([fontFamilyName, fontWeight, fontStyle, fontVariant]);
- }
- });
- });
- return Array.from(usedFonts);
- }
- function normalizeFontFamily(fontFamilyName) {
- return removeQuotes(fontFamilyName.trim()).toLowerCase();
- }
- function getElementsInfo(win, element) {
- const elementsInfo = new Map();
- element.querySelectorAll("*").forEach(element => {
- setInfo(win, element, elementsInfo);
- setInfo(win, element, elementsInfo, ":first-letter");
- setInfo(win, element, elementsInfo, ":before");
- setInfo(win, element, elementsInfo, ":after");
- });
- return elementsInfo;
- }
- function setInfo(win, element, elementsInfo, pseudoElement) {
- const computedStyle = win.getComputedStyle(element, pseudoElement);
- const key = pseudoElement ? { element, pseudoElement } : element;
- elementsInfo.set(key, {
- display: computedStyle.getPropertyValue("display"),
- opacity: computedStyle.getPropertyValue("opacity"),
- visibility: computedStyle.getPropertyValue("visibility"),
- fontFamily: computedStyle.getPropertyValue("font-family"),
- fontWeight: getFontWeight(computedStyle.getPropertyValue("font-weight")),
- fontStyle: computedStyle.getPropertyValue("font-style") || "normal",
- fontVariant: computedStyle.getPropertyValue("font-variant") || "normal",
- whiteSpace: computedStyle.getPropertyValue("white-space")
- });
- }
- function markHiddenCandidates(win, element, elementsInfo, elementHidden, removedCandidates, ignoredTags) {
- const elements = Array.from(element.childNodes).filter(node => node instanceof win.HTMLElement);
- elements.forEach(element => markHiddenCandidates(win, element, elementsInfo, elementHidden || testHiddenElement(element, elementsInfo.get(element)), removedCandidates, ignoredTags));
- if (elementHidden && !ignoredTags.includes(element.tagName)) {
- if (elements.length) {
- if (!elements.find(element => !removedCandidates.has(element))) {
- removedCandidates.add(element);
- elements.forEach(element => element.setAttribute(REMOVED_CONTENT_ATTRIBUTE_NAME, ""));
- }
- } else {
- removedCandidates.add(element);
- }
- }
- }
- function markHiddenElements(element, imageData) {
- if (element.getAttribute(REMOVED_CONTENT_ATTRIBUTE_NAME) == "") {
- element.removeAttribute(REMOVED_CONTENT_ATTRIBUTE_NAME);
- if (element.tagName == "IMG") {
- const imgData = imageData[Number(element.getAttribute(IMAGE_ATTRIBUTE_NAME))];
- if (imgData) {
- imgData.currentSrc = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==";
- }
- }
- } else {
- Array.from(element.childNodes).filter(node => node.nodeType == 1).forEach(element => markHiddenElements(element, imageData));
- }
- }
- function testHiddenElement(element, style) {
- let hidden = false;
- if (style) {
- hidden = style.display == "none";
- if (!hidden && (style.opacity == "0" || style.visibility == "hidden") && element.getBoundingClientRect) {
- const boundingRect = element.getBoundingClientRect();
- hidden = !boundingRect.width && !boundingRect.height;
- }
- }
- return Boolean(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.querySelectorAll("meta[disabled-http-equiv]").forEach(element => {
- element.setAttribute("http-equiv", element.getAttribute("disabled-http-equiv"));
- element.removeAttribute("disabled-http-equiv");
- });
- if (doc.head) {
- 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("[" + REMOVED_CONTENT_ATTRIBUTE_NAME + "]").forEach(element => element.removeAttribute(REMOVED_CONTENT_ATTRIBUTE_NAME));
- }
- if (options.compressHTML) {
- doc.querySelectorAll("[" + PRESERVED_SPACE_ELEMENT_ATTRIBUTE_NAME + "]").forEach(element => element.removeAttribute(PRESERVED_SPACE_ELEMENT_ATTRIBUTE_NAME));
- }
- doc.querySelectorAll("[" + IMAGE_ATTRIBUTE_NAME + "]").forEach(element => element.removeAttribute(IMAGE_ATTRIBUTE_NAME));
- doc.querySelectorAll("[" + INPUT_VALUE_ATTRIBUTE_NAME + "]").forEach(element => element.removeAttribute(INPUT_VALUE_ATTRIBUTE_NAME));
- doc.querySelectorAll("[" + SHADOW_ROOT_ATTRIBUTE_NAME + "]").forEach(element => element.removeAttribute(SHADOW_ROOT_ATTRIBUTE_NAME));
- }
- 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 getStylesheetsData(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(cssRule => cssRule.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(IMAGE_ATTRIBUTE_NAME, imageElementIndex);
- const imageData = {
- currentSrc: (options.loadDeferredImages && imageElement.getAttribute(LAZY_SRC_ATTRIBUTE_NAME)) || imageElement.currentSrc
- };
- imageElement.removeAttribute(LAZY_SRC_ATTRIBUTE_NAME);
- const computedStyle = win.getComputedStyle(imageElement);
- if (computedStyle) {
- imageData.size = getSize(win, imageElement);
- if ((!computedStyle.getPropertyValue("box-shadow") || computedStyle.getPropertyValue("box-shadow") == "none") &&
- (!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.boxSizing = computedStyle.getPropertyValue("box-sizing");
- imageData.objectPosition = computedStyle.getPropertyValue("object-position");
- }
- }
- data.push(imageData);
- });
- return data;
- }
- }
- function getSize(win, imageElement) {
- let pxWidth = imageElement.naturalWidth;
- let pxHeight = imageElement.naturalHeight;
- if (!pxWidth && !pxHeight) {
- const computedStyle = win.getComputedStyle(imageElement);
- let removeBorderWidth = false;
- if (computedStyle.getPropertyValue("box-sizing") == "content-box") {
- const boxSizingValue = imageElement.style.getPropertyValue("box-sizing");
- const boxSizingPriority = imageElement.style.getPropertyPriority("box-sizing");
- const clientWidth = imageElement.clientWidth;
- imageElement.style.setProperty("box-sizing", "border-box", "important");
- removeBorderWidth = imageElement.clientWidth != clientWidth;
- if (boxSizingValue) {
- imageElement.style.setProperty("box-sizing", boxSizingValue, boxSizingPriority);
- } else {
- imageElement.style.removeProperty("box-sizing");
- }
- }
- 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);
- if (removeBorderWidth) {
- borderLeft = getWidth("border-left-width", computedStyle);
- borderRight = getWidth("border-right-width", computedStyle);
- borderTop = getWidth("border-top-width", computedStyle);
- borderBottom = getWidth("border-bottom-width", computedStyle);
- } else {
- borderLeft = borderRight = borderTop = borderBottom = 0;
- }
- pxWidth = Math.max(0, imageElement.clientWidth - paddingLeft - paddingRight - borderLeft - borderRight);
- pxHeight = Math.max(0, imageElement.clientHeight - paddingTop - paddingBottom - borderTop - borderBottom);
- }
- return { pxWidth, pxHeight };
- }
- function getWidth(styleName, computedStyle) {
- if (computedStyle.getPropertyValue(styleName).endsWith("px")) {
- return parseFloat(computedStyle.getPropertyValue(styleName));
- }
- }
- 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 hooksFrame != "undefined") {
- return hooksFrame.getFontsData();
- }
- }
- function retrieveInputValues(doc) {
- doc.querySelectorAll("input").forEach(input => input.setAttribute(INPUT_VALUE_ATTRIBUTE_NAME, input.value));
- doc.querySelectorAll("input[type=radio], input[type=checkbox]").forEach(input => input.setAttribute(INPUT_VALUE_ATTRIBUTE_NAME, input.checked));
- doc.querySelectorAll("textarea").forEach(textarea => textarea.setAttribute(INPUT_VALUE_ATTRIBUTE_NAME, textarea.value));
- doc.querySelectorAll("select").forEach(select => {
- select.querySelectorAll("option").forEach(option => {
- if (option.selected) {
- option.setAttribute(INPUT_VALUE_ATTRIBUTE_NAME, "");
- }
- });
- });
- }
- 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;
- }
- function removeQuotes(string) {
- if (string.match(REGEXP_SIMPLE_QUOTES_STRING)) {
- string = string.replace(REGEXP_SIMPLE_QUOTES_STRING, "$1");
- } else {
- string = string.replace(REGEXP_DOUBLE_QUOTES_STRING, "$1");
- }
- return string.trim();
- }
- function getFontWeight(weight) {
- return FONT_WEIGHTS[weight] || weight;
- }
- })();
|