Search in sources :

Example 11 with MCRContentTransformer

use of org.mycore.common.content.transformer.MCRContentTransformer in project mycore by MyCoRe-Org.

the class MCRLayoutTransformerFactory method getTransformer.

/**
 * Returns the transformer with the given ID. If the transformer is not instantiated yet,
 * it is created and initialized.
 */
public static MCRContentTransformer getTransformer(String id) throws Exception {
    MCRContentTransformer transformer = transformers.get(id);
    if (transformer != null) {
        return transformer;
    }
    // try to get configured transformer
    transformer = MCRContentTransformerFactory.getTransformer(id.replaceAll("-default$", ""));
    if (transformer != null) {
        transformers.put(id, transformer);
        return transformer;
    }
    return buildLayoutTransformer(id);
}
Also used : MCRContentTransformer(org.mycore.common.content.transformer.MCRContentTransformer)

Example 12 with MCRContentTransformer

use of org.mycore.common.content.transformer.MCRContentTransformer in project mycore by MyCoRe-Org.

the class MCRRestAPIObjectsHelper method showMCRObject.

public static Response showMCRObject(String pathParamId, String queryParamStyle, UriInfo info, HttpServletRequest request) throws MCRRestAPIException {
    MCRObject mcrObj = retrieveMCRObject(pathParamId);
    Document doc = mcrObj.createXML();
    Element eStructure = doc.getRootElement().getChild("structure");
    if (queryParamStyle != null && !MCRRestAPIObjects.STYLE_DERIVATEDETAILS.equals(queryParamStyle)) {
        throw new MCRRestAPIException(Response.Status.BAD_REQUEST, new MCRRestAPIError(MCRRestAPIError.CODE_WRONG_PARAMETER, "The value of parameter {style} is not allowed.", "Allowed values for {style} parameter are: " + MCRRestAPIObjects.STYLE_DERIVATEDETAILS));
    }
    if (MCRRestAPIObjects.STYLE_DERIVATEDETAILS.equals(queryParamStyle) && eStructure != null) {
        Element eDerObjects = eStructure.getChild("derobjects");
        if (eDerObjects != null) {
            for (Element eDer : eDerObjects.getChildren("derobject")) {
                String derID = eDer.getAttributeValue("href", MCRConstants.XLINK_NAMESPACE);
                try {
                    MCRDerivate der = MCRMetadataManager.retrieveMCRDerivate(MCRObjectID.getInstance(derID));
                    eDer.addContent(der.createXML().getRootElement().detach());
                    // <mycorederivate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xsi:noNamespaceSchemaLocation="datamodel-derivate.xsd" ID="cpr_derivate_00003760" label="display_image" version="1.3">
                    // <derivate display="true">
                    eDer = eDer.getChild("mycorederivate").getChild("derivate");
                    Document docContents = listDerivateContentAsXML(MCRMetadataManager.retrieveMCRDerivate(MCRObjectID.getInstance(derID)), "/", -1, info);
                    if (docContents.hasRootElement()) {
                        eDer.addContent(docContents.getRootElement().detach());
                    }
                } catch (MCRException e) {
                    eDer.addContent(new Comment("Error: Derivate not found."));
                } catch (IOException e) {
                    eDer.addContent(new Comment("Error: Derivate content could not be listed: " + e.getMessage()));
                }
            }
        }
    }
    StringWriter sw = new StringWriter();
    XMLOutputter outputter = new XMLOutputter(Format.getPrettyFormat());
    try {
        String filter_id = MCRConfiguration.instance().getString("MCR.RestAPI.v1.Filter.XML", "");
        if (filter_id.length() > 0) {
            MCRContentTransformer trans = MCRContentTransformerFactory.getTransformer(filter_id);
            Document filtered_doc = trans.transform(new MCRJDOMContent(doc)).asXML();
            outputter.output(filtered_doc, sw);
        } else {
            outputter.output(doc, sw);
        }
    } catch (SAXException | JDOMException e) {
        throw new MCRRestAPIException(Response.Status.INTERNAL_SERVER_ERROR, new MCRRestAPIError(MCRRestAPIError.CODE_INTERNAL_ERROR, "Unable to transform MCRContent to XML document", e.getMessage()));
    } catch (IOException e) {
        throw new MCRRestAPIException(Response.Status.INTERNAL_SERVER_ERROR, new MCRRestAPIError(MCRRestAPIError.CODE_INTERNAL_ERROR, "Unable to retrieve/transform MyCoRe object", e.getMessage()));
    }
    String authHeader = MCRJSONWebTokenUtil.createJWTAuthorizationHeader(MCRJSONWebTokenUtil.retrieveAuthenticationToken(request));
    return Response.ok(sw.toString()).type("application/xml").header(HEADER_NAME_AUTHORIZATION, authHeader).build();
}
Also used : Comment(org.jdom2.Comment) XMLOutputter(org.jdom2.output.XMLOutputter) MCRRestAPIException(org.mycore.restapi.v1.errors.MCRRestAPIException) MCRException(org.mycore.common.MCRException) Element(org.jdom2.Element) MCRRestAPIError(org.mycore.restapi.v1.errors.MCRRestAPIError) MCRJDOMContent(org.mycore.common.content.MCRJDOMContent) MCRDerivate(org.mycore.datamodel.metadata.MCRDerivate) IOException(java.io.IOException) Document(org.jdom2.Document) JDOMException(org.jdom2.JDOMException) SAXException(org.xml.sax.SAXException) MCRObject(org.mycore.datamodel.metadata.MCRObject) StringWriter(java.io.StringWriter) MCRContentTransformer(org.mycore.common.content.transformer.MCRContentTransformer)

Aggregations

MCRContentTransformer (org.mycore.common.content.transformer.MCRContentTransformer)12 MCRParameterCollector (org.mycore.common.xsl.MCRParameterCollector)6 MCRException (org.mycore.common.MCRException)5 MCRParameterizedTransformer (org.mycore.common.content.transformer.MCRParameterizedTransformer)4 IOException (java.io.IOException)3 MCRContent (org.mycore.common.content.MCRContent)3 MCRJDOMContent (org.mycore.common.content.MCRJDOMContent)3 SAXException (org.xml.sax.SAXException)3 TransformerException (javax.xml.transform.TransformerException)2 MCRDerivate (org.mycore.datamodel.metadata.MCRDerivate)2 MCRObjectID (org.mycore.datamodel.metadata.MCRObjectID)2 ByteArrayOutputStream (java.io.ByteArrayOutputStream)1 StringWriter (java.io.StringWriter)1 Comment (org.jdom2.Comment)1 Document (org.jdom2.Document)1 Element (org.jdom2.Element)1 JDOMException (org.jdom2.JDOMException)1 XMLOutputter (org.jdom2.output.XMLOutputter)1 MCRConfigurationException (org.mycore.common.config.MCRConfigurationException)1 MCRPathContent (org.mycore.common.content.MCRPathContent)1