/** * 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.service.services.resourceAllocationManager; import static org.fenixedu.academic.predicate.AccessControl.check; import java.util.HashSet; import java.util.Set; import org.fenixedu.academic.domain.Installation; import org.fenixedu.academic.domain.Person; import org.fenixedu.academic.domain.Shift; import org.fenixedu.academic.domain.student.Registration; import org.fenixedu.academic.domain.util.email.ConcreteReplyTo; import org.fenixedu.academic.domain.util.email.Message; import org.fenixedu.academic.domain.util.email.Recipient; import org.fenixedu.academic.domain.util.email.Sender; import org.fenixedu.academic.predicate.RolePredicates; import org.fenixedu.academic.service.services.exceptions.FenixServiceException; import org.fenixedu.academic.util.Bundle; import org.fenixedu.bennu.core.domain.Bennu; import org.fenixedu.bennu.core.domain.User; import org.fenixedu.bennu.core.i18n.BundleUtil; import pt.ist.fenixframework.Atomic; import pt.ist.fenixframework.FenixFramework; public class ChangeStudentsShift { @Atomic public static void run(User userView, String oldShiftId, String newShiftId, final Set<Registration> registrations) throws FenixServiceException { check(RolePredicates.RESOURCE_ALLOCATION_MANAGER_PREDICATE); if (newShiftId != null && newShiftId.isEmpty()) { return; } final Shift oldShift = FenixFramework.getDomainObject(oldShiftId); final Shift newShift = FenixFramework.getDomainObject(newShiftId); if (newShift != null) { if (oldShift == null || !oldShift.getTypes().containsAll(newShift.getTypes()) || !newShift.getTypes().containsAll(oldShift.getTypes()) || !oldShift.getExecutionCourse().equals(newShift.getExecutionCourse())) { throw new UnableToTransferStudentsException(); } } final Set<Person> recievers = new HashSet<Person>(); oldShift.getStudentsSet().removeAll(registrations); if (newShift != null) { newShift.getStudentsSet().addAll(registrations); } for (final Registration registration : registrations) { recievers.add(registration.getPerson()); } final String subject = getString("changeStudentsShift.email.subject"); final String groupName = getString("changeStudentsShift.email.groupName", oldShift.getNome()); final String messagePrefix = getString("changeStudentsShift.email.body", oldShift.getNome()); final String messagePosfix = newShift == null ? getString("changeStudentsShift.email.body.notNewShift") : getString( "changeStudentsShift.email.body.newShift", oldShift.getNome()); final String message = messagePrefix + messagePosfix; Recipient recipient = new Recipient(groupName, Person.convertToUserGroup(recievers)); Sender sender = Bennu.getInstance().getSystemSender(); String gopEmailAddress = Installation.getInstance().getInstituitionalEmailAddress("gop"); new Message(sender, new ConcreteReplyTo(gopEmailAddress).asCollection(), recipient.asCollection(), subject, message, ""); } private static String getString(final String key, final String... args) { return BundleUtil.getString(Bundle.RESOURCE_MANAGER, key, args); } public static class UnableToTransferStudentsException extends FenixServiceException { } }