{ "version": 3, "sources": ["../ui/app/mn.logs.collectInfo.service.js", "../ui/app/mn.server.groups.service.js"], "sourcesContent": ["/*\nCopyright 2021-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 {BehaviorSubject, combineLatest} from 'rxjs';\nimport {map, pluck, switchMap, shareReplay, filter,\n distinctUntilChanged} from 'rxjs/operators';\nimport {HttpClient} from '@angular/common/http';\nimport {singletonGuard} from './mn.core.js';\n\nimport {MnHttpRequest} from './mn.http.request.js';\nimport {MnAdminService} from './mn.admin.service.js';\nimport {MnTasksService} from './mn.tasks.service.js';\nimport {MnPoolsService} from './mn.pools.service.js';\nimport {MnSecurityService} from './mn.security.service.js';\nimport {MnPermissions} from './ajs.upgraded.providers.js';\n\nexport {MnLogsCollectInfoService};\n\nclass MnLogsCollectInfoService {\n static get annotations() { return [\n new Injectable()\n ]}\n\n static get parameters() { return [\n HttpClient,\n MnAdminService,\n MnTasksService,\n MnSecurityService,\n MnPoolsService,\n MnPermissions\n ]}\n\n constructor(http, mnAdminService, mnTasksService, mnSecurityService, mnPoolsService, mnPermissions) {\n singletonGuard(MnLogsCollectInfoService);\n\n this.http = http;\n this.stream = {};\n\n let isEnterprise = mnPoolsService.stream.isEnterprise;\n let compatVersion55 = mnAdminService.stream.compatVersion55;\n let taskCollectInfo = mnTasksService.stream.taskCollectInfo;\n let permissionsStream = mnPermissions.stream;\n let settingsReadStream =\n permissionsStream.pipe(pluck('cluster','settings','read'),\n distinctUntilChanged());\n\n this.isEnterprise = isEnterprise;\n this.mnSecurityService = mnSecurityService;\n\n this.stream.nodesByCollectInfoStatus =\n combineLatest(mnAdminService.stream.nodesByOtp,\n taskCollectInfo.pipe(filter(taskCollectInfo => !!taskCollectInfo),\n pluck('perNode')))\n .pipe(map(this.prepareNodesByStatus.bind(this)),\n shareReplay({refCount: true, bufferSize: 1}));\n\n this.stream.nodesErrors =\n taskCollectInfo.pipe(filter(taskCollectInfo => !!taskCollectInfo),\n pluck('perNode'),\n map(this.prepareNodesErrors.bind(this)),\n shareReplay({refCount: true, bufferSize: 1}));\n\n this.stream.formData =\n combineLatest([isEnterprise,\n compatVersion55,\n settingsReadStream])\n .pipe(switchMap(this.formDataSources.bind(this)),\n map(this.unpackData.bind(this)),\n shareReplay({refCount: true, bufferSize: 1}));\n\n this.stream.startLogsCollection =\n new MnHttpRequest(this.startLogsCollection.bind(this))\n .addSuccess()\n .addError();\n\n this.stream.postCancelLogsCollection =\n new MnHttpRequest(this.postCancelLogsCollection.bind(this))\n .addSuccess()\n .addError();\n\n this.stream.clusterInfo =\n (new BehaviorSubject()).pipe(\n switchMap(this.getClusterInfo.bind(this)),\n shareReplay({refCount: true, bufferSize: 1}));\n }\n\n startLogsCollection(data) {\n return this.http.post(\"/controller/startLogsCollection\", data);\n }\n\n postCancelLogsCollection() {\n return this.http.post(\"/controller/cancelLogsCollection\");\n }\n\n getClusterInfo() {\n return this.http.get('/pools/default/terseClusterInfo?all=true');\n }\n\n formDataSources([isEnterprise, compatVersion55, serverGroupsRead]) {\n let sources = [\n this.isEnterprise\n ];\n if (isEnterprise && compatVersion55 && serverGroupsRead) {\n sources.push(this.mnSecurityService.stream.getLogRedaction);\n }\n return combineLatest(sources);\n }\n\n unpackData([isEnterprise, logRedaction]) {\n return {\n nodes: {},\n logs: {\n logRedactionLevel: logRedaction ? logRedaction.logRedactionLevel : null,\n enableTmpDir: null,\n tmpDir: null,\n enableLogDir: null,\n logDir: null\n },\n upload: {\n upload: null,\n uploadHost: isEnterprise ? \"uploads.couchbase.com\": null,\n customer: null,\n uploadProxy: null,\n bypassReachabilityChecks: null,\n ticket: null\n }\n }\n }\n\n prepareNodesByStatus([nodesByOtp, perNode]) {\n let nodesGroupedByStatus = {};\n Object.keys(perNode).forEach(nodeOtp => {\n let node = nodesByOtp[nodeOtp] && nodesByOtp[nodeOtp][0];\n perNode[nodeOtp].nodeName = node ? node.hostname : nodeOtp.replace(/^.*?@/, '');\n\n let status = perNode[nodeOtp].status;\n if (nodesGroupedByStatus[status]) {\n nodesGroupedByStatus[status].push(perNode[nodeOtp]);\n } else {\n nodesGroupedByStatus[status] = [perNode[nodeOtp]];\n }\n });\n return nodesGroupedByStatus;\n }\n\n prepareNodesErrors(perNode) {\n let errors;\n let addError = (nodeName, error) => {\n errors = errors || {};\n if (errors[nodeName]) {\n errors[nodeName].push({nodeName: nodeName, error: error});\n } else {\n errors[nodeName] = [{nodeName: nodeName, error: error}];\n }\n };\n Object.values(perNode).forEach(node => {\n if (node.uploadOutput) {\n addError(node.nodeName, node.uploadOutput);\n }\n if (node.collectionOutput) {\n addError(node.nodeName, node.collectionOutput);\n }\n });\n\n return errors;\n }\n}\n", "/*\nCopyright 2021-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 {BehaviorSubject, combineLatest, timer} from 'rxjs';\nimport {map, shareReplay, switchMap, pluck,\n distinctUntilChanged} from 'rxjs/operators';\nimport {Injectable} from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\n\nimport {MnPermissions} from './ajs.upgraded.providers.js';\nimport {MnAdminService} from './mn.admin.service.js';\nimport {singletonGuard} from './mn.core.js';\n\nexport {MnServerGroupsService}\n\nclass MnServerGroupsService {\n static get annotations() { return [\n new Injectable()\n ]}\n\n static get parameters() { return [\n HttpClient,\n MnAdminService,\n MnPermissions\n ]}\n\n constructor(http, mnAdminService, mnPermissions) {\n singletonGuard(MnServerGroupsService);\n this.http = http;\n let permissionsStream = mnPermissions.stream;\n\n this.stream = {};\n\n let getServerGroups =\n (new BehaviorSubject()).pipe(\n switchMap(this.getServerGroups.bind(this)));\n\n let nodesWithGroupName =\n combineLatest(getServerGroups,\n mnAdminService.stream.getNodes)\n .pipe(map(this.addGroupNameToNodes.bind(this)));\n\n let serverGroupsReadStream =\n permissionsStream.pipe(pluck('cluster','server_groups','read'),\n distinctUntilChanged());\n\n this.stream.maybeGetServersWithGroups =\n combineLatest(mnAdminService.stream.isGroupsAvailable,\n serverGroupsReadStream,\n timer(0, 10000))\n .pipe(switchMap(([isGroupsAvailable, serverGroupsRead,]) => {\n let hasGroups = isGroupsAvailable && serverGroupsRead;\n return hasGroups ? nodesWithGroupName : mnAdminService.stream.getNodes;\n }),\n shareReplay({refCount: true, bufferSize: 1}));\n }\n\n getServerGroups() {\n return this.http.get(\"/pools/default/serverGroups\");\n }\n\n addGroupNameToNodes([groups, nodes]) {\n let nodesMap = {};\n\n groups.groups.forEach(group =>\n group.nodes.forEach(node =>\n nodesMap[node.otpNode] = group.name));\n\n nodes.forEach(node =>\n node.groupName = nodesMap[node.otpNode]);\n\n return nodes;\n }\n}\n"], "mappings": "ghBA0BA,kCAA+B,WAClB,cAAc,CAAE,MAAO,CAChC,GAAI,uBAGK,aAAa,CAAE,MAAO,CAC/B,WACA,eACA,eACA,kBACA,eACA,eAGF,YAAY,KAAM,eAAgB,eAAgB,kBAAmB,eAAgB,cAAe,CAClG,eAAe,0BAEf,KAAK,KAAO,KACZ,KAAK,OAAS,GAEd,GAAI,cAAe,eAAe,OAAO,aACrC,gBAAkB,eAAe,OAAO,gBACxC,gBAAkB,eAAe,OAAO,gBAExC,mBACA,AAFoB,cAAc,OAEhB,KAAK,MAAM,UAAU,WAAW,QAC3B,wBAE3B,KAAK,aAAe,aACpB,KAAK,kBAAoB,kBAEzB,KAAK,OAAO,yBACV,cAAc,eAAe,OAAO,WACtB,gBAAgB,KAAK,OAAO,kBAAmB,CAAC,CAAC,kBAC5B,MAAM,aACxC,KAAK,IAAI,KAAK,qBAAqB,KAAK,OACnC,YAAY,CAAC,SAAU,GAAM,WAAY,KAEjD,KAAK,OAAO,YACV,gBAAgB,KAAK,OAAO,kBAAmB,CAAC,CAAC,kBAC5B,MAAM,WACN,IAAI,KAAK,mBAAmB,KAAK,OACjC,YAAY,CAAC,SAAU,GAAM,WAAY,KAEhE,KAAK,OAAO,SACV,cAAc,CAAC,aACA,gBACA,qBACd,KAAK,UAAU,KAAK,gBAAgB,KAAK,OACpC,IAAI,KAAK,WAAW,KAAK,OACzB,YAAY,CAAC,SAAU,GAAM,WAAY,KAEjD,KAAK,OAAO,oBACV,GAAI,eAAc,KAAK,oBAAoB,KAAK,OAC7C,aACA,WAEL,KAAK,OAAO,yBACV,GAAI,eAAc,KAAK,yBAAyB,KAAK,OAClD,aACA,WAEL,KAAK,OAAO,YACT,GAAI,mBAAmB,KACtB,UAAU,KAAK,eAAe,KAAK,OACnC,YAAY,CAAC,SAAU,GAAM,WAAY,KAG/C,oBAAoB,KAAM,CACxB,MAAO,MAAK,KAAK,KAAK,kCAAmC,MAG3D,0BAA2B,CACzB,MAAO,MAAK,KAAK,KAAK,oCAGxB,gBAAiB,CACf,MAAO,MAAK,KAAK,IAAI,4CAGvB,gBAAgB,CAAC,aAAc,gBAAiB,kBAAmB,CACjE,GAAI,SAAU,CACZ,KAAK,cAEP,MAAI,eAAgB,iBAAmB,kBACrC,QAAQ,KAAK,KAAK,kBAAkB,OAAO,iBAEtC,cAAc,SAGvB,WAAW,CAAC,aAAc,cAAe,CACvC,MAAO,CACL,MAAO,GACP,KAAM,CACJ,kBAAmB,aAAe,aAAa,kBAAoB,KACnE,aAAc,KACd,OAAQ,KACR,aAAc,KACd,OAAQ,MAEV,OAAQ,CACN,OAAQ,KACR,WAAY,aAAe,wBAAyB,KACpD,SAAU,KACV,YAAa,KACb,yBAA0B,KAC1B,OAAQ,OAKd,qBAAqB,CAAC,WAAY,SAAU,CAC1C,GAAI,sBAAuB,GAC3B,cAAO,KAAK,SAAS,QAAQ,SAAW,CACtC,GAAI,MAAO,WAAW,UAAY,WAAW,SAAS,GACtD,QAAQ,SAAS,SAAW,KAAO,KAAK,SAAW,QAAQ,QAAQ,QAAS,IAE5E,GAAI,QAAS,QAAQ,SAAS,OAC9B,AAAI,qBAAqB,QACvB,qBAAqB,QAAQ,KAAK,QAAQ,UAE1C,qBAAqB,QAAU,CAAC,QAAQ,YAGrC,qBAGT,mBAAmB,QAAS,CAC1B,GAAI,QACA,SAAW,QAAC,SAAU,QAAU,CAClC,OAAS,QAAU,GACnB,AAAI,OAAO,UACT,OAAO,UAAU,KAAK,CAAC,SAAoB,QAE3C,OAAO,UAAY,CAAC,CAAC,SAAoB,SAL9B,YAQf,cAAO,OAAO,SAAS,QAAQ,MAAQ,CACrC,AAAI,KAAK,cACP,SAAS,KAAK,SAAU,KAAK,cAE3B,KAAK,kBACP,SAAS,KAAK,SAAU,KAAK,oBAI1B,SAlJX,4DCJA,+BAA4B,WACf,cAAc,CAAE,MAAO,CAChC,GAAI,uBAGK,aAAa,CAAE,MAAO,CAC/B,WACA,eACA,eAGF,YAAY,KAAM,eAAgB,cAAe,CAC/C,eAAe,uBACf,KAAK,KAAO,KACZ,GAAI,mBAAoB,cAAc,OAEtC,KAAK,OAAS,GAEd,GAAI,iBACD,GAAI,mBAAmB,KACtB,UAAU,KAAK,gBAAgB,KAAK,QAEpC,mBACA,cAAc,gBACA,eAAe,OAAO,UACnC,KAAK,IAAI,KAAK,oBAAoB,KAAK,QAExC,uBACA,kBAAkB,KAAK,MAAM,UAAU,gBAAgB,QAChC,wBAE3B,KAAK,OAAO,0BACV,cAAc,eAAe,OAAO,kBACtB,uBACA,MAAM,EAAG,MACtB,KAAK,UAAU,CAAC,CAAC,kBAAmB,oBAE5B,AADS,mBAAqB,iBAClB,mBAAqB,eAAe,OAAO,UAE1D,YAAY,CAAC,SAAU,GAAM,WAAY,KAGnD,iBAAkB,CAChB,MAAO,MAAK,KAAK,IAAI,+BAGvB,oBAAoB,CAAC,OAAQ,OAAQ,CACnC,GAAI,UAAW,GAEf,cAAO,OAAO,QAAQ,OACpB,MAAM,MAAM,QAAQ,MAClB,SAAS,KAAK,SAAW,MAAM,OAEnC,MAAM,QAAQ,MACZ,KAAK,UAAY,SAAS,KAAK,UAE1B,QAxDX", "names": [] }