/** * 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; 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.domain.exceptions.DomainException; import org.fenixedu.academic.domain.person.RoleType; import org.fenixedu.academic.service.services.exceptions.FenixServiceException; import org.fenixedu.academic.ui.struts.action.base.FenixDispatchAction; 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.contracts.domain.organizationalStructure.PersonFunction; import pt.ist.fenixedu.teacher.domain.credits.util.DepartmentCreditsBean; import pt.ist.fenixedu.teacher.domain.credits.util.PersonFunctionBean; import pt.ist.fenixedu.teacher.ui.struts.action.DepartmentCreditsManagerApp; import pt.ist.fenixframework.FenixFramework; @StrutsFunctionality(app = DepartmentCreditsManagerApp.class, path = "person-functions", titleKey = "label.managementFunctionNote") @Mapping(path = "/managePersonFunctionsShared") @Forwards(value = { @Forward(name = "addPersonFunctionShared", path = "/credits/personFunction/addPersonFunctionShared.jsp"), @Forward(name = "addPersonFunction", path = "/credits/personFunction/addPersonFunction.jsp"), @Forward(name = "viewAnnualTeachingCredits", path = "/credits.do?method=viewAnnualTeachingCredits"), @Forward(name = "showDepartmentPersonFunctions", path = "/credits/showDepartmentPersonFunctions.jsp") }) public class ManagePersonFunctionsDA extends FenixDispatchAction { @EntryPoint public ActionForward showDepartmentPersonFunctions(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws NumberFormatException, FenixServiceException { DepartmentCreditsBean departmentCreditsBean = getRenderedObject(); if (departmentCreditsBean == null) { departmentCreditsBean = new DepartmentCreditsBean(); } request.setAttribute("departmentCreditsBean", departmentCreditsBean); request.setAttribute("canViewCredits", String.valueOf(RoleType.SCIENTIFIC_COUNCIL.isMember(Authenticate.getUser()))); return mapping.findForward("showDepartmentPersonFunctions"); } public ActionForward prepareToAddPersonFunctionShared(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws NumberFormatException, FenixServiceException, Exception { PersonFunctionBean personFunctionBean = getRenderedObject(); if (personFunctionBean == null) { Teacher teacher = FenixFramework.getDomainObject((String) getFromRequest(request, "teacherOid")); ExecutionSemester executionSemester = FenixFramework.getDomainObject((String) getFromRequest(request, "executionPeriodOid")); personFunctionBean = new PersonFunctionBean(teacher, executionSemester); } request.setAttribute("personFunctionBean", personFunctionBean); return mapping.findForward("addPersonFunctionShared"); } public ActionForward prepareToEditPersonFunctionShared(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws NumberFormatException, FenixServiceException, Exception { PersonFunctionBean personFunctionBean = getRenderedObject(); if (personFunctionBean == null) { PersonFunction personFunction = FenixFramework.getDomainObject((String) getFromRequest(request, "personFunctionOid")); personFunctionBean = new PersonFunctionBean(personFunction); } request.setAttribute("personFunctionBean", personFunctionBean); return mapping.findForward("addPersonFunctionShared"); } public ActionForward editPersonFunctionShared(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws NumberFormatException, FenixServiceException, Exception { PersonFunctionBean personFunctionBean = getRenderedObject(); try { personFunctionBean.createOrEditPersonFunction(); } catch (DomainException e) { addActionMessage(request, e.getMessage()); } request.setAttribute("personFunctionBean", personFunctionBean); return mapping.findForward("addPersonFunctionShared"); } public ActionForward deletePersonFunctionShared(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws NumberFormatException, FenixServiceException, Exception { PersonFunction personFunction = FenixFramework.getDomainObject((String) getFromRequest(request, "personFunctionOid")); PersonFunctionBean personFunctionBean = new PersonFunctionBean(personFunction); request.setAttribute("teacherOid", personFunction.getPerson().getTeacher().getExternalId()); request.setAttribute("executionYearOid", getFromRequest(request, "executionYearOid")); if (personFunction != null) { personFunctionBean.deletePersonFunction(); } return mapping.findForward("viewAnnualTeachingCredits"); } public ActionForward prepareToAddPersonFunction(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws NumberFormatException, FenixServiceException, Exception { PersonFunctionBean personFunctionBean = getRenderedObject(); if (personFunctionBean == null) { Teacher teacher = FenixFramework.getDomainObject((String) getFromRequest(request, "teacherOid")); ExecutionSemester executionSemester = FenixFramework.getDomainObject((String) getFromRequest(request, "executionPeriodOid")); personFunctionBean = new PersonFunctionBean(teacher, executionSemester); } request.setAttribute("personFunctionBean", personFunctionBean); return mapping.findForward("addPersonFunction"); } public ActionForward prepareToEditPersonFunction(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws NumberFormatException, FenixServiceException, Exception { PersonFunction personFunction = FenixFramework.getDomainObject((String) getFromRequest(request, "personFunctionOid")); ExecutionSemester executionSemester = FenixFramework.getDomainObject((String) getFromRequest(request, "executionPeriodOid")); request.setAttribute("personFunctionBean", new PersonFunctionBean(personFunction, executionSemester)); return mapping.findForward("addPersonFunction"); } public ActionForward editPersonFunction(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws NumberFormatException, FenixServiceException, Exception { PersonFunctionBean personFunctionBean = getRenderedObject(); try { personFunctionBean.createOrEditPersonFunction(); } catch (DomainException e) { addActionMessage(request, e.getMessage()); request.setAttribute("personFunctionBean", personFunctionBean); return mapping.findForward("addPersonFunction"); } request.setAttribute("teacherOid", personFunctionBean.getTeacher().getExternalId()); request.setAttribute("executionYearOid", personFunctionBean.getExecutionSemester().getExecutionYear().getExternalId()); return mapping.findForward("viewAnnualTeachingCredits"); } }