| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- /*
- * 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 browser, document, window, setTimeout, URL, Blob, MouseEvent */
- this.singlefile.extension.core.content.main = this.singlefile.extension.core.content.main || (() => {
- const singlefile = this.singlefile;
- const MAX_CONTENT_SIZE = 32 * (1024 * 1024);
- const SingleFile = singlefile.lib.SingleFile.getClass();
- let ui, processing = false, processor;
- browser.runtime.onMessage.addListener(async message => {
- if (!ui) {
- ui = singlefile.extension.ui.content.main;
- }
- if (message.method == "content.save") {
- await savePage(message);
- return {};
- }
- if (message.method == "content.cancelSave") {
- if (processor) {
- processor.cancel();
- ui.onEndPage();
- browser.runtime.sendMessage({ method: "ui.processCancelled" });
- }
- return {};
- }
- });
- return {};
- async function savePage(message) {
- const options = message.options;
- if (!processing) {
- options.updatedResources = singlefile.extension.core.content.updatedResources || {};
- Object.keys(options.updatedResources).forEach(url => options.updatedResources[url].retrieved = false);
- let selectionFound;
- if (options.selected) {
- selectionFound = await ui.markSelection();
- }
- if (!options.selected || selectionFound) {
- processing = true;
- try {
- const pageData = await processPage(options);
- if (pageData) {
- await downloadPage(pageData, options);
- }
- } catch (error) {
- if (!processor.cancelled) {
- console.error(error); // eslint-disable-line no-console
- browser.runtime.sendMessage({ method: "ui.processError", error });
- }
- }
- } else {
- browser.runtime.sendMessage({ method: "ui.processCancelled" });
- }
- processing = false;
- }
- }
- async function processPage(options) {
- const frames = singlefile.lib.frameTree.content.frames;
- singlefile.lib.helper.initDoc(document);
- ui.onStartPage(options);
- processor = new SingleFile(options);
- const preInitializationPromises = [];
- options.insertSingleFileComment = true;
- if (!options.saveRawPage) {
- if (!options.removeFrames && frames && window.frames && window.frames.length) {
- let frameTreePromise;
- if (options.loadDeferredImages) {
- frameTreePromise = new Promise(resolve => setTimeout(() => resolve(frames.getAsync(options)), options.loadDeferredImagesMaxIdleTime - frames.TIMEOUT_INIT_REQUEST_MESSAGE));
- } else {
- frameTreePromise = frames.getAsync(options);
- }
- ui.onLoadingFrames(options);
- frameTreePromise.then(() => {
- if (!processor.cancelled) {
- ui.onLoadFrames(options);
- }
- });
- preInitializationPromises.push(frameTreePromise);
- }
- if (options.loadDeferredImages) {
- const lazyLoadPromise = singlefile.lib.lazy.content.loader.process(options);
- ui.onLoadingDeferResources(options);
- lazyLoadPromise.then(() => {
- if (!processor.cancelled) {
- ui.onLoadDeferResources(options);
- }
- });
- preInitializationPromises.push(lazyLoadPromise);
- }
- }
- let index = 0, maxIndex = 0;
- options.onprogress = event => {
- if (!processor.cancelled) {
- if (event.type == event.RESOURCES_INITIALIZED) {
- maxIndex = event.detail.max;
- }
- if (event.type == event.RESOURCES_INITIALIZED || event.type == event.RESOURCE_LOADED) {
- if (event.type == event.RESOURCE_LOADED) {
- index++;
- }
- browser.runtime.sendMessage({ method: "ui.processProgress", index, maxIndex });
- ui.onLoadResource(index, maxIndex, options);
- } if (event.type == event.PAGE_ENDED) {
- browser.runtime.sendMessage({ method: "ui.processEnd" });
- } else if (!event.detail.frame) {
- if (event.type == event.PAGE_LOADING) {
- ui.onPageLoading();
- } else if (event.type == event.PAGE_LOADED) {
- ui.onLoadPage();
- } else if (event.type == event.STAGE_STARTED) {
- if (event.detail.step < 3) {
- ui.onStartStage(event.detail.step, options);
- }
- } else if (event.type == event.STAGE_ENDED) {
- if (event.detail.step < 3) {
- ui.onEndStage(event.detail.step, options);
- }
- } else if (event.type == event.STAGE_TASK_STARTED) {
- ui.onStartStageTask(event.detail.step, event.detail.task);
- } else if (event.type == event.STAGE_TASK_ENDED) {
- ui.onEndStageTask(event.detail.step, event.detail.task);
- }
- }
- }
- };
- [options.frames] = await new Promise(async resolve => {
- const preInitializationAllPromises = Promise.all(preInitializationPromises);
- const cancelProcessor = processor.cancel.bind(processor);
- processor.cancel = function () {
- cancelProcessor();
- resolve([[]]);
- };
- await preInitializationAllPromises;
- resolve(preInitializationAllPromises);
- });
- const selectedFrame = options.frames && options.frames.find(frameData => frameData.requestedFrame);
- options.win = window;
- if (selectedFrame) {
- options.content = selectedFrame.content;
- options.url = selectedFrame.baseURI;
- options.canvases = selectedFrame.canvases;
- options.fonts = selectedFrame.fonts;
- options.stylesheets = selectedFrame.stylesheets;
- options.images = selectedFrame.images;
- options.posters = selectedFrame.posters;
- options.usedFonts = selectedFrame.usedFonts;
- options.shadowRoots = selectedFrame.shadowRoots;
- options.imports = selectedFrame.imports;
- } else {
- options.doc = document;
- }
- if (!processor.cancelled) {
- await processor.run();
- }
- if (!options.saveRawPage && !options.removeFrames && frames) {
- frames.cleanup(options);
- }
- let page;
- if (!processor.cancelled) {
- if (options.confirmInfobarContent) {
- options.infobarContent = ui.prompt("Infobar content", options.infobarContent) || "";
- }
- page = await processor.getPageData();
- if (options.selected) {
- ui.unmarkSelection();
- }
- ui.onEndPage();
- if (options.displayStats) {
- console.log("SingleFile stats"); // eslint-disable-line no-console
- console.table(page.stats); // eslint-disable-line no-console
- }
- }
- return page;
- }
- async function downloadPage(pageData, options) {
- if (options.includeInfobar) {
- await singlefile.common.ui.content.infobar.includeScript(pageData);
- }
- if (options.backgroundSave) {
- for (let blockIndex = 0; blockIndex * MAX_CONTENT_SIZE < pageData.content.length; blockIndex++) {
- const message = {
- method: "downloads.download",
- confirmFilename: options.confirmFilename,
- filenameConflictAction: options.filenameConflictAction,
- filename: pageData.filename,
- saveToClipboard: options.saveToClipboard,
- filenameReplacementCharacter: options.filenameReplacementCharacter
- };
- message.truncated = pageData.content.length > MAX_CONTENT_SIZE;
- if (message.truncated) {
- message.finished = (blockIndex + 1) * MAX_CONTENT_SIZE > pageData.content.length;
- message.content = pageData.content.substring(blockIndex * MAX_CONTENT_SIZE, (blockIndex + 1) * MAX_CONTENT_SIZE);
- } else {
- message.content = pageData.content;
- }
- await browser.runtime.sendMessage(message);
- }
- } else {
- if (options.saveToClipboard) {
- saveToClipboard(pageData);
- } else {
- downloadPageForeground(pageData, options);
- }
- }
- await browser.runtime.sendMessage({ method: "downloads.end" });
- }
- function downloadPageForeground(pageData, options) {
- if (options.confirmFilename) {
- pageData.filename = ui.prompt("File name", pageData.filename);
- }
- if (pageData.filename && pageData.filename.length) {
- const link = document.createElement("a");
- link.download = pageData.filename;
- link.href = URL.createObjectURL(new Blob([pageData.content], { type: "text/html" }));
- link.dispatchEvent(new MouseEvent("click"));
- URL.revokeObjectURL(link.href);
- }
- }
- function saveToClipboard(page) {
- const command = "copy";
- document.addEventListener(command, listener);
- document.execCommand(command);
- document.removeEventListener(command, listener);
- function listener(event) {
- event.clipboardData.setData("text/html", page.content);
- event.clipboardData.setData("text/plain", page.content);
- event.preventDefault();
- }
- }
- })();
|