@whatwg-node/node-fetch
Version:
Fetch API implementation for Node
140 lines (139 loc) • 5.05 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PonyfillBlob = void 0;
/* eslint-disable @typescript-eslint/no-unsafe-declaration-merging */
const ReadableStream_js_1 = require("./ReadableStream.js");
const utils_js_1 = require("./utils.js");
function getBlobPartAsBuffer(blobPart) {
if (typeof blobPart === 'string') {
return Buffer.from(blobPart);
}
else if (Buffer.isBuffer(blobPart)) {
return blobPart;
}
else if ((0, utils_js_1.isArrayBufferView)(blobPart)) {
return Buffer.from(blobPart.buffer, blobPart.byteOffset, blobPart.byteLength);
}
else {
return Buffer.from(blobPart);
}
}
function isBlob(obj) {
return obj != null && obj.arrayBuffer != null;
}
// Will be removed after v14 reaches EOL
// Needed because v14 doesn't have .stream() implemented
class PonyfillBlob {
constructor(blobParts, options) {
this.blobParts = blobParts;
this._size = null;
this.type = options?.type || 'application/octet-stream';
this.encoding = options?.encoding || 'utf8';
this._size = options?.size || null;
if (blobParts.length === 1 && isBlob(blobParts[0])) {
return blobParts[0];
}
}
arrayBuffer() {
if (this.blobParts.length === 1) {
const blobPart = this.blobParts[0];
if (isBlob(blobPart)) {
return blobPart.arrayBuffer();
}
return (0, utils_js_1.fakePromise)(getBlobPartAsBuffer(blobPart));
}
const jobs = [];
const bufferChunks = this.blobParts.map((blobPart, i) => {
if (isBlob(blobPart)) {
jobs.push(blobPart.arrayBuffer().then(arrayBuf => {
bufferChunks[i] = Buffer.from(arrayBuf, undefined, blobPart.size);
}));
return undefined;
}
else {
return getBlobPartAsBuffer(blobPart);
}
});
if (jobs.length > 0) {
return Promise.all(jobs).then(() => Buffer.concat(bufferChunks, this._size || undefined));
}
return (0, utils_js_1.fakePromise)(Buffer.concat(bufferChunks, this._size || undefined));
}
text() {
if (this.blobParts.length === 1) {
const blobPart = this.blobParts[0];
if (typeof blobPart === 'string') {
return (0, utils_js_1.fakePromise)(blobPart);
}
if (isBlob(blobPart)) {
return blobPart.text();
}
const buf = getBlobPartAsBuffer(blobPart);
return (0, utils_js_1.fakePromise)(buf.toString(this.encoding));
}
return this.arrayBuffer().then(buf => buf.toString(this.encoding));
}
get size() {
if (this._size == null) {
this._size = 0;
for (const blobPart of this.blobParts) {
if (typeof blobPart === 'string') {
this._size += Buffer.byteLength(blobPart);
}
else if (isBlob(blobPart)) {
this._size += blobPart.size;
}
else if ((0, utils_js_1.isArrayBufferView)(blobPart)) {
this._size += blobPart.byteLength;
}
}
}
return this._size;
}
stream() {
if (this.blobParts.length === 1) {
const blobPart = this.blobParts[0];
if (isBlob(blobPart)) {
return blobPart.stream();
}
const buf = getBlobPartAsBuffer(blobPart);
return new ReadableStream_js_1.PonyfillReadableStream({
start: controller => {
controller.enqueue(buf);
controller.close();
},
});
}
let blobPartIterator;
return new ReadableStream_js_1.PonyfillReadableStream({
start: controller => {
if (this.blobParts.length === 0) {
controller.close();
return;
}
blobPartIterator = this.blobParts[Symbol.iterator]();
},
pull: controller => {
const { value: blobPart, done } = blobPartIterator.next();
if (done) {
controller.close();
return;
}
if (blobPart) {
if (isBlob(blobPart)) {
return blobPart.arrayBuffer().then(arrayBuffer => {
const buf = Buffer.from(arrayBuffer, undefined, blobPart.size);
controller.enqueue(buf);
});
}
const buf = getBlobPartAsBuffer(blobPart);
controller.enqueue(buf);
}
},
});
}
slice() {
throw new Error('Not implemented');
}
}
exports.PonyfillBlob = PonyfillBlob;