Merge pull request #17 from Microsoft/markda/ResponseHasRequest

0.1.3: Expose request bits from WebResponse...
This commit is contained in:
David de Regt 2017-11-16 19:26:27 -08:00 коммит произвёл GitHub
Родитель a68bd4d2cb adfb72dbff
Коммит ef5c8d3341
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 19 добавлений и 4 удалений

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "simplerestclients",
"version": "0.1.2",
"version": "0.1.3",
"description": "A library of components for accessing RESTful services with javascript/typescript.",
"author": "David de Regt <David.de.Regt@microsoft.com>",
"scripts": {

Просмотреть файл

@ -15,6 +15,8 @@ import { ExponentialTime } from './ExponentialTime';
export interface WebResponseBase {
url: string;
method: string;
requestOptions: WebRequestOptions;
requestHeaders: _.Dictionary<string>;
statusCode: number;
statusText: string|undefined;
headers: _.Dictionary<string>;
@ -161,6 +163,7 @@ let timeoutSupportStatus = FeatureSupportStatus.Unknown;
export abstract class SimpleWebRequestBase {
protected _xhr: XMLHttpRequest|undefined;
protected _xhrRequestheaders: _.Dictionary<string>|undefined;
protected _requestTimeoutTimer: number|undefined;
protected _options: WebRequestOptions;
@ -199,6 +202,7 @@ export abstract class SimpleWebRequestBase {
// tslint:disable-next-line
private _fire(): void {
this._xhr = new XMLHttpRequest();
this._xhrRequestheaders = {};
// xhr.open() can throw an exception for a CSP violation.
const openError = _.attempt(() => {
@ -306,7 +310,7 @@ export abstract class SimpleWebRequestBase {
const acceptType = this._options.acceptType || 'json';
this._xhr.responseType = SimpleWebRequestBase._getResponseType(acceptType);
this._xhr.setRequestHeader('Accept', SimpleWebRequestBase.mapContentType(acceptType));
this._setRequestHeader('Accept', SimpleWebRequestBase.mapContentType(acceptType));
this._xhr.withCredentials = !!this._options.withCredentials;
@ -331,12 +335,12 @@ export abstract class SimpleWebRequestBase {
}
headersCheck[headerLower] = true;
this._xhr!!!.setRequestHeader(key, val);
this._setRequestHeader(key, val);
});
if (this._options.sendData) {
const contentType = SimpleWebRequestBase.mapContentType(this._options.contentType || 'json');
this._xhr.setRequestHeader('Content-Type', contentType);
this._setRequestHeader('Content-Type', contentType);
const sendData = SimpleWebRequestBase.mapBody(this._options.sendData, contentType);
@ -346,6 +350,11 @@ export abstract class SimpleWebRequestBase {
}
}
private _setRequestHeader(key: string, val: string): void {
this._xhr!!!.setRequestHeader(key, val);
this._xhrRequestheaders!!![key] = val;
}
static mapContentType(contentType: string): string {
if (contentType === 'json') {
return 'application/json';
@ -634,6 +643,8 @@ export class SimpleWebRequest<T> extends SimpleWebRequestBase {
const resp: WebResponse<T> = {
url: this._xhr.responseURL || this._url,
method: this._action,
requestOptions: this._options,
requestHeaders: this._xhrRequestheaders || {},
statusCode: statusCode,
statusText: statusText,
headers: headers,
@ -644,6 +655,8 @@ export class SimpleWebRequest<T> extends SimpleWebRequestBase {
let errResp: WebErrorResponse = {
url: (this._xhr ? this._xhr.responseURL : undefined) || this._url,
method: this._action,
requestOptions: this._options,
requestHeaders: this._xhrRequestheaders || {},
statusCode: statusCode,
statusText: statusText,
headers: headers,
@ -688,6 +701,8 @@ export class SimpleWebRequest<T> extends SimpleWebRequestBase {
this._xhr.onreadystatechange = null!!!;
this._xhr.ontimeout = null!!!;
this._xhr = undefined;
this._xhrRequestheaders = undefined;
}
if (handleResponse === ErrorHandlingType.PauseUntilResumed) {