/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2009-2011 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2011 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(R) 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. * * OpenNMS(R) 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 OpenNMS(R). If not, see: * http://www.gnu.org/licenses/ * * For more information contact: * OpenNMS(R) Licensing <license@opennms.org> * http://www.opennms.org/ * http://www.opennms.com/ *******************************************************************************/ package org.opennms.web.controller.alarm; import java.util.Date; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.opennms.core.utils.WebSecurityUtils; import org.opennms.web.alarm.AcknowledgeType; import org.opennms.web.alarm.WebAlarmRepository; import org.opennms.web.servlet.MissingParameterException; import org.springframework.beans.factory.InitializingBean; import org.springframework.util.Assert; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.mvc.AbstractController; import org.springframework.web.servlet.view.RedirectView; /** * This servlet receives an HTTP POST with a list of alarms to acknowledge or * unacknowledge, and then it redirects the client to a URL for display. The * target URL is configurable in the servlet config (web.xml file). * * @author <A HREF="mailto:larry@opennms.org">Lawrence Karnowski </A> * @author <A HREF="http://www.opennms.org/">OpenNMS </A> * @since 1.8.1 */ public class AcknowledgeAlarmController extends AbstractController implements InitializingBean { private WebAlarmRepository m_webAlarmRepository; private String m_redirectView; /** * <p>setRedirectView</p> * * @param redirectView a {@link java.lang.String} object. */ public void setRedirectView(String redirectView) { m_redirectView = redirectView; } /** * <p>setWebAlarmRepository</p> * * @param webAlarmRepository a {@link org.opennms.web.alarm.WebAlarmRepository} object. */ public void setWebAlarmRepository(WebAlarmRepository webAlarmRepository) { m_webAlarmRepository = webAlarmRepository; } /** * <p>afterPropertiesSet</p> * * @throws java.lang.Exception if any. */ @Override public void afterPropertiesSet() throws Exception { Assert.notNull(m_redirectView, "redirectView must be set"); Assert.notNull(m_webAlarmRepository, "webAlarmRepository must be set"); } /** * {@inheritDoc} * * Acknowledge the alarms specified in the POST and then redirect the client * to an appropriate URL for display. */ protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse response) throws Exception { // required parameter String[] alarmIdStrings = request.getParameterValues("alarm"); String action = request.getParameter("actionCode"); if (alarmIdStrings == null) { throw new MissingParameterException("alarm", new String[] { "alarm", "actionCode" }); } if (action == null) { throw new MissingParameterException("actionCode", new String[] { "alarm", "actionCode" }); } // convert the alarm id strings to ints int[] alarmIds = new int[alarmIdStrings.length]; for (int i = 0; i < alarmIds.length; i++) { alarmIds[i] = WebSecurityUtils.safeParseInt(alarmIdStrings[i]); } if (action.equals(AcknowledgeType.ACKNOWLEDGED.getShortName())) { m_webAlarmRepository.acknowledgeAlarms(alarmIds, request.getRemoteUser(), new Date()); } else if (action.equals(AcknowledgeType.UNACKNOWLEDGED.getShortName())) { m_webAlarmRepository.unacknowledgeAlarms(alarmIds, request.getRemoteUser()); } else { throw new ServletException("Unknown acknowledge action: " + action); } String redirectParms = request.getParameter("redirectParms"); String redirect = request.getParameter("redirect"); String viewName; if (redirect != null) { viewName = redirect; } else { viewName = (redirectParms == null || redirectParms=="" || redirectParms=="null" ? m_redirectView : m_redirectView + "?" + redirectParms); } RedirectView view = new RedirectView(viewName, true); return new ModelAndView(view); } }