/** * 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.domain.period; import org.fenixedu.academic.domain.ExecutionInterval; import org.fenixedu.academic.domain.ExecutionSemester; import org.fenixedu.academic.domain.candidacyProcess.standalone.StandaloneCandidacyProcess; import org.fenixedu.academic.domain.exceptions.DomainException; import org.joda.time.DateTime; public class StandaloneCandidacyPeriod extends StandaloneCandidacyPeriod_Base { private StandaloneCandidacyPeriod() { super(); } public StandaloneCandidacyPeriod(final StandaloneCandidacyProcess candidacyProcess, final ExecutionSemester executionSemester, final DateTime start, final DateTime end) { this(); init(candidacyProcess, executionSemester, start, end); } private void init(final StandaloneCandidacyProcess candidacyProcess, final ExecutionInterval executionInterval, final DateTime start, final DateTime end) { checkParameters(candidacyProcess); checkIfCanCreate(executionInterval, start, end); super.init(executionInterval, start, end); addCandidacyProcesses(candidacyProcess); } private void checkParameters(final StandaloneCandidacyProcess candidacyProcess) { if (candidacyProcess == null) { throw new DomainException("error.StandaloneCandidacyProcess.invalid.candidacy.process"); } } private void checkIfCanCreate(final ExecutionInterval executionInterval, final DateTime start, final DateTime end) { for (final StandaloneCandidacyPeriod candidacyPeriod : executionInterval.getStandaloneCandidacyPeriods()) { if (candidacyPeriod.intercept(start, end)) { throw new DomainException("error.StandaloneCandidacyPeriod.interception", executionInterval.getName(), start.toString("dd/MM/yyyy HH:mm"), end.toString("dd/MM/yyyy HH:mm")); } } } public StandaloneCandidacyProcess getStandaloneCandidacyProcess() { return (StandaloneCandidacyProcess) (!getCandidacyProcessesSet().isEmpty() ? getCandidacyProcessesSet().iterator().next() : null); } @Override public ExecutionSemester getExecutionInterval() { return (ExecutionSemester) super.getExecutionInterval(); } @Override public String getPresentationName() { return getStart().toString("dd/MM/yyyy") + " - " + getEnd().toString("dd/MM/yyyy"); } @Override public void edit(final DateTime start, final DateTime end) { checkDates(start, end); checkIfCandEdit(start, end); super.setStart(start); super.setEnd(end); } private void checkIfCandEdit(DateTime start, DateTime end) { for (final StandaloneCandidacyPeriod StandaloneCandidacyPeriod : getExecutionInterval().getStandaloneCandidacyPeriods()) { if (StandaloneCandidacyPeriod != this && StandaloneCandidacyPeriod.intercept(start, end)) { throw new DomainException("error.StandaloneCandidacyPeriod.interception", getExecutionInterval().getName(), start.toString("dd/MM/yyyy HH:mm"), end.toString("dd/MM/yyyy HH:mm")); } } } }