forked from gematik/ref-GemLibPki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TslConverter.java
202 lines (175 loc) · 6.83 KB
/
TslConverter.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/*
* 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 de.gematik.pki.gemlibpki.exception.GemPkiRuntimeException;
import eu.europa.esig.trustedlist.jaxb.tsl.TrustStatusListType;
import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Unmarshaller;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.StringReader;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;
import lombok.AccessLevel;
import lombok.NoArgsConstructor;
import lombok.NonNull;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.xml.sax.SAXException;
/** Utility class for conversion of tsl objects in other structures */
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public final class TslConverter {
public static final String XSLT_PRETTY_PRINT =
"""
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
""";
public static final String XSLT_NO_LINE_BREAKS =
"""
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:strip-space elements="*"/>
<!-- this is called an identity template -->
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
""";
public static final String ERROR_READING_TSL = "Error reading TSL.";
/**
* Converts a tslUnsigned to a DOM document type
*
* @param tslUnsigned The tslUnsigned to convert
* @return The tslUnsigned as a DOM Document
*/
public static Document tslToDocUnsigned(@NonNull final TrustStatusListType tslUnsigned) {
try {
final Document doc = TslUtils.createDocBuilder().newDocument();
doc.setXmlStandalone(true);
final JAXBElement<TrustStatusListType> jaxbElement = TslUtils.createJaxbElement(tslUnsigned);
TslUtils.createMarshaller().marshal(jaxbElement, doc);
return doc;
} catch (final JAXBException | ParserConfigurationException e) {
throw new GemPkiRuntimeException(
"Error converting TrustServiceStatusList to Document type.", e);
}
}
/**
* @param tslBytes A TSL as byte array
* @return A TSL as Document
*/
public static Document bytesToDoc(final byte @NonNull [] tslBytes) {
try (final ByteArrayInputStream bais = new ByteArrayInputStream(tslBytes)) {
final Document document = TslUtils.createDocBuilder().parse(bais);
document.setXmlStandalone(true);
return document;
} catch (final ParserConfigurationException | SAXException | IOException e) {
throw new GemPkiRuntimeException(ERROR_READING_TSL, e);
}
}
public enum DocToBytesOption {
/** no formatting is performed */
UNDEFINED,
/**
* pretty print XSLT is applied; be aware that this can invalidate signature of a signed
* document
*/
PRETTY_PRINT,
/**
* applies XSLT that convert XML to its single line representation; be aware that this can
* invalidate signature of a signed document
*/
NO_LINE_BREAKS,
/**
* applies XSLT that convert XML to its single line representation; be aware that this can
* invalidate signature of a signed document
*/
RESET
}
public static byte[] docToBytes(@NonNull final Document tslDoc) {
return docToBytes(tslDoc, DocToBytesOption.UNDEFINED);
}
/**
* @param tslDoc A TSL as Document
* @param docToBytesOption a {@link DocToBytesOption}
* @return A TSL as byte array
*/
public static byte[] docToBytes(
@NonNull Document tslDoc, final DocToBytesOption docToBytesOption) {
if ((docToBytesOption != DocToBytesOption.RESET)
&& (docToBytesOption != DocToBytesOption.UNDEFINED)) {
// we have to reset xml formatting before applying transformations
final byte[] tslBytes = docToBytes(tslDoc, DocToBytesOption.RESET);
tslDoc = TslConverter.bytesToDoc(tslBytes);
}
final TransformerFactory transformerFactory = TslUtils.getTransformerFactory();
try (final ByteArrayOutputStream baos = new ByteArrayOutputStream()) {
final Transformer transformer;
switch (docToBytesOption) {
case NO_LINE_BREAKS, RESET -> transformer =
transformerFactory.newTransformer(
new StreamSource(new StringReader(XSLT_NO_LINE_BREAKS)));
case PRETTY_PRINT -> transformer =
transformerFactory.newTransformer(
new StreamSource(new StringReader(XSLT_PRETTY_PRINT)));
default -> transformer = transformerFactory.newTransformer();
}
transformer.transform(new DOMSource(tslDoc), new StreamResult(baos));
return baos.toByteArray();
} catch (final TransformerException | IOException e) {
throw new GemPkiRuntimeException(ERROR_READING_TSL, e);
}
}
/**
* @param tslBytes A TSL as byte array
* @return A TSL as TrustStatusListType with invalid/broken signature
*/
public static TrustStatusListType bytesToTslUnsigned(final byte @NonNull [] tslBytes) {
try {
final Unmarshaller unmarshaller = TslUtils.createUnmarshaller();
final Node node = bytesToDoc(tslBytes).getFirstChild();
final JAXBElement<TrustStatusListType> jaxbElement =
unmarshaller.unmarshal(node, TrustStatusListType.class);
return jaxbElement.getValue();
} catch (final JAXBException e) {
throw new GemPkiRuntimeException(ERROR_READING_TSL, e);
}
}
/**
* Converts a tsl to a byte array
*
* @param tsl The tsl to convert
* @return A TSL as byte array
*/
public static byte[] tslUnsignedToBytes(@NonNull final TrustStatusListType tsl) {
return docToBytes(tslToDocUnsigned(tsl));
}
}