{ "version": 3, "sources": ["../ui/app/constants/constants.js", "../ui/app/mn.http.request.js"], "sourcesContent": ["/*\nCopyright 2015-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\nlet daysOfWeek = [\n 'Monday',\n 'Tuesday',\n 'Wednesday',\n 'Thursday',\n 'Friday',\n 'Saturday',\n 'Sunday'\n];\n\nlet knownAlerts = [\n 'auto_failover_node',\n 'auto_failover_maximum_reached',\n 'auto_failover_other_nodes_down',\n 'auto_failover_cluster_too_small',\n 'auto_failover_disabled',\n 'ip',\n 'disk',\n 'overhead',\n 'ep_oom_errors',\n 'ep_item_commit_failed',\n 'audit_dropped_events',\n 'indexer_ram_max_usage',\n 'ep_clock_cas_drift_threshold_exceeded',\n 'communication_issue',\n 'time_out_of_sync',\n 'disk_usage_analyzer_stuck',\n 'cert_expired',\n 'cert_expires_soon',\n 'memory_threshold',\n 'history_size_warning',\n 'indexer_low_resident_percentage',\n 'memcached_connections'\n];\n\nlet timeUnitToSeconds = {\n minute: 60,\n hour: 3600,\n day: 86400,\n week: 691200,\n month: 2678400,\n year: 31622400\n};\n\nlet docsLimit = 1000;\n\nlet docBytesLimit = 256 * 1024;\n\nlet viewsPerPageLimit = 6;\n\nlet IEC = {\n Ki: 1024,\n Mi: 1048576,\n Gi: 1073741824\n};\n\nlet servicesEnterprise = [\"kv\", \"n1ql\", \"index\", \"fts\", \"cbas\", \"eventing\", \"backup\"];\nlet servicesCE = [\"kv\", \"index\", \"fts\", \"n1ql\"];\n\nexport {\n daysOfWeek,\n knownAlerts,\n timeUnitToSeconds,\n docsLimit,\n docBytesLimit,\n viewsPerPageLimit,\n IEC,\n servicesEnterprise,\n servicesCE\n};\n", "/*\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 {Subject, of, merge, NEVER, zip } from 'rxjs';\nimport {HttpErrorResponse } from '@angular/common/http';\nimport {catchError, switchMap, shareReplay, mapTo, filter, map,\n tap} from 'rxjs/operators';\n\nimport {MnHelperService} from './mn.helper.service.js';\n\nexport {MnHttpRequest, MnHttpGroupRequest};\n\nclass MnHttpGroupRequest {\n constructor(httpMap) {\n this.request = new Subject();\n this.httpMap = httpMap;\n this.fakeMap = Object.keys(this.httpMap).reduce((acc, name) => {\n acc[name] = new Subject();\n return acc;\n }, {});\n }\n\n clearError() {\n Object.keys(this.httpMap).forEach((key) => this.httpMap[key].clearError());\n }\n\n addError() {\n this.error =\n zip.apply(null, this.getHttpGroupStreams.bind(this)(\"response\"))\n .pipe(filter((responses) =>\n responses.find((resp) =>\n resp instanceof HttpErrorResponse)))\n\n return this;\n }\n\n addSuccess() {\n this.success =\n zip.apply(null, this.getHttpGroupStreams.bind(this)(\"response\"))\n .pipe(filter((responses) =>\n !responses.find((resp) =>\n resp instanceof HttpErrorResponse)));\n return this;\n }\n\n doOrderedRequest(data) {\n Object.keys(this.httpMap).forEach((key) => {\n if (!data.get(key)) {\n data.set(key, null);\n }\n });\n Array.from(data.keys()).forEach((key) => {\n if (data.get(key) === null) {\n this.fakeMap[key].next(null);\n } else {\n this.httpMap[key].post(data.get(key));\n }\n });\n }\n\n post(data) {\n data = data || {};\n this.request.next();\n if (data instanceof Map) {\n this.doOrderedRequest(data);\n } else {\n Object.keys(this.httpMap).forEach((key) => this.httpMap[key].post(data[key]));\n }\n }\n\n getHttpGroupStreams(stream) {\n return Object.keys(this.httpMap).reduce((result, key) => {\n result.push(merge(this.httpMap[key][stream], this.fakeMap[key]));\n return result;\n }, []);\n }\n\n addLoading() {\n this.loading =\n merge(\n zip.apply(null, this.getHttpGroupStreams.bind(this)(\"response\")).pipe(mapTo(false)),\n this.request.pipe(mapTo(true)));\n return this;\n }\n}\n\nclass MnHttpRequest {\n constructor(call) {\n this.request = new Subject();\n this._errorSubject = new Subject();\n this._loadingSubject = new Subject();\n this.addResponse(call);\n }\n\n clearError() {\n this._errorSubject.next(null);\n }\n\n addResponse(call) {\n let errorsAndSuccess = switchMap((data) => call(data).pipe(catchError((err) => of(err))));\n this.response = this.request.pipe(errorsAndSuccess,\n shareReplay({refCount: true, bufferSize: 1}));\n return this;\n }\n\n addError(modify) {\n let extractErrorsPipe =\n switchMap((rv) => {\n if (rv instanceof HttpErrorResponse) {\n return of(rv);\n } else if (MnHelperService.prototype.isJson(rv) && rv.includes(\"errors\")) {\n return of(new HttpErrorResponse({error: rv}));\n } else {\n return NEVER;\n }\n });\n\n var error = merge(\n this._errorSubject,\n this.response.pipe(\n extractErrorsPipe,\n map(function (rv) {\n if (!!rv.error && MnHelperService.prototype.isJson(rv.error)) {\n let val = JSON.parse(rv.error);\n val.status = rv.status;\n return val;\n } else {\n return rv;\n }\n }),\n (modify ? modify : tap()),\n shareReplay({refCount: true, bufferSize: 1})));\n\n this.error = error;\n\n return this;\n }\n\n addLoading() {\n this.loading = merge(this._loadingSubject, this.response.pipe(mapTo(false)));\n return this;\n }\n\n addSuccess(modify) {\n var success =\n this.response.pipe(\n filter((rv) => !(rv instanceof HttpErrorResponse)),\n shareReplay({refCount: true, bufferSize: 1})\n );\n if (modify) {\n success = success.pipe(modify);\n }\n this.success = success;\n return this;\n }\n\n post(data) {\n this._loadingSubject.next(true);\n this.request.next(data);\n }\n}\n"], "mappings": "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", "names": [] }