/* * PatientView * * Copyright (c) Worth Solutions Limited 2004-2013 * * This file is part of PatientView. * * PatientView 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. * PatientView 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 PatientView in a file * titled COPYING. If not, see <http://www.gnu.org/licenses/>. * * @package PatientView * @link http://www.patientview.org * @author PatientView <info@patientview.org> * @copyright Copyright (c) 2004-2013, Worth Solutions Limited * @license http://www.gnu.org/licenses/gpl-3.0.html The GNU General Public License V3.0 */ package org.patientview.ibd.action.symptoms.colitis; import org.patientview.actionutils.ActionUtils; import org.patientview.ibd.Ibd; import org.patientview.ibd.action.BaseAction; import org.patientview.ibd.model.symptoms.ColitisSymptoms; import org.patientview.patientview.model.User; import org.patientview.patientview.user.UserUtils; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping; import org.apache.struts.action.ActionMessage; import org.apache.struts.action.ActionMessages; import org.apache.struts.action.DynaActionForm; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.util.Date; public class ColitisUpdateAction extends BaseAction { public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { // set current nav ActionUtils.setUpNavLink(mapping.getParameter(), request); User user = UserUtils.retrieveUser(request); DynaActionForm dynaForm = (DynaActionForm) form; // if these were set in the other form of the pge they will be passed through with this one Date fromDate = convertFormDateString(Ibd.FROM_DATE_PARAM, dynaForm); Date toDate = convertFormDateString(Ibd.TO_DATE_PARAM, dynaForm); request.setAttribute(Ibd.FROM_DATE_PARAM, convertFormDateString(fromDate)); request.setAttribute(Ibd.TO_DATE_PARAM, convertFormDateString(toDate)); if (!validate(dynaForm, request)) { return mapping.findForward(INPUT); } ColitisSymptoms colitisSymptoms = new ColitisSymptoms(); colitisSymptoms.setNhsno(getNhsNoForUser(request)); colitisSymptoms.setNumberOfStoolsDaytimeId((Integer) dynaForm.get(Ibd.NUMBER_OF_STOOLS_DAYTIME_PARAM)); colitisSymptoms.setNumberOfStoolsNighttimeId((Integer) dynaForm.get(Ibd.NUMBER_OF_STOOLS_NIGHTTIME_PARAM)); colitisSymptoms.setToiletTimingId((Integer) dynaForm.get(Ibd.TOILET_TIMING_PARAM)); colitisSymptoms.setPresentBloodId((Integer) dynaForm.get(Ibd.PRESENT_BLOOD_PARAM)); colitisSymptoms.setFeelingId((Integer) dynaForm.get(Ibd.FEELING_PARAM)); colitisSymptoms.setComplicationId((Integer) dynaForm.get(Ibd.COMPLICATION_PARAM)); colitisSymptoms.setSymptomDate(convertFormDateString(Ibd.SYMPTOM_DATE_PARAM, dynaForm)); getIbdManager().saveColitis(colitisSymptoms); return mapping.findForward(SUCCESS); } private boolean validate(DynaActionForm form, HttpServletRequest request) { ActionMessages actionErrors = new ActionMessages(); // need a usermapping with nhs no before we can save so check we have this if (getNhsNoForUser(request) == null) { actionErrors.add(Ibd.NHS_NO_PARAM, new ActionMessage(Ibd.NHS_NO_NOT_FOUND)); } if (form.get(Ibd.SYMPTOM_DATE_PARAM) == null || ((String) form.get(Ibd.SYMPTOM_DATE_PARAM)).length() == 0) { actionErrors.add(Ibd.SYMPTOM_DATE_PARAM, new ActionMessage(Ibd.DATE_REQUIRED)); } if (actionErrors.size() > 0) { saveErrors(request, actionErrors); return false; } return true; } }