/** * The contents of this file are subject to the OpenMRS Public License * Version 1.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://license.openmrs.org * * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the * License for the specific language governing rights and limitations * under the License. * * Copyright (C) OpenMRS, LLC. All Rights Reserved. */ package org.openmrs.web.taglib; import java.io.IOException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.jsp.JspException; import javax.servlet.jsp.tagext.TagSupport; import org.apache.commons.lang.StringUtils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.openmrs.GlobalProperty; import org.openmrs.api.AdministrationService; import org.openmrs.api.context.Context; import org.openmrs.web.WebConstants; /** * Retrieves the matching global properties, and if any are missing, redirects to configuration * page. This tag should be placed before the header import tag. */ public class RequireConfigurationTag extends TagSupport { private static final long serialVersionUID = 5958840687498314711L; private final Log log = LogFactory.getLog(getClass()); private String propertyList; private String configurationPage; /** * @see javax.servlet.jsp.tagext.TagSupport#doStartTag() * @should redirect if any properties are not set * @should not be sensitive to extraneous whitespace * @should not be sensitive to empty values * @should not be sensitive trailing commas * @should be encoding agnostic */ public int doStartTag() throws JspException { HttpServletRequest request = (HttpServletRequest) pageContext.getRequest(); HttpServletResponse response = (HttpServletResponse) pageContext.getResponse(); AdministrationService as = Context.getAdministrationService(); for (String propName : propertyList.split(",")) { propName = propName.trim(); GlobalProperty p = as.getGlobalPropertyObject(propName); if (p == null || StringUtils.isBlank(p.getPropertyValue())) { pageContext.getSession().setAttribute(WebConstants.OPENMRS_ERROR_ATTR, "error.configurationRequired"); try { log.info("Configuration not complete, missing property (" + p.getProperty() + "). Redirecting to page: " + request.getContextPath() + configurationPage); response.sendRedirect(request.getContextPath() + configurationPage); return SKIP_PAGE; } catch (IllegalStateException ise) { log.warn("Unable to forward request. It is likely that a response was already committed.", ise); } catch (IOException e) { log.error("An error occurred in tag.", e); throw new JspException(e); } } } return SKIP_BODY; } public String getPropertyList() { return propertyList; } public void setPropertyList(String propertyList) { this.propertyList = propertyList; } public String getConfigurationPage() { return configurationPage; } public void setConfigurationPage(String configurationPage) { this.configurationPage = configurationPage; } }