| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397 |
- /**
- * @license Angular v8.1.0
- * (c) 2010-2019 Google LLC. https://angular.io/
- * License: MIT
- */
- import { Injectable, InjectionToken, Inject, PLATFORM_ID, Injector, NgModule } from '@angular/core';
- import { of, Observable } from 'rxjs';
- import { concatMap, filter, map } from 'rxjs/operators';
- import { DOCUMENT, ɵparseCookieValue } from '@angular/common';
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * @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
- */
- /**
- * Transforms an `HttpRequest` into a stream of `HttpEvent`s, one of which will likely be a
- * `HttpResponse`.
- *
- * `HttpHandler` is injectable. When injected, the handler instance dispatches requests to the
- * first interceptor in the chain, which dispatches to the second, etc, eventually reaching the
- * `HttpBackend`.
- *
- * In an `HttpInterceptor`, the `HttpHandler` parameter is the next interceptor in the chain.
- *
- * \@publicApi
- * @abstract
- */
- class HttpHandler {
- }
- /**
- * A final `HttpHandler` which will dispatch the request via browser HTTP APIs to a backend.
- *
- * Interceptors sit between the `HttpClient` interface and the `HttpBackend`.
- *
- * When injected, `HttpBackend` dispatches requests directly to the backend, without going
- * through the interceptor chain.
- *
- * \@publicApi
- * @abstract
- */
- class HttpBackend {
- }
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * `HttpHeaders` class represents the header configuration options for an HTTP request.
- * Instances should be assumed immutable with lazy parsing.
- *
- * \@publicApi
- */
- class HttpHeaders {
- /**
- * Constructs a new HTTP header object with the given values.
- * @param {?=} headers
- */
- constructor(headers) {
- /**
- * Internal map of lowercased header names to the normalized
- * form of the name (the form seen first).
- */
- this.normalizedNames = new Map();
- /**
- * Queued updates to be materialized the next initialization.
- */
- this.lazyUpdate = null;
- if (!headers) {
- this.headers = new Map();
- }
- else if (typeof headers === 'string') {
- this.lazyInit = (/**
- * @return {?}
- */
- () => {
- this.headers = new Map();
- headers.split('\n').forEach((/**
- * @param {?} line
- * @return {?}
- */
- line => {
- /** @type {?} */
- const index = line.indexOf(':');
- if (index > 0) {
- /** @type {?} */
- const name = line.slice(0, index);
- /** @type {?} */
- const key = name.toLowerCase();
- /** @type {?} */
- const value = line.slice(index + 1).trim();
- this.maybeSetNormalizedName(name, key);
- if (this.headers.has(key)) {
- (/** @type {?} */ (this.headers.get(key))).push(value);
- }
- else {
- this.headers.set(key, [value]);
- }
- }
- }));
- });
- }
- else {
- this.lazyInit = (/**
- * @return {?}
- */
- () => {
- this.headers = new Map();
- Object.keys(headers).forEach((/**
- * @param {?} name
- * @return {?}
- */
- name => {
- /** @type {?} */
- let values = headers[name];
- /** @type {?} */
- const key = name.toLowerCase();
- if (typeof values === 'string') {
- values = [values];
- }
- if (values.length > 0) {
- this.headers.set(key, values);
- this.maybeSetNormalizedName(name, key);
- }
- }));
- });
- }
- }
- /**
- * Checks for existence of a header by a given name.
- *
- * @param {?} name The header name to check for existence.
- *
- * @return {?} Whether the header exits.
- */
- has(name) {
- this.init();
- return this.headers.has(name.toLowerCase());
- }
- /**
- * Returns the first header value that matches a given name.
- *
- * @param {?} name The header name to retrieve.
- *
- * @return {?} A string if the header exists, null otherwise
- */
- get(name) {
- this.init();
- /** @type {?} */
- const values = this.headers.get(name.toLowerCase());
- return values && values.length > 0 ? values[0] : null;
- }
- /**
- * Returns the names of the headers.
- *
- * @return {?} A list of header names.
- */
- keys() {
- this.init();
- return Array.from(this.normalizedNames.values());
- }
- /**
- * Returns a list of header values for a given header name.
- *
- * @param {?} name The header name from which to retrieve the values.
- *
- * @return {?} A string of values if the header exists, null otherwise.
- */
- getAll(name) {
- this.init();
- return this.headers.get(name.toLowerCase()) || null;
- }
- /**
- * Appends a new header value to the existing set of
- * header values.
- *
- * @param {?} name The header name for which to append the values.
- *
- * @param {?} value
- * @return {?} A clone of the HTTP header object with the value appended.
- */
- append(name, value) {
- return this.clone({ name, value, op: 'a' });
- }
- /**
- * Sets a header value for a given name. If the header name already exists,
- * its value is replaced with the given value.
- *
- * @param {?} name The header name.
- * @param {?} value Provides the value to set or overide for a given name.
- *
- * @return {?} A clone of the HTTP header object with the newly set header value.
- */
- set(name, value) {
- return this.clone({ name, value, op: 's' });
- }
- /**
- * Deletes all header values for a given name.
- *
- * @param {?} name The header name.
- * @param {?=} value The header values to delete for a given name.
- *
- * @return {?} A clone of the HTTP header object.
- */
- delete(name, value) {
- return this.clone({ name, value, op: 'd' });
- }
- /**
- * @private
- * @param {?} name
- * @param {?} lcName
- * @return {?}
- */
- maybeSetNormalizedName(name, lcName) {
- if (!this.normalizedNames.has(lcName)) {
- this.normalizedNames.set(lcName, name);
- }
- }
- /**
- * @private
- * @return {?}
- */
- init() {
- if (!!this.lazyInit) {
- if (this.lazyInit instanceof HttpHeaders) {
- this.copyFrom(this.lazyInit);
- }
- else {
- this.lazyInit();
- }
- this.lazyInit = null;
- if (!!this.lazyUpdate) {
- this.lazyUpdate.forEach((/**
- * @param {?} update
- * @return {?}
- */
- update => this.applyUpdate(update)));
- this.lazyUpdate = null;
- }
- }
- }
- /**
- * @private
- * @param {?} other
- * @return {?}
- */
- copyFrom(other) {
- other.init();
- Array.from(other.headers.keys()).forEach((/**
- * @param {?} key
- * @return {?}
- */
- key => {
- this.headers.set(key, (/** @type {?} */ (other.headers.get(key))));
- this.normalizedNames.set(key, (/** @type {?} */ (other.normalizedNames.get(key))));
- }));
- }
- /**
- * @private
- * @param {?} update
- * @return {?}
- */
- clone(update) {
- /** @type {?} */
- const clone = new HttpHeaders();
- clone.lazyInit =
- (!!this.lazyInit && this.lazyInit instanceof HttpHeaders) ? this.lazyInit : this;
- clone.lazyUpdate = (this.lazyUpdate || []).concat([update]);
- return clone;
- }
- /**
- * @private
- * @param {?} update
- * @return {?}
- */
- applyUpdate(update) {
- /** @type {?} */
- const key = update.name.toLowerCase();
- switch (update.op) {
- case 'a':
- case 's':
- /** @type {?} */
- let value = (/** @type {?} */ (update.value));
- if (typeof value === 'string') {
- value = [value];
- }
- if (value.length === 0) {
- return;
- }
- this.maybeSetNormalizedName(update.name, key);
- /** @type {?} */
- const base = (update.op === 'a' ? this.headers.get(key) : undefined) || [];
- base.push(...value);
- this.headers.set(key, base);
- break;
- case 'd':
- /** @type {?} */
- const toDelete = (/** @type {?} */ (update.value));
- if (!toDelete) {
- this.headers.delete(key);
- this.normalizedNames.delete(key);
- }
- else {
- /** @type {?} */
- let existing = this.headers.get(key);
- if (!existing) {
- return;
- }
- existing = existing.filter((/**
- * @param {?} value
- * @return {?}
- */
- value => toDelete.indexOf(value) === -1));
- if (existing.length === 0) {
- this.headers.delete(key);
- this.normalizedNames.delete(key);
- }
- else {
- this.headers.set(key, existing);
- }
- }
- break;
- }
- }
- /**
- * \@internal
- * @param {?} fn
- * @return {?}
- */
- forEach(fn) {
- this.init();
- Array.from(this.normalizedNames.keys())
- .forEach((/**
- * @param {?} key
- * @return {?}
- */
- key => fn((/** @type {?} */ (this.normalizedNames.get(key))), (/** @type {?} */ (this.headers.get(key))))));
- }
- }
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * A class that uses `encodeURIComponent` and `decodeURIComponent` to
- * serialize and parse URL parameter keys and values. If you pass URL query parameters
- * without encoding, the query parameters can get misinterpreted at the receiving end.
- * Use the `HttpParameterCodec` class to encode and decode the query-string values.
- *
- * \@publicApi
- */
- class HttpUrlEncodingCodec {
- /**
- * @param {?} key
- * @return {?}
- */
- encodeKey(key) { return standardEncoding(key); }
- /**
- * @param {?} value
- * @return {?}
- */
- encodeValue(value) { return standardEncoding(value); }
- /**
- * @param {?} key
- * @return {?}
- */
- decodeKey(key) { return decodeURIComponent(key); }
- /**
- * @param {?} value
- * @return {?}
- */
- decodeValue(value) { return decodeURIComponent(value); }
- }
- /**
- * @param {?} rawParams
- * @param {?} codec
- * @return {?}
- */
- function paramParser(rawParams, codec) {
- /** @type {?} */
- const map = new Map();
- if (rawParams.length > 0) {
- /** @type {?} */
- const params = rawParams.split('&');
- params.forEach((/**
- * @param {?} param
- * @return {?}
- */
- (param) => {
- /** @type {?} */
- const eqIdx = param.indexOf('=');
- const [key, val] = eqIdx == -1 ?
- [codec.decodeKey(param), ''] :
- [codec.decodeKey(param.slice(0, eqIdx)), codec.decodeValue(param.slice(eqIdx + 1))];
- /** @type {?} */
- const list = map.get(key) || [];
- list.push(val);
- map.set(key, list);
- }));
- }
- return map;
- }
- /**
- * @param {?} v
- * @return {?}
- */
- function standardEncoding(v) {
- return encodeURIComponent(v)
- .replace(/%40/gi, '@')
- .replace(/%3A/gi, ':')
- .replace(/%24/gi, '$')
- .replace(/%2C/gi, ',')
- .replace(/%3B/gi, ';')
- .replace(/%2B/gi, '+')
- .replace(/%3D/gi, '=')
- .replace(/%3F/gi, '?')
- .replace(/%2F/gi, '/');
- }
- /**
- * An HTTP request/response body that represents serialized parameters,
- * per the MIME type `application/x-www-form-urlencoded`.
- *
- * This class is immutable - all mutation operations return a new instance.
- *
- * \@publicApi
- */
- class HttpParams {
- /**
- * @param {?=} options
- */
- constructor(options = (/** @type {?} */ ({}))) {
- this.updates = null;
- this.cloneFrom = null;
- this.encoder = options.encoder || new HttpUrlEncodingCodec();
- if (!!options.fromString) {
- if (!!options.fromObject) {
- throw new Error(`Cannot specify both fromString and fromObject.`);
- }
- this.map = paramParser(options.fromString, this.encoder);
- }
- else if (!!options.fromObject) {
- this.map = new Map();
- Object.keys(options.fromObject).forEach((/**
- * @param {?} key
- * @return {?}
- */
- key => {
- /** @type {?} */
- const value = ((/** @type {?} */ (options.fromObject)))[key];
- (/** @type {?} */ (this.map)).set(key, Array.isArray(value) ? value : [value]);
- }));
- }
- else {
- this.map = null;
- }
- }
- /**
- * Check whether the body has one or more values for the given parameter name.
- * @param {?} param
- * @return {?}
- */
- has(param) {
- this.init();
- return (/** @type {?} */ (this.map)).has(param);
- }
- /**
- * Get the first value for the given parameter name, or `null` if it's not present.
- * @param {?} param
- * @return {?}
- */
- get(param) {
- this.init();
- /** @type {?} */
- const res = (/** @type {?} */ (this.map)).get(param);
- return !!res ? res[0] : null;
- }
- /**
- * Get all values for the given parameter name, or `null` if it's not present.
- * @param {?} param
- * @return {?}
- */
- getAll(param) {
- this.init();
- return (/** @type {?} */ (this.map)).get(param) || null;
- }
- /**
- * Get all the parameter names for this body.
- * @return {?}
- */
- keys() {
- this.init();
- return Array.from((/** @type {?} */ (this.map)).keys());
- }
- /**
- * Construct a new body with an appended value for the given parameter name.
- * @param {?} param
- * @param {?} value
- * @return {?}
- */
- append(param, value) { return this.clone({ param, value, op: 'a' }); }
- /**
- * Construct a new body with a new value for the given parameter name.
- * @param {?} param
- * @param {?} value
- * @return {?}
- */
- set(param, value) { return this.clone({ param, value, op: 's' }); }
- /**
- * Construct a new body with either the given value for the given parameter
- * removed, if a value is given, or all values for the given parameter removed
- * if not.
- * @param {?} param
- * @param {?=} value
- * @return {?}
- */
- delete(param, value) { return this.clone({ param, value, op: 'd' }); }
- /**
- * Serialize the body to an encoded string, where key-value pairs (separated by `=`) are
- * separated by `&`s.
- * @return {?}
- */
- toString() {
- this.init();
- return this.keys()
- .map((/**
- * @param {?} key
- * @return {?}
- */
- key => {
- /** @type {?} */
- const eKey = this.encoder.encodeKey(key);
- return (/** @type {?} */ ((/** @type {?} */ (this.map)).get(key))).map((/**
- * @param {?} value
- * @return {?}
- */
- value => eKey + '=' + this.encoder.encodeValue(value)))
- .join('&');
- }))
- .join('&');
- }
- /**
- * @private
- * @param {?} update
- * @return {?}
- */
- clone(update) {
- /** @type {?} */
- const clone = new HttpParams((/** @type {?} */ ({ encoder: this.encoder })));
- clone.cloneFrom = this.cloneFrom || this;
- clone.updates = (this.updates || []).concat([update]);
- return clone;
- }
- /**
- * @private
- * @return {?}
- */
- init() {
- if (this.map === null) {
- this.map = new Map();
- }
- if (this.cloneFrom !== null) {
- this.cloneFrom.init();
- this.cloneFrom.keys().forEach((/**
- * @param {?} key
- * @return {?}
- */
- key => (/** @type {?} */ (this.map)).set(key, (/** @type {?} */ ((/** @type {?} */ ((/** @type {?} */ (this.cloneFrom)).map)).get(key))))));
- (/** @type {?} */ (this.updates)).forEach((/**
- * @param {?} update
- * @return {?}
- */
- update => {
- switch (update.op) {
- case 'a':
- case 's':
- /** @type {?} */
- const base = (update.op === 'a' ? (/** @type {?} */ (this.map)).get(update.param) : undefined) || [];
- base.push((/** @type {?} */ (update.value)));
- (/** @type {?} */ (this.map)).set(update.param, base);
- break;
- case 'd':
- if (update.value !== undefined) {
- /** @type {?} */
- let base = (/** @type {?} */ (this.map)).get(update.param) || [];
- /** @type {?} */
- const idx = base.indexOf(update.value);
- if (idx !== -1) {
- base.splice(idx, 1);
- }
- if (base.length > 0) {
- (/** @type {?} */ (this.map)).set(update.param, base);
- }
- else {
- (/** @type {?} */ (this.map)).delete(update.param);
- }
- }
- else {
- (/** @type {?} */ (this.map)).delete(update.param);
- break;
- }
- }
- }));
- this.cloneFrom = this.updates = null;
- }
- }
- }
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * Determine whether the given HTTP method may include a body.
- * @param {?} method
- * @return {?}
- */
- function mightHaveBody(method) {
- switch (method) {
- case 'DELETE':
- case 'GET':
- case 'HEAD':
- case 'OPTIONS':
- case 'JSONP':
- return false;
- default:
- return true;
- }
- }
- /**
- * Safely assert whether the given value is an ArrayBuffer.
- *
- * In some execution environments ArrayBuffer is not defined.
- * @param {?} value
- * @return {?}
- */
- function isArrayBuffer(value) {
- return typeof ArrayBuffer !== 'undefined' && value instanceof ArrayBuffer;
- }
- /**
- * Safely assert whether the given value is a Blob.
- *
- * In some execution environments Blob is not defined.
- * @param {?} value
- * @return {?}
- */
- function isBlob(value) {
- return typeof Blob !== 'undefined' && value instanceof Blob;
- }
- /**
- * Safely assert whether the given value is a FormData instance.
- *
- * In some execution environments FormData is not defined.
- * @param {?} value
- * @return {?}
- */
- function isFormData(value) {
- return typeof FormData !== 'undefined' && value instanceof FormData;
- }
- /**
- * An outgoing HTTP request with an optional typed body.
- *
- * `HttpRequest` represents an outgoing request, including URL, method,
- * headers, body, and other request configuration options. Instances should be
- * assumed to be immutable. To modify a `HttpRequest`, the `clone`
- * method should be used.
- *
- * \@publicApi
- * @template T
- */
- class HttpRequest {
- /**
- * @param {?} method
- * @param {?} url
- * @param {?=} third
- * @param {?=} fourth
- */
- constructor(method, url, third, fourth) {
- this.url = url;
- /**
- * The request body, or `null` if one isn't set.
- *
- * Bodies are not enforced to be immutable, as they can include a reference to any
- * user-defined data type. However, interceptors should take care to preserve
- * idempotence by treating them as such.
- */
- this.body = null;
- /**
- * Whether this request should be made in a way that exposes progress events.
- *
- * Progress events are expensive (change detection runs on each event) and so
- * they should only be requested if the consumer intends to monitor them.
- */
- this.reportProgress = false;
- /**
- * Whether this request should be sent with outgoing credentials (cookies).
- */
- this.withCredentials = false;
- /**
- * The expected response type of the server.
- *
- * This is used to parse the response appropriately before returning it to
- * the requestee.
- */
- this.responseType = 'json';
- this.method = method.toUpperCase();
- // Next, need to figure out which argument holds the HttpRequestInit
- // options, if any.
- /** @type {?} */
- let options;
- // Check whether a body argument is expected. The only valid way to omit
- // the body argument is to use a known no-body method like GET.
- if (mightHaveBody(this.method) || !!fourth) {
- // Body is the third argument, options are the fourth.
- this.body = (third !== undefined) ? (/** @type {?} */ (third)) : null;
- options = fourth;
- }
- else {
- // No body required, options are the third argument. The body stays null.
- options = (/** @type {?} */ (third));
- }
- // If options have been passed, interpret them.
- if (options) {
- // Normalize reportProgress and withCredentials.
- this.reportProgress = !!options.reportProgress;
- this.withCredentials = !!options.withCredentials;
- // Override default response type of 'json' if one is provided.
- if (!!options.responseType) {
- this.responseType = options.responseType;
- }
- // Override headers if they're provided.
- if (!!options.headers) {
- this.headers = options.headers;
- }
- if (!!options.params) {
- this.params = options.params;
- }
- }
- // If no headers have been passed in, construct a new HttpHeaders instance.
- if (!this.headers) {
- this.headers = new HttpHeaders();
- }
- // If no parameters have been passed in, construct a new HttpUrlEncodedParams instance.
- if (!this.params) {
- this.params = new HttpParams();
- this.urlWithParams = url;
- }
- else {
- // Encode the parameters to a string in preparation for inclusion in the URL.
- /** @type {?} */
- const params = this.params.toString();
- if (params.length === 0) {
- // No parameters, the visible URL is just the URL given at creation time.
- this.urlWithParams = url;
- }
- else {
- // Does the URL already have query parameters? Look for '?'.
- /** @type {?} */
- const qIdx = url.indexOf('?');
- // There are 3 cases to handle:
- // 1) No existing parameters -> append '?' followed by params.
- // 2) '?' exists and is followed by existing query string ->
- // append '&' followed by params.
- // 3) '?' exists at the end of the url -> append params directly.
- // This basically amounts to determining the character, if any, with
- // which to join the URL and parameters.
- /** @type {?} */
- const sep = qIdx === -1 ? '?' : (qIdx < url.length - 1 ? '&' : '');
- this.urlWithParams = url + sep + params;
- }
- }
- }
- /**
- * Transform the free-form body into a serialized format suitable for
- * transmission to the server.
- * @return {?}
- */
- serializeBody() {
- // If no body is present, no need to serialize it.
- if (this.body === null) {
- return null;
- }
- // Check whether the body is already in a serialized form. If so,
- // it can just be returned directly.
- if (isArrayBuffer(this.body) || isBlob(this.body) || isFormData(this.body) ||
- typeof this.body === 'string') {
- return this.body;
- }
- // Check whether the body is an instance of HttpUrlEncodedParams.
- if (this.body instanceof HttpParams) {
- return this.body.toString();
- }
- // Check whether the body is an object or array, and serialize with JSON if so.
- if (typeof this.body === 'object' || typeof this.body === 'boolean' ||
- Array.isArray(this.body)) {
- return JSON.stringify(this.body);
- }
- // Fall back on toString() for everything else.
- return ((/** @type {?} */ (this.body))).toString();
- }
- /**
- * Examine the body and attempt to infer an appropriate MIME type
- * for it.
- *
- * If no such type can be inferred, this method will return `null`.
- * @return {?}
- */
- detectContentTypeHeader() {
- // An empty body has no content type.
- if (this.body === null) {
- return null;
- }
- // FormData bodies rely on the browser's content type assignment.
- if (isFormData(this.body)) {
- return null;
- }
- // Blobs usually have their own content type. If it doesn't, then
- // no type can be inferred.
- if (isBlob(this.body)) {
- return this.body.type || null;
- }
- // Array buffers have unknown contents and thus no type can be inferred.
- if (isArrayBuffer(this.body)) {
- return null;
- }
- // Technically, strings could be a form of JSON data, but it's safe enough
- // to assume they're plain strings.
- if (typeof this.body === 'string') {
- return 'text/plain';
- }
- // `HttpUrlEncodedParams` has its own content-type.
- if (this.body instanceof HttpParams) {
- return 'application/x-www-form-urlencoded;charset=UTF-8';
- }
- // Arrays, objects, and numbers will be encoded as JSON.
- if (typeof this.body === 'object' || typeof this.body === 'number' ||
- Array.isArray(this.body)) {
- return 'application/json';
- }
- // No type could be inferred.
- return null;
- }
- /**
- * @param {?=} update
- * @return {?}
- */
- clone(update = {}) {
- // For method, url, and responseType, take the current value unless
- // it is overridden in the update hash.
- /** @type {?} */
- const method = update.method || this.method;
- /** @type {?} */
- const url = update.url || this.url;
- /** @type {?} */
- const responseType = update.responseType || this.responseType;
- // The body is somewhat special - a `null` value in update.body means
- // whatever current body is present is being overridden with an empty
- // body, whereas an `undefined` value in update.body implies no
- // override.
- /** @type {?} */
- const body = (update.body !== undefined) ? update.body : this.body;
- // Carefully handle the boolean options to differentiate between
- // `false` and `undefined` in the update args.
- /** @type {?} */
- const withCredentials = (update.withCredentials !== undefined) ? update.withCredentials : this.withCredentials;
- /** @type {?} */
- const reportProgress = (update.reportProgress !== undefined) ? update.reportProgress : this.reportProgress;
- // Headers and params may be appended to if `setHeaders` or
- // `setParams` are used.
- /** @type {?} */
- let headers = update.headers || this.headers;
- /** @type {?} */
- let params = update.params || this.params;
- // Check whether the caller has asked to add headers.
- if (update.setHeaders !== undefined) {
- // Set every requested header.
- headers =
- Object.keys(update.setHeaders)
- .reduce((/**
- * @param {?} headers
- * @param {?} name
- * @return {?}
- */
- (headers, name) => headers.set(name, (/** @type {?} */ (update.setHeaders))[name])), headers);
- }
- // Check whether the caller has asked to set params.
- if (update.setParams) {
- // Set every requested param.
- params = Object.keys(update.setParams)
- .reduce((/**
- * @param {?} params
- * @param {?} param
- * @return {?}
- */
- (params, param) => params.set(param, (/** @type {?} */ (update.setParams))[param])), params);
- }
- // Finally, construct the new HttpRequest using the pieces from above.
- return new HttpRequest(method, url, body, {
- params, headers, reportProgress, responseType, withCredentials,
- });
- }
- }
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /** @enum {number} */
- const HttpEventType = {
- /**
- * The request was sent out over the wire.
- */
- Sent: 0,
- /**
- * An upload progress event was received.
- */
- UploadProgress: 1,
- /**
- * The response status code and headers were received.
- */
- ResponseHeader: 2,
- /**
- * A download progress event was received.
- */
- DownloadProgress: 3,
- /**
- * The full response including the body was received.
- */
- Response: 4,
- /**
- * A custom event from an interceptor or a backend.
- */
- User: 5,
- };
- HttpEventType[HttpEventType.Sent] = 'Sent';
- HttpEventType[HttpEventType.UploadProgress] = 'UploadProgress';
- HttpEventType[HttpEventType.ResponseHeader] = 'ResponseHeader';
- HttpEventType[HttpEventType.DownloadProgress] = 'DownloadProgress';
- HttpEventType[HttpEventType.Response] = 'Response';
- HttpEventType[HttpEventType.User] = 'User';
- /**
- * Base class for both `HttpResponse` and `HttpHeaderResponse`.
- *
- * \@publicApi
- * @abstract
- */
- class HttpResponseBase {
- /**
- * Super-constructor for all responses.
- *
- * The single parameter accepted is an initialization hash. Any properties
- * of the response passed there will override the default values.
- * @param {?} init
- * @param {?=} defaultStatus
- * @param {?=} defaultStatusText
- */
- constructor(init, defaultStatus = 200, defaultStatusText = 'OK') {
- // If the hash has values passed, use them to initialize the response.
- // Otherwise use the default values.
- this.headers = init.headers || new HttpHeaders();
- this.status = init.status !== undefined ? init.status : defaultStatus;
- this.statusText = init.statusText || defaultStatusText;
- this.url = init.url || null;
- // Cache the ok value to avoid defining a getter.
- this.ok = this.status >= 200 && this.status < 300;
- }
- }
- /**
- * A partial HTTP response which only includes the status and header data,
- * but no response body.
- *
- * `HttpHeaderResponse` is a `HttpEvent` available on the response
- * event stream, only when progress events are requested.
- *
- * \@publicApi
- */
- class HttpHeaderResponse extends HttpResponseBase {
- /**
- * Create a new `HttpHeaderResponse` with the given parameters.
- * @param {?=} init
- */
- constructor(init = {}) {
- super(init);
- this.type = HttpEventType.ResponseHeader;
- }
- /**
- * Copy this `HttpHeaderResponse`, overriding its contents with the
- * given parameter hash.
- * @param {?=} update
- * @return {?}
- */
- clone(update = {}) {
- // Perform a straightforward initialization of the new HttpHeaderResponse,
- // overriding the current parameters with new ones if given.
- return new HttpHeaderResponse({
- headers: update.headers || this.headers,
- status: update.status !== undefined ? update.status : this.status,
- statusText: update.statusText || this.statusText,
- url: update.url || this.url || undefined,
- });
- }
- }
- /**
- * A full HTTP response, including a typed response body (which may be `null`
- * if one was not returned).
- *
- * `HttpResponse` is a `HttpEvent` available on the response event
- * stream.
- *
- * \@publicApi
- * @template T
- */
- class HttpResponse extends HttpResponseBase {
- /**
- * Construct a new `HttpResponse`.
- * @param {?=} init
- */
- constructor(init = {}) {
- super(init);
- this.type = HttpEventType.Response;
- this.body = init.body !== undefined ? init.body : null;
- }
- /**
- * @param {?=} update
- * @return {?}
- */
- clone(update = {}) {
- return new HttpResponse({
- body: (update.body !== undefined) ? update.body : this.body,
- headers: update.headers || this.headers,
- status: (update.status !== undefined) ? update.status : this.status,
- statusText: update.statusText || this.statusText,
- url: update.url || this.url || undefined,
- });
- }
- }
- /**
- * A response that represents an error or failure, either from a
- * non-successful HTTP status, an error while executing the request,
- * or some other failure which occurred during the parsing of the response.
- *
- * Any error returned on the `Observable` response stream will be
- * wrapped in an `HttpErrorResponse` to provide additional context about
- * the state of the HTTP layer when the error occurred. The error property
- * will contain either a wrapped Error object or the error response returned
- * from the server.
- *
- * \@publicApi
- */
- class HttpErrorResponse extends HttpResponseBase {
- /**
- * @param {?} init
- */
- constructor(init) {
- // Initialize with a default status of 0 / Unknown Error.
- super(init, 0, 'Unknown Error');
- this.name = 'HttpErrorResponse';
- /**
- * Errors are never okay, even when the status code is in the 2xx success range.
- */
- this.ok = false;
- // If the response was successful, then this was a parse error. Otherwise, it was
- // a protocol-level failure of some sort. Either the request failed in transit
- // or the server returned an unsuccessful status code.
- if (this.status >= 200 && this.status < 300) {
- this.message = `Http failure during parsing for ${init.url || '(unknown url)'}`;
- }
- else {
- this.message =
- `Http failure response for ${init.url || '(unknown url)'}: ${init.status} ${init.statusText}`;
- }
- this.error = init.error || null;
- }
- }
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * Constructs an instance of `HttpRequestOptions<T>` from a source `HttpMethodOptions` and
- * the given `body`. This function clones the object and adds the body.
- * @template T
- * @param {?} options
- * @param {?} body
- * @return {?}
- */
- function addBody(options, body) {
- return {
- body,
- headers: options.headers,
- observe: options.observe,
- params: options.params,
- reportProgress: options.reportProgress,
- responseType: options.responseType,
- withCredentials: options.withCredentials,
- };
- }
- /**
- * Performs HTTP requests.
- *
- * `HttpClient` is available as an injectable class, with methods to perform HTTP requests.
- * Each request method has multiple signatures, and the return type varies based on
- * the signature that is called (mainly the values of `observe` and `responseType`).
- *
- *
- * @see [HTTP Guide](guide/http)
- *
- *
- * \@usageNotes
- * Sample HTTP requests for the [Tour of Heroes](/tutorial/toh-pt0) application.
- *
- * ### HTTP Request Example
- *
- * ```
- * // GET heroes whose name contains search term
- * searchHeroes(term: string): observable<Hero[]>{
- *
- * const params = new HttpParams({fromString: 'name=term'});
- * return this.httpClient.request('GET', this.heroesUrl, {responseType:'json', params});
- * }
- * ```
- * ### JSONP Example
- * ```
- * requestJsonp(url, callback = 'callback') {
- * return this.httpClient.jsonp(this.heroesURL, callback);
- * }
- * ```
- *
- *
- * ### PATCH Example
- * ```
- * // PATCH one of the heroes' name
- * patchHero (id: number, heroName: string): Observable<{}> {
- * const url = `${this.heroesUrl}/${id}`; // PATCH api/heroes/42
- * return this.httpClient.patch(url, {name: heroName}, httpOptions)
- * .pipe(catchError(this.handleError('patchHero')));
- * }
- * ```
- *
- * \@publicApi
- */
- class HttpClient {
- /**
- * @param {?} handler
- */
- constructor(handler) {
- this.handler = handler;
- }
- /**
- * Constructs an observable for a generic HTTP request that, when subscribed,
- * fires the request through the chain of registered interceptors and on to the
- * server.
- *
- * You can pass an `HttpRequest` directly as the only parameter. In this case,
- * the call returns an observable of the raw `HttpEvent` stream.
- *
- * Alternatively you can pass an HTTP method as the first parameter,
- * a URL string as the second, and an options hash containing the request body as the third.
- * See `addBody()`. In this case, the specified `responseType` and `observe` options determine the
- * type of returned observable.
- * * The `responseType` value determines how a successful response body is parsed.
- * * If `responseType` is the default `json`, you can pass a type interface for the resulting
- * object as a type parameter to the call.
- *
- * The `observe` value determines the return type, according to what you are interested in
- * observing.
- * * An `observe` value of events returns an observable of the raw `HttpEvent` stream, including
- * progress events by default.
- * * An `observe` value of response returns an observable of `HttpResponse<T>`,
- * where the `T` parameter depends on the `responseType` and any optionally provided type
- * parameter.
- * * An `observe` value of body returns an observable of `<T>` with the same `T` body type.
- *
- * @param {?} first
- * @param {?=} url
- * @param {?=} options
- * @return {?}
- */
- request(first, url, options = {}) {
- /** @type {?} */
- let req;
- // First, check whether the primary argument is an instance of `HttpRequest`.
- if (first instanceof HttpRequest) {
- // It is. The other arguments must be undefined (per the signatures) and can be
- // ignored.
- req = (/** @type {?} */ (first));
- }
- else {
- // It's a string, so it represents a URL. Construct a request based on it,
- // and incorporate the remaining arguments (assuming `GET` unless a method is
- // provided.
- // Figure out the headers.
- /** @type {?} */
- let headers = undefined;
- if (options.headers instanceof HttpHeaders) {
- headers = options.headers;
- }
- else {
- headers = new HttpHeaders(options.headers);
- }
- // Sort out parameters.
- /** @type {?} */
- let params = undefined;
- if (!!options.params) {
- if (options.params instanceof HttpParams) {
- params = options.params;
- }
- else {
- params = new HttpParams((/** @type {?} */ ({ fromObject: options.params })));
- }
- }
- // Construct the request.
- req = new HttpRequest(first, (/** @type {?} */ (url)), (options.body !== undefined ? options.body : null), {
- headers,
- params,
- reportProgress: options.reportProgress,
- // By default, JSON is assumed to be returned for all calls.
- responseType: options.responseType || 'json',
- withCredentials: options.withCredentials,
- });
- }
- // Start with an Observable.of() the initial request, and run the handler (which
- // includes all interceptors) inside a concatMap(). This way, the handler runs
- // inside an Observable chain, which causes interceptors to be re-run on every
- // subscription (this also makes retries re-run the handler, including interceptors).
- /** @type {?} */
- const events$ = of(req).pipe(concatMap((/**
- * @param {?} req
- * @return {?}
- */
- (req) => this.handler.handle(req))));
- // If coming via the API signature which accepts a previously constructed HttpRequest,
- // the only option is to get the event stream. Otherwise, return the event stream if
- // that is what was requested.
- if (first instanceof HttpRequest || options.observe === 'events') {
- return events$;
- }
- // The requested stream contains either the full response or the body. In either
- // case, the first step is to filter the event stream to extract a stream of
- // responses(s).
- /** @type {?} */
- const res$ = (/** @type {?} */ (events$.pipe(filter((/**
- * @param {?} event
- * @return {?}
- */
- (event) => event instanceof HttpResponse)))));
- // Decide which stream to return.
- switch (options.observe || 'body') {
- case 'body':
- // The requested stream is the body. Map the response stream to the response
- // body. This could be done more simply, but a misbehaving interceptor might
- // transform the response body into a different format and ignore the requested
- // responseType. Guard against this by validating that the response is of the
- // requested type.
- switch (req.responseType) {
- case 'arraybuffer':
- return res$.pipe(map((/**
- * @param {?} res
- * @return {?}
- */
- (res) => {
- // Validate that the body is an ArrayBuffer.
- if (res.body !== null && !(res.body instanceof ArrayBuffer)) {
- throw new Error('Response is not an ArrayBuffer.');
- }
- return res.body;
- })));
- case 'blob':
- return res$.pipe(map((/**
- * @param {?} res
- * @return {?}
- */
- (res) => {
- // Validate that the body is a Blob.
- if (res.body !== null && !(res.body instanceof Blob)) {
- throw new Error('Response is not a Blob.');
- }
- return res.body;
- })));
- case 'text':
- return res$.pipe(map((/**
- * @param {?} res
- * @return {?}
- */
- (res) => {
- // Validate that the body is a string.
- if (res.body !== null && typeof res.body !== 'string') {
- throw new Error('Response is not a string.');
- }
- return res.body;
- })));
- case 'json':
- default:
- // No validation needed for JSON responses, as they can be of any type.
- return res$.pipe(map((/**
- * @param {?} res
- * @return {?}
- */
- (res) => res.body)));
- }
- case 'response':
- // The response stream was requested directly, so return it.
- return res$;
- default:
- // Guard against new future observe types being added.
- throw new Error(`Unreachable: unhandled observe type ${options.observe}}`);
- }
- }
- /**
- * Constructs an observable that, when subscribed, causes the configured
- * `DELETE` request to execute on the server. See the individual overloads for
- * details on the return type.
- *
- * @param {?} url The endpoint URL.
- * @param {?=} options The HTTP options to send with the request.
- *
- * @return {?}
- */
- delete(url, options = {}) {
- return this.request('DELETE', url, (/** @type {?} */ (options)));
- }
- /**
- * Constructs an observable that, when subscribed, causes the configured
- * `GET` request to execute on the server. See the individual overloads for
- * details on the return type.
- * @param {?} url
- * @param {?=} options
- * @return {?}
- */
- get(url, options = {}) {
- return this.request('GET', url, (/** @type {?} */ (options)));
- }
- /**
- * Constructs an observable that, when subscribed, causes the configured
- * `HEAD` request to execute on the server. The `HEAD` method returns
- * meta information about the resource without transferring the
- * resource itself. See the individual overloads for
- * details on the return type.
- * @param {?} url
- * @param {?=} options
- * @return {?}
- */
- head(url, options = {}) {
- return this.request('HEAD', url, (/** @type {?} */ (options)));
- }
- /**
- * Constructs an `Observable` that, when subscribed, causes a request with the special method
- * `JSONP` to be dispatched via the interceptor pipeline.
- * The [JSONP pattern](https://en.wikipedia.org/wiki/JSONP) works around limitations of certain
- * API endpoints that don't support newer,
- * and preferable [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) protocol.
- * JSONP treats the endpoint API as a JavaScript file and tricks the browser to process the
- * requests even if the API endpoint is not located on the same domain (origin) as the client-side
- * application making the request.
- * The endpoint API must support JSONP callback for JSONP requests to work.
- * The resource API returns the JSON response wrapped in a callback function.
- * You can pass the callback function name as one of the query parameters.
- * Note that JSONP requests can only be used with `GET` requests.
- *
- * @template T
- * @param {?} url The resource URL.
- * @param {?} callbackParam The callback function name.
- *
- * @return {?}
- */
- jsonp(url, callbackParam) {
- return this.request('JSONP', url, {
- params: new HttpParams().append(callbackParam, 'JSONP_CALLBACK'),
- observe: 'body',
- responseType: 'json',
- });
- }
- /**
- * Constructs an `Observable` that, when subscribed, causes the configured
- * `OPTIONS` request to execute on the server. This method allows the client
- * to determine the supported HTTP methods and other capabilites of an endpoint,
- * without implying a resource action. See the individual overloads for
- * details on the return type.
- * @param {?} url
- * @param {?=} options
- * @return {?}
- */
- options(url, options = {}) {
- return this.request('OPTIONS', url, (/** @type {?} */ (options)));
- }
- /**
- * Constructs an observable that, when subscribed, causes the configured
- * `PATCH` request to execute on the server. See the individual overloads for
- * details on the return type.
- * @param {?} url
- * @param {?} body
- * @param {?=} options
- * @return {?}
- */
- patch(url, body, options = {}) {
- return this.request('PATCH', url, addBody(options, body));
- }
- /**
- * Constructs an observable that, when subscribed, causes the configured
- * `POST` request to execute on the server. The server responds with the location of
- * the replaced resource. See the individual overloads for
- * details on the return type.
- * @param {?} url
- * @param {?} body
- * @param {?=} options
- * @return {?}
- */
- post(url, body, options = {}) {
- return this.request('POST', url, addBody(options, body));
- }
- /**
- * Constructs an observable that, when subscribed, causes the configured
- * `PUT` request to execute on the server. The `PUT` method replaces an existing resource
- * with a new set of values.
- * See the individual overloads for details on the return type.
- * @param {?} url
- * @param {?} body
- * @param {?=} options
- * @return {?}
- */
- put(url, body, options = {}) {
- return this.request('PUT', url, addBody(options, body));
- }
- }
- HttpClient.decorators = [
- { type: Injectable }
- ];
- /** @nocollapse */
- HttpClient.ctorParameters = () => [
- { type: HttpHandler }
- ];
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * `HttpHandler` which applies an `HttpInterceptor` to an `HttpRequest`.
- *
- *
- */
- class HttpInterceptorHandler {
- /**
- * @param {?} next
- * @param {?} interceptor
- */
- constructor(next, interceptor) {
- this.next = next;
- this.interceptor = interceptor;
- }
- /**
- * @param {?} req
- * @return {?}
- */
- handle(req) {
- return this.interceptor.intercept(req, this.next);
- }
- }
- /**
- * A multi-provider token which represents the array of `HttpInterceptor`s that
- * are registered.
- *
- * \@publicApi
- * @type {?}
- */
- const HTTP_INTERCEPTORS = new InjectionToken('HTTP_INTERCEPTORS');
- class NoopInterceptor {
- /**
- * @param {?} req
- * @param {?} next
- * @return {?}
- */
- intercept(req, next) {
- return next.handle(req);
- }
- }
- NoopInterceptor.decorators = [
- { type: Injectable }
- ];
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- // Every request made through JSONP needs a callback name that's unique across the
- // whole page. Each request is assigned an id and the callback name is constructed
- // from that. The next id to be assigned is tracked in a global variable here that
- // is shared among all applications on the page.
- /** @type {?} */
- let nextRequestId = 0;
- // Error text given when a JSONP script is injected, but doesn't invoke the callback
- // passed in its URL.
- /** @type {?} */
- const JSONP_ERR_NO_CALLBACK = 'JSONP injected script did not invoke callback.';
- // Error text given when a request is passed to the JsonpClientBackend that doesn't
- // have a request method JSONP.
- /** @type {?} */
- const JSONP_ERR_WRONG_METHOD = 'JSONP requests must use JSONP request method.';
- /** @type {?} */
- const JSONP_ERR_WRONG_RESPONSE_TYPE = 'JSONP requests must use Json response type.';
- /**
- * DI token/abstract type representing a map of JSONP callbacks.
- *
- * In the browser, this should always be the `window` object.
- *
- *
- * @abstract
- */
- class JsonpCallbackContext {
- }
- /**
- * `HttpBackend` that only processes `HttpRequest` with the JSONP method,
- * by performing JSONP style requests.
- *
- * \@publicApi
- */
- class JsonpClientBackend {
- /**
- * @param {?} callbackMap
- * @param {?} document
- */
- constructor(callbackMap, document) {
- this.callbackMap = callbackMap;
- this.document = document;
- }
- /**
- * Get the name of the next callback method, by incrementing the global `nextRequestId`.
- * @private
- * @return {?}
- */
- nextCallback() { return `ng_jsonp_callback_${nextRequestId++}`; }
- /**
- * Process a JSONP request and return an event stream of the results.
- * @param {?} req
- * @return {?}
- */
- handle(req) {
- // Firstly, check both the method and response type. If either doesn't match
- // then the request was improperly routed here and cannot be handled.
- if (req.method !== 'JSONP') {
- throw new Error(JSONP_ERR_WRONG_METHOD);
- }
- else if (req.responseType !== 'json') {
- throw new Error(JSONP_ERR_WRONG_RESPONSE_TYPE);
- }
- // Everything else happens inside the Observable boundary.
- return new Observable((/**
- * @param {?} observer
- * @return {?}
- */
- (observer) => {
- // The first step to make a request is to generate the callback name, and replace the
- // callback placeholder in the URL with the name. Care has to be taken here to ensure
- // a trailing &, if matched, gets inserted back into the URL in the correct place.
- /** @type {?} */
- const callback = this.nextCallback();
- /** @type {?} */
- const url = req.urlWithParams.replace(/=JSONP_CALLBACK(&|$)/, `=${callback}$1`);
- // Construct the <script> tag and point it at the URL.
- /** @type {?} */
- const node = this.document.createElement('script');
- node.src = url;
- // A JSONP request requires waiting for multiple callbacks. These variables
- // are closed over and track state across those callbacks.
- // The response object, if one has been received, or null otherwise.
- /** @type {?} */
- let body = null;
- // Whether the response callback has been called.
- /** @type {?} */
- let finished = false;
- // Whether the request has been cancelled (and thus any other callbacks)
- // should be ignored.
- /** @type {?} */
- let cancelled = false;
- // Set the response callback in this.callbackMap (which will be the window
- // object in the browser. The script being loaded via the <script> tag will
- // eventually call this callback.
- this.callbackMap[callback] = (/**
- * @param {?=} data
- * @return {?}
- */
- (data) => {
- // Data has been received from the JSONP script. Firstly, delete this callback.
- delete this.callbackMap[callback];
- // Next, make sure the request wasn't cancelled in the meantime.
- if (cancelled) {
- return;
- }
- // Set state to indicate data was received.
- body = data;
- finished = true;
- });
- // cleanup() is a utility closure that removes the <script> from the page and
- // the response callback from the window. This logic is used in both the
- // success, error, and cancellation paths, so it's extracted out for convenience.
- /** @type {?} */
- const cleanup = (/**
- * @return {?}
- */
- () => {
- // Remove the <script> tag if it's still on the page.
- if (node.parentNode) {
- node.parentNode.removeChild(node);
- }
- // Remove the response callback from the callbackMap (window object in the
- // browser).
- delete this.callbackMap[callback];
- });
- // onLoad() is the success callback which runs after the response callback
- // if the JSONP script loads successfully. The event itself is unimportant.
- // If something went wrong, onLoad() may run without the response callback
- // having been invoked.
- /** @type {?} */
- const onLoad = (/**
- * @param {?} event
- * @return {?}
- */
- (event) => {
- // Do nothing if the request has been cancelled.
- if (cancelled) {
- return;
- }
- // Cleanup the page.
- cleanup();
- // Check whether the response callback has run.
- if (!finished) {
- // It hasn't, something went wrong with the request. Return an error via
- // the Observable error path. All JSONP errors have status 0.
- observer.error(new HttpErrorResponse({
- url,
- status: 0,
- statusText: 'JSONP Error',
- error: new Error(JSONP_ERR_NO_CALLBACK),
- }));
- return;
- }
- // Success. body either contains the response body or null if none was
- // returned.
- observer.next(new HttpResponse({
- body,
- status: 200,
- statusText: 'OK', url,
- }));
- // Complete the stream, the response is over.
- observer.complete();
- });
- // onError() is the error callback, which runs if the script returned generates
- // a Javascript error. It emits the error via the Observable error channel as
- // a HttpErrorResponse.
- /** @type {?} */
- const onError = (/**
- * @param {?} error
- * @return {?}
- */
- (error) => {
- // If the request was already cancelled, no need to emit anything.
- if (cancelled) {
- return;
- }
- cleanup();
- // Wrap the error in a HttpErrorResponse.
- observer.error(new HttpErrorResponse({
- error,
- status: 0,
- statusText: 'JSONP Error', url,
- }));
- });
- // Subscribe to both the success (load) and error events on the <script> tag,
- // and add it to the page.
- node.addEventListener('load', onLoad);
- node.addEventListener('error', onError);
- this.document.body.appendChild(node);
- // The request has now been successfully sent.
- observer.next({ type: HttpEventType.Sent });
- // Cancellation handler.
- return (/**
- * @return {?}
- */
- () => {
- // Track the cancellation so event listeners won't do anything even if already scheduled.
- cancelled = true;
- // Remove the event listeners so they won't run if the events later fire.
- node.removeEventListener('load', onLoad);
- node.removeEventListener('error', onError);
- // And finally, clean up the page.
- cleanup();
- });
- }));
- }
- }
- JsonpClientBackend.decorators = [
- { type: Injectable }
- ];
- /** @nocollapse */
- JsonpClientBackend.ctorParameters = () => [
- { type: JsonpCallbackContext },
- { type: undefined, decorators: [{ type: Inject, args: [DOCUMENT,] }] }
- ];
- /**
- * An `HttpInterceptor` which identifies requests with the method JSONP and
- * shifts them to the `JsonpClientBackend`.
- *
- * \@publicApi
- */
- class JsonpInterceptor {
- /**
- * @param {?} jsonp
- */
- constructor(jsonp) {
- this.jsonp = jsonp;
- }
- /**
- * @param {?} req
- * @param {?} next
- * @return {?}
- */
- intercept(req, next) {
- if (req.method === 'JSONP') {
- return this.jsonp.handle((/** @type {?} */ (req)));
- }
- // Fall through for normal HTTP requests.
- return next.handle(req);
- }
- }
- JsonpInterceptor.decorators = [
- { type: Injectable }
- ];
- /** @nocollapse */
- JsonpInterceptor.ctorParameters = () => [
- { type: JsonpClientBackend }
- ];
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /** @type {?} */
- const XSSI_PREFIX = /^\)\]\}',?\n/;
- /**
- * Determine an appropriate URL for the response, by checking either
- * XMLHttpRequest.responseURL or the X-Request-URL header.
- * @param {?} xhr
- * @return {?}
- */
- function getResponseUrl(xhr) {
- if ('responseURL' in xhr && xhr.responseURL) {
- return xhr.responseURL;
- }
- if (/^X-Request-URL:/m.test(xhr.getAllResponseHeaders())) {
- return xhr.getResponseHeader('X-Request-URL');
- }
- return null;
- }
- /**
- * A wrapper around the `XMLHttpRequest` constructor.
- *
- * \@publicApi
- * @abstract
- */
- class XhrFactory {
- }
- /**
- * A factory for \@{link HttpXhrBackend} that uses the `XMLHttpRequest` browser API.
- *
- *
- */
- class BrowserXhr {
- constructor() { }
- /**
- * @return {?}
- */
- build() { return (/** @type {?} */ ((new XMLHttpRequest()))); }
- }
- BrowserXhr.decorators = [
- { type: Injectable }
- ];
- /** @nocollapse */
- BrowserXhr.ctorParameters = () => [];
- /**
- * An `HttpBackend` which uses the XMLHttpRequest API to send
- * requests to a backend server.
- *
- * \@publicApi
- */
- class HttpXhrBackend {
- /**
- * @param {?} xhrFactory
- */
- constructor(xhrFactory) {
- this.xhrFactory = xhrFactory;
- }
- /**
- * Process a request and return a stream of response events.
- * @param {?} req
- * @return {?}
- */
- handle(req) {
- // Quick check to give a better error message when a user attempts to use
- // HttpClient.jsonp() without installing the JsonpClientModule
- if (req.method === 'JSONP') {
- throw new Error(`Attempted to construct Jsonp request without JsonpClientModule installed.`);
- }
- // Everything happens on Observable subscription.
- return new Observable((/**
- * @param {?} observer
- * @return {?}
- */
- (observer) => {
- // Start by setting up the XHR object with request method, URL, and withCredentials flag.
- /** @type {?} */
- const xhr = this.xhrFactory.build();
- xhr.open(req.method, req.urlWithParams);
- if (!!req.withCredentials) {
- xhr.withCredentials = true;
- }
- // Add all the requested headers.
- req.headers.forEach((/**
- * @param {?} name
- * @param {?} values
- * @return {?}
- */
- (name, values) => xhr.setRequestHeader(name, values.join(','))));
- // Add an Accept header if one isn't present already.
- if (!req.headers.has('Accept')) {
- xhr.setRequestHeader('Accept', 'application/json, text/plain, */*');
- }
- // Auto-detect the Content-Type header if one isn't present already.
- if (!req.headers.has('Content-Type')) {
- /** @type {?} */
- const detectedType = req.detectContentTypeHeader();
- // Sometimes Content-Type detection fails.
- if (detectedType !== null) {
- xhr.setRequestHeader('Content-Type', detectedType);
- }
- }
- // Set the responseType if one was requested.
- if (req.responseType) {
- /** @type {?} */
- const responseType = req.responseType.toLowerCase();
- // JSON responses need to be processed as text. This is because if the server
- // returns an XSSI-prefixed JSON response, the browser will fail to parse it,
- // xhr.response will be null, and xhr.responseText cannot be accessed to
- // retrieve the prefixed JSON data in order to strip the prefix. Thus, all JSON
- // is parsed by first requesting text and then applying JSON.parse.
- xhr.responseType = (/** @type {?} */ (((responseType !== 'json') ? responseType : 'text')));
- }
- // Serialize the request body if one is present. If not, this will be set to null.
- /** @type {?} */
- const reqBody = req.serializeBody();
- // If progress events are enabled, response headers will be delivered
- // in two events - the HttpHeaderResponse event and the full HttpResponse
- // event. However, since response headers don't change in between these
- // two events, it doesn't make sense to parse them twice. So headerResponse
- // caches the data extracted from the response whenever it's first parsed,
- // to ensure parsing isn't duplicated.
- /** @type {?} */
- let headerResponse = null;
- // partialFromXhr extracts the HttpHeaderResponse from the current XMLHttpRequest
- // state, and memoizes it into headerResponse.
- /** @type {?} */
- const partialFromXhr = (/**
- * @return {?}
- */
- () => {
- if (headerResponse !== null) {
- return headerResponse;
- }
- // Read status and normalize an IE9 bug (http://bugs.jquery.com/ticket/1450).
- /** @type {?} */
- const status = xhr.status === 1223 ? 204 : xhr.status;
- /** @type {?} */
- const statusText = xhr.statusText || 'OK';
- // Parse headers from XMLHttpRequest - this step is lazy.
- /** @type {?} */
- const headers = new HttpHeaders(xhr.getAllResponseHeaders());
- // Read the response URL from the XMLHttpResponse instance and fall back on the
- // request URL.
- /** @type {?} */
- const url = getResponseUrl(xhr) || req.url;
- // Construct the HttpHeaderResponse and memoize it.
- headerResponse = new HttpHeaderResponse({ headers, status, statusText, url });
- return headerResponse;
- });
- // Next, a few closures are defined for the various events which XMLHttpRequest can
- // emit. This allows them to be unregistered as event listeners later.
- // First up is the load event, which represents a response being fully available.
- /** @type {?} */
- const onLoad = (/**
- * @return {?}
- */
- () => {
- // Read response state from the memoized partial data.
- let { headers, status, statusText, url } = partialFromXhr();
- // The body will be read out if present.
- /** @type {?} */
- let body = null;
- if (status !== 204) {
- // Use XMLHttpRequest.response if set, responseText otherwise.
- body = (typeof xhr.response === 'undefined') ? xhr.responseText : xhr.response;
- }
- // Normalize another potential bug (this one comes from CORS).
- if (status === 0) {
- status = !!body ? 200 : 0;
- }
- // ok determines whether the response will be transmitted on the event or
- // error channel. Unsuccessful status codes (not 2xx) will always be errors,
- // but a successful status code can still result in an error if the user
- // asked for JSON data and the body cannot be parsed as such.
- /** @type {?} */
- let ok = status >= 200 && status < 300;
- // Check whether the body needs to be parsed as JSON (in many cases the browser
- // will have done that already).
- if (req.responseType === 'json' && typeof body === 'string') {
- // Save the original body, before attempting XSSI prefix stripping.
- /** @type {?} */
- const originalBody = body;
- body = body.replace(XSSI_PREFIX, '');
- try {
- // Attempt the parse. If it fails, a parse error should be delivered to the user.
- body = body !== '' ? JSON.parse(body) : null;
- }
- catch (error) {
- // Since the JSON.parse failed, it's reasonable to assume this might not have been a
- // JSON response. Restore the original body (including any XSSI prefix) to deliver
- // a better error response.
- body = originalBody;
- // If this was an error request to begin with, leave it as a string, it probably
- // just isn't JSON. Otherwise, deliver the parsing error to the user.
- if (ok) {
- // Even though the response status was 2xx, this is still an error.
- ok = false;
- // The parse error contains the text of the body that failed to parse.
- body = (/** @type {?} */ ({ error, text: body }));
- }
- }
- }
- if (ok) {
- // A successful response is delivered on the event stream.
- observer.next(new HttpResponse({
- body,
- headers,
- status,
- statusText,
- url: url || undefined,
- }));
- // The full body has been received and delivered, no further events
- // are possible. This request is complete.
- observer.complete();
- }
- else {
- // An unsuccessful request is delivered on the error channel.
- observer.error(new HttpErrorResponse({
- // The error in this case is the response body (error from the server).
- error: body,
- headers,
- status,
- statusText,
- url: url || undefined,
- }));
- }
- });
- // The onError callback is called when something goes wrong at the network level.
- // Connection timeout, DNS error, offline, etc. These are actual errors, and are
- // transmitted on the error channel.
- /** @type {?} */
- const onError = (/**
- * @param {?} error
- * @return {?}
- */
- (error) => {
- const { url } = partialFromXhr();
- /** @type {?} */
- const res = new HttpErrorResponse({
- error,
- status: xhr.status || 0,
- statusText: xhr.statusText || 'Unknown Error',
- url: url || undefined,
- });
- observer.error(res);
- });
- // The sentHeaders flag tracks whether the HttpResponseHeaders event
- // has been sent on the stream. This is necessary to track if progress
- // is enabled since the event will be sent on only the first download
- // progerss event.
- /** @type {?} */
- let sentHeaders = false;
- // The download progress event handler, which is only registered if
- // progress events are enabled.
- /** @type {?} */
- const onDownProgress = (/**
- * @param {?} event
- * @return {?}
- */
- (event) => {
- // Send the HttpResponseHeaders event if it hasn't been sent already.
- if (!sentHeaders) {
- observer.next(partialFromXhr());
- sentHeaders = true;
- }
- // Start building the download progress event to deliver on the response
- // event stream.
- /** @type {?} */
- let progressEvent = {
- type: HttpEventType.DownloadProgress,
- loaded: event.loaded,
- };
- // Set the total number of bytes in the event if it's available.
- if (event.lengthComputable) {
- progressEvent.total = event.total;
- }
- // If the request was for text content and a partial response is
- // available on XMLHttpRequest, include it in the progress event
- // to allow for streaming reads.
- if (req.responseType === 'text' && !!xhr.responseText) {
- progressEvent.partialText = xhr.responseText;
- }
- // Finally, fire the event.
- observer.next(progressEvent);
- });
- // The upload progress event handler, which is only registered if
- // progress events are enabled.
- /** @type {?} */
- const onUpProgress = (/**
- * @param {?} event
- * @return {?}
- */
- (event) => {
- // Upload progress events are simpler. Begin building the progress
- // event.
- /** @type {?} */
- let progress = {
- type: HttpEventType.UploadProgress,
- loaded: event.loaded,
- };
- // If the total number of bytes being uploaded is available, include
- // it.
- if (event.lengthComputable) {
- progress.total = event.total;
- }
- // Send the event.
- observer.next(progress);
- });
- // By default, register for load and error events.
- xhr.addEventListener('load', onLoad);
- xhr.addEventListener('error', onError);
- // Progress events are only enabled if requested.
- if (req.reportProgress) {
- // Download progress is always enabled if requested.
- xhr.addEventListener('progress', onDownProgress);
- // Upload progress depends on whether there is a body to upload.
- if (reqBody !== null && xhr.upload) {
- xhr.upload.addEventListener('progress', onUpProgress);
- }
- }
- // Fire the request, and notify the event stream that it was fired.
- xhr.send((/** @type {?} */ (reqBody)));
- observer.next({ type: HttpEventType.Sent });
- // This is the return from the Observable function, which is the
- // request cancellation handler.
- return (/**
- * @return {?}
- */
- () => {
- // On a cancellation, remove all registered event listeners.
- xhr.removeEventListener('error', onError);
- xhr.removeEventListener('load', onLoad);
- if (req.reportProgress) {
- xhr.removeEventListener('progress', onDownProgress);
- if (reqBody !== null && xhr.upload) {
- xhr.upload.removeEventListener('progress', onUpProgress);
- }
- }
- // Finally, abort the in-flight request.
- xhr.abort();
- });
- }));
- }
- }
- HttpXhrBackend.decorators = [
- { type: Injectable }
- ];
- /** @nocollapse */
- HttpXhrBackend.ctorParameters = () => [
- { type: XhrFactory }
- ];
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /** @type {?} */
- const XSRF_COOKIE_NAME = new InjectionToken('XSRF_COOKIE_NAME');
- /** @type {?} */
- const XSRF_HEADER_NAME = new InjectionToken('XSRF_HEADER_NAME');
- /**
- * Retrieves the current XSRF token to use with the next outgoing request.
- *
- * \@publicApi
- * @abstract
- */
- class HttpXsrfTokenExtractor {
- }
- /**
- * `HttpXsrfTokenExtractor` which retrieves the token from a cookie.
- */
- class HttpXsrfCookieExtractor {
- /**
- * @param {?} doc
- * @param {?} platform
- * @param {?} cookieName
- */
- constructor(doc, platform, cookieName) {
- this.doc = doc;
- this.platform = platform;
- this.cookieName = cookieName;
- this.lastCookieString = '';
- this.lastToken = null;
- /**
- * \@internal for testing
- */
- this.parseCount = 0;
- }
- /**
- * @return {?}
- */
- getToken() {
- if (this.platform === 'server') {
- return null;
- }
- /** @type {?} */
- const cookieString = this.doc.cookie || '';
- if (cookieString !== this.lastCookieString) {
- this.parseCount++;
- this.lastToken = ɵparseCookieValue(cookieString, this.cookieName);
- this.lastCookieString = cookieString;
- }
- return this.lastToken;
- }
- }
- HttpXsrfCookieExtractor.decorators = [
- { type: Injectable }
- ];
- /** @nocollapse */
- HttpXsrfCookieExtractor.ctorParameters = () => [
- { type: undefined, decorators: [{ type: Inject, args: [DOCUMENT,] }] },
- { type: String, decorators: [{ type: Inject, args: [PLATFORM_ID,] }] },
- { type: String, decorators: [{ type: Inject, args: [XSRF_COOKIE_NAME,] }] }
- ];
- /**
- * `HttpInterceptor` which adds an XSRF token to eligible outgoing requests.
- */
- class HttpXsrfInterceptor {
- /**
- * @param {?} tokenService
- * @param {?} headerName
- */
- constructor(tokenService, headerName) {
- this.tokenService = tokenService;
- this.headerName = headerName;
- }
- /**
- * @param {?} req
- * @param {?} next
- * @return {?}
- */
- intercept(req, next) {
- /** @type {?} */
- const lcUrl = req.url.toLowerCase();
- // Skip both non-mutating requests and absolute URLs.
- // Non-mutating requests don't require a token, and absolute URLs require special handling
- // anyway as the cookie set
- // on our origin is not the same as the token expected by another origin.
- if (req.method === 'GET' || req.method === 'HEAD' || lcUrl.startsWith('http://') ||
- lcUrl.startsWith('https://')) {
- return next.handle(req);
- }
- /** @type {?} */
- const token = this.tokenService.getToken();
- // Be careful not to overwrite an existing header of the same name.
- if (token !== null && !req.headers.has(this.headerName)) {
- req = req.clone({ headers: req.headers.set(this.headerName, token) });
- }
- return next.handle(req);
- }
- }
- HttpXsrfInterceptor.decorators = [
- { type: Injectable }
- ];
- /** @nocollapse */
- HttpXsrfInterceptor.ctorParameters = () => [
- { type: HttpXsrfTokenExtractor },
- { type: String, decorators: [{ type: Inject, args: [XSRF_HEADER_NAME,] }] }
- ];
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * An injectable `HttpHandler` that applies multiple interceptors
- * to a request before passing it to the given `HttpBackend`.
- *
- * The interceptors are loaded lazily from the injector, to allow
- * interceptors to themselves inject classes depending indirectly
- * on `HttpInterceptingHandler` itself.
- * @see `HttpInterceptor`
- */
- class HttpInterceptingHandler {
- /**
- * @param {?} backend
- * @param {?} injector
- */
- constructor(backend, injector) {
- this.backend = backend;
- this.injector = injector;
- this.chain = null;
- }
- /**
- * @param {?} req
- * @return {?}
- */
- handle(req) {
- if (this.chain === null) {
- /** @type {?} */
- const interceptors = this.injector.get(HTTP_INTERCEPTORS, []);
- this.chain = interceptors.reduceRight((/**
- * @param {?} next
- * @param {?} interceptor
- * @return {?}
- */
- (next, interceptor) => new HttpInterceptorHandler(next, interceptor)), this.backend);
- }
- return this.chain.handle(req);
- }
- }
- HttpInterceptingHandler.decorators = [
- { type: Injectable }
- ];
- /** @nocollapse */
- HttpInterceptingHandler.ctorParameters = () => [
- { type: HttpBackend },
- { type: Injector }
- ];
- /**
- * Factory function that determines where to store JSONP callbacks.
- *
- * Ordinarily JSONP callbacks are stored on the `window` object, but this may not exist
- * in test environments. In that case, callbacks are stored on an anonymous object instead.
- *
- *
- * @return {?}
- */
- function jsonpCallbackContext() {
- if (typeof window === 'object') {
- return window;
- }
- return {};
- }
- /**
- * Configures XSRF protection support for outgoing requests.
- *
- * For a server that supports a cookie-based XSRF protection system,
- * use directly to configure XSRF protection with the correct
- * cookie and header names.
- *
- * If no names are supplied, the default cookie name is `XSRF-TOKEN`
- * and the default header name is `X-XSRF-TOKEN`.
- *
- * \@publicApi
- */
- class HttpClientXsrfModule {
- /**
- * Disable the default XSRF protection.
- * @return {?}
- */
- static disable() {
- return {
- ngModule: HttpClientXsrfModule,
- providers: [
- { provide: HttpXsrfInterceptor, useClass: NoopInterceptor },
- ],
- };
- }
- /**
- * Configure XSRF protection.
- * @param {?=} options An object that can specify either or both
- * cookie name or header name.
- * - Cookie name default is `XSRF-TOKEN`.
- * - Header name default is `X-XSRF-TOKEN`.
- *
- * @return {?}
- */
- static withOptions(options = {}) {
- return {
- ngModule: HttpClientXsrfModule,
- providers: [
- options.cookieName ? { provide: XSRF_COOKIE_NAME, useValue: options.cookieName } : [],
- options.headerName ? { provide: XSRF_HEADER_NAME, useValue: options.headerName } : [],
- ],
- };
- }
- }
- HttpClientXsrfModule.decorators = [
- { type: NgModule, args: [{
- providers: [
- HttpXsrfInterceptor,
- { provide: HTTP_INTERCEPTORS, useExisting: HttpXsrfInterceptor, multi: true },
- { provide: HttpXsrfTokenExtractor, useClass: HttpXsrfCookieExtractor },
- { provide: XSRF_COOKIE_NAME, useValue: 'XSRF-TOKEN' },
- { provide: XSRF_HEADER_NAME, useValue: 'X-XSRF-TOKEN' },
- ],
- },] }
- ];
- /**
- * Configures the [dependency injector](guide/glossary#injector) for `HttpClient`
- * with supporting services for XSRF. Automatically imported by `HttpClientModule`.
- *
- * You can add interceptors to the chain behind `HttpClient` by binding them to the
- * multiprovider for built-in [DI token](guide/glossary#di-token) `HTTP_INTERCEPTORS`.
- *
- * \@publicApi
- */
- class HttpClientModule {
- }
- HttpClientModule.decorators = [
- { type: NgModule, args: [{
- /**
- * Optional configuration for XSRF protection.
- */
- imports: [
- HttpClientXsrfModule.withOptions({
- cookieName: 'XSRF-TOKEN',
- headerName: 'X-XSRF-TOKEN',
- }),
- ],
- /**
- * Configures the [dependency injector](guide/glossary#injector) where it is imported
- * with supporting services for HTTP communications.
- */
- providers: [
- HttpClient,
- { provide: HttpHandler, useClass: HttpInterceptingHandler },
- HttpXhrBackend,
- { provide: HttpBackend, useExisting: HttpXhrBackend },
- BrowserXhr,
- { provide: XhrFactory, useExisting: BrowserXhr },
- ],
- },] }
- ];
- /**
- * Configures the [dependency injector](guide/glossary#injector) for `HttpClient`
- * with supporting services for JSONP.
- * Without this module, Jsonp requests reach the backend
- * with method JSONP, where they are rejected.
- *
- * You can add interceptors to the chain behind `HttpClient` by binding them to the
- * multiprovider for built-in [DI token](guide/glossary#di-token) `HTTP_INTERCEPTORS`.
- *
- * \@publicApi
- */
- class HttpClientJsonpModule {
- }
- HttpClientJsonpModule.decorators = [
- { type: NgModule, args: [{
- providers: [
- JsonpClientBackend,
- { provide: JsonpCallbackContext, useFactory: jsonpCallbackContext },
- { provide: HTTP_INTERCEPTORS, useClass: JsonpInterceptor, multi: true },
- ],
- },] }
- ];
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * Generated bundle index. Do not edit.
- */
- export { NoopInterceptor as ɵangular_packages_common_http_http_a, JsonpCallbackContext as ɵangular_packages_common_http_http_b, jsonpCallbackContext as ɵangular_packages_common_http_http_c, BrowserXhr as ɵangular_packages_common_http_http_d, HttpXsrfCookieExtractor as ɵangular_packages_common_http_http_g, HttpXsrfInterceptor as ɵangular_packages_common_http_http_h, XSRF_COOKIE_NAME as ɵangular_packages_common_http_http_e, XSRF_HEADER_NAME as ɵangular_packages_common_http_http_f, HttpBackend, HttpHandler, HttpClient, HttpHeaders, HTTP_INTERCEPTORS, JsonpClientBackend, JsonpInterceptor, HttpClientJsonpModule, HttpClientModule, HttpClientXsrfModule, HttpInterceptingHandler as ɵHttpInterceptingHandler, HttpParams, HttpUrlEncodingCodec, HttpRequest, HttpErrorResponse, HttpEventType, HttpHeaderResponse, HttpResponse, HttpResponseBase, HttpXhrBackend, XhrFactory, HttpXsrfTokenExtractor };
- //# sourceMappingURL=http.js.map
|