OrgUrlId.java

  1. package no.nav.data.team.org;

  2. import lombok.EqualsAndHashCode;
  3. import lombok.Value;
  4. import lombok.val;
  5. import no.nav.nom.graphql.model.OrgEnhetDto;

  6. import java.util.List;

  7. @Value
  8. @EqualsAndHashCode
  9. public class OrgUrlId {
  10.     String orgNiv;
  11.     String agressoId;

  12.     public OrgUrlId(String urlId) {
  13.         val s = urlId.split("_");
  14.         if (s.length == 2) {
  15.             val orgNiv = numberStrToOrgNiv(s[0]);
  16.             this.agressoId = s[1];
  17.             this.orgNiv = orgNiv;
  18.         }
  19.         else if (s.length == 1) {
  20.             this.agressoId = urlId;
  21.             this.orgNiv = "ORGENHET";
  22.         } else {
  23.             throw new IllegalArgumentException(urlId + " is not a correctly formatted org-url");
  24.         }
  25.     }

  26.     public OrgUrlId(OrgEnhetDto orgEnhetDto) {
  27.         if(orgEnhetDto.getOrgNiv() == null) {
  28.             throw new IllegalArgumentException("orgniv cannot be null");
  29.         }
  30.         this.orgNiv = orgEnhetDto.getOrgNiv();
  31.         this.agressoId = orgEnhetDto.getAgressoId();
  32.     }

  33.     public OrgUrlId(String orgNivStr, String agressoId) {
  34.         if (agressoId.isBlank()) {
  35.             throw new IllegalArgumentException("agresso id cannot be blank");
  36.         }

  37.         val prefixOk = orgNivStr.contains("ORGNIV");
  38.         if (prefixOk) {
  39.             val numStr = orgNivStr.substring("ORGNIV".length());
  40.             val orgNivOk = List.of("0", "1", "2", "21", "25", "3", "4").contains(numStr);
  41.             if (orgNivOk) {
  42.                 this.orgNiv = orgNivStr;
  43.                 this.agressoId = agressoId;
  44.                 return;
  45.             }
  46.         }
  47.         if(orgNivStr.equals("ORGENHET")){
  48.             this.orgNiv = orgNivStr;
  49.             this.agressoId = agressoId;
  50.             return;
  51.         }
  52.         throw new IllegalArgumentException(orgNivStr + " is not a valid agresso orgNiv");
  53.     }

  54.     public String asUrlIdStr() {
  55.         if(this.orgNiv.equals("ORGENHET")) return this.agressoId;
  56.         return orgNivToNumberStr(this.getOrgNiv()) + "_" + this.agressoId;
  57.     }

  58.     private String numberStrToOrgNiv(String numStr) {
  59.         if (numStr.isBlank()) return "ORGENHET";
  60.         val allowN = List.of("0", "1", "2", "21", "25", "3", "4").contains(numStr);
  61.         if (allowN) return "ORGNIV" + numStr;
  62.         else throw new IllegalArgumentException(numStr + " cannot be translated to a valid agresso orgNiv");
  63.     }

  64.     private String orgNivToNumberStr(String orgNivStr) {
  65.         if (orgNivStr.equals("ORGENHET")) return "";

  66.         val prefixOk = orgNivStr.contains("ORGNIV");
  67.         if (prefixOk) {
  68.             val numStr = orgNivStr.substring("ORGNIV".length());
  69.             val allowNumStr = List.of("0", "1", "2", "21", "25", "3", "4").contains(numStr);
  70.             if (allowNumStr) return numStr;
  71.         }
  72.         throw new IllegalArgumentException(orgNivStr + " is not a valid agresso orgNiv");
  73.     }

  74. }