2021-09-13 22:43:07 +03:00
|
|
|
/**
|
|
|
|
* Copyright (c) Microsoft Corporation.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as api from '../../types/types';
|
|
|
|
import { HeadersArray } from '../common/types';
|
|
|
|
import * as channels from '../protocol/channels';
|
2021-09-14 00:29:44 +03:00
|
|
|
import { assert, headersObjectToArray, isString, objectToArray } from '../utils/utils';
|
2021-09-15 04:31:35 +03:00
|
|
|
import { ChannelOwner } from './channelOwner';
|
2021-09-13 22:43:07 +03:00
|
|
|
import * as network from './network';
|
|
|
|
import { RawHeaders } from './network';
|
|
|
|
import { Headers } from './types';
|
|
|
|
|
2021-09-14 00:29:44 +03:00
|
|
|
export type FetchOptions = {
|
|
|
|
params?: { [key: string]: string; },
|
|
|
|
method?: string,
|
|
|
|
headers?: Headers,
|
|
|
|
data?: string | Buffer,
|
2021-09-14 01:38:27 +03:00
|
|
|
timeout?: number,
|
|
|
|
failOnStatusCode?: boolean,
|
2021-09-14 00:29:44 +03:00
|
|
|
};
|
2021-09-13 22:43:07 +03:00
|
|
|
|
2021-09-15 04:31:35 +03:00
|
|
|
export class FetchRequest extends ChannelOwner<channels.FetchRequestChannel, channels.FetchRequestInitializer> implements api.FetchRequest {
|
|
|
|
static from(channel: channels.FetchRequestChannel): FetchRequest {
|
|
|
|
return (channel as any)._object;
|
|
|
|
}
|
2021-09-13 22:43:07 +03:00
|
|
|
|
2021-09-15 04:31:35 +03:00
|
|
|
constructor(parent: ChannelOwner, type: string, guid: string, initializer: channels.FetchRequestInitializer) {
|
|
|
|
super(parent, type, guid, initializer);
|
2021-09-13 22:43:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
async get(
|
|
|
|
urlOrRequest: string | api.Request,
|
|
|
|
options?: {
|
2021-09-14 00:29:44 +03:00
|
|
|
params?: { [key: string]: string; };
|
2021-09-13 22:43:07 +03:00
|
|
|
headers?: { [key: string]: string; };
|
|
|
|
timeout?: number;
|
2021-09-14 01:38:27 +03:00
|
|
|
failOnStatusCode?: boolean;
|
2021-09-13 22:43:07 +03:00
|
|
|
}): Promise<FetchResponse> {
|
|
|
|
return this.fetch(urlOrRequest, {
|
|
|
|
...options,
|
|
|
|
method: 'GET',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async post(
|
|
|
|
urlOrRequest: string | api.Request,
|
|
|
|
options?: {
|
2021-09-14 00:29:44 +03:00
|
|
|
params?: { [key: string]: string; };
|
2021-09-13 22:43:07 +03:00
|
|
|
headers?: { [key: string]: string; };
|
|
|
|
data?: string | Buffer;
|
|
|
|
timeout?: number;
|
2021-09-14 01:38:27 +03:00
|
|
|
failOnStatusCode?: boolean;
|
2021-09-13 22:43:07 +03:00
|
|
|
}): Promise<FetchResponse> {
|
|
|
|
return this.fetch(urlOrRequest, {
|
|
|
|
...options,
|
|
|
|
method: 'POST',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async fetch(urlOrRequest: string | api.Request, options: FetchOptions = {}): Promise<FetchResponse> {
|
2021-09-15 04:31:35 +03:00
|
|
|
return this._wrapApiCall(async (channel: channels.FetchRequestChannel) => {
|
2021-09-13 22:43:07 +03:00
|
|
|
const request: network.Request | undefined = (urlOrRequest instanceof network.Request) ? urlOrRequest as network.Request : undefined;
|
|
|
|
assert(request || typeof urlOrRequest === 'string', 'First argument must be either URL string or Request');
|
|
|
|
const url = request ? request.url() : urlOrRequest as string;
|
2021-09-14 00:29:44 +03:00
|
|
|
const params = objectToArray(options.params);
|
2021-09-13 22:43:07 +03:00
|
|
|
const method = options.method || request?.method();
|
|
|
|
// Cannot call allHeaders() here as the request may be paused inside route handler.
|
|
|
|
const headersObj = options.headers || request?.headers() ;
|
|
|
|
const headers = headersObj ? headersObjectToArray(headersObj) : undefined;
|
|
|
|
let postDataBuffer = isString(options.data) ? Buffer.from(options.data, 'utf8') : options.data;
|
|
|
|
if (postDataBuffer === undefined)
|
|
|
|
postDataBuffer = request?.postDataBuffer() || undefined;
|
|
|
|
const postData = (postDataBuffer ? postDataBuffer.toString('base64') : undefined);
|
|
|
|
const result = await channel.fetch({
|
|
|
|
url,
|
2021-09-14 00:29:44 +03:00
|
|
|
params,
|
2021-09-13 22:43:07 +03:00
|
|
|
method,
|
|
|
|
headers,
|
|
|
|
postData,
|
|
|
|
timeout: options.timeout,
|
2021-09-14 01:38:27 +03:00
|
|
|
failOnStatusCode: options.failOnStatusCode,
|
2021-09-13 22:43:07 +03:00
|
|
|
});
|
|
|
|
if (result.error)
|
|
|
|
throw new Error(`Request failed: ${result.error}`);
|
2021-09-15 04:31:35 +03:00
|
|
|
return new FetchResponse(this, result.response!);
|
2021-09-13 22:43:07 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class FetchResponse implements api.FetchResponse {
|
|
|
|
private readonly _initializer: channels.FetchResponse;
|
|
|
|
private readonly _headers: RawHeaders;
|
2021-09-15 04:31:35 +03:00
|
|
|
private readonly _request: FetchRequest;
|
2021-09-13 22:43:07 +03:00
|
|
|
|
2021-09-15 04:31:35 +03:00
|
|
|
constructor(context: FetchRequest, initializer: channels.FetchResponse) {
|
|
|
|
this._request = context;
|
2021-09-13 22:43:07 +03:00
|
|
|
this._initializer = initializer;
|
|
|
|
this._headers = new RawHeaders(this._initializer.headers);
|
|
|
|
}
|
|
|
|
|
|
|
|
ok(): boolean {
|
|
|
|
return this._initializer.status === 0 || (this._initializer.status >= 200 && this._initializer.status <= 299);
|
|
|
|
}
|
|
|
|
|
|
|
|
url(): string {
|
|
|
|
return this._initializer.url;
|
|
|
|
}
|
|
|
|
|
|
|
|
status(): number {
|
|
|
|
return this._initializer.status;
|
|
|
|
}
|
|
|
|
|
|
|
|
statusText(): string {
|
|
|
|
return this._initializer.statusText;
|
|
|
|
}
|
|
|
|
|
|
|
|
headers(): Headers {
|
|
|
|
return this._headers.headers();
|
|
|
|
}
|
|
|
|
|
|
|
|
headersArray(): HeadersArray {
|
|
|
|
return this._headers.headersArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
async body(): Promise<Buffer> {
|
2021-09-15 04:31:35 +03:00
|
|
|
return this._request._wrapApiCall(async (channel: channels.FetchRequestChannel) => {
|
2021-09-13 22:43:07 +03:00
|
|
|
const result = await channel.fetchResponseBody({ fetchUid: this._fetchUid() });
|
|
|
|
if (!result.binary)
|
|
|
|
throw new Error('Response has been disposed');
|
|
|
|
return Buffer.from(result.binary!, 'base64');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async text(): Promise<string> {
|
|
|
|
const content = await this.body();
|
|
|
|
return content.toString('utf8');
|
|
|
|
}
|
|
|
|
|
|
|
|
async json(): Promise<object> {
|
|
|
|
const content = await this.text();
|
|
|
|
return JSON.parse(content);
|
|
|
|
}
|
|
|
|
|
|
|
|
async dispose(): Promise<void> {
|
2021-09-15 04:31:35 +03:00
|
|
|
return this._request._wrapApiCall(async (channel: channels.FetchRequestChannel) => {
|
2021-09-13 22:43:07 +03:00
|
|
|
await channel.disposeFetchResponse({ fetchUid: this._fetchUid() });
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
_fetchUid(): string {
|
|
|
|
return this._initializer.fetchUid;
|
|
|
|
}
|
|
|
|
}
|