{"version":3,"file":"license.store-0284b555.js","sources":["../../../frontend-v2/src/services/control-plane/license.service/license.service.ts","../../../frontend-v2/src/stores/license.store.ts"],"sourcesContent":["// Models\nimport type { IPrometheusResponse } from \"@/models/prometheus.model\";\n// Services\nimport { prometheusService } from \"@/services/control-plane/prometheus.service/prometheus.service\";\nimport { tenantManagerApi } from \"@/services/infra/client-apis/tenants-manager-api/tenants-manager-api\";\nimport type { GetLicenseQuery200ResponseInner, UploadLicense200Response } from \"@/swagger-models/tenants-manager-client\";\n\nexport const licenseService = {\n list,\n upload,\n getTotalUsedGPUs,\n};\n\nasync function list(tenantId: string): Promise {\n const response = await tenantManagerApi.tenantsApi.getLicenseQuery(parseInt(tenantId), \"gpu\");\n return response.data;\n}\n\nasync function upload(tenantId: string, license: File): Promise {\n const response = await tenantManagerApi.tenantsApi.uploadLicense(parseInt(tenantId), license);\n return response.data;\n}\n\nasync function getTotalUsedGPUs(): Promise {\n const result: Array = await prometheusService.multipleQueries({\n totalGpus: \"sum(runai_gpu_count_per_node) or vector(0)\",\n });\n return +result[0].data[0].value[1];\n}\n","import type { ILicense, ISignedLicense } from \"@/models/license.model\";\nimport { licenseService } from \"@/services/control-plane/license.service/license.service\";\nimport { defineStore } from \"pinia\";\nimport { useAuthStore } from \"./auth.store\";\n\nexport const useLicenseStore = defineStore(\"License\", {\n state: () => ({\n licenses: [] as ILicense[],\n license: null as null | ISignedLicense,\n inUseGPUs: 0 as number,\n }),\n getters: {\n licensedGPUs(): number {\n return this.licenses.reduce((acc, license) => acc + license.limit, 0);\n },\n inUseGPUsAmount(): number {\n return this.inUseGPUs;\n },\n },\n actions: {\n async loadLicenses(): Promise {\n const tenantId = useAuthStore().tenant.id?.toString() || \"\";\n try {\n this.licenses = await licenseService.list(tenantId);\n } catch (error: unknown) {\n console.error(\"Failed to get licenses\", error);\n }\n try {\n this.inUseGPUs = await licenseService.getTotalUsedGPUs();\n } catch (error: unknown) {\n console.error(\"Failed to get the amount of gpus in use\", error);\n }\n },\n async uploadLicense(license: File): Promise {\n const tenantId = useAuthStore().tenant.id?.toString() || \"\";\n this.license = await licenseService.upload(tenantId, license);\n if (license) {\n this.loadLicenses();\n }\n return this.license;\n },\n },\n});\n"],"names":["licenseService","list","upload","getTotalUsedGPUs","tenantId","tenantManagerApi","license","prometheusService","useLicenseStore","defineStore","acc","_a","useAuthStore","error"],"mappings":"gEAOO,MAAMA,EAAiB,CAC5B,KAAAC,EACA,OAAAC,EACA,iBAAAC,CACF,EAEA,eAAeF,EAAKG,EAA8D,CAEhF,OADiB,MAAMC,EAAiB,WAAW,gBAAgB,SAASD,CAAQ,EAAG,KAAK,GAC5E,IAClB,CAEA,eAAeF,EAAOE,EAAkBE,EAAkD,CAExF,OADiB,MAAMD,EAAiB,WAAW,cAAc,SAASD,CAAQ,EAAGE,CAAO,GAC5E,IAClB,CAEA,eAAeH,GAAoC,CAI1C,MAAA,EAHoC,MAAMI,EAAkB,gBAAgB,CACjF,UAAW,4CAAA,CACZ,GACc,CAAC,EAAE,KAAK,CAAC,EAAE,MAAM,CAAC,CACnC,CCvBa,MAAAC,EAAkBC,EAAY,UAAW,CACpD,MAAO,KAAO,CACZ,SAAU,CAAC,EACX,QAAS,KACT,UAAW,CAAA,GAEb,QAAS,CACP,cAAuB,CACd,OAAA,KAAK,SAAS,OAAO,CAACC,EAAKJ,IAAYI,EAAMJ,EAAQ,MAAO,CAAC,CACtE,EACA,iBAA0B,CACxB,OAAO,KAAK,SACd,CACF,EACA,QAAS,CACP,MAAM,cAA8B,OAClC,MAAMF,IAAWO,EAAAC,IAAe,OAAO,KAAtB,YAAAD,EAA0B,aAAc,GACrD,GAAA,CACF,KAAK,SAAW,MAAMX,EAAe,KAAKI,CAAQ,QAC3CS,EAAgB,CACf,QAAA,MAAM,yBAA0BA,CAAK,CAC/C,CACI,GAAA,CACG,KAAA,UAAY,MAAMb,EAAe,iBAAiB,QAChDa,EAAgB,CACf,QAAA,MAAM,0CAA2CA,CAAK,CAChE,CACF,EACA,MAAM,cAAcP,EAAwC,OAC1D,MAAMF,IAAWO,EAAAC,IAAe,OAAO,KAAtB,YAAAD,EAA0B,aAAc,GACzD,YAAK,QAAU,MAAMX,EAAe,OAAOI,EAAUE,CAAO,EACxDA,GACF,KAAK,aAAa,EAEb,KAAK,OACd,CACF,CACF,CAAC"}