Notification.java

  1. package no.nav.data.team.notify.domain;

  2. import com.fasterxml.jackson.annotation.JsonIgnore;
  3. import lombok.AllArgsConstructor;
  4. import lombok.Builder;
  5. import lombok.Data;
  6. import lombok.NoArgsConstructor;
  7. import no.nav.data.common.storage.domain.ChangeStamp;
  8. import no.nav.data.common.storage.domain.DomainObject;
  9. import no.nav.data.team.notify.dto.NotificationDto;

  10. import java.util.List;
  11. import java.util.UUID;

  12. @Data
  13. @Builder
  14. @AllArgsConstructor
  15. @NoArgsConstructor
  16. public class Notification implements DomainObject {

  17.     private UUID id;
  18.     private String ident;
  19.     private UUID target;
  20.     private NotificationType type;
  21.     private NotificationTime time;
  22.     private List<NotificationChannel> channels;

  23.     private ChangeStamp changeStamp;

  24.     @JsonIgnore
  25.     private List<UUID> dependentTargets;

  26.     public Notification(NotificationDto dto) {
  27.         id = dto.getId();
  28.         ident = dto.getIdent();
  29.         target = dto.getTarget();
  30.         type = dto.getType();
  31.         time = dto.getTime();
  32.         channels = dto.getChannels();
  33.     }

  34.     public enum NotificationChannel {
  35.         EMAIL, SLACK
  36.     }

  37.     public enum NotificationType {
  38.         TEAM,
  39.         PA,
  40.         ALL_EVENTS;

  41.         public static NotificationType min(NotificationType a, NotificationType b) {
  42.             if (a == null) {
  43.                 return b;
  44.             } else if (b == null) {
  45.                 return a;
  46.             } else {
  47.                 if (a.compareTo(b) > 0) {
  48.                     return b;
  49.                 }
  50.                 return a;
  51.             }
  52.         }
  53.     }

  54.     public enum NotificationTime {
  55.         ALL, DAILY, WEEKLY, MONTHLY
  56.     }

  57.     public List<NotificationChannel> getChannels() {
  58.         return channels == null ? List.of(NotificationChannel.EMAIL) : channels;
  59.     }

  60.     public NotificationDto convertToDto() {
  61.         return NotificationDto.builder()
  62.                 .id(id)
  63.                 .ident(ident)
  64.                 .target(target)
  65.                 .type(type)
  66.                 .time(time)
  67.                 .channels(getChannels())
  68.                 .build();
  69.     }

  70.     public boolean isDependentOn(UUID id) {
  71.         return dependentTargets != null && dependentTargets.contains(id);
  72.     }
  73. }