2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-04-28 20:50:03 -04:00
|
|
|
import {Injectable} from '@angular/core';
|
2018-02-27 17:06:06 -05:00
|
|
|
import {Observable} from 'rxjs';
|
2017-04-17 14:12:53 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
import {BaseRequestOptions, RequestOptions} from './base_request_options';
|
|
|
|
import {RequestMethod} from './enums';
|
2017-04-17 14:12:53 -04:00
|
|
|
import {ConnectionBackend, RequestArgs, RequestOptionsArgs} from './interfaces';
|
2015-04-29 02:07:55 -04:00
|
|
|
import {Request} from './static_request';
|
2015-10-31 02:52:37 -04:00
|
|
|
import {Response} from './static_response';
|
2015-06-19 15:14:12 -04:00
|
|
|
|
2015-10-31 02:52:37 -04:00
|
|
|
function httpRequest(backend: ConnectionBackend, request: Request): Observable<Response> {
|
2015-06-19 15:14:12 -04:00
|
|
|
return backend.createConnection(request).response;
|
|
|
|
}
|
2015-04-29 02:07:55 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
function mergeOptions(
|
2017-04-17 14:12:53 -04:00
|
|
|
defaultOpts: BaseRequestOptions, providedOpts: RequestOptionsArgs | undefined,
|
|
|
|
method: RequestMethod, url: string): RequestArgs {
|
2016-10-18 02:04:25 -04:00
|
|
|
const newOptions = defaultOpts;
|
2016-11-15 12:19:14 -05:00
|
|
|
if (providedOpts) {
|
2015-06-24 03:27:07 -04:00
|
|
|
// Hack so Dart can used named parameters
|
2015-11-19 22:54:23 -05:00
|
|
|
return newOptions.merge(new RequestOptions({
|
|
|
|
method: providedOpts.method || method,
|
|
|
|
url: providedOpts.url || url,
|
2015-07-13 14:47:10 -04:00
|
|
|
search: providedOpts.search,
|
2017-01-25 10:42:30 -05:00
|
|
|
params: providedOpts.params,
|
2015-06-24 03:27:07 -04:00
|
|
|
headers: providedOpts.headers,
|
2016-02-24 16:57:35 -05:00
|
|
|
body: providedOpts.body,
|
2016-02-24 10:37:18 -05:00
|
|
|
withCredentials: providedOpts.withCredentials,
|
2016-05-26 18:47:20 -04:00
|
|
|
responseType: providedOpts.responseType
|
2017-04-17 14:12:53 -04:00
|
|
|
})) as RequestArgs;
|
2015-06-19 15:14:12 -04:00
|
|
|
}
|
2016-11-15 12:19:14 -05:00
|
|
|
|
2017-04-17 14:12:53 -04:00
|
|
|
return newOptions.merge(new RequestOptions({method, url})) as RequestArgs;
|
2015-06-09 18:18:57 -04:00
|
|
|
}
|
|
|
|
|
2015-04-29 02:07:55 -04:00
|
|
|
/**
|
2015-06-09 18:18:57 -04:00
|
|
|
* Performs http requests using `XMLHttpRequest` as the default backend.
|
|
|
|
*
|
|
|
|
* `Http` is available as an injectable class, with methods to perform http requests. Calling
|
2015-12-03 18:49:09 -05:00
|
|
|
* `request` returns an `Observable` which will emit a single {@link Response} when a
|
2015-07-01 13:15:58 -04:00
|
|
|
* response is received.
|
|
|
|
*
|
2018-09-20 10:01:01 -04:00
|
|
|
* @usageNotes
|
2015-10-19 10:37:32 -04:00
|
|
|
* ### Example
|
2015-04-29 02:07:55 -04:00
|
|
|
*
|
2015-09-24 04:32:43 -04:00
|
|
|
* ```typescript
|
2016-04-28 20:50:03 -04:00
|
|
|
* import {Http, HTTP_PROVIDERS} from '@angular/http';
|
2018-02-27 17:06:06 -05:00
|
|
|
* import {map} from 'rxjs/operators';
|
|
|
|
*
|
2015-10-11 10:41:19 -04:00
|
|
|
* @Component({
|
|
|
|
* selector: 'http-app',
|
|
|
|
* viewProviders: [HTTP_PROVIDERS],
|
|
|
|
* templateUrl: 'people.html'
|
|
|
|
* })
|
2015-06-09 18:18:57 -04:00
|
|
|
* class PeopleComponent {
|
|
|
|
* constructor(http: Http) {
|
2015-07-01 13:15:58 -04:00
|
|
|
* http.get('people.json')
|
2015-06-09 18:18:57 -04:00
|
|
|
* // Call map on the response observable to get the parsed people object
|
2018-02-27 17:06:06 -05:00
|
|
|
* .pipe(map(res => res.json()))
|
2015-06-09 18:18:57 -04:00
|
|
|
* // Subscribe to the observable to get the parsed people object and attach it to the
|
|
|
|
* // component
|
|
|
|
* .subscribe(people => this.people = people);
|
|
|
|
* }
|
2015-04-29 02:07:55 -04:00
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*
|
2015-07-01 13:15:58 -04:00
|
|
|
*
|
2015-10-19 10:37:32 -04:00
|
|
|
* ### Example
|
2015-07-01 13:15:58 -04:00
|
|
|
*
|
|
|
|
* ```
|
2015-12-16 03:32:25 -05:00
|
|
|
* http.get('people.json').subscribe((res:Response) => this.people = res.json());
|
2015-07-01 13:15:58 -04:00
|
|
|
* ```
|
|
|
|
*
|
2015-06-09 18:18:57 -04:00
|
|
|
* The default construct used to perform requests, `XMLHttpRequest`, is abstracted as a "Backend" (
|
|
|
|
* {@link XHRBackend} in this case), which could be mocked with dependency injection by replacing
|
2015-10-11 01:11:13 -04:00
|
|
|
* the {@link XHRBackend} provider, as in the following example:
|
2015-04-29 02:07:55 -04:00
|
|
|
*
|
2015-10-19 10:37:32 -04:00
|
|
|
* ### Example
|
2015-04-29 02:07:55 -04:00
|
|
|
*
|
2015-09-24 04:32:43 -04:00
|
|
|
* ```typescript
|
2016-04-28 20:50:03 -04:00
|
|
|
* import {BaseRequestOptions, Http} from '@angular/http';
|
|
|
|
* import {MockBackend} from '@angular/http/testing';
|
2015-06-09 18:18:57 -04:00
|
|
|
* var injector = Injector.resolveAndCreate([
|
|
|
|
* BaseRequestOptions,
|
|
|
|
* MockBackend,
|
2016-06-02 20:30:40 -04:00
|
|
|
* {provide: Http, useFactory:
|
2015-06-09 18:18:57 -04:00
|
|
|
* function(backend, defaultOptions) {
|
|
|
|
* return new Http(backend, defaultOptions);
|
|
|
|
* },
|
2016-06-02 20:30:40 -04:00
|
|
|
* deps: [MockBackend, BaseRequestOptions]}
|
2015-06-09 18:18:57 -04:00
|
|
|
* ]);
|
|
|
|
* var http = injector.get(Http);
|
2015-09-25 18:53:32 -04:00
|
|
|
* http.get('request-from-mock-backend.json').subscribe((res:Response) => doSomething(res));
|
2015-06-09 18:18:57 -04:00
|
|
|
* ```
|
2015-04-29 02:07:55 -04:00
|
|
|
*
|
2018-06-01 16:09:01 -04:00
|
|
|
* @deprecated see https://angular.io/guide/http
|
2016-06-27 15:27:23 -04:00
|
|
|
*/
|
2015-04-29 02:07:55 -04:00
|
|
|
@Injectable()
|
|
|
|
export class Http {
|
2015-07-14 20:53:04 -04:00
|
|
|
constructor(protected _backend: ConnectionBackend, protected _defaultOptions: RequestOptions) {}
|
2015-06-13 18:49:05 -04:00
|
|
|
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Performs any type of http request. First argument is required, and can either be a url or
|
|
|
|
* a {@link Request} instance. If the first argument is a url, an optional {@link RequestOptions}
|
|
|
|
* object can be provided as the 2nd argument. The options object will be merged with the values
|
|
|
|
* of {@link BaseRequestOptions} before performing the request.
|
|
|
|
*/
|
2016-06-08 19:38:52 -04:00
|
|
|
request(url: string|Request, options?: RequestOptionsArgs): Observable<Response> {
|
2016-10-18 02:04:25 -04:00
|
|
|
let responseObservable: any;
|
2016-10-19 16:42:39 -04:00
|
|
|
if (typeof url === 'string') {
|
2015-06-19 15:14:12 -04:00
|
|
|
responseObservable = httpRequest(
|
|
|
|
this._backend,
|
2016-02-01 20:05:50 -05:00
|
|
|
new Request(mergeOptions(this._defaultOptions, options, RequestMethod.Get, <string>url)));
|
2015-06-13 19:44:32 -04:00
|
|
|
} else if (url instanceof Request) {
|
2015-06-19 15:14:12 -04:00
|
|
|
responseObservable = httpRequest(this._backend, url);
|
2015-09-18 16:30:05 -04:00
|
|
|
} else {
|
2016-08-25 03:50:16 -04:00
|
|
|
throw new Error('First argument must be a url string or Request instance.');
|
2015-06-13 19:44:32 -04:00
|
|
|
}
|
2015-06-19 15:14:12 -04:00
|
|
|
return responseObservable;
|
2015-06-13 18:49:05 -04:00
|
|
|
}
|
|
|
|
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Performs a request with `get` http method.
|
|
|
|
*/
|
2015-10-31 02:52:37 -04:00
|
|
|
get(url: string, options?: RequestOptionsArgs): Observable<Response> {
|
2016-10-18 02:04:25 -04:00
|
|
|
return this.request(
|
2016-06-08 19:38:52 -04:00
|
|
|
new Request(mergeOptions(this._defaultOptions, options, RequestMethod.Get, url)));
|
2015-06-13 18:49:05 -04:00
|
|
|
}
|
|
|
|
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Performs a request with `post` http method.
|
|
|
|
*/
|
2016-02-26 06:25:55 -05:00
|
|
|
post(url: string, body: any, options?: RequestOptionsArgs): Observable<Response> {
|
2016-10-18 02:04:25 -04:00
|
|
|
return this.request(new Request(mergeOptions(
|
|
|
|
this._defaultOptions.merge(new RequestOptions({body: body})), options, RequestMethod.Post,
|
|
|
|
url)));
|
2015-06-13 18:49:05 -04:00
|
|
|
}
|
|
|
|
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Performs a request with `put` http method.
|
|
|
|
*/
|
2016-02-26 06:25:55 -05:00
|
|
|
put(url: string, body: any, options?: RequestOptionsArgs): Observable<Response> {
|
2016-10-18 02:04:25 -04:00
|
|
|
return this.request(new Request(mergeOptions(
|
|
|
|
this._defaultOptions.merge(new RequestOptions({body: body})), options, RequestMethod.Put,
|
|
|
|
url)));
|
2015-06-13 18:49:05 -04:00
|
|
|
}
|
|
|
|
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Performs a request with `delete` http method.
|
|
|
|
*/
|
2015-10-31 02:52:37 -04:00
|
|
|
delete (url: string, options?: RequestOptionsArgs): Observable<Response> {
|
2016-10-18 02:04:25 -04:00
|
|
|
return this.request(
|
2016-06-08 19:38:52 -04:00
|
|
|
new Request(mergeOptions(this._defaultOptions, options, RequestMethod.Delete, url)));
|
2015-06-13 18:49:05 -04:00
|
|
|
}
|
|
|
|
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Performs a request with `patch` http method.
|
|
|
|
*/
|
2016-02-26 06:25:55 -05:00
|
|
|
patch(url: string, body: any, options?: RequestOptionsArgs): Observable<Response> {
|
2016-10-18 02:04:25 -04:00
|
|
|
return this.request(new Request(mergeOptions(
|
|
|
|
this._defaultOptions.merge(new RequestOptions({body: body})), options, RequestMethod.Patch,
|
|
|
|
url)));
|
2015-06-13 18:49:05 -04:00
|
|
|
}
|
|
|
|
|
2015-06-09 18:18:57 -04:00
|
|
|
/**
|
|
|
|
* Performs a request with `head` http method.
|
|
|
|
*/
|
2015-10-31 02:52:37 -04:00
|
|
|
head(url: string, options?: RequestOptionsArgs): Observable<Response> {
|
2016-10-18 02:04:25 -04:00
|
|
|
return this.request(
|
2016-06-08 19:38:52 -04:00
|
|
|
new Request(mergeOptions(this._defaultOptions, options, RequestMethod.Head, url)));
|
2015-06-13 18:49:05 -04:00
|
|
|
}
|
2016-08-08 12:15:13 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs a request with `options` http method.
|
|
|
|
*/
|
|
|
|
options(url: string, options?: RequestOptionsArgs): Observable<Response> {
|
2016-10-18 02:04:25 -04:00
|
|
|
return this.request(
|
2016-08-08 12:15:13 -04:00
|
|
|
new Request(mergeOptions(this._defaultOptions, options, RequestMethod.Options, url)));
|
|
|
|
}
|
2015-04-29 02:07:55 -04:00
|
|
|
}
|
2015-07-14 20:53:04 -04:00
|
|
|
|
2016-06-27 15:27:23 -04:00
|
|
|
|
|
|
|
/**
|
2018-06-01 16:09:01 -04:00
|
|
|
* @deprecated see https://angular.io/guide/http
|
2016-06-27 15:27:23 -04:00
|
|
|
*/
|
2015-07-14 20:53:04 -04:00
|
|
|
@Injectable()
|
|
|
|
export class Jsonp extends Http {
|
|
|
|
constructor(backend: ConnectionBackend, defaultOptions: RequestOptions) {
|
|
|
|
super(backend, defaultOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs any type of http request. First argument is required, and can either be a url or
|
|
|
|
* a {@link Request} instance. If the first argument is a url, an optional {@link RequestOptions}
|
|
|
|
* object can be provided as the 2nd argument. The options object will be merged with the values
|
|
|
|
* of {@link BaseRequestOptions} before performing the request.
|
2016-06-28 14:01:35 -04:00
|
|
|
*
|
|
|
|
* @security Regular XHR is the safest alternative to JSONP for most applications, and is
|
|
|
|
* supported by all current browsers. Because JSONP creates a `<script>` element with
|
|
|
|
* contents retrieved from a remote source, attacker-controlled data introduced by an untrusted
|
|
|
|
* source could expose your application to XSS risks. Data exposed by JSONP may also be
|
|
|
|
* readable by malicious third-party websites. In addition, JSONP introduces potential risk for
|
|
|
|
* future security issues (e.g. content sniffing). For more detail, see the
|
|
|
|
* [Security Guide](http://g.co/ng/security).
|
2015-07-14 20:53:04 -04:00
|
|
|
*/
|
2016-06-08 19:38:52 -04:00
|
|
|
request(url: string|Request, options?: RequestOptionsArgs): Observable<Response> {
|
2016-10-18 02:04:25 -04:00
|
|
|
let responseObservable: any;
|
2016-10-19 16:42:39 -04:00
|
|
|
if (typeof url === 'string') {
|
2016-02-01 20:05:50 -05:00
|
|
|
url =
|
|
|
|
new Request(mergeOptions(this._defaultOptions, options, RequestMethod.Get, <string>url));
|
2015-07-14 20:53:04 -04:00
|
|
|
}
|
|
|
|
if (url instanceof Request) {
|
2015-12-03 16:44:14 -05:00
|
|
|
if (url.method !== RequestMethod.Get) {
|
2016-08-25 03:50:16 -04:00
|
|
|
throw new Error('JSONP requests must use GET request method.');
|
2015-07-14 20:53:04 -04:00
|
|
|
}
|
|
|
|
responseObservable = httpRequest(this._backend, url);
|
2015-09-18 16:30:05 -04:00
|
|
|
} else {
|
2016-08-25 03:50:16 -04:00
|
|
|
throw new Error('First argument must be a url string or Request instance.');
|
2015-07-14 20:53:04 -04:00
|
|
|
}
|
|
|
|
return responseObservable;
|
|
|
|
}
|
|
|
|
}
|