org.graylog.events.contentpack.entities.EmailEventNotificationConfigEntity Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* 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 org.graylog.events.contentpack.entities;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.google.auto.value.AutoValue;
import org.graylog.events.notifications.EventNotificationConfig;
import org.graylog.events.notifications.types.EmailEventNotificationConfig;
import org.graylog2.contentpacks.model.entities.EntityDescriptor;
import org.graylog2.contentpacks.model.entities.references.ValueReference;
import org.joda.time.DateTimeZone;
import java.util.Map;
import java.util.Set;
@AutoValue
@JsonTypeName(EmailEventNotificationConfigEntity.TYPE_NAME)
@JsonDeserialize(builder = EmailEventNotificationConfigEntity.Builder.class)
public abstract class EmailEventNotificationConfigEntity implements EventNotificationConfigEntity {
public static final String TYPE_NAME = "email-notification-v1";
private static final String FIELD_SENDER = "sender";
private static final String FIELD_REPLY_TO = "replyTo";
private static final String FIELD_SUBJECT = "subject";
private static final String FIELD_BODY_TEMPLATE = "body_template";
private static final String FIELD_HTML_BODY_TEMPLATE = "html_body_template";
private static final String FIELD_EMAIL_RECIPIENTS = "email_recipients";
private static final String FIELD_USER_RECIPIENTS = "user_recipients";
private static final String FIELD_TIME_ZONE = "time_zone";
@JsonProperty(FIELD_SENDER)
public abstract ValueReference sender();
@JsonProperty(FIELD_REPLY_TO)
public abstract ValueReference replyTo();
@JsonProperty(FIELD_SUBJECT)
public abstract ValueReference subject();
@JsonProperty(FIELD_BODY_TEMPLATE)
public abstract ValueReference bodyTemplate();
@JsonProperty(FIELD_HTML_BODY_TEMPLATE)
public abstract ValueReference htmlBodyTemplate();
@JsonProperty(FIELD_EMAIL_RECIPIENTS)
public abstract Set emailRecipients();
@JsonProperty(FIELD_USER_RECIPIENTS)
public abstract Set userRecipients();
@JsonProperty(FIELD_TIME_ZONE)
public abstract ValueReference timeZone();
public static Builder builder() {
return Builder.create();
}
public abstract Builder toBuilder();
@AutoValue.Builder
public static abstract class Builder implements EventNotificationConfigEntity.Builder {
@JsonCreator
public static Builder create() {
return new AutoValue_EmailEventNotificationConfigEntity.Builder()
.type(TYPE_NAME)
.htmlBodyTemplate(ValueReference.of(""))
.timeZone(ValueReference.of("UTC"))
.replyTo(ValueReference.of(""));
}
@JsonProperty(FIELD_SENDER)
public abstract Builder sender(ValueReference sender);
@JsonProperty(FIELD_REPLY_TO)
public abstract Builder replyTo(ValueReference sender);
@JsonProperty(FIELD_SUBJECT)
public abstract Builder subject(ValueReference subject);
@JsonProperty(FIELD_BODY_TEMPLATE)
public abstract Builder bodyTemplate(ValueReference bodyTemplate);
@JsonProperty(FIELD_HTML_BODY_TEMPLATE)
public abstract Builder htmlBodyTemplate(ValueReference htmlBodyTemplate);
@JsonProperty(FIELD_EMAIL_RECIPIENTS)
public abstract Builder emailRecipients(Set emailRecipients);
@JsonProperty(FIELD_USER_RECIPIENTS)
public abstract Builder userRecipients(Set userRecipients);
@JsonProperty(FIELD_TIME_ZONE)
public abstract Builder timeZone(ValueReference timeZone);
public abstract EmailEventNotificationConfigEntity build();
}
@Override
public EventNotificationConfig toNativeEntity(Map parameters, Map nativeEntities) {
return EmailEventNotificationConfig.builder()
.sender(sender().asString(parameters))
.replyTo(replyTo().asString())
.subject(subject().asString(parameters))
.bodyTemplate(bodyTemplate().asString())
.htmlBodyTemplate(htmlBodyTemplate().asString())
.emailRecipients(emailRecipients())
.userRecipients(userRecipients())
.timeZone(DateTimeZone.forID(timeZone().asString(parameters)))
.build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy