closes #190
This commit is contained in:
@@ -51,6 +51,7 @@ switch
|
|||||||
- contacts also for recipients
|
- contacts also for recipients
|
||||||
- absolute and relative allowances and charges on item and document level #135,
|
- absolute and relative allowances and charges on item and document level #135,
|
||||||
- support contact fax numbers
|
- support contact fax numbers
|
||||||
|
- closes #190 BOM not treated correctly on XML input file
|
||||||
|
|
||||||
### 2.0 still todo
|
### 2.0 still todo
|
||||||
- dont show empty tax number field
|
- dont show empty tax number field
|
||||||
|
|||||||
@@ -1,9 +1,25 @@
|
|||||||
package org.mustangproject;
|
package org.mustangproject;
|
||||||
|
|
||||||
|
import java.io.ByteArrayInputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.UnsupportedEncodingException;
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
import java.math.RoundingMode;
|
import java.math.RoundingMode;
|
||||||
|
import java.util.logging.Level;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
public class XMLTools {
|
import org.dom4j.io.XMLWriter;
|
||||||
|
import org.mustangproject.ZUGFeRD.ZUGFeRD2PullProvider;
|
||||||
|
|
||||||
|
public class XMLTools extends XMLWriter {
|
||||||
|
public String escapeAttributeEntities(String s) {
|
||||||
|
return super.escapeAttributeEntities(s);
|
||||||
|
}
|
||||||
|
|
||||||
|
public String escapeElementEntities(String s) {
|
||||||
|
return super.escapeElementEntities(s);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public static String nDigitFormat(BigDecimal value, int scale) {
|
public static String nDigitFormat(BigDecimal value, int scale) {
|
||||||
@@ -41,9 +57,15 @@ public class XMLTools {
|
|||||||
sb.append("�"); // Unicode replacement character
|
sb.append("�"); // Unicode replacement character
|
||||||
} else {
|
} else {
|
||||||
switch (c) {
|
switch (c) {
|
||||||
case '&': sb.append("&"); break;
|
case '&':
|
||||||
case '>': sb.append(">"); break;
|
sb.append("&");
|
||||||
case '<': sb.append("<"); break;
|
break;
|
||||||
|
case '>':
|
||||||
|
sb.append(">");
|
||||||
|
break;
|
||||||
|
case '<':
|
||||||
|
sb.append("<");
|
||||||
|
break;
|
||||||
// Uncomment next two if encoding for an XML attribute
|
// Uncomment next two if encoding for an XML attribute
|
||||||
// case '\'' sb.append("'"); break;
|
// case '\'' sb.append("'"); break;
|
||||||
// case '\"' sb.append("""); break;
|
// case '\"' sb.append("""); break;
|
||||||
@@ -52,7 +74,8 @@ public class XMLTools {
|
|||||||
// case '\r' sb.append(" "); break;
|
// case '\r' sb.append(" "); break;
|
||||||
// case '\t' sb.append("	"); break;
|
// case '\t' sb.append("	"); break;
|
||||||
|
|
||||||
default: sb.append((char)c);
|
default:
|
||||||
|
sb.append((char) c);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if ((c >= 0xd800 && c <= 0xdfff) || c == 0xfffe || c == 0xffff) {
|
} else if ((c >= 0xd800 && c <= 0xdfff) || c == 0xfffe || c == 0xffff) {
|
||||||
@@ -66,4 +89,53 @@ public class XMLTools {
|
|||||||
}
|
}
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the Byte Order Mark size and thus allows to skips over a BOM
|
||||||
|
* at the beginning of the given ByteArrayInputStream, if one exists.
|
||||||
|
*
|
||||||
|
* @param is the ByteArrayInputStream used
|
||||||
|
* @throws IOException if can not be read from is
|
||||||
|
* @see <a href="https://www.w3.org/TR/xml/#sec-guessing">Autodetection of Character Encodings</a>
|
||||||
|
*/
|
||||||
|
public static int guessBOMSize(ByteArrayInputStream is) throws IOException {
|
||||||
|
byte[] pad = new byte[4];
|
||||||
|
is.read(pad);
|
||||||
|
is.reset();
|
||||||
|
int test2 = ((pad[0] & 0xFF) << 8) | (pad[1] & 0xFF);
|
||||||
|
int test3 = ((test2 & 0xFFFF) << 8) | (pad[2] & 0xFF);
|
||||||
|
int test4 = ((test3 & 0xFFFFFF) << 8) | (pad[3] & 0xFF);
|
||||||
|
//
|
||||||
|
if (test4 == 0x0000FEFF || test4 == 0xFFFE0000 || test4 == 0x0000FFFE || test4 == 0xFEFF0000) {
|
||||||
|
// UCS-4: BOM takes 4 bytes
|
||||||
|
return 4;
|
||||||
|
} else if (test3 == 0xEFBBFF) {
|
||||||
|
// UTF-8: BOM takes 3 bytes
|
||||||
|
return 3;
|
||||||
|
} else if (test2 == 0xFEFF || test2 == 0xFFFE) {
|
||||||
|
// UTF-16: BOM takes 2 bytes
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/***
|
||||||
|
* removes utf8 byte order marks from byte arrays, in case one is there
|
||||||
|
* @param zugferdRaw
|
||||||
|
* @return the byte array without bom
|
||||||
|
*/
|
||||||
|
public static byte[] removeBOM(byte[] zugferdRaw) {
|
||||||
|
byte[] zugferdData;
|
||||||
|
if ((zugferdRaw[0] == (byte) 0xEF) && (zugferdRaw[1] == (byte) 0xBB) && (zugferdRaw[2] == (byte) 0xBF)) {
|
||||||
|
// I don't like BOMs, lets remove it
|
||||||
|
zugferdData = new byte[zugferdRaw.length - 3];
|
||||||
|
System.arraycopy(zugferdRaw, 3, zugferdData, 0, zugferdRaw.length - 3);
|
||||||
|
} else {
|
||||||
|
zugferdData = zugferdRaw;
|
||||||
|
}
|
||||||
|
return zugferdData;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +1,23 @@
|
|||||||
/** **********************************************************************
|
/**
|
||||||
*
|
* *********************************************************************
|
||||||
|
* <p>
|
||||||
* Copyright 2018 Jochen Staerk
|
* Copyright 2018 Jochen Staerk
|
||||||
*
|
* <p>
|
||||||
* Use is subject to license terms.
|
* Use is subject to license terms.
|
||||||
*
|
* <p>
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
* 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
|
* 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.
|
* of the License at http://www.apache.org/licenses/LICENSE-2.0.
|
||||||
*
|
* <p>
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
*
|
* <p>
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*
|
* <p>
|
||||||
*********************************************************************** */
|
* **********************************************************************
|
||||||
|
*/
|
||||||
package org.mustangproject.ZUGFeRD;
|
package org.mustangproject.ZUGFeRD;
|
||||||
|
|
||||||
import org.dom4j.Document;
|
import org.dom4j.Document;
|
||||||
@@ -52,6 +54,7 @@ public class ZUGFeRD1PullProvider extends ZUGFeRD2PullProvider implements IXMLPr
|
|||||||
@Override
|
@Override
|
||||||
public void setTest() {
|
public void setTest() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private String vatFormat(BigDecimal value) {
|
private String vatFormat(BigDecimal value) {
|
||||||
return XMLTools.nDigitFormat(value, 2);
|
return XMLTools.nDigitFormat(value, 2);
|
||||||
}
|
}
|
||||||
@@ -404,14 +407,7 @@ public class ZUGFeRD1PullProvider extends ZUGFeRD2PullProvider implements IXMLPr
|
|||||||
byte[] zugferdRaw;
|
byte[] zugferdRaw;
|
||||||
try {
|
try {
|
||||||
zugferdRaw = xml.getBytes("UTF-8");
|
zugferdRaw = xml.getBytes("UTF-8");
|
||||||
|
zugferdData = XMLTools.removeBOM(zugferdRaw);
|
||||||
if ((zugferdRaw[0] == (byte) 0xEF) && (zugferdRaw[1] == (byte) 0xBB) && (zugferdRaw[2] == (byte) 0xBF)) {
|
|
||||||
// I don't like BOMs, lets remove it
|
|
||||||
zugferdData = new byte[zugferdRaw.length - 3];
|
|
||||||
System.arraycopy(zugferdRaw, 3, zugferdData, 0, zugferdRaw.length - 3);
|
|
||||||
} else {
|
|
||||||
zugferdData = zugferdRaw;
|
|
||||||
}
|
|
||||||
} catch (UnsupportedEncodingException e) {
|
} catch (UnsupportedEncodingException e) {
|
||||||
Logger.getLogger(ZUGFeRD1PullProvider.class.getName()).log(Level.SEVERE, null, e);
|
Logger.getLogger(ZUGFeRD1PullProvider.class.getName()).log(Level.SEVERE, null, e);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -615,13 +615,7 @@ public class ZUGFeRD2PullProvider implements IXMLProvider {
|
|||||||
try {
|
try {
|
||||||
zugferdRaw = xml.getBytes("UTF-8");
|
zugferdRaw = xml.getBytes("UTF-8");
|
||||||
|
|
||||||
if ((zugferdRaw[0] == (byte) 0xEF) && (zugferdRaw[1] == (byte) 0xBB) && (zugferdRaw[2] == (byte) 0xBF)) {
|
zugferdData=XMLTools.removeBOM(zugferdRaw);
|
||||||
// I don't like BOMs, lets remove it
|
|
||||||
zugferdData = new byte[zugferdRaw.length - 3];
|
|
||||||
System.arraycopy(zugferdRaw, 3, zugferdData, 0, zugferdRaw.length - 3);
|
|
||||||
} else {
|
|
||||||
zugferdData = zugferdRaw;
|
|
||||||
}
|
|
||||||
} catch (UnsupportedEncodingException e) {
|
} catch (UnsupportedEncodingException e) {
|
||||||
Logger.getLogger(ZUGFeRD2PullProvider.class.getName()).log(Level.SEVERE, null, e);
|
Logger.getLogger(ZUGFeRD2PullProvider.class.getName()).log(Level.SEVERE, null, e);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -161,8 +161,8 @@
|
|||||||
<!-- http://stackoverflow.com/questions/574594/how-can-i-create-an-executable-jar-with-dependencies-using-maven
|
<!-- http://stackoverflow.com/questions/574594/how-can-i-create-an-executable-jar-with-dependencies-using-maven
|
||||||
mvn clean compile assembly:single -->
|
mvn clean compile assembly:single -->
|
||||||
<!-- or whatever version you use -->
|
<!-- or whatever version you use -->
|
||||||
<source>1.7</source>
|
<source>8</source>
|
||||||
<target>1.7</target>
|
<target>8</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- /ZUV -->
|
<!-- /ZUV -->
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
package org.mustangproject.validator;
|
package org.mustangproject.validator;
|
||||||
|
|
||||||
|
import org.mustangproject.XMLTools;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
package org.mustangproject.validator;
|
|
||||||
|
|
||||||
import org.dom4j.io.XMLWriter;
|
|
||||||
|
|
||||||
public class XMLTools extends XMLWriter {
|
|
||||||
public String escapeAttributeEntities(String s) {
|
|
||||||
return super.escapeAttributeEntities(s);
|
|
||||||
}
|
|
||||||
public String escapeElementEntities(String s) {
|
|
||||||
return super.escapeElementEntities(s);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -18,6 +18,7 @@ import javax.xml.xpath.XPathConstants;
|
|||||||
import javax.xml.xpath.XPathExpression;
|
import javax.xml.xpath.XPathExpression;
|
||||||
import javax.xml.xpath.XPathFactory;
|
import javax.xml.xpath.XPathFactory;
|
||||||
|
|
||||||
|
import org.mustangproject.XMLTools;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.w3c.dom.Document;
|
import org.w3c.dom.Document;
|
||||||
@@ -61,7 +62,7 @@ public class XMLValidator extends Validator {
|
|||||||
// file existence must have been checked before
|
// file existence must have been checked before
|
||||||
|
|
||||||
try {
|
try {
|
||||||
zfXML = new String(Files.readAllBytes(Paths.get(name)));
|
zfXML = new String(XMLTools.removeBOM(Files.readAllBytes(Paths.get(name))));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|
||||||
ValidationResultItem vri = new ValidationResultItem(ESeverity.exception, e.getMessage()).setSection(9)
|
ValidationResultItem vri = new ValidationResultItem(ESeverity.exception, e.getMessage()).setSection(9)
|
||||||
@@ -112,8 +113,6 @@ public class XMLValidator extends Validator {
|
|||||||
failedRules = 0;
|
failedRules = 0;
|
||||||
|
|
||||||
|
|
||||||
ByteArrayInputStream xmlByteInputStream = new ByteArrayInputStream(zfXML.getBytes(StandardCharsets.UTF_8));
|
|
||||||
|
|
||||||
if (zfXML.isEmpty()) {
|
if (zfXML.isEmpty()) {
|
||||||
ValidationResultItem res = new ValidationResultItem(ESeverity.exception,
|
ValidationResultItem res = new ValidationResultItem(ESeverity.exception,
|
||||||
"XML data not found in " + filename
|
"XML data not found in " + filename
|
||||||
@@ -145,8 +144,8 @@ public class XMLValidator extends Validator {
|
|||||||
// document.getElementsByTagNameNS("*",...
|
// document.getElementsByTagNameNS("*",...
|
||||||
|
|
||||||
DocumentBuilder db = dbf.newDocumentBuilder();
|
DocumentBuilder db = dbf.newDocumentBuilder();
|
||||||
|
InputSource is = new InputSource(new StringReader(zfXML));
|
||||||
Document doc = db.parse(xmlByteInputStream);
|
Document doc = db.parse(is);
|
||||||
|
|
||||||
Element root = doc.getDocumentElement();
|
Element root = doc.getDocumentElement();
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,7 @@
|
|||||||
package org.mustangproject.validator;
|
package org.mustangproject.validator;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.*;
|
||||||
import java.io.FileInputStream;
|
import java.nio.file.Files;
|
||||||
import java.io.FileNotFoundException;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
|
||||||
import java.io.StringWriter;
|
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.nio.file.Paths;
|
import java.nio.file.Paths;
|
||||||
import java.security.MessageDigest;
|
import java.security.MessageDigest;
|
||||||
@@ -22,11 +18,13 @@ import org.dom4j.DocumentException;
|
|||||||
import org.dom4j.DocumentHelper;
|
import org.dom4j.DocumentHelper;
|
||||||
import org.dom4j.io.OutputFormat;
|
import org.dom4j.io.OutputFormat;
|
||||||
import org.dom4j.io.XMLWriter;
|
import org.dom4j.io.XMLWriter;
|
||||||
|
import org.mustangproject.XMLTools;
|
||||||
import org.riversun.bigdoc.bin.BigFileSearcher;
|
import org.riversun.bigdoc.bin.BigFileSearcher;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.w3c.dom.Document;
|
import org.w3c.dom.Document;
|
||||||
import org.w3c.dom.Element;
|
import org.w3c.dom.Element;
|
||||||
|
import org.xml.sax.InputSource;
|
||||||
import org.xml.sax.SAXParseException;
|
import org.xml.sax.SAXParseException;
|
||||||
|
|
||||||
//abstract class
|
//abstract class
|
||||||
@@ -166,7 +164,11 @@ public class ZUGFeRDValidator {
|
|||||||
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
|
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
|
||||||
DocumentBuilder db = dbf.newDocumentBuilder();
|
DocumentBuilder db = dbf.newDocumentBuilder();
|
||||||
|
|
||||||
Document doc = db.parse(file);
|
byte[] content=Files.readAllBytes(file.toPath());
|
||||||
|
content= XMLTools.removeBOM(content);
|
||||||
|
String s=new String(content);
|
||||||
|
InputSource is = new InputSource(new StringReader(s));
|
||||||
|
Document doc = db.parse(is);
|
||||||
|
|
||||||
Element root = doc.getDocumentElement();
|
Element root = doc.getDocumentElement();
|
||||||
isXML=true;//no exception so far
|
isXML=true;//no exception so far
|
||||||
@@ -176,6 +178,8 @@ public class ZUGFeRDValidator {
|
|||||||
// probably no xml file, sth like SAXParseException content not allowed in prolog
|
// probably no xml file, sth like SAXParseException content not allowed in prolog
|
||||||
// ignore isXML is already false
|
// ignore isXML is already false
|
||||||
// in the tests, this may error-out anyway
|
// in the tests, this may error-out anyway
|
||||||
|
//ex.printStackTrace();
|
||||||
|
|
||||||
}
|
}
|
||||||
if (isXML) {
|
if (isXML) {
|
||||||
pdfValidity = true;
|
pdfValidity = true;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?><!-- the document starts with an invisible utf8 byte order mark, which is valid-->
|
||||||
<rsm:CrossIndustryInvoice xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
|
<rsm:CrossIndustryInvoice xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100">
|
||||||
<rsm:ExchangedDocumentContext>
|
<rsm:ExchangedDocumentContext>
|
||||||
<ram:GuidelineSpecifiedDocumentContextParameter>
|
<ram:GuidelineSpecifiedDocumentContextParameter>
|
||||||
|
|||||||
Reference in New Issue
Block a user