{ "version": 3, "sources": ["../ui/app/mn.auth.service.js"], "sourcesContent": ["/*\nCopyright 2020-Present Couchbase, Inc.\n\nUse of this software is governed by the Business Source License included in\nthe file licenses/BSL-Couchbase.txt. As of the Change Date specified in that\nfile, in accordance with the Business Source License, use of this software will\nbe governed by the Apache License, Version 2.0, included in the file\nlicenses/APL2.txt.\n*/\n\nimport {Injectable} from '@angular/core';\nimport {HttpClient, HttpParams} from '@angular/common/http';\nimport {map} from 'rxjs/operators';\nimport {BehaviorSubject} from 'rxjs';\nimport {shareReplay, switchMap} from 'rxjs/operators';\nimport {singletonGuard} from './mn.core.js';\nimport {MnHttpRequest} from './mn.http.request.js';\n\nexport {MnAuthService}\n\nclass MnAuthService {\n static get annotations() { return [\n new Injectable()\n ]}\n\n static get parameters() { return [\n HttpClient\n ]}\n\n constructor(http) {\n singletonGuard(MnAuthService);\n this.http = http;\n this.stream = {};\n\n this.stream.postUILogin =\n new MnHttpRequest(this.postUILogin.bind(this))\n .addSuccess()\n .addError(map(rv => rv.status));\n\n this.stream.getAuthMethods =\n (new BehaviorSubject()).pipe(\n switchMap(this.getAuthMethods.bind(this)),\n shareReplay({refCount: true, bufferSize: 1}));\n\n // this.stream.postUILogout =\n // new mn.core.MnPostHttp(this.postUILogout.bind(this));\n }\n\n whoami() {\n return this.http.get('/whoami');\n }\n\n postUILogin([user, useCertForAuth]) {\n const params = new HttpParams().set('use_cert_for_auth', useCertForAuth ? '1': '0');\n return this.http.post('/uilogin', user || {}, {params});\n // should be moved into app.admin alerts\n // we should say something like you are using cached vesrion, reload the tab\n // return that.mnPoolsService\n // .get$\n // .map(function (cachedPools, newPools) {\n\n // if (cachedPools.implementationVersion !== newPools.implementationVersion) {\n // return {ok: false, status: 410};\n // } else {\n // return resp;\n // }\n // });\n }\n\n postUILogout() {\n return this.http.post(\"/uilogout\");\n // .then(function () {\n // $window.location.reload();\n // }, function (response) {\n // let maybeRedirect = response?.data?.redirect;\n // if (response.status === 400 && maybeRedirect) {\n // $window.location.href = maybeRedirect;\n // } else {\n // $window.location.reload();\n // }\n // });\n }\n\n getAuthMethods() {\n return this.http.get(\"/_ui/authMethods\");\n }\n}\n"], "mappings": "mPAoBA,uBAAoB,WACP,cAAc,CAAE,MAAO,CAChC,GAAI,uBAGK,aAAa,CAAE,MAAO,CAC/B,YAGF,YAAY,KAAM,CAChB,eAAe,eACf,KAAK,KAAO,KACZ,KAAK,OAAS,GAEd,KAAK,OAAO,YACV,GAAI,eAAc,KAAK,YAAY,KAAK,OACvC,aACA,SAAS,IAAI,IAAM,GAAG,SAEzB,KAAK,OAAO,eACT,GAAI,mBAAmB,KACtB,UAAU,KAAK,eAAe,KAAK,OACnC,YAAY,CAAC,SAAU,GAAM,WAAY,KAM/C,QAAS,CACP,MAAO,MAAK,KAAK,IAAI,WAGvB,YAAY,CAAC,KAAM,gBAAiB,CAClC,GAAM,QAAS,GAAI,cAAa,IAAI,oBAAqB,eAAiB,IAAK,KAC/E,MAAO,MAAK,KAAK,KAAK,WAAY,MAAQ,GAAI,CAAC,SAejD,cAAe,CACb,MAAO,MAAK,KAAK,KAAK,aAaxB,gBAAiB,CACf,MAAO,MAAK,KAAK,IAAI,sBAhEzB", "names": [] }