| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you 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 { HttpClient, HttpParams, HttpResponse } from '@angular/common/http'; |
| import { Injectable } from '@angular/core'; |
| import { Observable } from 'rxjs'; |
| |
| import { AlertDefine } from '../pojo/AlertDefine'; |
| import { AlertDefineBind } from '../pojo/AlertDefineBind'; |
| import { Message } from '../pojo/Message'; |
| import { Page } from '../pojo/Page'; |
| |
| const alert_define_uri = '/alert/define'; |
| const alert_defines_uri = '/alert/defines'; |
| const export_defines_uri = '/alert/defines/export'; |
| |
| @Injectable({ |
| providedIn: 'root' |
| }) |
| export class AlertDefineService { |
| constructor(private http: HttpClient) {} |
| |
| public newAlertDefine(body: AlertDefine): Observable<Message<any>> { |
| return this.http.post<Message<any>>(alert_define_uri, body); |
| } |
| |
| public editAlertDefine(body: AlertDefine): Observable<Message<any>> { |
| return this.http.put<Message<any>>(alert_define_uri, body); |
| } |
| |
| public getAlertDefine(alertDefineId: number): Observable<Message<AlertDefine>> { |
| return this.http.get<Message<AlertDefine>>(`${alert_define_uri}/${alertDefineId}`); |
| } |
| |
| public applyAlertDefineMonitorsBind(alertDefineId: number, binds: AlertDefineBind[]): Observable<Message<any>> { |
| return this.http.post<Message<any>>(`${alert_define_uri}/${alertDefineId}/monitors`, binds); |
| } |
| |
| public getAlertDefineMonitorsBind(alertDefineId: number): Observable<Message<AlertDefineBind[]>> { |
| return this.http.get<Message<AlertDefineBind[]>>(`${alert_define_uri}/${alertDefineId}/monitors`); |
| } |
| |
| public deleteAlertDefines(alertDefineIds: Set<number>): Observable<Message<any>> { |
| let httpParams = new HttpParams(); |
| alertDefineIds.forEach(alertDefineId => { |
| // HttpParams is unmodifiable, so we need to save the return value of append/set |
| // Method append can append same key, set will replace the previous value |
| httpParams = httpParams.append('ids', alertDefineId); |
| }); |
| const options = { params: httpParams }; |
| return this.http.delete<Message<any>>(alert_defines_uri, options); |
| } |
| |
| public getMonitorsDefinePreview(datasource: string, type: string, expr: string): Observable<Message<any>> { |
| let httpParams = new HttpParams(); |
| if (type != null) httpParams = httpParams.set('type', type); |
| if (expr != null) httpParams = httpParams.set('expr', expr); |
| return this.http.get<Message<any>>(`${alert_define_uri}/preview/${datasource}`, { params: httpParams }); |
| } |
| |
| public getAlertDefines(search: string[] | undefined, pageIndex: number, pageSize: number): Observable<Message<Page<AlertDefine>>> { |
| pageIndex = pageIndex ? pageIndex : 0; |
| pageSize = pageSize ? pageSize : 8; |
| // HttpParams is unmodifiable, so we need to save the return value of append/set |
| let httpParams = new HttpParams(); |
| httpParams = httpParams.appendAll({ |
| sort: 'id', |
| order: 'desc', |
| pageIndex: pageIndex, |
| pageSize: pageSize |
| }); |
| if (search != undefined && search.length > 0) { |
| const searchJson = JSON.stringify(search); |
| httpParams = httpParams.append('search', encodeURIComponent(searchJson)); |
| } |
| const options = { params: httpParams }; |
| return this.http.get<Message<Page<AlertDefine>>>(alert_defines_uri, options); |
| } |
| |
| public exportAlertDefines(defineIds: Set<number>, type: string): Observable<HttpResponse<Blob>> { |
| let httpParams = new HttpParams(); |
| defineIds.forEach(defineId => { |
| // HttpParams is unmodifiable, so we need to save the return value of append/set |
| // Method append can append same key, set will replace the previous value |
| httpParams = httpParams.append('ids', defineId); |
| }); |
| httpParams = httpParams.append('type', type); |
| return this.http.get(export_defines_uri, { |
| params: httpParams, |
| observe: 'response', |
| responseType: 'blob' |
| }); |
| } |
| } |