UNPKG

@azure/core-rest-pipeline

Version:

Isomorphic client library for making HTTP requests in node.js and browser.

104 lines 4.93 kB
"use strict"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. Object.defineProperty(exports, "__esModule", { value: true }); exports.getRawContent = getRawContent; exports.createFileFromStream = createFileFromStream; exports.createFile = createFile; const core_util_1 = require("@azure/core-util"); const typeGuards_js_1 = require("./typeGuards.js"); const unimplementedMethods = { arrayBuffer: () => { throw new Error("Not implemented"); }, bytes: () => { throw new Error("Not implemented"); }, slice: () => { throw new Error("Not implemented"); }, text: () => { throw new Error("Not implemented"); }, }; /** * Private symbol used as key on objects created using createFile containing the * original source of the file object. * * This is used in Node to access the original Node stream without using Blob#stream, which * returns a web stream. This is done to avoid a couple of bugs to do with Blob#stream and * Readable#to/fromWeb in Node versions we support: * - https://github.com/nodejs/node/issues/42694 (fixed in Node 18.14) * - https://github.com/nodejs/node/issues/48916 (fixed in Node 20.6) * * Once these versions are no longer supported, we may be able to stop doing this. * * @internal */ const rawContent = Symbol("rawContent"); function hasRawContent(x) { return typeof x[rawContent] === "function"; } /** * Extract the raw content from a given blob-like object. If the input was created using createFile * or createFileFromStream, the exact content passed into createFile/createFileFromStream will be used. * For true instances of Blob and File, returns the blob's content as a Web ReadableStream<Uint8Array>. * * @internal */ function getRawContent(blob) { if (hasRawContent(blob)) { return blob[rawContent](); } else { return blob.stream(); } } /** * Create an object that implements the File interface. This object is intended to be * passed into RequestBodyType.formData, and is not guaranteed to work as expected in * other situations. * * Use this function to: * - Create a File object for use in RequestBodyType.formData in environments where the * global File object is unavailable. * - Create a File-like object from a readable stream without reading the stream into memory. * * @param stream - the content of the file as a callback returning a stream. When a File object made using createFile is * passed in a request's form data map, the stream will not be read into memory * and instead will be streamed when the request is made. In the event of a retry, the * stream needs to be read again, so this callback SHOULD return a fresh stream if possible. * @param name - the name of the file. * @param options - optional metadata about the file, e.g. file name, file size, MIME type. */ function createFileFromStream(stream, name, options = {}) { var _a, _b, _c, _d; return Object.assign(Object.assign({}, unimplementedMethods), { type: (_a = options.type) !== null && _a !== void 0 ? _a : "", lastModified: (_b = options.lastModified) !== null && _b !== void 0 ? _b : new Date().getTime(), webkitRelativePath: (_c = options.webkitRelativePath) !== null && _c !== void 0 ? _c : "", size: (_d = options.size) !== null && _d !== void 0 ? _d : -1, name, stream: () => { const s = stream(); if ((0, typeGuards_js_1.isNodeReadableStream)(s)) { throw new Error("Not supported: a Node stream was provided as input to createFileFromStream."); } return s; }, [rawContent]: stream }); } /** * Create an object that implements the File interface. This object is intended to be * passed into RequestBodyType.formData, and is not guaranteed to work as expected in * other situations. * * Use this function create a File object for use in RequestBodyType.formData in environments where the global File object is unavailable. * * @param content - the content of the file as a Uint8Array in memory. * @param name - the name of the file. * @param options - optional metadata about the file, e.g. file name, file size, MIME type. */ function createFile(content, name, options = {}) { var _a, _b, _c; if (core_util_1.isNodeLike) { return Object.assign(Object.assign({}, unimplementedMethods), { type: (_a = options.type) !== null && _a !== void 0 ? _a : "", lastModified: (_b = options.lastModified) !== null && _b !== void 0 ? _b : new Date().getTime(), webkitRelativePath: (_c = options.webkitRelativePath) !== null && _c !== void 0 ? _c : "", size: content.byteLength, name, arrayBuffer: async () => content.buffer, stream: () => new Blob([content]).stream(), [rawContent]: () => content }); } else { return new File([content], name, options); } } //# sourceMappingURL=file.js.map