2013-07-13 03:14:13 +09:00
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
|
2021-12-15 07:59:17 +09:00
|
|
|
/** @typedef {import("./interfaces").IDownloadManager} IDownloadManager */
|
|
|
|
|
[api-minor] Remove support for browsers/environments without fully working `URL.createObjectURL` implementations
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.
2022-01-02 21:18:18 +09:00
|
|
|
import { createValidAbsoluteUrl, isPdfFile } from "pdfjs-lib";
|
2013-07-13 03:14:13 +09:00
|
|
|
|
2017-03-28 06:37:14 +09:00
|
|
|
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."
|
|
|
|
);
|
2017-02-28 20:41:43 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
function download(blobUrl, filename) {
|
2019-12-27 08:22:32 +09:00
|
|
|
const a = document.createElement("a");
|
2018-02-12 18:27:56 +09:00
|
|
|
if (!a.click) {
|
|
|
|
throw new Error('DownloadManager: "a.click()" is not supported.');
|
2013-07-13 03:14:13 +09:00
|
|
|
}
|
2018-02-12 18:27:56 +09:00
|
|
|
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;
|
|
|
|
}
|
2020-09-06 00:00:52 +09:00
|
|
|
// <a> must be in the document for recent Firefox versions,
|
2018-02-12 18:27:56 +09:00
|
|
|
// otherwise .click() is ignored.
|
2022-06-12 19:20:25 +09:00
|
|
|
(document.body || document.documentElement).append(a);
|
2018-02-12 18:27:56 +09:00
|
|
|
a.click();
|
|
|
|
a.remove();
|
2017-02-28 20:41:43 +09:00
|
|
|
}
|
2013-07-13 03:14:13 +09:00
|
|
|
|
2021-12-15 07:59:17 +09:00
|
|
|
/**
|
|
|
|
* @implements {IDownloadManager}
|
|
|
|
*/
|
2017-08-06 21:15:18 +09:00
|
|
|
class DownloadManager {
|
2022-11-04 23:29:45 +09:00
|
|
|
#openBlobUrls = new WeakMap();
|
2021-02-23 20:58:17 +09:00
|
|
|
|
2023-05-05 22:18:01 +09:00
|
|
|
downloadUrl(url, filename, _options) {
|
2017-03-28 17:15:02 +09:00
|
|
|
if (!createValidAbsoluteUrl(url, "http://example.com")) {
|
2021-09-12 19:34:58 +09:00
|
|
|
console.error(`downloadUrl - not a valid URL: ${url}`);
|
2017-02-28 20:41:43 +09:00
|
|
|
return; // restricted/invalid URL
|
|
|
|
}
|
|
|
|
download(url + "#pdfjs.action=download", filename);
|
2017-08-06 21:15:18 +09:00
|
|
|
}
|
2014-03-19 05:32:47 +09:00
|
|
|
|
2017-08-06 21:15:18 +09:00
|
|
|
downloadData(data, filename, contentType) {
|
[api-minor] Remove support for browsers/environments without fully working `URL.createObjectURL` implementations
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.
2022-01-02 21:18:18 +09:00
|
|
|
const blobUrl = URL.createObjectURL(
|
|
|
|
new Blob([data], { type: contentType })
|
2018-02-18 06:51:03 +09:00
|
|
|
);
|
2017-02-28 20:41:43 +09:00
|
|
|
download(blobUrl, filename);
|
2017-08-06 21:15:18 +09:00
|
|
|
}
|
2013-07-13 03:14:13 +09:00
|
|
|
|
2021-02-23 20:58:17 +09:00
|
|
|
/**
|
|
|
|
* @returns {boolean} Indicating if the data was opened.
|
|
|
|
*/
|
2023-10-16 23:20:46 +09:00
|
|
|
openOrDownloadData(data, filename, dest = null) {
|
2021-02-24 21:02:58 +09:00
|
|
|
const isPdfData = isPdfFile(filename);
|
|
|
|
const contentType = isPdfData ? "application/pdf" : "";
|
2021-02-23 20:58:17 +09:00
|
|
|
|
2023-02-06 19:56:15 +09:00
|
|
|
if (
|
|
|
|
(typeof PDFJSDev === "undefined" || !PDFJSDev.test("COMPONENTS")) &&
|
|
|
|
isPdfData
|
|
|
|
) {
|
2023-10-16 23:20:46 +09:00
|
|
|
let blobUrl = this.#openBlobUrls.get(data);
|
2021-02-23 20:58:17 +09:00
|
|
|
if (!blobUrl) {
|
|
|
|
blobUrl = URL.createObjectURL(new Blob([data], { type: contentType }));
|
2023-10-16 23:20:46 +09:00
|
|
|
this.#openBlobUrls.set(data, blobUrl);
|
2021-02-23 20:58:17 +09:00
|
|
|
}
|
|
|
|
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);
|
|
|
|
}
|
2023-10-03 15:01:55 +09:00
|
|
|
if (dest) {
|
|
|
|
viewerUrl += `#${escape(dest)}`;
|
|
|
|
}
|
2021-02-23 20:58:17 +09:00
|
|
|
|
|
|
|
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);
|
2023-10-16 23:20:46 +09:00
|
|
|
this.#openBlobUrls.delete(data);
|
2021-02-23 20:58:17 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.downloadData(data, filename, contentType);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-05-05 22:18:01 +09:00
|
|
|
download(blob, url, filename, _options) {
|
2019-12-27 08:22:32 +09:00
|
|
|
const blobUrl = URL.createObjectURL(blob);
|
2017-02-28 20:41:43 +09:00
|
|
|
download(blobUrl, filename);
|
2017-08-06 21:15:18 +09:00
|
|
|
}
|
|
|
|
}
|
2017-02-28 20:41:43 +09:00
|
|
|
|
2017-03-28 08:07:27 +09:00
|
|
|
export { DownloadManager };
|