2022-12-28 10:03:11 +02:00
|
|
|
///
|
|
|
|
|
/// Copyright © 2016-2022 The Thingsboard Authors
|
|
|
|
|
///
|
|
|
|
|
/// 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 } from '@angular/common/http';
|
|
|
|
|
import { defaultHttpOptionsFromConfig, RequestConfig } from '@core/http/http-utils';
|
|
|
|
|
import { Observable } from 'rxjs';
|
|
|
|
|
import { PageLink } from '@shared/models/page/page-link';
|
|
|
|
|
import { PageData } from '@shared/models/page/page-data';
|
|
|
|
|
import {
|
|
|
|
|
Notification,
|
|
|
|
|
NotificationRequest,
|
2023-01-18 13:03:37 +02:00
|
|
|
NotificationRequestInfo,
|
2023-01-17 18:26:25 +02:00
|
|
|
NotificationRequestPreview,
|
2022-12-28 10:03:11 +02:00
|
|
|
NotificationRule,
|
|
|
|
|
NotificationSettings,
|
|
|
|
|
NotificationTarget,
|
|
|
|
|
NotificationTemplate,
|
2023-01-23 12:47:00 +02:00
|
|
|
NotificationType,
|
2022-12-28 10:03:11 +02:00
|
|
|
SlackChanelType,
|
|
|
|
|
SlackConversation
|
|
|
|
|
} from '@shared/models/notification.models';
|
|
|
|
|
import { User } from '@shared/models/user.model';
|
2023-01-23 12:47:00 +02:00
|
|
|
import { isDefinedAndNotNull } from '@core/utils';
|
2022-12-28 10:03:11 +02:00
|
|
|
|
|
|
|
|
@Injectable({
|
|
|
|
|
providedIn: 'root'
|
|
|
|
|
})
|
|
|
|
|
export class NotificationService {
|
|
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
|
private http: HttpClient
|
|
|
|
|
) {
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-17 18:26:25 +02:00
|
|
|
public getNotifications(pageLink: PageLink, unreadOnly = false, config?: RequestConfig): Observable<PageData<Notification>> {
|
|
|
|
|
return this.http.get<PageData<Notification>>(`/api/notifications${pageLink.toQuery()}&unreadOnly=${unreadOnly}`,
|
|
|
|
|
defaultHttpOptionsFromConfig(config));
|
2022-12-28 10:03:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public markNotificationAsRead(id: string, config?: RequestConfig): Observable<void> {
|
|
|
|
|
return this.http.put<void>(`/api/notification/${id}/read`, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-20 18:08:30 +02:00
|
|
|
public markAllNotificationsAsRead(config?: RequestConfig): Observable<void> {
|
|
|
|
|
return this.http.put<void>('/api/notifications/read', defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-17 18:26:25 +02:00
|
|
|
public createNotificationRequest(notification: NotificationRequest, config?: RequestConfig): Observable<NotificationRequest> {
|
2022-12-28 10:03:11 +02:00
|
|
|
return this.http.post<NotificationRequest>('/api/notification/request', notification, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getNotificationRequestById(id: string, config?: RequestConfig): Observable<NotificationRequest> {
|
|
|
|
|
return this.http.get<NotificationRequest>(`/api/notification/request/${id}`, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public deleteNotificationRequest(id: string, config?: RequestConfig): Observable<void> {
|
|
|
|
|
return this.http.delete<void>(`/api/notification/request/${id}`, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-17 18:26:25 +02:00
|
|
|
public getNotificationRequestPreview(notification: NotificationRequest, config?: RequestConfig): Observable<NotificationRequestPreview> {
|
|
|
|
|
return this.http.post<NotificationRequestPreview>('/api/notification/request/preview',
|
|
|
|
|
notification, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-18 13:03:37 +02:00
|
|
|
public getNotificationRequests(pageLink: PageLink, config?: RequestConfig): Observable<PageData<NotificationRequestInfo>> {
|
|
|
|
|
return this.http.get<PageData<NotificationRequestInfo>>(`/api/notification/requests${pageLink.toQuery()}`,
|
2023-01-17 18:26:25 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2022-12-28 10:03:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getNotificationSettings(config?: RequestConfig): Observable<NotificationSettings> {
|
|
|
|
|
return this.http.get<NotificationSettings>('/api/notification/settings', defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public saveNotificationSettings(notificationSettings: NotificationSettings, config?: RequestConfig): Observable<NotificationSettings> {
|
|
|
|
|
return this.http.post<NotificationSettings>('/api/notification/settings', notificationSettings, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public listSlackConversations(type: SlackChanelType, config?: RequestConfig): Observable<Array<SlackConversation>> {
|
|
|
|
|
return this.http.get<Array<SlackConversation>>(`/api/notification/slack/conversations?type=${type}`,
|
|
|
|
|
defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public saveNotificationRule(notificationRule: NotificationRule, config?: RequestConfig): Observable<NotificationRule> {
|
|
|
|
|
return this.http.post<NotificationRule>('/api/notification/rule', notificationRule, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getNotificationRuleById(id: string, config?: RequestConfig): Observable<NotificationRule> {
|
|
|
|
|
return this.http.get<NotificationRule>(`/api/notification/rule/${id}`, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public deleteNotificationRule(id: string, config?: RequestConfig): Observable<void> {
|
|
|
|
|
return this.http.delete<void>(`/api/notification/rule/${id}`, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getNotificationRules(pageLink: PageLink, config?: RequestConfig): Observable<PageData<NotificationRule>> {
|
|
|
|
|
return this.http.get<PageData<NotificationRule>>(`/api/notification/rules${pageLink.toQuery()}`, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public saveNotificationTarget(notificationTarget: NotificationTarget, config?: RequestConfig): Observable<NotificationTarget> {
|
|
|
|
|
return this.http.post<NotificationTarget>('/api/notification/target', notificationTarget, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getNotificationTargetById(id: string, config?: RequestConfig): Observable<NotificationTarget> {
|
|
|
|
|
return this.http.get<NotificationTarget>(`/api/notification/target/${id}`, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public deleteNotificationTarget(id: string, config?: RequestConfig): Observable<void> {
|
|
|
|
|
return this.http.delete<void>(`/api/notification/target/${id}`, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-31 13:35:16 +02:00
|
|
|
public getNotificationTargetsByIds(ids: string[], config?: RequestConfig): Observable<Array<NotificationTarget>> {
|
|
|
|
|
return this.http.get<Array<NotificationTarget>>(`/api/notification/targets?ids=${ids.join(',')}`,
|
|
|
|
|
defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-28 10:03:11 +02:00
|
|
|
public getNotificationTargets(pageLink: PageLink, config?: RequestConfig): Observable<PageData<NotificationTarget>> {
|
|
|
|
|
return this.http.get<PageData<NotificationTarget>>(`/api/notification/targets${pageLink.toQuery()}`,
|
|
|
|
|
defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getRecipientsForNotificationTargetConfig(notificationTarget: NotificationTarget, pageLink: PageLink,
|
|
|
|
|
config?: RequestConfig): Observable<PageData<User>> {
|
|
|
|
|
return this.http.post<PageData<User>>(`/api/notification/target/recipients${pageLink.toQuery()}`, notificationTarget,
|
|
|
|
|
defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public saveNotificationTemplate(notificationTarget: NotificationTemplate, config?: RequestConfig): Observable<NotificationTemplate> {
|
|
|
|
|
return this.http.post<NotificationTemplate>('/api/notification/template', notificationTarget, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getNotificationTemplateById(id: string, config?: RequestConfig): Observable<NotificationTemplate> {
|
|
|
|
|
return this.http.get<NotificationTemplate>(`/api/notification/template/${id}`, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public deleteNotificationTemplate(id: string, config?: RequestConfig): Observable<void> {
|
|
|
|
|
return this.http.delete<void>(`/api/notification/template/${id}`, defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
2023-01-06 19:28:12 +02:00
|
|
|
|
2023-01-23 12:47:00 +02:00
|
|
|
public getNotificationTemplates(pageLink: PageLink, notificationTypes?: NotificationType,
|
|
|
|
|
config?: RequestConfig): Observable<PageData<NotificationTemplate>> {
|
|
|
|
|
let url = `/api/notification/templates${pageLink.toQuery()}`;
|
|
|
|
|
if (isDefinedAndNotNull(notificationTypes)) {
|
|
|
|
|
url += `¬ificationTypes=${notificationTypes}`;
|
|
|
|
|
}
|
|
|
|
|
return this.http.get<PageData<NotificationTemplate>>(url, defaultHttpOptionsFromConfig(config));
|
2023-01-06 19:28:12 +02:00
|
|
|
}
|
2022-12-28 10:03:11 +02:00
|
|
|
}
|