MailModels.java

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

  2. import lombok.AllArgsConstructor;
  3. import lombok.Builder;
  4. import lombok.Builder.Default;
  5. import lombok.Data;
  6. import lombok.Value;
  7. import lombok.experimental.UtilityClass;
  8. import no.nav.data.team.notify.TemplateService.MailTemplates;
  9. import no.nav.data.team.notify.domain.Notification.NotificationTime;
  10. import no.nav.data.team.notify.dto.MailModels.UpdateModel.TargetType;
  11. import no.nav.data.team.shared.Lang;
  12. import org.apache.commons.lang3.StringUtils;

  13. import java.util.ArrayList;
  14. import java.util.List;
  15. import java.util.Objects;

  16. import static no.nav.data.team.notify.TemplateService.MailTemplates.TEAM_UPDATE;

  17. @UtilityClass
  18. public class MailModels {

  19.     @Data
  20.     public static class UpdateModel implements Model {

  21.         public enum TargetType {
  22.             TEAM,
  23.             AREA;
  24.         }

  25.         private NotificationTime time;
  26.         private String baseUrl;

  27.         private final List<TypedItem> created = new ArrayList<>();
  28.         private final List<TypedItem> deleted = new ArrayList<>();
  29.         private final List<UpdateItem> updated = new ArrayList<>();

  30.         private final MailTemplates template = TEAM_UPDATE;
  31.     }

  32.     @Value
  33.     @AllArgsConstructor
  34.     public static class Resource {

  35.         String url;
  36.         String name;
  37.         String ident;

  38.     }

  39.     @Value
  40.     @AllArgsConstructor
  41.     public static class TypedItem {

  42.         TargetType type;
  43.         String id;
  44.         String url;
  45.         String name;
  46.         boolean deleted;

  47.         public TypedItem(TargetType type, String id, String url, String name) {
  48.             this.type = type;
  49.             this.id = id;
  50.             this.url = url;
  51.             this.name = name;
  52.             deleted = false;
  53.         }

  54.         public String formatName() {
  55.             return getType() == null ? getName() : "%s: %s".formatted(nameForType(), getName());
  56.         }

  57.         private String nameForType() {
  58.             if (type == TargetType.AREA) {
  59.                 return Lang.AREA;
  60.             }
  61.             return Lang.TEAM;
  62.         }

  63.     }

  64.     @Data
  65.     @Builder
  66.     @AllArgsConstructor
  67.     public static class UpdateItem {

  68.         TypedItem item;

  69.         String fromName;
  70.         String toName;
  71.         String fromOwnershipType;
  72.         String toOwnershipType;
  73.         String fromTeamType;
  74.         String toTeamType;

  75.         String fromAreaType;
  76.         String toAreaType;

  77.         TypedItem oldProductArea;
  78.         TypedItem newProductArea;

  79.         @Default
  80.         List<Resource> removedMembers = new ArrayList<>();
  81.         @Default
  82.         List<Resource> newMembers = new ArrayList<>();

  83.         @Default
  84.         List<TypedItem> removedTeams = new ArrayList<>();
  85.         @Default
  86.         List<TypedItem> newTeams = new ArrayList<>();

  87.         public String getFromProductArea() {
  88.             return oldProductArea.getName();
  89.         }

  90.         public String getFromProductAreaUrl() {
  91.             return oldProductArea.getUrl();
  92.         }

  93.         public String getToProductArea() {
  94.             return newProductArea.getName();
  95.         }

  96.         public String getToProductAreaUrl() {
  97.             return newProductArea.getUrl();
  98.         }

  99.         public boolean newName() {
  100.             return !fromName.equals(toName);
  101.         }

  102.         public boolean newOwnershipType() {
  103.             return !Objects.equals(fromOwnershipType, toOwnershipType);
  104.         }
  105.         public boolean newTeamType() {
  106.             return !Objects.equals(fromTeamType, toTeamType);
  107.         }
  108.         public boolean newAreaType() {
  109.             return !Objects.equals(fromAreaType, toAreaType);
  110.         }

  111.         public boolean newProductArea() {
  112.             return !Objects.equals(oldProductArea, newProductArea);
  113.         }

  114.         public boolean hasChanged() {
  115.             return newName()
  116.                     || newOwnershipType()
  117.                     || newTeamType()
  118.                     || newAreaType()
  119.                     || newProductArea()
  120.                     || !removedMembers.isEmpty()
  121.                     || !newMembers.isEmpty()
  122.                     || !removedTeams.isEmpty()
  123.                     || !newTeams.isEmpty();
  124.         }
  125.     }

  126.     @Data
  127.     @Builder
  128.     @AllArgsConstructor
  129.     public static class NudgeModel {

  130.         private final String targetType;
  131.         private final String targetName;
  132.         private final String targetUrl;

  133.         private final String recipientRole;
  134.         private final String cutoffTime;

  135.         public String getTargetType() {
  136.             return MailModels.getTargetType(targetName, targetType);
  137.         }
  138.     }

  139.     @Data
  140.     @Builder
  141.     @AllArgsConstructor
  142.     public static class InactiveModel {

  143.         private final String targetType;
  144.         private final String targetName;
  145.         private final String targetUrl;

  146.         private final String recipientRole;
  147.         private final List<Resource> members;

  148.         public String getTargetType() {
  149.             return MailModels.getTargetType(targetName, targetType);
  150.         }

  151.     }

  152.     public static String getTargetType(String targetName, String targetType) {
  153.         return StringUtils.startsWithIgnoreCase(targetName, targetType) ? "" : targetType;
  154.     }

  155. }