예제 #1
0
    def has_full_access_role_in_masquerade(cls, user, course_key, course_masquerade):
        """
        When masquerading, the course duration limits will never trigger the course to expire, redirecting the user.
        The roles of the masquerade user are still used to determine whether the course duration limit banner displays.
        Another banner also displays if the course is expired for the masquerade user.
        Both banners will appear if the masquerade user does not have any of the following roles:
        Staff, Instructor, Beta Tester, Forum Community TA, Forum Group Moderator, Forum Moderator, Forum Administrator
        """
        masquerade_role = get_masquerade_role(user, course_key)
        verified_mode_id = settings.COURSE_ENROLLMENT_MODES.get(CourseMode.VERIFIED, {}).get('id')
        # Masquerading users can select the the role of a verified users without selecting a specific user
        is_verified = (course_masquerade.user_partition_id == ENROLLMENT_TRACK_PARTITION_ID
                       and course_masquerade.group_id == verified_mode_id)
        # Masquerading users can select the role of staff without selecting a specific user
        is_staff = masquerade_role == 'staff'
        # Masquerading users can select other full access roles for which content type gating is disabled
        is_full_access = (course_masquerade.user_partition_id == CONTENT_GATING_PARTITION_ID
                          and course_masquerade.group_id == CONTENT_TYPE_GATE_GROUP_IDS['full_access'])
        # When masquerading as a specific user, we can check that user's staff roles as we would with a normal user
        is_staff_role = False
        if course_masquerade.user_name:
            is_staff_role = has_staff_roles(user, course_key)

        if is_verified or is_full_access or is_staff or is_staff_role:
            return True
        return False
예제 #2
0
    def has_full_access_role_in_masquerade(cls, user, course_key, course_masquerade):
        """
        When masquerading, the course duration limits will never trigger the course to expire, redirecting the user.
        The roles of the masquerade user are still used to determine whether the course duration limit banner displays.
        Another banner also displays if the course is expired for the masquerade user.
        Both banners will appear if the masquerade user does not have any of the following roles:
        Staff, Instructor, Beta Tester, Forum Community TA, Forum Group Moderator, Forum Moderator, Forum Administrator
        """
        masquerade_role = get_masquerade_role(user, course_key)
        verified_mode_id = settings.COURSE_ENROLLMENT_MODES.get(CourseMode.VERIFIED, {}).get('id')
        # Masquerading users can select the the role of a verified users without selecting a specific user
        is_verified = (course_masquerade.user_partition_id == ENROLLMENT_TRACK_PARTITION_ID
                       and course_masquerade.group_id == verified_mode_id)
        # Masquerading users can select the role of staff without selecting a specific user
        is_staff = masquerade_role == 'staff'
        # Masquerading users can select other full access roles for which content type gating is disabled
        is_full_access = (course_masquerade.user_partition_id == CONTENT_GATING_PARTITION_ID
                          and course_masquerade.group_id == CONTENT_TYPE_GATE_GROUP_IDS['full_access'])
        # When masquerading as a specific user, we can check that user's staff roles as we would with a normal user
        is_staff_role = False
        if course_masquerade.user_name:
            is_staff_role = has_staff_roles(user, course_key)

        if is_verified or is_full_access or is_staff or is_staff_role:
            return True
        return False
예제 #3
0
def get_user_role(user, course_key):
    """
    Return corresponding string if user has staff, instructor or student
    course role in LMS.
    """
    role = get_masquerade_role(user, course_key)
    if role:
        return role
    elif has_access(user, 'instructor', course_key):
        return 'instructor'
    elif has_access(user, 'staff', course_key):
        return 'staff'
    else:
        return 'student'
예제 #4
0
    def enabled_for_enrollment(cls, enrollment=None, user=None, course_key=None):
        """
        Return whether Course Duration Limits are enabled for this enrollment.

        Course Duration Limits are enabled for an enrollment if they are enabled for
        the course being enrolled in (either specifically, or via a containing context,
        such as the org, site, or globally), and if the configuration is specified to be
        ``enabled_as_of`` before the enrollment was created.

        Only one of enrollment and (user, course_key) may be specified at a time.

        Arguments:
            enrollment: The enrollment being queried.
            user: The user being queried.
            course_key: The CourseKey of the course being queried.
        """
        if CONTENT_TYPE_GATING_FLAG.is_enabled():
            return True

        if enrollment is not None and (user is not None or course_key is not None):
            raise ValueError('Specify enrollment or user/course_key, but not both')

        if enrollment is None and (user is None or course_key is None):
            raise ValueError('Both user and course_key must be specified if no enrollment is provided')

        if enrollment is None and user is None and course_key is None:
            raise ValueError('At least one of enrollment or user and course_key must be specified')

        if course_key is None:
            course_key = enrollment.course_id

        if enrollment is None:
            enrollment = CourseEnrollment.get_enrollment(user, course_key)

        # if the user is has a role of staff, instructor or beta tester their access should not expire
        if user is None and enrollment is not None:
            user = enrollment.user

        if user:
            course_masquerade = get_course_masquerade(user, course_key)
            if course_masquerade:
                verified_mode_id = settings.COURSE_ENROLLMENT_MODES.get(CourseMode.VERIFIED, {}).get('id')
                is_verified = (course_masquerade.user_partition_id == ENROLLMENT_TRACK_PARTITION_ID
                               and course_masquerade.group_id == verified_mode_id)
                is_full_access = (course_masquerade.user_partition_id == CONTENT_GATING_PARTITION_ID
                                  and course_masquerade.group_id == CONTENT_TYPE_GATE_GROUP_IDS['full_access'])
                is_staff = get_masquerade_role(user, course_key) == 'staff'
                if is_verified or is_full_access or is_staff:
                    return False
            else:
                staff_role = CourseStaffRole(course_key).has_user(user)
                instructor_role = CourseInstructorRole(course_key).has_user(user)
                beta_tester_role = CourseBetaTesterRole(course_key).has_user(user)

                if staff_role or instructor_role or beta_tester_role:
                    return False

        # enrollment might be None if the user isn't enrolled. In that case,
        # return enablement as if the user enrolled today
        if enrollment is None:
            return cls.enabled_for_course(course_key=course_key, target_datetime=timezone.now())
        else:
            # TODO: clean up as part of REV-100
            experiment_data_holdback_key = EXPERIMENT_DATA_HOLDBACK_KEY.format(user)
            is_in_holdback = False
            no_masquerade = get_course_masquerade(user, course_key) is None
            student_masquerade = is_masquerading_as_specific_student(user, course_key)
            if user and (no_masquerade or student_masquerade):
                try:
                    holdback_value = ExperimentData.objects.get(
                        user=user,
                        experiment_id=EXPERIMENT_ID,
                        key=experiment_data_holdback_key,
                    ).value
                    is_in_holdback = holdback_value == 'True'
                except ExperimentData.DoesNotExist:
                    pass
            if is_in_holdback:
                return False
            current_config = cls.current(course_key=enrollment.course_id)
            return current_config.enabled_as_of_datetime(target_datetime=enrollment.created)
예제 #5
0
    def enabled_for_enrollment(cls,
                               enrollment=None,
                               user=None,
                               course_key=None):
        """
        Return whether Course Duration Limits are enabled for this enrollment.

        Course Duration Limits are enabled for an enrollment if they are enabled for
        the course being enrolled in (either specifically, or via a containing context,
        such as the org, site, or globally), and if the configuration is specified to be
        ``enabled_as_of`` before the enrollment was created.

        Only one of enrollment and (user, course_key) may be specified at a time.

        Arguments:
            enrollment: The enrollment being queried.
            user: The user being queried.
            course_key: The CourseKey of the course being queried.
        """
        if CONTENT_TYPE_GATING_FLAG.is_enabled():
            return True

        if enrollment is not None and (user is not None
                                       or course_key is not None):
            raise ValueError(
                'Specify enrollment or user/course_key, but not both')

        if enrollment is None and (user is None or course_key is None):
            raise ValueError(
                'Both user and course_key must be specified if no enrollment is provided'
            )

        if enrollment is None and user is None and course_key is None:
            raise ValueError(
                'At least one of enrollment or user and course_key must be specified'
            )

        if course_key is None:
            course_key = enrollment.course_id

        if enrollment is None:
            enrollment = CourseEnrollment.get_enrollment(user, course_key)

        # if the user is has a role of staff, instructor or beta tester their access should not expire
        if user is None and enrollment is not None:
            user = enrollment.user

        if user:
            course_masquerade = get_course_masquerade(user, course_key)
            if course_masquerade:
                verified_mode_id = settings.COURSE_ENROLLMENT_MODES.get(
                    CourseMode.VERIFIED, {}).get('id')
                is_verified = (course_masquerade.user_partition_id
                               == ENROLLMENT_TRACK_PARTITION_ID and
                               course_masquerade.group_id == verified_mode_id)
                is_full_access = (
                    course_masquerade.user_partition_id
                    == CONTENT_GATING_PARTITION_ID
                    and course_masquerade.group_id
                    == CONTENT_TYPE_GATE_GROUP_IDS['full_access'])
                is_staff = get_masquerade_role(user, course_key) == 'staff'
                if is_verified or is_full_access or is_staff:
                    return False
            else:
                staff_role = CourseStaffRole(course_key).has_user(user)
                instructor_role = CourseInstructorRole(course_key).has_user(
                    user)
                beta_tester_role = CourseBetaTesterRole(course_key).has_user(
                    user)

                if staff_role or instructor_role or beta_tester_role:
                    return False

        # enrollment might be None if the user isn't enrolled. In that case,
        # return enablement as if the user enrolled today
        if enrollment is None:
            return cls.enabled_for_course(course_key=course_key,
                                          target_datetime=timezone.now())
        else:
            # TODO: clean up as part of REV-100
            experiment_data_holdback_key = EXPERIMENT_DATA_HOLDBACK_KEY.format(
                user)
            is_in_holdback = False
            no_masquerade = get_course_masquerade(user, course_key) is None
            student_masquerade = is_masquerading_as_specific_student(
                user, course_key)
            if user and (no_masquerade or student_masquerade):
                try:
                    holdback_value = ExperimentData.objects.get(
                        user=user,
                        experiment_id=EXPERIMENT_ID,
                        key=experiment_data_holdback_key,
                    ).value
                    is_in_holdback = holdback_value == 'True'
                except ExperimentData.DoesNotExist:
                    pass
            if is_in_holdback:
                return False
            current_config = cls.current(course_key=enrollment.course_id)
            return current_config.enabled_as_of_datetime(
                target_datetime=enrollment.created)