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

org.mycore.frontend.servlets.MCRErrorServlet Maven / Gradle / Ivy

There is a newer version: 2024.05
Show newest version
/*
 * This file is part of ***  M y C o R e  ***
 * See http://www.mycore.de/ for details.
 *
 * MyCoRe is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * MyCoRe 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with MyCoRe.  If not, see .
 */

package org.mycore.frontend.servlets;

import java.io.IOException;
import java.util.Enumeration;
import java.util.Locale;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import javax.xml.transform.TransformerException;

import org.apache.logging.log4j.Level;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.jdom2.DocType;
import org.jdom2.Document;
import org.jdom2.Element;
import org.jdom2.Namespace;
import org.mycore.common.MCRException;
import org.mycore.common.MCRSession;
import org.mycore.common.MCRSessionMgr;
import org.mycore.common.config.MCRConfiguration2;
import org.mycore.common.content.MCRJDOMContent;
import org.mycore.common.xml.MCRLayoutService;
import org.mycore.frontend.MCRFrontendUtil;
import org.xml.sax.SAXException;

/**
 * @author Thomas Scheffler (yagee)
 *
 */
public class MCRErrorServlet extends HttpServlet {

    private static final long serialVersionUID = 1L;

    private static Logger LOGGER = LogManager.getLogger(MCRErrorServlet.class);

    private static MCRLayoutService LAYOUT_SERVICE = MCRLayoutService.instance();

    /* (non-Javadoc)
     * @see javax.servlet.http.HttpServlet#service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
     */
    @Override
    protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        // Retrieve the possible error attributes, some may be null
        Integer statusCode = (Integer) req.getAttribute("javax.servlet.error.status_code");
        String message = (String) req.getAttribute("javax.servlet.error.message");
        @SuppressWarnings("unchecked")
        Class exceptionType = (Class) req
            .getAttribute("javax.servlet.error.exception_type");
        Throwable exception = (Throwable) req.getAttribute("javax.servlet.error.exception");
        String requestURI = (String) req.getAttribute("javax.servlet.error.request_uri");
        String servletName = (String) req.getAttribute("javax.servlet.error.servletName");
        if (LOGGER.isDebugEnabled()) {
            LOGGER.debug("Handling error {} for request ''{}'' message: {}", statusCode, requestURI, message);
            LOGGER.debug("Has current session: {}", MCRSessionMgr.hasCurrentSession());
        }
        if (acceptWebPage(req)) {
            try {
                generateErrorPage(req, resp, message, exception, statusCode, exceptionType, requestURI, servletName);
            } catch (TransformerException | SAXException e) {
                LOGGER.error("Could not generate error page", e);
                resp.sendError(statusCode, message);
            }
        } else {
            LOGGER.info("Client does not accept HTML pages: {}", req.getHeader("Accept"));
            resp.sendError(statusCode, message);
        }
    }

    /**
     * Returns true if Accept header allows sending html pages
     * @param req
     * @return
     */
    private boolean acceptWebPage(HttpServletRequest req) {
        Enumeration acceptHeader = req.getHeaders("Accept");
        if (!acceptHeader.hasMoreElements()) {
            return true;
        }
        while (acceptHeader.hasMoreElements()) {
            String[] acceptValues = acceptHeader.nextElement().split(",");
            for (String acceptValue : acceptValues) {
                String[] parsed = acceptValue.split(";");
                String mediaRange = parsed[0].trim();
                if (mediaRange.startsWith("text/html") || mediaRange.startsWith("text/*")
                    || mediaRange.startsWith("*/")) {
                    float quality = 1f; //default 'q=1.0'
                    for (int i = 1; i < parsed.length; i++) {
                        if (parsed[i].trim().startsWith("q=")) {
                            String qualityValue = parsed[i].trim().substring(2).trim();
                            quality = Float.parseFloat(qualityValue);
                        }
                    }
                    if (quality > 0.5) {
                        //firefox 18 accepts every media type when requesting images with 0.5
                        // but closes stream immediately when detecting text/html
                        return true;
                    }
                }
            }
        }
        return false;
    }

    private boolean setCurrentSession(HttpServletRequest req) {
        MCRSession session = getMCRSession(req);
        if (session != null && !MCRSessionMgr.hasCurrentSession()) {
            MCRSessionMgr.setCurrentSession(session);
        }
        return session != null;
    }

    private MCRSession getMCRSession(HttpServletRequest req) {
        HttpSession session = req.getSession(false);
        if (session == null) {
            return null;
        }
        return MCRServlet.getSession(req);
    }

    private void setWebAppBaseURL(MCRSession session, HttpServletRequest request) {
        if (request.getAttribute(MCRFrontendUtil.BASE_URL_ATTRIBUTE) != null) {
            session.put(MCRFrontendUtil.BASE_URL_ATTRIBUTE, request.getAttribute(MCRFrontendUtil.BASE_URL_ATTRIBUTE));
        }
    }

    /**
     * Builds a jdom document containing the error parameter.
     * 
     * @param msg the message of the error
     * @param statusCode the http status code
     * @param requestURI the uri of the request
     * @param exceptionType type of the exception
     * @param source source of the error 
     * @param ex exception which is occured
     * 
     * @return jdom document containing all error parameter
     */
    public static Document buildErrorPage(String msg, Integer statusCode, String requestURI,
        Class exceptionType, String source, Throwable ex) {
        String rootname = MCRConfiguration2.getString("MCR.Frontend.ErrorPage").orElse("mcr_error");
        Element root = new Element(rootname);
        root.setAttribute("errorServlet", Boolean.TRUE.toString());
        root.setAttribute("space", "preserve", Namespace.XML_NAMESPACE);
        if (msg != null) {
            root.setText(msg);
        }
        if (statusCode != null) {
            root.setAttribute("HttpError", statusCode.toString());
        }
        if (requestURI != null) {
            root.setAttribute("requestURI", requestURI);
        }
        if (exceptionType != null) {
            root.setAttribute("exceptionType", exceptionType.getName());
        }
        if (source != null) {
            root.setAttribute("source", source);
        }
        while (ex != null) {
            Element exception = new Element("exception");
            exception.setAttribute("type", ex.getClass().getName());
            Element trace = new Element("trace");
            Element message = new Element("message");
            trace.setText(MCRException.getStackTraceAsString(ex));
            message.setText(ex.getMessage());
            exception.addContent(message).addContent(trace);
            root.addContent(exception);
            ex = ex.getCause();
        }
        return new Document(root, new DocType(rootname));
    }

    protected void generateErrorPage(HttpServletRequest request, HttpServletResponse response, String msg,
        Throwable ex, Integer statusCode, Class exceptionType, String requestURI,
        String servletName) throws IOException, TransformerException, SAXException {
        boolean exceptionThrown = ex != null;
        LOGGER.log(exceptionThrown ? Level.ERROR : Level.WARN, String.format(Locale.ENGLISH,
            "%s: Error %d occured. The following message was given: %s", requestURI, statusCode, msg), ex);

        String style = MCRFrontendUtil
            .getProperty(request, "XSL.Style")
            .filter("xml"::equals)
            .orElse("default");
        request.setAttribute("XSL.Style", style);

        Document errorDoc = buildErrorPage(msg, statusCode, requestURI, exceptionType, servletName, ex);

        final String requestAttr = "MCRErrorServlet.generateErrorPage";
        if (!response.isCommitted() && request.getAttribute(requestAttr) == null) {
            if (statusCode != null) {
                response.setStatus(statusCode);
            } else {
                response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
            }
            request.setAttribute(requestAttr, msg);
            boolean currentSessionActive = MCRSessionMgr.hasCurrentSession();
            boolean sessionFromRequest = setCurrentSession(request);
            MCRSession session = null;
            try {
                MCRSessionMgr.unlock();
                session = MCRSessionMgr.getCurrentSession();
                boolean openTransaction = session.isTransactionActive();
                if (!openTransaction) {
                    session.beginTransaction();
                }
                try {
                    setWebAppBaseURL(session, request);
                    LAYOUT_SERVICE.doLayout(request, response, new MCRJDOMContent(errorDoc));
                } finally {
                    if (!openTransaction) {
                        session.commitTransaction();
                    }
                }
            } finally {
                if (exceptionThrown || !currentSessionActive) {
                    MCRSessionMgr.releaseCurrentSession();
                }
                if (!sessionFromRequest) {
                    //new session created for transaction
                    session.close();
                }
            }
        } else {
            if (request.getAttribute(requestAttr) != null) {
                LOGGER.warn("Could not send error page. Generating error page failed. The original message:\n{}",
                    request.getAttribute(requestAttr));
            } else {
                LOGGER.warn(
                    "Could not send error page. Response allready commited. The following message was given:\n{}", msg);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy