diff options
author | 2024-12-30 09:07:46 +0000 | |
---|---|---|
committer | 2024-12-30 09:07:46 +0000 | |
commit | 50eb8b0cb80815125a1534d0215c37555aae5be1 (patch) | |
tree | c507bfb591b7c2fbe9306842626ab4342a203148 /usecaseui-portal/src/app/api/maas.api.ts | |
parent | 9df997b6d974f0942d57966fc2986e59d95837dd (diff) | |
parent | 4f2ee468370622d8e45382087f0599032b9afeba (diff) |
Merge "Optimize your code and add editing capabilities for your knowledge base and apps."
Diffstat (limited to 'usecaseui-portal/src/app/api/maas.api.ts')
-rw-r--r-- | usecaseui-portal/src/app/api/maas.api.ts | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/api/maas.api.ts b/usecaseui-portal/src/app/api/maas.api.ts new file mode 100644 index 00000000..f7a558f7 --- /dev/null +++ b/usecaseui-portal/src/app/api/maas.api.ts @@ -0,0 +1,91 @@ +/* + Copyright (C) 2022 CMCC, Inc. and others. All rights reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ +import { Injectable } from '@angular/core'; +import { HttpClient, HttpHeaders, HttpParams, HttpResponse } from '@angular/common/http'; +import { Observable } from 'rxjs/Observable'; +import { of } from 'rxjs/observable/of'; +import { KnowledgeBaseResponse, KnowledgeBasesResponse, OperatorsResponse, ResponseHeader } from '../views/maas/knowledge-base-management/knowledge-base.type' +import { Application, ApplicationResponse, ApplicationsResponse } from '../views/maas/build/application.type'; +@Injectable() +export class MaasApi { + + constructor(private http: HttpClient) { } + baseUrl = "/api/usecaseui-llm-adaptation/v1/"; + url = { + getKnowledgeBaseRecord: this.baseUrl + "knowledgeBase/query", + removeKnowledgeBase: this.baseUrl + "knowledgeBase/delete/", + getKnowledgeBaseById: this.baseUrl + "knowledgeBase/queryById/", + updateKnowledgeBaseRecord: this.baseUrl + "knowledgeBase/edit", + createKnowledgeBase: this.baseUrl + "knowledgeBase/create", + maasUrl: this.baseUrl + "maas/getAll", + getAllApplication: this.baseUrl + "application/query", + deleteApplicationById: this.baseUrl + "application/delete/", + getApplicationById: this.baseUrl + "application/queryById/", + operatorsUrl: this.baseUrl + 'operator/maas/getAll', + KnowledgeBaseByMaas: this.baseUrl + 'knowledgeBase/queryByMaaSId/', + createApplicationUrl: this.baseUrl + "application/create", + updateApplication: this.baseUrl + "application/edit" + }; + + getKnowledgeBaseRecord() { + return this.http.get<KnowledgeBasesResponse>(this.url.getKnowledgeBaseRecord); + } + + updateKnowledgeBase(body: any) { + return this.http.post<ResponseHeader>(this.url.updateKnowledgeBaseRecord, body); + } + + createKnowledgeBase(body: FormData) { + return this.http.post<ResponseHeader>(this.url.createKnowledgeBase, body); + } + + deleteKnowledgeBaseData(id: string) { + return this.http.delete<ResponseHeader>(this.url.removeKnowledgeBase + id); + } + + getKnowledgeBaseById(id: string) { + return this.http.get<KnowledgeBaseResponse>(this.url.getKnowledgeBaseById + id); + } + + getAllApplication() { + return this.http.get<ApplicationsResponse>(this.url.getAllApplication); + } + + deleteApplicationById(id: string) { + return this.http.delete<ResponseHeader>(this.url.deleteApplicationById + id); + } + + getApplicationById(id: string) { + return this.http.get<ApplicationResponse>(this.url.getApplicationById + id); + } + + getOperators() { + return this.http.get<OperatorsResponse>(this.url.operatorsUrl); + } + + fetchKnowledgeBaseByMaasId(id: string) { + return this.http.get<KnowledgeBasesResponse>(this.url.KnowledgeBaseByMaas + id); + } + + createApplication(body: Application) { + return this.http.post<ResponseHeader>(this.url.createApplicationUrl, body) + } + + updateApplication(body: Application) { + return this.http.post<ResponseHeader>(this.url.updateApplication, body) + } + +} |