dc2868d7d1
This `disableCreateObjectURL` option was originally introduced all the way back in PR 4103 (eight years ago), in order to work-around `URL.createObjectURL()`-bugs specific to Internet Explorer. In PR 8081 (five years ago) the `disableCreateObjectURL` option was extended to cover Google Chrome on iOS-devices as well, since that configuration apparently also suffered from `URL.createObjectURL()`-bugs.[1] At this point in time, I thus think that it makes sense to re-evaluate if we should still keep the `disableCreateObjectURL` option. - For Internet Explorer, support was explicitly removed in PDF.js version `2.7.570` which was released one year ago and all IE-specific compatibility code (and polyfills) have since been removed. - For Google Chrome on iOS-devices, while we still "support" such configurations, it's *not* the focus of any development and platform-specific bugs are thus often closed as WONTFIX. Note here that at this point in time, the `disableCreateObjectURL` option is *only* being used in the viewer and any `URL.createObjectURL()`-bugs browser/platform bugs will thus not affect the main PDF.js library. Furthermore, given where the `disableCreateObjectURL` option is being used in the viewer the basic functionality should also remain unaffected by these changes.[2] Furthermore, it's also possible that the `URL.createObjectURL()`-bugs have been fixed in *browser* itself since PR 8081 was submitted.[3] Obviously you could argue that this isn't a lot of code, w.r.t. number of lines, and you'd be technically correct. However, it does add additional complexity in a few different viewer components which thus add overhead when reading and working with this code. Finally, assuming the `URL.createObjectURL()`-bugs are still present in Google Chrome on iOS-devices, I think that we should ask ourselves if it's reasonable for the PDF.js project (and its contributors) to keep attempting to support a configuration if the *browser* developers still haven't fixed these kind of bugs!? --- [1] According to https://groups.google.com/a/chromium.org/forum/#!topic/chromium-html5/RKQ0ZJIj7c4, which is linked in PR 8081, that bug was mentioned/reported as early as the 2014 (eight years ago). [2] Viewer functionality such as e.g. downloading and printing may be affected. [3] I don't have access to any iOS-devices to test with.
125 lines
4.0 KiB
JavaScript
125 lines
4.0 KiB
JavaScript
/* Copyright 2013 Mozilla Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/** @typedef {import("./interfaces").IDownloadManager} IDownloadManager */
|
|
|
|
import { createValidAbsoluteUrl, isPdfFile } from "pdfjs-lib";
|
|
|
|
if (typeof PDFJSDev !== "undefined" && !PDFJSDev.test("CHROME || GENERIC")) {
|
|
throw new Error(
|
|
'Module "pdfjs-web/download_manager" shall not be used ' +
|
|
"outside CHROME and GENERIC builds."
|
|
);
|
|
}
|
|
|
|
function download(blobUrl, filename) {
|
|
const a = document.createElement("a");
|
|
if (!a.click) {
|
|
throw new Error('DownloadManager: "a.click()" is not supported.');
|
|
}
|
|
a.href = blobUrl;
|
|
a.target = "_parent";
|
|
// Use a.download if available. This increases the likelihood that
|
|
// the file is downloaded instead of opened by another PDF plugin.
|
|
if ("download" in a) {
|
|
a.download = filename;
|
|
}
|
|
// <a> must be in the document for recent Firefox versions,
|
|
// otherwise .click() is ignored.
|
|
(document.body || document.documentElement).appendChild(a);
|
|
a.click();
|
|
a.remove();
|
|
}
|
|
|
|
/**
|
|
* @implements {IDownloadManager}
|
|
*/
|
|
class DownloadManager {
|
|
constructor() {
|
|
this._openBlobUrls = new WeakMap();
|
|
}
|
|
|
|
downloadUrl(url, filename) {
|
|
if (!createValidAbsoluteUrl(url, "http://example.com")) {
|
|
console.error(`downloadUrl - not a valid URL: ${url}`);
|
|
return; // restricted/invalid URL
|
|
}
|
|
download(url + "#pdfjs.action=download", filename);
|
|
}
|
|
|
|
downloadData(data, filename, contentType) {
|
|
const blobUrl = URL.createObjectURL(
|
|
new Blob([data], { type: contentType })
|
|
);
|
|
download(blobUrl, filename);
|
|
}
|
|
|
|
/**
|
|
* @returns {boolean} Indicating if the data was opened.
|
|
*/
|
|
openOrDownloadData(element, data, filename) {
|
|
const isPdfData = isPdfFile(filename);
|
|
const contentType = isPdfData ? "application/pdf" : "";
|
|
|
|
if (isPdfData) {
|
|
let blobUrl = this._openBlobUrls.get(element);
|
|
if (!blobUrl) {
|
|
blobUrl = URL.createObjectURL(new Blob([data], { type: contentType }));
|
|
this._openBlobUrls.set(element, blobUrl);
|
|
}
|
|
let viewerUrl;
|
|
if (typeof PDFJSDev === "undefined" || PDFJSDev.test("GENERIC")) {
|
|
// The current URL is the viewer, let's use it and append the file.
|
|
viewerUrl = "?file=" + encodeURIComponent(blobUrl + "#" + filename);
|
|
} else if (PDFJSDev.test("CHROME")) {
|
|
// In the Chrome extension, the URL is rewritten using the history API
|
|
// in viewer.js, so an absolute URL must be generated.
|
|
viewerUrl =
|
|
// eslint-disable-next-line no-undef
|
|
chrome.runtime.getURL("/content/web/viewer.html") +
|
|
"?file=" +
|
|
encodeURIComponent(blobUrl + "#" + filename);
|
|
}
|
|
|
|
try {
|
|
window.open(viewerUrl);
|
|
return true;
|
|
} catch (ex) {
|
|
console.error(`openOrDownloadData: ${ex}`);
|
|
// Release the `blobUrl`, since opening it failed, and fallback to
|
|
// downloading the PDF file.
|
|
URL.revokeObjectURL(blobUrl);
|
|
this._openBlobUrls.delete(element);
|
|
}
|
|
}
|
|
|
|
this.downloadData(data, filename, contentType);
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @param sourceEventType {string} Used to signal what triggered the download.
|
|
* The version of PDF.js integrated with Firefox uses this to to determine
|
|
* which dialog to show. "save" triggers "save as" and "download" triggers
|
|
* the "open with" dialog.
|
|
*/
|
|
download(blob, url, filename, sourceEventType = "download") {
|
|
const blobUrl = URL.createObjectURL(blob);
|
|
download(blobUrl, filename);
|
|
}
|
|
}
|
|
|
|
export { DownloadManager };
|