2015-04-29 02:07:55 -04:00
|
|
|
import {Response as IResponse, ResponseOptions} from './interfaces';
|
|
|
|
import {ResponseTypes} from './enums';
|
|
|
|
import {baseResponseOptions} from './base_response_options';
|
|
|
|
import {BaseException, isJsObject, isString, global} from 'angular2/src/facade/lang';
|
|
|
|
import {Headers} from './headers';
|
|
|
|
|
2015-06-09 18:18:57 -04:00
|
|
|
// TODO: make this injectable so baseResponseOptions can be overridden, mostly for the benefit of
|
|
|
|
// headers merging.
|
|
|
|
/**
|
|
|
|
* Creates `Response` instances with default values.
|
|
|
|
*
|
|
|
|
* Though this object isn't
|
|
|
|
* usually instantiated by end-users, it is the primary object interacted with when it comes time to
|
|
|
|
* add data to a view.
|
|
|
|
*
|
|
|
|
* #Example
|
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* http.request('my-friends.txt').subscribe(response => this.friends = response.text());
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* The Response's interface is inspired by the Request constructor defined in the [Fetch
|
|
|
|
* Spec](https://fetch.spec.whatwg.org/#response-class), but is considered a static value whose body
|
|
|
|
* can be accessed many times. There are other differences in the implementation, but this is the
|
|
|
|
* most significant.
|
|
|
|
*/
|
2015-04-29 02:07:55 -04:00
|
|
|
export class Response implements IResponse {
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* One of "basic", "cors", "default", "error, or "opaque".
|
|
|
|
*
|
|
|
|
* Defaults to "default".
|
|
|
|
*/
|
2015-04-29 02:07:55 -04:00
|
|
|
type: ResponseTypes;
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* True if the response's status is within 200-299
|
|
|
|
*/
|
2015-04-29 02:07:55 -04:00
|
|
|
ok: boolean;
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* URL of response.
|
|
|
|
*
|
|
|
|
* Defaults to empty string.
|
|
|
|
*/
|
2015-04-29 02:07:55 -04:00
|
|
|
url: string;
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Status code returned by server.
|
|
|
|
*
|
|
|
|
* Defaults to 200.
|
|
|
|
*/
|
2015-04-29 02:07:55 -04:00
|
|
|
status: number;
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Text representing the corresponding reason phrase to the `status`, as defined in [ietf rfc 2616
|
|
|
|
* section 6.1.1](https://tools.ietf.org/html/rfc2616#section-6.1.1)
|
|
|
|
*
|
|
|
|
* Defaults to "OK"
|
|
|
|
*/
|
2015-04-29 02:07:55 -04:00
|
|
|
statusText: string;
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Non-standard property
|
|
|
|
*
|
|
|
|
* Denotes how many of the response body's bytes have been loaded, for example if the response is
|
|
|
|
* the result of a progress event.
|
|
|
|
*/
|
2015-04-29 02:07:55 -04:00
|
|
|
bytesLoaded: number;
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Non-standard property
|
|
|
|
*
|
|
|
|
* Denotes how many bytes are expected in the final response body.
|
|
|
|
*/
|
2015-04-29 02:07:55 -04:00
|
|
|
totalBytes: number;
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Headers object based on the `Headers` class in the [Fetch
|
|
|
|
* Spec](https://fetch.spec.whatwg.org/#headers-class).
|
|
|
|
*/
|
2015-04-29 02:07:55 -04:00
|
|
|
headers: Headers;
|
2015-06-09 18:18:57 -04:00
|
|
|
constructor(private _body?: string | Object | ArrayBuffer | JSON | FormData | Blob,
|
2015-04-29 02:07:55 -04:00
|
|
|
{status, statusText, headers, type, url}: ResponseOptions = baseResponseOptions) {
|
|
|
|
if (isJsObject(headers)) {
|
|
|
|
headers = new Headers(headers);
|
|
|
|
}
|
|
|
|
this.status = status;
|
|
|
|
this.statusText = statusText;
|
|
|
|
this.headers = <Headers>headers;
|
|
|
|
this.type = type;
|
|
|
|
this.url = url;
|
|
|
|
}
|
|
|
|
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Not yet implemented
|
|
|
|
*/
|
2015-04-29 02:07:55 -04:00
|
|
|
blob(): Blob {
|
|
|
|
throw new BaseException('"blob()" method not implemented on Response superclass');
|
|
|
|
}
|
|
|
|
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Attempts to return body as parsed `JSON` object, or raises an exception.
|
|
|
|
*/
|
2015-04-29 02:07:55 -04:00
|
|
|
json(): JSON {
|
2015-06-09 18:18:57 -04:00
|
|
|
if (isJsObject(this._body)) {
|
|
|
|
return <JSON>this._body;
|
|
|
|
} else if (isString(this._body)) {
|
|
|
|
return global.JSON.parse(<string>this._body);
|
2015-04-29 02:07:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Returns the body as a string, presuming `toString()` can be called on the response body.
|
|
|
|
*/
|
|
|
|
text(): string { return this._body.toString(); }
|
2015-04-29 02:07:55 -04:00
|
|
|
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Not yet implemented
|
|
|
|
*/
|
2015-04-29 02:07:55 -04:00
|
|
|
arrayBuffer(): ArrayBuffer {
|
|
|
|
throw new BaseException('"arrayBuffer()" method not implemented on Response superclass');
|
|
|
|
}
|
|
|
|
}
|