| /* |
| * 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 } from '@angular/common/http'; |
| import { Injectable } from '@angular/core'; |
| import { Observable } from 'rxjs'; |
| |
| import { GroupAlert } from '../pojo/GroupAlert'; |
| import { Message } from '../pojo/Message'; |
| import { Page } from '../pojo/Page'; |
| import { SingleAlert } from '../pojo/SingleAlert'; |
| |
| const alerts_summary_uri = '/alerts/summary'; |
| const alerts_group_uri = '/alerts/group'; |
| const alerts_group_status_uri = '/alerts/group/status'; |
| const alerts_uri = '/alerts'; |
| |
| @Injectable({ |
| providedIn: 'root' |
| }) |
| export class AlertService { |
| constructor(private http: HttpClient) {} |
| |
| public loadAlerts( |
| status: string | undefined, |
| search: string | undefined, |
| pageIndex: number, |
| pageSize: number |
| ): Observable<Message<Page<SingleAlert>>> { |
| 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: 'gmtUpdate', |
| order: 'desc', |
| pageIndex: pageIndex, |
| pageSize: pageSize |
| }); |
| if (status != undefined) { |
| httpParams = httpParams.append('status', status); |
| } |
| if (search != undefined && search != '' && search.trim() != '') { |
| httpParams = httpParams.append('search', search.trim()); |
| } |
| const options = { params: httpParams }; |
| return this.http.get<Message<Page<SingleAlert>>>(alerts_uri, options); |
| } |
| |
| public loadGroupAlerts( |
| status: string | undefined, |
| search: string | undefined, |
| pageIndex: number, |
| pageSize: number |
| ): Observable<Message<Page<GroupAlert>>> { |
| 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: 'gmtUpdate', |
| order: 'desc', |
| pageIndex: pageIndex, |
| pageSize: pageSize |
| }); |
| if (status != undefined) { |
| httpParams = httpParams.append('status', status); |
| } |
| if (search != undefined && search != '' && search.trim() != '') { |
| httpParams = httpParams.append('search', search.trim()); |
| } |
| const options = { params: httpParams }; |
| return this.http.get<Message<Page<GroupAlert>>>(alerts_group_uri, options); |
| } |
| |
| public deleteGroupAlerts(alertIds: Set<number>): Observable<Message<any>> { |
| let httpParams = new HttpParams(); |
| alertIds.forEach(alertId => { |
| // 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', alertId); |
| }); |
| const options = { params: httpParams }; |
| return this.http.delete<Message<any>>(alerts_group_uri, options); |
| } |
| |
| public applyGroupAlertsStatus(alertIds: Set<number>, status: string): Observable<Message<any>> { |
| let httpParams = new HttpParams(); |
| alertIds.forEach(alertId => { |
| // 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', alertId); |
| }); |
| const options = { params: httpParams }; |
| return this.http.put<Message<any>>(`${alerts_group_status_uri}/${status}`, null, options); |
| } |
| |
| public getAlertsSummary(): Observable<Message<any>> { |
| return this.http.get<Message<any>>(alerts_summary_uri); |
| } |
| } |