mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-23 08:38:06 +02:00
[api-minor] Only support the Fetch API for "remote" PDF documents in Node.js environments
The Fetch API has been supported since Node.js version 18, see https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API#browser_compatibility
This commit is contained in:
parent
c7407230c1
commit
cbf0ca71bf
3 changed files with 57 additions and 226 deletions
|
@ -450,15 +450,20 @@ function getDocument(src = {}) {
|
|||
PDFJSDev.test("GENERIC") &&
|
||||
isNodeJS
|
||||
) {
|
||||
const isFetchSupported =
|
||||
typeof fetch !== "undefined" &&
|
||||
typeof Response !== "undefined" &&
|
||||
"body" in Response.prototype;
|
||||
|
||||
NetworkStream =
|
||||
isFetchSupported && isValidFetchUrl(url)
|
||||
? PDFFetchStream
|
||||
: PDFNodeStream;
|
||||
if (isValidFetchUrl(url)) {
|
||||
if (
|
||||
typeof fetch === "undefined" ||
|
||||
typeof Response === "undefined" ||
|
||||
!("body" in Response.prototype)
|
||||
) {
|
||||
throw new Error(
|
||||
"getDocument - the Fetch API was disabled in Node.js, see `--no-experimental-fetch`."
|
||||
);
|
||||
}
|
||||
NetworkStream = PDFFetchStream;
|
||||
} else {
|
||||
NetworkStream = PDFNodeStream;
|
||||
}
|
||||
} else {
|
||||
NetworkStream = isValidFetchUrl(url)
|
||||
? PDFFetchStream
|
||||
|
|
|
@ -15,11 +15,6 @@
|
|||
/* globals process */
|
||||
|
||||
import { AbortException, assert, MissingPDFException } from "../shared/util.js";
|
||||
import {
|
||||
createHeaders,
|
||||
extractFilenameFromHeader,
|
||||
validateRangeRequestCapabilities,
|
||||
} from "./network_utils.js";
|
||||
|
||||
if (typeof PDFJSDev !== "undefined" && PDFJSDev.test("MOZCENTRAL")) {
|
||||
throw new Error(
|
||||
|
@ -37,24 +32,14 @@ function parseUrlOrPath(sourceUrl) {
|
|||
return new URL(url.pathToFileURL(sourceUrl));
|
||||
}
|
||||
|
||||
function createRequest(url, headers, callback) {
|
||||
if (url.protocol === "http:") {
|
||||
const http = process.getBuiltinModule("http");
|
||||
return http.request(url, { headers }, callback);
|
||||
}
|
||||
const https = process.getBuiltinModule("https");
|
||||
return https.request(url, { headers }, callback);
|
||||
}
|
||||
|
||||
class PDFNodeStream {
|
||||
constructor(source) {
|
||||
this.source = source;
|
||||
this.url = parseUrlOrPath(source.url);
|
||||
this.isHttp =
|
||||
this.url.protocol === "http:" || this.url.protocol === "https:";
|
||||
// Check if url refers to filesystem.
|
||||
this.isFsUrl = this.url.protocol === "file:";
|
||||
this.headers = createHeaders(this.isHttp, source.httpHeaders);
|
||||
assert(
|
||||
this.url.protocol === "file:",
|
||||
"PDFNodeStream only supports file:// URLs."
|
||||
);
|
||||
|
||||
this._fullRequestReader = null;
|
||||
this._rangeRequestReaders = [];
|
||||
|
@ -69,9 +54,7 @@ class PDFNodeStream {
|
|||
!this._fullRequestReader,
|
||||
"PDFNodeStream.getFullReader can only be called once."
|
||||
);
|
||||
this._fullRequestReader = this.isFsUrl
|
||||
? new PDFNodeStreamFsFullReader(this)
|
||||
: new PDFNodeStreamFullReader(this);
|
||||
this._fullRequestReader = new PDFNodeStreamFsFullReader(this);
|
||||
return this._fullRequestReader;
|
||||
}
|
||||
|
||||
|
@ -79,9 +62,7 @@ class PDFNodeStream {
|
|||
if (end <= this._progressiveDataLength) {
|
||||
return null;
|
||||
}
|
||||
const rangeReader = this.isFsUrl
|
||||
? new PDFNodeStreamFsRangeReader(this, start, end)
|
||||
: new PDFNodeStreamRangeReader(this, start, end);
|
||||
const rangeReader = new PDFNodeStreamFsRangeReader(this, start, end);
|
||||
this._rangeRequestReaders.push(rangeReader);
|
||||
return rangeReader;
|
||||
}
|
||||
|
@ -288,79 +269,6 @@ class BaseRangeReader {
|
|||
}
|
||||
}
|
||||
|
||||
class PDFNodeStreamFullReader extends BaseFullReader {
|
||||
constructor(stream) {
|
||||
super(stream);
|
||||
|
||||
// Node.js requires the `headers` to be a regular Object.
|
||||
const headers = Object.fromEntries(stream.headers);
|
||||
|
||||
const handleResponse = response => {
|
||||
if (response.statusCode === 404) {
|
||||
const error = new MissingPDFException(`Missing PDF "${this._url}".`);
|
||||
this._storedError = error;
|
||||
this._headersCapability.reject(error);
|
||||
return;
|
||||
}
|
||||
this._headersCapability.resolve();
|
||||
this._setReadableStream(response);
|
||||
|
||||
const responseHeaders = new Headers(this._readableStream.headers);
|
||||
|
||||
const { allowRangeRequests, suggestedLength } =
|
||||
validateRangeRequestCapabilities({
|
||||
responseHeaders,
|
||||
isHttp: stream.isHttp,
|
||||
rangeChunkSize: this._rangeChunkSize,
|
||||
disableRange: this._disableRange,
|
||||
});
|
||||
|
||||
this._isRangeSupported = allowRangeRequests;
|
||||
// Setting right content length.
|
||||
this._contentLength = suggestedLength || this._contentLength;
|
||||
|
||||
this._filename = extractFilenameFromHeader(responseHeaders);
|
||||
};
|
||||
|
||||
this._request = createRequest(this._url, headers, handleResponse);
|
||||
|
||||
this._request.on("error", reason => {
|
||||
this._storedError = reason;
|
||||
this._headersCapability.reject(reason);
|
||||
});
|
||||
// Note: `request.end(data)` is used to write `data` to request body
|
||||
// and notify end of request. But one should always call `request.end()`
|
||||
// even if there is no data to write -- (to notify the end of request).
|
||||
this._request.end();
|
||||
}
|
||||
}
|
||||
|
||||
class PDFNodeStreamRangeReader extends BaseRangeReader {
|
||||
constructor(stream, start, end) {
|
||||
super(stream);
|
||||
|
||||
// Node.js requires the `headers` to be a regular Object.
|
||||
const headers = Object.fromEntries(stream.headers);
|
||||
headers.Range = `bytes=${start}-${end - 1}`;
|
||||
|
||||
const handleResponse = response => {
|
||||
if (response.statusCode === 404) {
|
||||
const error = new MissingPDFException(`Missing PDF "${this._url}".`);
|
||||
this._storedError = error;
|
||||
return;
|
||||
}
|
||||
this._setReadableStream(response);
|
||||
};
|
||||
|
||||
this._request = createRequest(this._url, headers, handleResponse);
|
||||
|
||||
this._request.on("error", reason => {
|
||||
this._storedError = reason;
|
||||
});
|
||||
this._request.end();
|
||||
}
|
||||
}
|
||||
|
||||
class PDFNodeStreamFsFullReader extends BaseFullReader {
|
||||
constructor(stream) {
|
||||
super(stream);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue