| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- /*
- * 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, singlefile, Blob, URL, document, GDrive */
- singlefile.extension.core.bg.downloads = (() => {
- const partialContents = new Map();
- const MIMETYPE_HTML = "text/html";
- const STATE_DOWNLOAD_COMPLETE = "complete";
- const STATE_DOWNLOAD_INTERRUPTED = "interrupted";
- const STATE_ERROR_CANCELED_CHROMIUM = "USER_CANCELED";
- const ERROR_DOWNLOAD_CANCELED_GECKO = "canceled";
- const ERROR_CONFLICT_ACTION_GECKO = "conflictaction prompt not yet implemented";
- const ERROR_INCOGNITO_GECKO = "'incognito'";
- const ERROR_INCOGNITO_GECKO_ALT = "\"incognito\"";
- const ERROR_INVALID_FILENAME_GECKO = "illegal characters";
- const ERROR_INVALID_FILENAME_CHROMIUM = "invalid filename";
- const CLIENT_ID = "207618107333-bktohpfmdfnv5hfavi1ll18h74gqi27v.apps.googleusercontent.com";
- const SCOPES = ["https://www.googleapis.com/auth/drive.file"];
- const manifest = browser.runtime.getManifest();
- const requestPermissionIdentity = manifest.optional_permissions && manifest.optional_permissions.includes("identity");
- const gDrive = new GDrive(CLIENT_ID, SCOPES);
- return {
- onMessage,
- download,
- downloadPage,
- uploadPage
- };
- async function onMessage(message, sender) {
- if (message.method.endsWith(".download")) {
- return downloadTabPage(message, sender.tab);
- }
- if (message.method.endsWith(".disableGDrive")) {
- const authInfo = await singlefile.extension.core.bg.config.getAuthInfo();
- singlefile.extension.core.bg.config.removeAuthInfo();
- await gDrive.revokeAuthToken(authInfo && (authInfo.accessToken || authInfo.revokableAccessToken));
- return {};
- }
- if (message.method.endsWith(".end")) {
- singlefile.extension.core.bg.business.onSaveEnd(sender.tab.id, message.autoClose);
- return {};
- }
- if (message.method.endsWith(".getInfo")) {
- return singlefile.extension.core.bg.business.getTabsInfo();
- }
- if (message.method.endsWith(".cancel")) {
- singlefile.extension.core.bg.business.cancelTab(message.tabId);
- return {};
- }
- }
- async function downloadTabPage(message, tab) {
- let contents;
- if (message.truncated) {
- contents = partialContents.get(tab.id);
- if (!contents) {
- contents = [];
- partialContents.set(tab.id, contents);
- }
- contents.push(message.content);
- if (message.finished) {
- partialContents.delete(tab.id);
- }
- } else if (message.content) {
- contents = [message.content];
- }
- if (!message.truncated || message.finished) {
- if (message.openEditor) {
- singlefile.extension.ui.bg.main.onEdit(tab.id);
- await singlefile.extension.core.bg.editor.open({ filename: message.filename, content: contents.join("") }, {
- backgroundSave: message.backgroundSave,
- saveToClipboard: message.saveToClipboard,
- saveToGDrive: message.saveToGDrive,
- confirmFilename: message.confirmFilename,
- incognito: tab.incognito,
- filenameConflictAction: message.filenameConflictAction,
- filenameReplacementCharacter: message.filenameReplacementCharacter,
- compressHTML: message.compressHTML
- });
- } else {
- if (message.saveToClipboard) {
- message.content = contents.join("");
- saveToClipboard(message);
- } else {
- const blob = new Blob([contents], { type: MIMETYPE_HTML });
- try {
- if (message.saveToGDrive) {
- await uploadPage(tab.id, message.filename, blob, {
- forceWebAuthFlow: message.forceWebAuthFlow,
- extractAuthCode: message.extractAuthCode
- }, {
- onProgress: (offset, size) => singlefile.extension.ui.bg.button.onUploadProgress(tab.id, offset, size)
- });
- } else {
- message.url = URL.createObjectURL(blob);
- await downloadPage(message, {
- confirmFilename: message.confirmFilename,
- incognito: tab.incognito,
- filenameConflictAction: message.filenameConflictAction,
- filenameReplacementCharacter: message.filenameReplacementCharacter
- });
- }
- singlefile.extension.ui.bg.main.onEnd(tab.id);
- } catch (error) {
- if (error.message && error.message == "upload_cancelled") {
- singlefile.extension.core.bg.business.cancelTab(tab.id);
- } else {
- console.error(error); // eslint-disable-line no-console
- singlefile.extension.ui.bg.main.onError(tab.id);
- }
- } finally {
- if (message.url) {
- URL.revokeObjectURL(message.url);
- }
- }
- }
- }
- }
- return {};
- }
- async function getAuthInfo(authOptions, force) {
- let authInfo = await singlefile.extension.core.bg.config.getAuthInfo();
- const options = {
- interactive: true,
- auto: authOptions.extractAuthCode,
- forceWebAuthFlow: authOptions.forceWebAuthFlow,
- requestPermissionIdentity,
- launchWebAuthFlow: options => singlefile.extension.core.bg.tabs.launchWebAuthFlow(options),
- extractAuthCode: authURL => singlefile.extension.core.bg.tabs.extractAuthCode(authURL),
- promptAuthCode: () => singlefile.extension.core.bg.tabs.promptValue("Please enter the access code for Google Drive")
- };
- gDrive.setAuthInfo(authInfo, options);
- if (!authInfo || !authInfo.accessToken || force) {
- authInfo = await gDrive.auth(options);
- if (authInfo) {
- await singlefile.extension.core.bg.config.setAuthInfo(authInfo);
- } else {
- await singlefile.extension.core.bg.config.removeAuthInfo();
- }
- }
- return authInfo;
- }
- async function uploadPage(tabId, filename, blob, authOptions, uploadOptions) {
- try {
- await getAuthInfo(authOptions);
- const saveInfo = singlefile.extension.core.bg.business.getTabInfo(tabId);
- if (saveInfo && !saveInfo.cancelled) {
- const uploadInfo = await gDrive.upload(filename, blob, uploadOptions);
- singlefile.extension.core.bg.business.setCancelCallback(tabId, uploadInfo.cancelUpload);
- return await uploadInfo.uploadPromise;
- }
- }
- catch (error) {
- if (error.message == "invalid_token") {
- let authInfo;
- try {
- authInfo = await gDrive.refreshAuthToken();
- } catch (error) {
- if (error.message == "unknown_token") {
- authInfo = await getAuthInfo(authOptions, true);
- } else {
- throw error;
- }
- }
- if (authInfo) {
- await singlefile.extension.core.bg.config.setAuthInfo(authInfo);
- } else {
- await singlefile.extension.core.bg.config.removeAuthInfo();
- }
- await uploadPage(tabId, filename, blob, authOptions, uploadOptions);
- } else {
- throw error;
- }
- }
- }
- async function downloadPage(pageData, options) {
- const downloadInfo = {
- url: pageData.url,
- saveAs: options.confirmFilename,
- filename: pageData.filename,
- conflictAction: options.filenameConflictAction
- };
- if (options.incognito) {
- downloadInfo.incognito = true;
- }
- await download(downloadInfo, options.filenameReplacementCharacter);
- }
- async function download(downloadInfo, replacementCharacter) {
- let downloadId;
- try {
- downloadId = await browser.downloads.download(downloadInfo);
- } catch (error) {
- if (error.message) {
- const errorMessage = error.message.toLowerCase();
- const invalidFilename = errorMessage.includes(ERROR_INVALID_FILENAME_GECKO) || errorMessage.includes(ERROR_INVALID_FILENAME_CHROMIUM);
- if (invalidFilename && downloadInfo.filename.startsWith(".")) {
- downloadInfo.filename = replacementCharacter + downloadInfo.filename;
- return download(downloadInfo, replacementCharacter);
- } else if (invalidFilename && downloadInfo.filename.includes(",")) {
- downloadInfo.filename = downloadInfo.filename.replace(/,/g, replacementCharacter);
- return download(downloadInfo, replacementCharacter);
- } else if (invalidFilename && !downloadInfo.filename.match(/^[\x00-\x7F]+$/)) { // eslint-disable-line no-control-regex
- downloadInfo.filename = downloadInfo.filename.replace(/[^\x00-\x7F]+/g, replacementCharacter); // eslint-disable-line no-control-regex
- return download(downloadInfo, replacementCharacter);
- } else if ((errorMessage.includes(ERROR_INCOGNITO_GECKO) || errorMessage.includes(ERROR_INCOGNITO_GECKO_ALT)) && downloadInfo.incognito) {
- delete downloadInfo.incognito;
- return download(downloadInfo, replacementCharacter);
- } else if (errorMessage == ERROR_CONFLICT_ACTION_GECKO && downloadInfo.conflictAction) {
- delete downloadInfo.conflictAction;
- return download(downloadInfo, replacementCharacter);
- } else if (errorMessage.includes(ERROR_DOWNLOAD_CANCELED_GECKO)) {
- return {};
- } else {
- throw error;
- }
- } else {
- throw error;
- }
- }
- return new Promise((resolve, reject) => {
- browser.downloads.onChanged.addListener(onChanged);
- function onChanged(event) {
- if (event.id == downloadId && event.state) {
- if (event.state.current == STATE_DOWNLOAD_COMPLETE) {
- resolve({});
- browser.downloads.onChanged.removeListener(onChanged);
- }
- if (event.state.current == STATE_DOWNLOAD_INTERRUPTED) {
- if (event.error && event.error.current == STATE_ERROR_CANCELED_CHROMIUM) {
- resolve({});
- } else {
- reject(new Error(event.state.current));
- }
- browser.downloads.onChanged.removeListener(onChanged);
- }
- }
- }
- });
- }
- function saveToClipboard(pageData) {
- const command = "copy";
- document.addEventListener(command, listener);
- document.execCommand(command);
- document.removeEventListener(command, listener);
- function listener(event) {
- event.clipboardData.setData(MIMETYPE_HTML, pageData.content);
- event.clipboardData.setData("text/plain", pageData.content);
- event.preventDefault();
- }
- }
- })();
|