- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
380 lines
11 KiB
JavaScript
380 lines
11 KiB
JavaScript
/**
|
|
* Index.js
|
|
*
|
|
* a request API compatible with window.fetch
|
|
*
|
|
* All spec algorithm step numbers are based on https://fetch.spec.whatwg.org/commit-snapshots/ae716822cb3a61843226cd090eefc6589446c1d2/.
|
|
*/
|
|
|
|
import http from 'http';
|
|
import https from 'https';
|
|
import zlib from 'zlib';
|
|
import fs from 'fs';
|
|
import * as mime from 'mrmime'
|
|
import dataUriToBuffer from 'data-uri-to-buffer';
|
|
import {Buffer} from 'buffer';
|
|
|
|
import {writeToStream, fromAsyncIterable} from './body.js';
|
|
import Response from './response.js';
|
|
import Headers, {fromRawHeaders} from './headers.js';
|
|
import Request, {getNodeRequestOptions} from './request.js';
|
|
import {FetchError} from './errors/fetch-error.js';
|
|
import {AbortError} from './errors/abort-error.js';
|
|
import {isRedirect} from './utils/is-redirect.js';
|
|
import {pipeline as pump, PassThrough} from 'stream';
|
|
import * as Stream from 'stream';
|
|
import { ReadableStream, Blob, FormData } from './package.js';
|
|
|
|
|
|
export {Headers, Request, Response, ReadableStream, Blob, FormData};
|
|
|
|
const supportedSchemas = new Set(['data:', 'http:', 'https:', 'file:']);
|
|
|
|
/**
|
|
* Fetch function
|
|
*
|
|
* @param {string | URL | import('./request.js').default} url - Absolute url or Request instance
|
|
* @param {RequestInit & import('./request.js').RequestExtraOptions} [options_] - Fetch options
|
|
* @return {Promise<import('./response.js').default>}
|
|
*/
|
|
async function fetch(url, options_ = {}) {
|
|
return new Promise((resolve, reject) => {
|
|
// Build request object
|
|
const request = new Request(url, options_);
|
|
const options = getNodeRequestOptions(request);
|
|
if (!supportedSchemas.has(options.protocol)) {
|
|
throw new TypeError(`node-fetch cannot load ${url}. URL scheme "${options.protocol.replace(/:$/, '')}" is not supported.`);
|
|
}
|
|
|
|
if (options.protocol === 'data:') {
|
|
const data = dataUriToBuffer(request.url.toString());
|
|
const response = new Response(data, {headers: {'Content-Type': data.typeFull}});
|
|
resolve(response);
|
|
return;
|
|
}
|
|
|
|
if (options.protocol === 'file:') {
|
|
const stream = fs.createReadStream(new URL(request.url))
|
|
const type = mime.lookup(request.url) || 'application/octet-stream'
|
|
const response = new Response(stream, {headers: {'Content-Type': type }});
|
|
resolve(response);
|
|
return;
|
|
}
|
|
|
|
// Wrap http.request into fetch
|
|
const send = (options.protocol === 'https:' ? https : http).request;
|
|
const {signal} = request;
|
|
/** @type {Response|null} */
|
|
let response = null;
|
|
/** @type {import('http').IncomingMessage|null} */
|
|
let response_ = null;
|
|
|
|
const abort = () => {
|
|
const error = new AbortError('The operation was aborted.');
|
|
reject(error);
|
|
if (request.body) {
|
|
request.body.cancel(error);
|
|
}
|
|
|
|
if (!response_) {
|
|
return;
|
|
}
|
|
|
|
response_.emit('error', error);
|
|
};
|
|
|
|
if (signal && signal.aborted) {
|
|
abort();
|
|
return;
|
|
}
|
|
|
|
const abortAndFinalize = () => {
|
|
abort();
|
|
finalize();
|
|
};
|
|
|
|
// Send request
|
|
const request_ = send(options);
|
|
|
|
if (signal) {
|
|
signal.addEventListener('abort', abortAndFinalize);
|
|
}
|
|
|
|
const finalize = () => {
|
|
request_.abort();
|
|
if (signal) {
|
|
signal.removeEventListener('abort', abortAndFinalize);
|
|
}
|
|
};
|
|
|
|
request_.on('error', err => {
|
|
// @ts-expect-error - err may not be SystemError
|
|
reject(new FetchError(`request to ${request.url} failed, reason: ${err.message}`, 'system', err));
|
|
finalize();
|
|
});
|
|
|
|
fixResponseChunkedTransferBadEnding(request_, err => {
|
|
if (signal && signal.aborted) {
|
|
return
|
|
}
|
|
|
|
response_?.emit("error", err);
|
|
});
|
|
|
|
/* c8 ignore next 18 */
|
|
if (parseInt(process.version.substring(1)) < 14) {
|
|
// Before Node.js 14, pipeline() does not fully support async iterators and does not always
|
|
// properly handle when the socket close/end events are out of order.
|
|
request_.on('socket', s => {
|
|
s.prependListener('close', hadError => {
|
|
// if a data listener is still present we didn't end cleanly
|
|
const hasDataListener = s.listenerCount('data') > 0
|
|
|
|
// if end happened before close but the socket didn't emit an error, do it now
|
|
if (response && hasDataListener && !hadError && !(signal && signal.aborted)) {
|
|
const err = Object.assign(new Error('Premature close'), {
|
|
code: 'ERR_STREAM_PREMATURE_CLOSE'
|
|
});
|
|
response_?.emit('error', err);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
request_.on('response', incoming => {
|
|
response_ = incoming;
|
|
request_.setTimeout(0);
|
|
const headers = fromRawHeaders(response_.rawHeaders);
|
|
|
|
// HTTP fetch step 5
|
|
if (isRedirect(Number(response_.statusCode))) {
|
|
// HTTP fetch step 5.2
|
|
const location = headers.get('Location');
|
|
|
|
// HTTP fetch step 5.3
|
|
const locationURL = location === null ? null : new URL(location, request.url);
|
|
|
|
// HTTP fetch step 5.5
|
|
switch (request.redirect) {
|
|
case 'error':
|
|
reject(new FetchError(`uri requested responds with a redirect, redirect mode is set to error: ${request.url}`, 'no-redirect'));
|
|
finalize();
|
|
return;
|
|
case 'manual':
|
|
// Node-fetch-specific step: make manual redirect a bit easier to use by setting the Location header value to the resolved URL.
|
|
if (locationURL !== null) {
|
|
headers.set('Location', locationURL.toString());
|
|
}
|
|
|
|
break;
|
|
case 'follow': {
|
|
// HTTP-redirect fetch step 2
|
|
if (locationURL === null) {
|
|
break;
|
|
}
|
|
|
|
// HTTP-redirect fetch step 5
|
|
if (request.counter >= request.follow) {
|
|
reject(new FetchError(`maximum redirect reached at: ${request.url}`, 'max-redirect'));
|
|
finalize();
|
|
return;
|
|
}
|
|
|
|
// HTTP-redirect fetch step 6 (counter increment)
|
|
// Create a new Request object.
|
|
const requestOptions = {
|
|
headers: new Headers(request.headers),
|
|
follow: request.follow,
|
|
counter: request.counter + 1,
|
|
agent: request.agent,
|
|
compress: request.compress,
|
|
method: request.method,
|
|
// Note: We can not use `request.body` because send would have
|
|
// consumed it already.
|
|
body: options_.body,
|
|
signal: signal,
|
|
size: request.size
|
|
};
|
|
|
|
// HTTP-redirect fetch step 9
|
|
const isStreamBody =
|
|
requestOptions.body instanceof ReadableStream ||
|
|
requestOptions.body instanceof Stream.Readable;
|
|
if (response_.statusCode !== 303 && isStreamBody) {
|
|
reject(new FetchError('Cannot follow redirect with body being a readable stream', 'unsupported-redirect'));
|
|
finalize();
|
|
return;
|
|
}
|
|
|
|
// HTTP-redirect fetch step 11
|
|
if (response_.statusCode === 303 || ((response_.statusCode === 301 || response_.statusCode === 302) && request.method === 'POST')) {
|
|
requestOptions.method = 'GET';
|
|
requestOptions.body = undefined;
|
|
requestOptions.headers.delete('content-length');
|
|
}
|
|
|
|
// HTTP-redirect fetch step 15
|
|
fetch(new Request(locationURL.href, requestOptions)).then(resolve, reject);
|
|
finalize();
|
|
return;
|
|
}
|
|
|
|
default:
|
|
return reject(new TypeError(`Redirect option '${request.redirect}' is not a valid value of RequestRedirect`));
|
|
}
|
|
}
|
|
|
|
// Prepare response
|
|
if (signal) {
|
|
response_.once('end', () => {
|
|
signal.removeEventListener('abort', abortAndFinalize);
|
|
});
|
|
}
|
|
|
|
let body = pump(response_, new PassThrough(), reject);
|
|
// see https://github.com/nodejs/node/pull/29376
|
|
/* c8 ignore next 3 */
|
|
if (process.version < 'v12.10') {
|
|
response_.on('aborted', abortAndFinalize);
|
|
}
|
|
|
|
const responseOptions = {
|
|
url: request.url,
|
|
status: response_.statusCode,
|
|
statusText: response_.statusMessage,
|
|
headers,
|
|
size: request.size,
|
|
counter: request.counter,
|
|
highWaterMark: request.highWaterMark
|
|
};
|
|
|
|
// HTTP-network fetch step 12.1.1.3
|
|
const codings = headers.get('Content-Encoding');
|
|
|
|
// HTTP-network fetch step 12.1.1.4: handle content codings
|
|
|
|
// in following scenarios we ignore compression support
|
|
// 1. compression support is disabled
|
|
// 2. HEAD request
|
|
// 3. no Content-Encoding header
|
|
// 4. no content response (204)
|
|
// 5. content not modified response (304)
|
|
if (!request.compress || request.method === 'HEAD' || codings === null || response_.statusCode === 204 || response_.statusCode === 304) {
|
|
response = new Response(body, responseOptions);
|
|
resolve(response);
|
|
return;
|
|
}
|
|
|
|
// For Node v6+
|
|
// Be less strict when decoding compressed responses, since sometimes
|
|
// servers send slightly invalid responses that are still accepted
|
|
// by common browsers.
|
|
// Always using Z_SYNC_FLUSH is what cURL does.
|
|
const zlibOptions = {
|
|
flush: zlib.Z_SYNC_FLUSH,
|
|
finishFlush: zlib.Z_SYNC_FLUSH
|
|
};
|
|
|
|
// For gzip
|
|
if (codings === 'gzip' || codings === 'x-gzip') {
|
|
body = pump(body, zlib.createGunzip(zlibOptions), reject);
|
|
response = new Response(fromAsyncIterable(body), responseOptions);
|
|
resolve(response);
|
|
return;
|
|
}
|
|
|
|
// For deflate
|
|
if (codings === 'deflate' || codings === 'x-deflate') {
|
|
// Handle the infamous raw deflate response from old servers
|
|
// a hack for old IIS and Apache servers
|
|
const raw = pump(response_, new PassThrough(), reject);
|
|
raw.once('data', chunk => {
|
|
// See http://stackoverflow.com/questions/37519828
|
|
if ((chunk[0] & 0x0F) === 0x08) {
|
|
body = pump(body, zlib.createInflate(), reject);
|
|
} else {
|
|
body = pump(body, zlib.createInflateRaw(), reject);
|
|
}
|
|
|
|
response = new Response(fromAsyncIterable(body), responseOptions);
|
|
resolve(response);
|
|
});
|
|
return;
|
|
}
|
|
|
|
// For br
|
|
if (codings === 'br') {
|
|
body = pump(body, zlib.createBrotliDecompress(), reject);
|
|
response = new Response(fromAsyncIterable(body), responseOptions);
|
|
resolve(response);
|
|
return;
|
|
}
|
|
|
|
// Otherwise, use response as-is
|
|
response = new Response(fromAsyncIterable(body), responseOptions);
|
|
resolve(response);
|
|
});
|
|
|
|
writeToStream(request_, request);
|
|
});
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {import('http').ClientRequest} request
|
|
* @param {(error:Error) => void} errorCallback
|
|
*/
|
|
function fixResponseChunkedTransferBadEnding(request, errorCallback) {
|
|
const LAST_CHUNK = Buffer.from('0\r\n\r\n');
|
|
|
|
let isChunkedTransfer = false;
|
|
let properLastChunkReceived = false;
|
|
/** @type {Buffer | undefined} */
|
|
let previousChunk;
|
|
|
|
request.on('response', response => {
|
|
const {headers} = response;
|
|
isChunkedTransfer = headers['transfer-encoding'] === 'chunked' && !headers['content-length'];
|
|
});
|
|
|
|
request.on('socket', socket => {
|
|
const onSocketClose = () => {
|
|
if (isChunkedTransfer && !properLastChunkReceived) {
|
|
const error = Object.assign(new Error('Premature close'), {
|
|
code: 'ERR_STREAM_PREMATURE_CLOSE'
|
|
});
|
|
errorCallback(error);
|
|
}
|
|
};
|
|
|
|
/** @param {Buffer} buf */
|
|
const onData = buf => {
|
|
properLastChunkReceived = Buffer.compare(buf.slice(-5), LAST_CHUNK) === 0;
|
|
|
|
// Sometimes final 0-length chunk and end of message code are in separate packets
|
|
if (!properLastChunkReceived && previousChunk) {
|
|
properLastChunkReceived = (
|
|
Buffer.compare(previousChunk.slice(-3), LAST_CHUNK.slice(0, 3)) === 0 &&
|
|
Buffer.compare(buf.slice(-2), LAST_CHUNK.slice(3)) === 0
|
|
);
|
|
}
|
|
|
|
previousChunk = buf;
|
|
};
|
|
|
|
socket.prependListener('close', onSocketClose);
|
|
socket.on('data', onData);
|
|
|
|
const removeSocketListeners = () => {
|
|
socket.removeListener('close', onSocketClose);
|
|
socket.removeListener('data', onData);
|
|
}
|
|
|
|
request.on('close', removeSocketListeners);
|
|
request.on('abort', removeSocketListeners);
|
|
});
|
|
}
|
|
|
|
export default fetch
|
|
export { fetch }
|