/** * Copyright (C) 2012-2017 52°North Initiative for Geospatial Open Source * Software GmbH * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published * by the Free Software Foundation. * * If the program is linked with libraries which are licensed under one of * the following licenses, the combination of the program with the linked * library is not considered a "derivative work" of the program: * * - Apache License, version 2.0 * - Apache Software License, version 1.0 * - GNU Lesser General Public License, version 3 * - Mozilla Public License, versions 1.0, 1.1 and 2.0 * - Common Development and Distribution License (CDDL), version 1.0 * * Therefore the distribution of the program linked with libraries licensed * under the aforementioned licenses, is permitted by the copyright holders * if the distribution is compliant with both the GNU General Public * License version 2 and the aforementioned licenses. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * Public License for more details. */ package org.n52.sos.binding; import java.io.IOException; import java.util.Collections; import java.util.Set; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.xmlbeans.XmlObject; import org.n52.sos.coding.OperationKey; import org.n52.sos.decode.Decoder; import org.n52.sos.exception.HTTPException; import org.n52.sos.ogc.ows.OwsExceptionReport; import org.n52.sos.ogc.sos.ConformanceClasses; import org.n52.sos.request.AbstractServiceRequest; import org.n52.sos.response.AbstractServiceResponse; import org.n52.sos.util.CodingHelper; import org.n52.sos.util.XmlHelper; import org.n52.sos.util.http.MediaType; import org.n52.sos.util.http.MediaTypes; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.google.common.collect.Sets; /** * @since 4.0.0 * */ public class PoxBinding extends SimpleBinding { private static final Logger LOGGER = LoggerFactory .getLogger(PoxBinding.class); private static final Set<String> CONFORMANCE_CLASSES = Collections .singleton(ConformanceClasses.SOS_V2_POX_BINDING); @Override public void doPostOperation(HttpServletRequest req, HttpServletResponse res) throws HTTPException, IOException { AbstractServiceRequest<?> sosRequest = null; try { sosRequest = parseRequest(req); AbstractServiceResponse sosResponse = getServiceOperator(sosRequest) .receiveRequest(sosRequest); writeResponse(req, res, sosResponse); } catch (OwsExceptionReport oer) { oer.setVersion(sosRequest != null ? sosRequest.getVersion() : null); writeOwsExceptionReport(req, res, oer); } } protected AbstractServiceRequest<?> parseRequest(HttpServletRequest request) throws OwsExceptionReport { XmlObject doc = XmlHelper.parseXmlSosRequest(request); if (LOGGER.isDebugEnabled()) { LOGGER.debug("XML-REQUEST: {}", doc.xmlText()); } Decoder<AbstractServiceRequest<?>, XmlObject> decoder = getDecoder(CodingHelper.getDecoderKey(doc)); return decoder.decode(doc).setRequestContext(getRequestContext(request)); } @Override public Set<String> getConformanceClasses() { return Collections.unmodifiableSet(CONFORMANCE_CLASSES); } @Override public String getUrlPattern() { return BindingConstants.POX_BINDING_ENDPOINT; } @Override public boolean checkOperationHttpPostSupported(OperationKey k) { return hasDecoder(k, MediaTypes.TEXT_XML) || hasDecoder(k, MediaTypes.APPLICATION_XML); } @Override public Set<MediaType> getSupportedEncodings() { return Sets.newHashSet(MediaTypes.TEXT_XML, MediaTypes.APPLICATION_XML); } @Override protected MediaType getDefaultContentType() { return MediaTypes.APPLICATION_XML; } }