|
| 1 | +package ehn.techiop.hcert; |
| 2 | + |
| 3 | +import ehn.techiop.hcert.model.CertificatePayload; |
| 4 | +import ehn.techiop.hcert.model.Hcert; |
| 5 | +import ehn.techiop.hcert.schema.*; |
| 6 | + |
| 7 | +import java.time.*; |
| 8 | +import java.time.format.DateTimeFormatter; |
| 9 | +import java.util.ArrayList; |
| 10 | +import java.util.Date; |
| 11 | +import java.util.List; |
| 12 | + |
| 13 | +public class CertificateDSL { |
| 14 | + |
| 15 | + private final DateTimeFormatter dateFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd"); |
| 16 | + |
| 17 | + private final EuHcertV1Schema euHcertV1Schema; |
| 18 | + |
| 19 | + public CertificateDSL() { |
| 20 | + euHcertV1Schema = new EuHcertV1Schema(); |
| 21 | + } |
| 22 | + |
| 23 | + public CertificateDSL withVaccine() { |
| 24 | + |
| 25 | + List<Vac> vacs = new ArrayList<>(); |
| 26 | + vacs.add(new Vac() |
| 27 | + .withDis("840539006") |
| 28 | + .withVap("1119305005") |
| 29 | + .withMep("EU/1/20/1528") |
| 30 | + .withAut("ORG-100030215") |
| 31 | + .withSeq(1) |
| 32 | + .withTot(2) |
| 33 | + .withDat(dateFormatter.format(LocalDate.now().minusDays(35))) |
| 34 | + .withCou("DK")); |
| 35 | + vacs.add(new Vac() |
| 36 | + .withDis("840539006") |
| 37 | + .withVap("1119305005") |
| 38 | + .withMep("EU/1/20/1528") |
| 39 | + .withAut("ORG-100030215") |
| 40 | + .withSeq(2) |
| 41 | + .withTot(2) |
| 42 | + .withDat(dateFormatter.format(LocalDate.now().minusDays(7))) |
| 43 | + .withCou("DK")); |
| 44 | + euHcertV1Schema.withVac(vacs); |
| 45 | + return this; |
| 46 | + } |
| 47 | + |
| 48 | + private static Date convert(LocalDateTime dateToConvert) { |
| 49 | + return java.sql.Timestamp.valueOf(dateToConvert); |
| 50 | + } |
| 51 | + |
| 52 | + public CertificateDSL withTestResult() { |
| 53 | + |
| 54 | + Date sampleDate = convert(LocalDateTime.now().minusDays(1)); |
| 55 | + Date testResult = convert(LocalDateTime.now().minusHours(4)); |
| 56 | + |
| 57 | + Tst test = new Tst() |
| 58 | + .withDis("840539006") |
| 59 | + .withTyp("LP6464-4") |
| 60 | + .withTna("Nucleic acid amplification with probe detection") |
| 61 | + .withTma("BIOSYNEX SWISS SA BIOSYNEX COVID-19 Ag BSS") |
| 62 | + .withOri("258500001") |
| 63 | + .withDtr(sampleDate) |
| 64 | + .withDts(testResult) |
| 65 | + .withRes("1240591000000102") |
| 66 | + .withFac("Region Midtjylland") |
| 67 | + .withCou("DK"); |
| 68 | + euHcertV1Schema.withTst(test); |
| 69 | + return this; |
| 70 | + } |
| 71 | + |
| 72 | + public CertificateDSL withRecovery() { |
| 73 | + |
| 74 | + Rec recovery = new Rec() |
| 75 | + .withDis("840539006") |
| 76 | + .withDat(dateFormatter.format(LocalDate.now().minusDays(21))) |
| 77 | + .withCou("DK"); |
| 78 | + |
| 79 | + euHcertV1Schema.withRec(recovery); |
| 80 | + return this; |
| 81 | + } |
| 82 | + |
| 83 | + public CertificateDSL withSubject(String givenName, String familyName) { |
| 84 | + |
| 85 | + euHcertV1Schema.withSub(new Sub() |
| 86 | + .withGn(givenName) |
| 87 | + .withFn(familyName) |
| 88 | + .withGen("female") |
| 89 | + .withDob(dateFormatter.format(LocalDate.now().minusYears(35)))); |
| 90 | + return this; |
| 91 | + } |
| 92 | + |
| 93 | + public CertificatePayload build() { |
| 94 | + CertificatePayload certificatePayload = getCertificatePayload(LocalDateTime.now(), LocalDateTime.now().plusDays(3)); |
| 95 | + return certificatePayload; |
| 96 | + } |
| 97 | + |
| 98 | + private CertificatePayload getCertificatePayload(LocalDateTime issuedAt, LocalDateTime expires) { |
| 99 | + CertificatePayload certificatePayload = new CertificatePayload(); |
| 100 | + certificatePayload.setIss("DK"); |
| 101 | + |
| 102 | + certificatePayload.setIat(issuedAt.toEpochSecond(ZoneOffset.UTC)); |
| 103 | + certificatePayload.setExp(expires.toEpochSecond(ZoneOffset.UTC)); |
| 104 | + |
| 105 | + Hcert hcert = new Hcert(); |
| 106 | + hcert.setEuHcertV1Schema(euHcertV1Schema); |
| 107 | + certificatePayload.setHcert(hcert); |
| 108 | + return certificatePayload; |
| 109 | + } |
| 110 | + |
| 111 | + public CertificateDSL withExpiredRecovery() { |
| 112 | + withRecovery(); |
| 113 | + euHcertV1Schema.getRec().setDat(dateFormatter.format(LocalDate.now().minusYears(1))); |
| 114 | + return this; |
| 115 | + } |
| 116 | + |
| 117 | + public CertificateDSL withExpiredTestResult() { |
| 118 | + withTestResult(); |
| 119 | + |
| 120 | + Date sampleDate = convert(LocalDateTime.now().minusDays(5)); |
| 121 | + Date testResult = convert(LocalDateTime.now().minusDays(4)); |
| 122 | + |
| 123 | + euHcertV1Schema.getTst().setDtr(sampleDate); |
| 124 | + euHcertV1Schema.getTst().setDts(testResult); |
| 125 | + |
| 126 | + return this; |
| 127 | + } |
| 128 | + |
| 129 | + public CertificateDSL withExpiredVaccine() { |
| 130 | + |
| 131 | + List<Vac> vacs = new ArrayList<>(); |
| 132 | + vacs.add(new Vac() |
| 133 | + .withDis("840539006") |
| 134 | + .withVap("1119305005") |
| 135 | + .withMep("EU/1/20/1528") |
| 136 | + .withAut("ORG-100030215") |
| 137 | + .withSeq(1) |
| 138 | + .withTot(2) |
| 139 | + .withDat(dateFormatter.format(LocalDate.now().minusDays(300))) |
| 140 | + .withCou("DK")); |
| 141 | + vacs.add(new Vac() |
| 142 | + .withDis("840539006") |
| 143 | + .withVap("1119305005") |
| 144 | + .withMep("EU/1/20/1528") |
| 145 | + .withAut("ORG-100030215") |
| 146 | + .withSeq(2) |
| 147 | + .withTot(2) |
| 148 | + .withDat(dateFormatter.format(LocalDate.now().minusDays(272))) |
| 149 | + .withCou("DK")); |
| 150 | + euHcertV1Schema.withVac(vacs); |
| 151 | + return this; |
| 152 | + } |
| 153 | + |
| 154 | + public CertificatePayload expiredBuild() { |
| 155 | + |
| 156 | + CertificatePayload certificatePayload = getCertificatePayload(LocalDateTime.now().minusDays(6), LocalDateTime.now().minusDays(3)); |
| 157 | + return certificatePayload; |
| 158 | + } |
| 159 | +} |
0 commit comments