/** * Copyright © ${project.inceptionYear} Instituto Superior Técnico * * This file is part of Fenix IST. * * Fenix IST 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. * * Fenix IST 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 Fenix IST. If not, see <http://www.gnu.org/licenses/>. */ package pt.ist.fenix.ui.struts.action.departmentAdmOffice; import java.io.OutputStream; import java.util.Set; 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.Degree; import org.fenixedu.academic.domain.DegreeCurricularPlan; import org.fenixedu.academic.domain.Department; import org.fenixedu.academic.domain.ExecutionYear; import org.fenixedu.academic.domain.Person; import org.fenixedu.academic.domain.StudentCurricularPlan; import org.fenixedu.academic.domain.student.Registration; import org.fenixedu.academic.domain.student.SearchStudentsWithEnrolmentsByDepartment; import org.fenixedu.academic.domain.student.Student; import org.fenixedu.academic.ui.struts.action.base.FenixDispatchAction; import org.fenixedu.academic.util.Bundle; import org.fenixedu.bennu.core.i18n.BundleUtil; 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.utl.ist.fenix.tools.util.excel.Spreadsheet; import pt.utl.ist.fenix.tools.util.excel.Spreadsheet.Row; @StrutsFunctionality(app = DepartmentAdmOfficeStudentsApp.class, path = "search-students", titleKey = "link.students.search") @Mapping(module = "departmentAdmOffice", path = "/searchStudents") @Forwards(@Forward(name = "searchStudents", path = "/departmentAdmOffice/searchStudents.jsp")) public class SearchStudentsDA extends FenixDispatchAction { @EntryPoint public ActionForward search(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) throws Exception { SearchStudentsWithEnrolmentsByDepartment searchStudentsWithEnrolmentsByDepartment = getRenderedObject(); if (searchStudentsWithEnrolmentsByDepartment == null) { final Department department = getDepartment(request); searchStudentsWithEnrolmentsByDepartment = new SearchStudentsWithEnrolmentsByDepartment(department); } request.setAttribute("searchStudentsWithEnrolmentsByDepartment", searchStudentsWithEnrolmentsByDepartment); return mapping.findForward("searchStudents"); } private Department getDepartment(final HttpServletRequest request) { return getUserView(request).getPerson().getEmployee().getCurrentDepartmentWorkingPlace(); } public ActionForward download(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) throws Exception { response.setContentType("text/plain"); response.setHeader("Content-disposition", "attachment; filename=students.xls"); final SearchStudentsWithEnrolmentsByDepartment searchStudentsWithEnrolmentsByDepartment = getRenderedObject(); final Set<StudentCurricularPlan> studentCurricularPlans = searchStudentsWithEnrolmentsByDepartment.search(); final ExecutionYear executionYear = searchStudentsWithEnrolmentsByDepartment.getExecutionYear(); final Spreadsheet spreadsheet = getSpreadsheet(executionYear); for (final StudentCurricularPlan studentCurricularPlan : studentCurricularPlans) { final DegreeCurricularPlan degreeCurricularPlan = studentCurricularPlan.getDegreeCurricularPlan(); final Degree degree = degreeCurricularPlan.getDegree(); final Registration registration = studentCurricularPlan.getStudent(); final Student student = registration.getStudent(); final Person person = student.getPerson(); final Row row = spreadsheet.addRow(); row.setCell(degree.getSigla()); row.setCell(student.getNumber().toString()); row.setCell(person.getName()); row.setCell(person.getEmail()); row.setCell(Integer.toString(registration.getCurricularYear(executionYear))); } final OutputStream outputStream = response.getOutputStream(); spreadsheet.exportToXLSSheet(outputStream); outputStream.close(); return null; } private Spreadsheet getSpreadsheet(final ExecutionYear executionYear) { final Spreadsheet spreadsheet = new Spreadsheet(BundleUtil.getString(Bundle.APPLICATION, "label.student.for.academic.year") + " " + executionYear.getYear().replace('/', ' ')); spreadsheet.setHeader(BundleUtil.getString(Bundle.APPLICATION, "label.degree.code")); spreadsheet.setHeader(BundleUtil.getString(Bundle.APPLICATION, "label.student.number")); spreadsheet.setHeader(BundleUtil.getString(Bundle.APPLICATION, "label.person.name")); spreadsheet.setHeader(BundleUtil.getString(Bundle.APPLICATION, "label.person.email")); spreadsheet.setHeader(BundleUtil.getString(Bundle.APPLICATION, "label.student.curricular.year")); return spreadsheet; } }