/** * Copyright © 2011 Instituto Superior Técnico * * This file is part of FenixEdu Teacher Credits. * * FenixEdu Teacher Credits 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 Teacher Credits 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 Teacher Credits. If not, see <http://www.gnu.org/licenses/>. */ package pt.ist.fenixedu.teacher.ui.struts.action.credits.departmentMember; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; 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.Teacher; import org.fenixedu.academic.service.services.exceptions.FenixServiceException; import org.fenixedu.bennu.core.domain.User; import org.fenixedu.bennu.core.security.Authenticate; import org.fenixedu.bennu.struts.annotations.Forward; import org.fenixedu.bennu.struts.annotations.Forwards; import org.fenixedu.bennu.struts.annotations.Mapping; import org.fenixedu.bennu.struts.portal.EntryPoint; import org.fenixedu.bennu.struts.portal.StrutsFunctionality; import pt.ist.fenixedu.teacher.domain.credits.util.TeacherCreditsBean; import pt.ist.fenixedu.teacher.domain.teacher.TeacherService; import pt.ist.fenixedu.teacher.ui.struts.action.credits.ViewTeacherCreditsDA; import pt.ist.fenixframework.FenixFramework; @StrutsFunctionality(app = DepartmentMemberTeacherApp.class, path = "credits", titleKey = "link.teacher.credits") @Mapping(module = "departmentMember", path = "/credits") @Forwards(value = { @Forward(name = "showTeacherCredits", path = "/credits/showTeacherCredits.jsp"), @Forward(name = "showPastTeacherCredits", path = "/credits/showPastTeacherCredits.jsp"), @Forward(name = "showAnnualTeacherCredits", path = "/credits/showAnnualTeacherCredits.jsp") }) public class DepartmentMemberViewTeacherCreditsDA extends ViewTeacherCreditsDA { @Override @EntryPoint public ActionForward showTeacherCredits(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws NumberFormatException, FenixServiceException, Exception { final User userView = Authenticate.getUser(); if (userView.getPerson().getTeacher() != null) { TeacherCreditsBean teacherBean = new TeacherCreditsBean(userView.getPerson().getTeacher()); teacherBean.prepareAnnualTeachingCredits(userView); request.setAttribute("teacherBean", teacherBean); } return mapping.findForward("showTeacherCredits"); } public ActionForward lockTeacherCredits(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws NumberFormatException, FenixServiceException, Exception { Teacher teacher = FenixFramework.getDomainObject((String) getFromRequest(request, "teacherOid")); ExecutionSemester executionSemester = FenixFramework.getDomainObject((String) getFromRequest(request, "executionPeriodOid")); TeacherService teacherService = TeacherService.getTeacherService(teacher, executionSemester); teacherService.lockTeacherCredits(); request.setAttribute("teacherOid", teacher.getExternalId()); request.setAttribute("executionYearOid", executionSemester.getExecutionYear().getExternalId()); return viewAnnualTeachingCredits(mapping, form, request, response); } }