com.airbus_cyber_security.graylog.wizard.alert.business.NotificationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graylog-plugin-alert-wizard Show documentation
Show all versions of graylog-plugin-alert-wizard Show documentation
Graylog ${project.artifactId} plugin.
The newest version!
/*
* Copyright (C) 2018 Airbus CyberSecurity (SAS)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package com.airbus_cyber_security.graylog.wizard.alert.business;
import com.airbus_cyber_security.graylog.events.config.LoggingAlertConfig;
import com.airbus_cyber_security.graylog.events.config.SeverityType;
import com.airbus_cyber_security.graylog.events.notifications.types.LoggingNotificationConfig;
import com.airbus_cyber_security.graylog.wizard.database.Description;
import org.graylog.events.notifications.DBNotificationService;
import org.graylog.events.notifications.NotificationDto;
import org.graylog.events.notifications.NotificationResourceHandler;
import org.graylog.security.UserContext;
import org.graylog2.plugin.cluster.ClusterConfigService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.inject.Inject;
import java.util.Optional;
public class NotificationService {
private static final Logger LOG = LoggerFactory.getLogger(NotificationService.class);
private final DBNotificationService notificationService;
private final NotificationResourceHandler notificationHandler;
private final ClusterConfigService clusterConfigService;
@Inject
public NotificationService(NotificationResourceHandler notificationHandler,
DBNotificationService notificationService,
ClusterConfigService clusterConfigService) {
this.notificationHandler = notificationHandler;
this.notificationService = notificationService;
this.clusterConfigService = clusterConfigService;
}
public Optional get(String notificationIdentifier) {
return this.notificationService.get(notificationIdentifier);
}
private String create(NotificationDto notification, UserContext userContext) {
NotificationDto result = this.notificationHandler.create(notification, Optional.ofNullable(userContext.getUser()));
return result.id();
}
private String update(NotificationDto notification) {
NotificationDto result = this.notificationHandler.update(notification);
return result.id();
}
private String getDefaultLogBody() {
LoggingAlertConfig generalConfig = this.clusterConfigService.getOrDefault(LoggingAlertConfig.class,
LoggingAlertConfig.createDefault());
return generalConfig.accessLogBody();
}
private int getDefaultTime() {
LoggingAlertConfig configuration = this.clusterConfigService.getOrDefault(LoggingAlertConfig.class,
LoggingAlertConfig.createDefault());
return configuration.accessAggregationTime();
}
public String createNotification(String alertTitle, String severity, UserContext userContext) {
LoggingNotificationConfig loggingNotificationConfig = LoggingNotificationConfig.builder()
.singleMessage(false)
.severity(SeverityType.valueOf(severity.toUpperCase()))
.logBody(this.getDefaultLogBody())
.aggregationTime(this.getDefaultTime())
.build();
NotificationDto notification = NotificationDto.builder()
.config(loggingNotificationConfig)
.title(alertTitle)
.description(Description.COMMENT_ALERT_WIZARD)
.build();
return this.create(notification, userContext);
}
public void updateNotification(String title, String notificationIdentifier, String severity) {
NotificationDto notification = this.get(notificationIdentifier)
.orElseThrow(() -> new javax.ws.rs.NotFoundException("Notification " + notificationIdentifier + " doesn't exist"));
LoggingNotificationConfig loggingNotificationConfig = (LoggingNotificationConfig) notification.config();
if (!loggingNotificationConfig.severity().getType().equals(severity) || !notification.title().equals(title)) {
LOG.debug("Update Notification " + title);
if (!loggingNotificationConfig.severity().getType().equals(severity)) {
LOG.debug("Update severity, old one: " + loggingNotificationConfig.severity().getType() + " New one: " + severity);
loggingNotificationConfig = LoggingNotificationConfig.builder()
.severity(SeverityType.valueOf(severity.toUpperCase()))
.logBody(loggingNotificationConfig.logBody())
.splitFields(loggingNotificationConfig.splitFields())
.aggregationTime(loggingNotificationConfig.aggregationTime())
.alertTag(loggingNotificationConfig.alertTag())
.singleMessage(loggingNotificationConfig.singleMessage())
.build();
}
notification = NotificationDto.builder()
.id(notification.id())
.config(loggingNotificationConfig)
.title(title)
.description(notification.description())
.build();
this.update(notification);
}
}
}