/** * Copyright © 2002 Instituto Superior Técnico * * This file is part of FenixEdu Academic. * * FenixEdu Academic is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * FenixEdu Academic 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with FenixEdu Academic. If not, see <http://www.gnu.org/licenses/>. */ package org.fenixedu.academic.ui.struts.action.student.enrollment; import java.util.List; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.lang.StringUtils; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping; import org.fenixedu.academic.domain.ExecutionSemester; import org.fenixedu.academic.domain.Shift; import org.fenixedu.academic.domain.student.Registration; import org.fenixedu.academic.dto.enrollment.shift.ShiftEnrollmentErrorReport; import org.fenixedu.academic.service.services.enrollment.shift.EnrollStudentInShifts; import org.fenixedu.academic.service.services.enrollment.shift.EnrollStudentInShifts.StudentNotFoundServiceException; import org.fenixedu.academic.service.services.exceptions.FenixServiceException; import org.fenixedu.academic.ui.struts.action.base.FenixAction; import org.fenixedu.bennu.struts.annotations.Forward; import org.fenixedu.bennu.struts.annotations.Forwards; import org.fenixedu.bennu.struts.annotations.Mapping; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import pt.ist.fenixframework.FenixFramework; @Mapping(module = "student", path = "/enrollStudentInShifts", input = "/studentShiftEnrollmentManagerLookup.do?method=proceedToShiftEnrolment", formBean = "studentShiftEnrollmentForm", validate = false, functionality = ShiftStudentEnrollmentManagerDispatchAction.class) @Forwards(@Forward(name = "enrollmentConfirmation", path = "/student/studentShiftEnrollmentManagerLookup.do?method=proceedToShiftEnrolment")) public class EnrollStudentInShiftsAction extends FenixAction { private static final Logger logger = LoggerFactory.getLogger(EnrollStudentInShiftsAction.class); @Override public ActionForward execute(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) { final String shiftId = request.getParameter("shiftId"); if (!StringUtils.isEmpty(request.getParameter("executionCourseID"))) { request.setAttribute("executionCourseID", request.getParameter("executionCourseID")); } try { ShiftEnrollmentErrorReport errorReport = EnrollStudentInShifts.runEnrollStudentInShifts(getRegistration(request), shiftId, getExecutionSemester(request)); if (errorReport.getUnAvailableShifts().size() > 0) { for (final Shift shift : (List<Shift>) errorReport.getUnAvailableShifts()) { if (shift.getLotacao().intValue() == 0) { addActionMessage(request, "error.shift.enrollment.capacityLocked", shift.getNome()); } else if (shift.getLotacao().intValue() < 0) { addActionMessage(request, "message.warning.student.enrolmentClasses.first.year.first.semester"); } else { addActionMessage(request, "error.shift.enrollment.capacityExceded", shift.getNome()); } } } if (errorReport.getUnExistingShifts().size() > 0) { addActionMessage(request, "error.shift.enrollment.nonExistingShift"); } } catch (StudentNotFoundServiceException e) { logger.error(e.getMessage(), e); addActionMessage(request, "error.shift.enrollment.nonExistingStudent"); return mapping.getInputForward(); } catch (FenixServiceException e) { logger.error(e.getMessage(), e); addActionMessage(request, e.getMessage()); return mapping.getInputForward(); } saveMessages(request); return mapping.findForward("enrollmentConfirmation"); } private Registration getRegistration(HttpServletRequest request) { return FenixFramework.getDomainObject(request.getParameter("registrationOID")); } private ExecutionSemester getExecutionSemester(HttpServletRequest request) { return FenixFramework.getDomainObject(request.getParameter("executionSemesterID")); } }