All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.poi.poifs.crypt.dsig.services.RelationshipTransformService Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You 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.
==================================================================== */

/* ====================================================================
   This product contains an ASLv2 licensed version of the OOXML signer
   package from the eID Applet project
   http://code.google.com/p/eid-applet/source/browse/trunk/README.txt  
   Copyright (C) 2008-2014 FedICT.
   ================================================================= */ 

package org.apache.poi.poifs.crypt.dsig.services;

import static org.apache.poi.ooxml.POIXMLTypeLoader.DEFAULT_XML_OPTIONS;
import static org.apache.poi.poifs.crypt.dsig.facets.SignatureFacet.OO_DIGSIG_NS;
import static org.apache.poi.poifs.crypt.dsig.facets.SignatureFacet.XML_NS;

import java.io.InputStream;
import java.io.OutputStream;
import java.security.InvalidAlgorithmParameterException;
import java.security.Provider;
import java.security.Security;
import java.security.spec.AlgorithmParameterSpec;
import java.util.ArrayList;
import java.util.List;
import java.util.TreeMap;

import javax.xml.crypto.Data;
import javax.xml.crypto.MarshalException;
import javax.xml.crypto.OctetStreamData;
import javax.xml.crypto.XMLCryptoContext;
import javax.xml.crypto.XMLStructure;
import javax.xml.crypto.dom.DOMStructure;
import javax.xml.crypto.dsig.TransformException;
import javax.xml.crypto.dsig.TransformService;
import javax.xml.crypto.dsig.spec.TransformParameterSpec;

import org.apache.jcp.xml.dsig.internal.dom.ApacheNodeSetData;
import org.apache.poi.ooxml.util.DocumentHelper;
import org.apache.poi.util.POILogFactory;
import org.apache.poi.util.POILogger;
import org.apache.xml.security.signature.XMLSignatureInput;
import org.apache.xmlbeans.XmlException;
import org.apache.xmlbeans.XmlObject;
import org.openxmlformats.schemas.xpackage.x2006.digitalSignature.CTRelationshipReference;
import org.openxmlformats.schemas.xpackage.x2006.digitalSignature.RelationshipReferenceDocument;
import org.w3.x2000.x09.xmldsig.TransformDocument;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

/**
 * JSR105 implementation of the RelationshipTransform transformation.
 * 
 * 

* Specs: http://openiso.org/Ecma/376/Part2/12.2.4#26 *

*/ public class RelationshipTransformService extends TransformService { public static final String TRANSFORM_URI = "http://schemas.openxmlformats.org/package/2006/RelationshipTransform"; private final List sourceIds; private static final POILogger LOG = POILogFactory.getLogger(RelationshipTransformService.class); /** * Relationship Transform parameter specification class. */ public static class RelationshipTransformParameterSpec implements TransformParameterSpec { List sourceIds = new ArrayList<>(); public void addRelationshipReference(String relationshipId) { sourceIds.add(relationshipId); } public boolean hasSourceIds() { return !sourceIds.isEmpty(); } } public RelationshipTransformService() { super(); LOG.log(POILogger.DEBUG, "constructor"); this.sourceIds = new ArrayList<>(); } /** * Register the provider for this TransformService * * @see javax.xml.crypto.dsig.TransformService */ public static synchronized void registerDsigProvider() { // the xml signature classes will try to find a special TransformerService, // which is ofcourse unknown to JCE before ... final String dsigProvider = "POIXmlDsigProvider"; if (Security.getProperty(dsigProvider) == null) { Provider p = new Provider(dsigProvider, 1.0, dsigProvider){ static final long serialVersionUID = 1L; }; p.put("TransformService." + TRANSFORM_URI, RelationshipTransformService.class.getName()); p.put("TransformService." + TRANSFORM_URI + " MechanismType", "DOM"); Security.addProvider(p); } } @Override public void init(TransformParameterSpec params) throws InvalidAlgorithmParameterException { LOG.log(POILogger.DEBUG, "init(params)"); if (!(params instanceof RelationshipTransformParameterSpec)) { throw new InvalidAlgorithmParameterException(); } RelationshipTransformParameterSpec relParams = (RelationshipTransformParameterSpec) params; for (String sourceId : relParams.sourceIds) { this.sourceIds.add(sourceId); } } @Override public void init(XMLStructure parent, XMLCryptoContext context) throws InvalidAlgorithmParameterException { LOG.log(POILogger.DEBUG, "init(parent,context)"); LOG.log(POILogger.DEBUG, "parent java type: " + parent.getClass().getName()); DOMStructure domParent = (DOMStructure) parent; Node parentNode = domParent.getNode(); try { TransformDocument transDoc = TransformDocument.Factory.parse(parentNode, DEFAULT_XML_OPTIONS); XmlObject xoList[] = transDoc.getTransform().selectChildren(RelationshipReferenceDocument.type.getDocumentElementName()); if (xoList.length == 0) { LOG.log(POILogger.WARN, "no RelationshipReference/@SourceId parameters present"); } for (XmlObject xo : xoList) { String sourceId = ((CTRelationshipReference)xo).getSourceId(); LOG.log(POILogger.DEBUG, "sourceId: ", sourceId); this.sourceIds.add(sourceId); } } catch (XmlException e) { throw new InvalidAlgorithmParameterException(e); } } @Override public void marshalParams(XMLStructure parent, XMLCryptoContext context) throws MarshalException { LOG.log(POILogger.DEBUG, "marshallParams(parent,context)"); DOMStructure domParent = (DOMStructure) parent; Element parentNode = (Element)domParent.getNode(); Document doc = parentNode.getOwnerDocument(); for (String sourceId : this.sourceIds) { Element el = doc.createElementNS(OO_DIGSIG_NS, "mdssi:RelationshipReference"); el.setAttributeNS(XML_NS, "xmlns:mdssi", OO_DIGSIG_NS); el.setAttribute("SourceId", sourceId); parentNode.appendChild(el); } } public AlgorithmParameterSpec getParameterSpec() { LOG.log(POILogger.DEBUG, "getParameterSpec"); return null; } /** * The relationships transform takes the XML document from the Relationships part * and converts it to another XML document. * * @see 13.2.4.24 Relationships Transform Algorithm * @see XML Relationship Transform Algorithm */ public Data transform(Data data, XMLCryptoContext context) throws TransformException { LOG.log(POILogger.DEBUG, "transform(data,context)"); LOG.log(POILogger.DEBUG, "data java type: " + data.getClass().getName()); OctetStreamData octetStreamData = (OctetStreamData) data; LOG.log(POILogger.DEBUG, "URI: " + octetStreamData.getURI()); InputStream octetStream = octetStreamData.getOctetStream(); Document doc; try { doc = DocumentHelper.readDocument(octetStream); } catch (Exception e) { throw new TransformException(e.getMessage(), e); } // keep only those relationships which id is registered in the sourceIds Element root = doc.getDocumentElement(); NodeList nl = root.getChildNodes(); TreeMap rsList = new TreeMap<>(); for (int i=nl.getLength()-1; i>=0; i--) { Node n = nl.item(i); if ("Relationship".equals(n.getLocalName())) { Element el = (Element)n; String id = el.getAttribute("Id"); if (sourceIds.contains(id)) { String targetMode = el.getAttribute("TargetMode"); if (targetMode == null || targetMode.isEmpty()) { el.setAttribute("TargetMode", "Internal"); } rsList.put(id, el); } } root.removeChild(n); } for (Element el : rsList.values()) { root.appendChild(el); } LOG.log(POILogger.DEBUG, "# Relationship elements: ", rsList.size()); return new ApacheNodeSetData(new XMLSignatureInput(root)); } public Data transform(Data data, XMLCryptoContext context, OutputStream os) throws TransformException { LOG.log(POILogger.DEBUG, "transform(data,context,os)"); return null; } public boolean isFeatureSupported(String feature) { LOG.log(POILogger.DEBUG, "isFeatureSupported(feature)"); return false; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy