Exemple #1
0
 public ExecutionCourseSender(ExecutionCourse executionCourse) {
   super();
   setCourse(Objects.requireNonNull(executionCourse));
   setFromAddress(Sender.getNoreplyMail());
   addReplyTos(new ExecutionCourseReplyTo());
   addReplyTos(new CurrentUserReplyTo());
   setMembers(TeacherGroup.get(executionCourse));
   final String labelECTeachers =
       BundleUtil.getString(
           Bundle.SITE,
           "label.org.fenixedu.academic.domain.accessControl.ExecutionCourseTeachersGroupWithName",
           new String[] {executionCourse.getNome()});
   final String labelECStudents =
       BundleUtil.getString(
           Bundle.SITE,
           "label.org.fenixedu.academic.domain.accessControl.ExecutionCourseStudentsGroupWithName",
           new String[] {executionCourse.getNome()});
   final String labelECResponsibleTeachers =
       BundleUtil.getString(
           Bundle.SITE,
           "label.org.fenixedu.academic.domain.accessControl.ExecutionCourseResponsibleTeachersGroupWithName",
           new String[] {executionCourse.getNome()});
   // fixed recipients
   addRecipients(new Recipient(labelECTeachers, TeacherGroup.get(executionCourse)));
   addRecipients(new Recipient(labelECStudents, StudentGroup.get(executionCourse)));
   addRecipients(
       new Recipient(
           labelECResponsibleTeachers,
           TeacherResponsibleOfExecutionCourseGroup.get(executionCourse)));
   setFromName(createFromName());
 }
  /**
   * Checks if person belongs to degree. The unit path format should be: IST.<DegreeAcronym>
   *
   * <p>Accepted roles: TEACHER and STUDENT
   *
   * @param person
   * @param groupCheckQuery
   * @return
   * @throws ExcepcaoPersistencia
   * @throws FenixServiceException
   */
  private static Boolean checkDegreeGroup(Person person, GroupCheckQuery groupCheckQuery)
      throws NonExistingServiceException {
    String[] unitAcronyms = groupCheckQuery.unitFullPath.split("\\.");

    if (!groupCheckQuery.roleType.equals("TEACHER")
        && !groupCheckQuery.roleType.equals("STUDENT")) {
      throw new NonExistingServiceException();
    }

    Degree degree = getDegree(unitAcronyms);

    Group group;
    if (groupCheckQuery.roleType.equals("STUDENT")) {
      group = StudentGroup.get(degree, null);
    } else {
      group = TeacherGroup.get(degree);
    }

    return group.isMember(person.getUser());
  }
  /**
   * Checks if person belongs to curricular course. The unit path format should be:
   * IST{.<SubUnitAcronym>}.<DegreeAcronym>.<CurricularCourseAcronym>
   *
   * <p>Accepted roles: STUDENT and TEACHER
   *
   * @param person
   * @param groupCheckQuery
   * @return
   * @throws NonExistingServiceException
   * @throws ExcepcaoPersistencia
   */
  private static Boolean checkExecutionCourseGroup(Person person, GroupCheckQuery groupCheckQuery)
      throws NonExistingServiceException {
    String[] unitAcronyms = groupCheckQuery.unitFullPath.split("\\.");

    if (!groupCheckQuery.roleType.equals("TEACHER")
        && !groupCheckQuery.roleType.equals("STUDENT")) {
      throw new NonExistingServiceException();
    }

    Degree degree = getDegree(unitAcronyms);
    for (DegreeCurricularPlan degreeCurricularPlan : degree.getActiveDegreeCurricularPlans()) {

      ExecutionSemester executionSemester =
          getExecutionPeriod(groupCheckQuery.year, groupCheckQuery.semester);

      CurricularCourse curricularCourse =
          degreeCurricularPlan.getCurricularCourseByAcronym(unitAcronyms[4]);

      if (curricularCourse != null) {
        List<ExecutionCourse> executionCourses =
            curricularCourse.getExecutionCoursesByExecutionPeriod(executionSemester);

        for (ExecutionCourse executionCourse : executionCourses) {
          Group group;

          if (groupCheckQuery.roleType.equals("TEACHER")) {
            group = TeacherGroup.get(executionCourse);
          } else {
            group = StudentGroup.get(executionCourse);
          }

          if (group.isMember(person.getUser())) {
            return true;
          }
        }
      }
    }

    return false;
  }