tasks.py 2.77 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
"""
Celery task for Automatic Verifed Track Cohorting MVP feature.
"""
from django.contrib.auth.models import User

from celery.task import task
from celery.utils.log import get_task_logger

from opaque_keys.edx.keys import CourseKey
from student.models import CourseEnrollment, CourseMode
from openedx.core.djangoapps.course_groups.cohorts import (
12
    get_cohort_by_name, get_cohort, add_user_to_cohort
13 14 15 16 17
)

LOGGER = get_task_logger(__name__)


18
@task(bind=True, default_retry_delay=60, max_retries=2)
19
def sync_cohort_with_mode(self, course_id, user_id, verified_cohort_name, default_cohort_name):
20 21 22 23 24 25 26 27 28
    """
    If the learner's mode does not match their assigned cohort, move the learner into the correct cohort.
    It is assumed that this task is only initiated for courses that are using the
    Automatic Verified Track Cohorting MVP feature. It is also assumed that before
    initiating this task, verification has been done to ensure that the course is
    cohorted and has an appropriately named "verified" cohort.
    """
    course_key = CourseKey.from_string(course_id)
    user = User.objects.get(id=user_id)
29 30 31 32
    try:
        enrollment = CourseEnrollment.get_enrollment(user, course_key)
        # Note that this will enroll the user in the default cohort on initial enrollment.
        # That's good because it will force creation of the default cohort if necessary.
33
        current_cohort = get_cohort(user, course_key)
34

35
        verified_cohort = get_cohort_by_name(course_key, verified_cohort_name)
36

37 38 39
        if enrollment.mode == CourseMode.VERIFIED and (current_cohort.id != verified_cohort.id):
            LOGGER.info(
                "MOVING_TO_VERIFIED: Moving user '%s' to the verified cohort '%s' for course '%s'",
40
                user.id, verified_cohort.name, course_id
41 42 43 44 45 46
            )
            add_user_to_cohort(verified_cohort, user.username)
        elif enrollment.mode != CourseMode.VERIFIED and current_cohort.id == verified_cohort.id:
            default_cohort = get_cohort_by_name(course_key, default_cohort_name)
            LOGGER.info(
                "MOVING_TO_DEFAULT: Moving user '%s' to the default cohort '%s' for course '%s'",
47
                user.id, default_cohort.name, course_id
48 49 50 51 52 53
            )
            add_user_to_cohort(default_cohort, user.username)
        else:
            LOGGER.info(
                "NO_ACTION_NECESSARY: No action necessary for user '%s' in course '%s' and enrollment mode '%s'. "
                "The user is already in cohort '%s'.",
54
                user.id, course_id, enrollment.mode, current_cohort.name
55 56 57 58
            )
    except Exception as exc:
        LOGGER.warning(
            "SYNC_COHORT_WITH_MODE_RETRY: Exception encountered for course '%s' and user '%s': %s",
59
            course_id, user.id, unicode(exc)
60
        )
61
        raise self.retry(exc=exc)