forked from gematik/ref-GemLibPki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TslReader.java
131 lines (118 loc) · 4.28 KB
/
TslReader.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
* Copyright 2023 gematik GmbH
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.gematik.pki.gemlibpki.tsl;
import static de.gematik.pki.gemlibpki.tsl.TslUtils.tslDownloadUrlMatchesOid;
import de.gematik.pki.gemlibpki.exception.GemPkiRuntimeException;
import de.gematik.pki.gemlibpki.utils.GemLibPkiUtils;
import eu.europa.esig.trustedlist.jaxb.tsl.NextUpdateType;
import eu.europa.esig.trustedlist.jaxb.tsl.OtherTSLPointersType;
import eu.europa.esig.trustedlist.jaxb.tsl.TrustStatusListType;
import java.math.BigInteger;
import java.nio.file.Path;
import java.time.ZonedDateTime;
import javax.xml.datatype.XMLGregorianCalendar;
import lombok.AccessLevel;
import lombok.NoArgsConstructor;
import lombok.NonNull;
import org.w3c.dom.Document;
/**
* Class to read a TSL file, put it in an object structure and get different information from it.
*/
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public final class TslReader {
/**
* @param tslPath File path to TSL
* @return A TSL as Document
*/
public static Document getTslAsDoc(@NonNull final Path tslPath) {
return TslConverter.bytesToDoc(GemLibPkiUtils.readContent(tslPath));
}
/**
* Get a list of {@link TrustStatusListType} to a parameterized TSL file.
*
* @param tslPath file name
* @return a TrustServiceStatusList contains issuer certificates among other things
*/
public static TrustStatusListType getTslUnsigned(@NonNull final Path tslPath) {
return TslConverter.bytesToTslUnsigned(GemLibPkiUtils.readContent(tslPath));
}
/**
* Read sequence number from given TSL
*
* @param tsl A TSL
* @return TSL sequence number
*/
public static BigInteger getTslSeqNr(@NonNull final TrustStatusListType tsl) {
return tsl.getSchemeInformation().getTSLSequenceNumber();
}
/**
* Read "NextUpdate" from given TSL
*
* @param tsl A TSL
* @return NextUpdate
*/
public static ZonedDateTime getNextUpdate(@NonNull final TrustStatusListType tsl) {
final NextUpdateType nextUpdate = tsl.getSchemeInformation().getNextUpdate();
if (nextUpdate == null) {
throw new GemPkiRuntimeException("NextUpdate not found in TSL.");
}
return (nextUpdate.getDateTime().toGregorianCalendar().toZonedDateTime());
}
/**
* Read "ListIssueDateTime" from given TSL
*
* @param tsl A TSL
* @return IssueDate
*/
public static ZonedDateTime getIssueDate(@NonNull final TrustStatusListType tsl) {
final XMLGregorianCalendar xmlIssueDate = tsl.getSchemeInformation().getListIssueDateTime();
return xmlIssueDate.toGregorianCalendar().toZonedDateTime();
}
/**
* Deliver a reference to OtherTSLPointersType (contains all TSLLocation)
*
* @param tsl A TSL
* @return a reference to OtherTSLPointersType
*/
public static OtherTSLPointersType getOtherTslPointers(@NonNull final TrustStatusListType tsl) {
return tsl.getSchemeInformation().getPointersToOtherTSL();
}
/**
* Read the primary TSLLocation
*
* @param tsl A TSL
* @return The primary TSLLocation
*/
public static String getTslDownloadUrlPrimary(@NonNull final TrustStatusListType tsl) {
return getTslDownloadUrl(tsl, TslConstants.TSL_DOWNLOAD_URL_OID_PRIMARY);
}
/**
* Read the backup TSLLocation
*
* @param tsl A TSL
* @return The backup TSLLocation
*/
public static String getTslDownloadUrlBackup(@NonNull final TrustStatusListType tsl) {
return getTslDownloadUrl(tsl, TslConstants.TSL_DOWNLOAD_URL_OID_BACKUP);
}
private static String getTslDownloadUrl(final TrustStatusListType tsl, final String oid) {
return getOtherTslPointers(tsl).getOtherTSLPointer().stream()
.filter(tslDownloadUrlMatchesOid(oid))
.findFirst()
.orElseThrow(() -> new GemPkiRuntimeException("TSL enthaelt nicht OID: " + oid))
.getTSLLocation();
}
}