enrollment.py 19.7 KB
Newer Older
1 2 3 4 5 6
"""
Enrollment operations for use by instructor APIs.

Does not include any access control, be sure to check access before calling.
"""

7
import json
8
import logging
9

10
from datetime import datetime
11
from django.contrib.auth.models import User
12
from django.conf import settings
13
from django.core.mail import send_mail
14
from django.core.urlresolvers import reverse
15
from django.utils.translation import override as override_language
16
from eventtracking import tracker
17 18 19 20 21
import pytz

from course_modes.models import CourseMode
from courseware.models import StudentModule
from edxmako.shortcuts import render_to_string
22
from lms.djangoapps.grades.signals.signals import PROBLEM_RAW_SCORE_CHANGED
23 24
from openedx.core.djangoapps.lang_pref import LANGUAGE_KEY
from openedx.core.djangoapps.site_configuration import helpers as configuration_helpers
25
from openedx.core.djangoapps.user_api.models import UserPreference
26
from submissions import api as sub_api  # installed from the edx-submissions repository
27 28 29
from xmodule.modulestore.django import modulestore
from xmodule.modulestore.exceptions import ItemNotFoundError

30 31 32 33 34 35 36 37 38
from course_modes.models import CourseMode
from courseware.models import StudentModule
from edxmako.shortcuts import render_to_string
from student.models import CourseEnrollment, CourseEnrollmentAllowed, anonymous_id_for_user
from track.event_transaction_utils import (
    create_new_event_transaction_id,
    set_event_transaction_type,
    get_event_transaction_id
)
39 40

log = logging.getLogger(__name__)
41

42

43 44 45 46
class EmailEnrollmentState(object):
    """ Store the complete enrollment state of an email in a class """
    def __init__(self, course_id, email):
        exists_user = User.objects.filter(email=email).exists()
47 48
        if exists_user:
            user = User.objects.get(email=email)
49 50 51
            mode, is_active = CourseEnrollment.enrollment_mode_for_user(user, course_id)
            # is_active is `None` if the user is not enrolled in the course
            exists_ce = is_active is not None and is_active
52
            full_name = user.profile.name
53
        else:
54
            mode = None
55
            exists_ce = False
56
            full_name = None
57
        ceas = CourseEnrollmentAllowed.objects.filter(course_id=course_id, email=email).all()
58
        exists_allowed = ceas.exists()
59 60 61 62 63 64
        state_auto_enroll = exists_allowed and ceas[0].auto_enroll

        self.user = exists_user
        self.enrollment = exists_ce
        self.allowed = exists_allowed
        self.auto_enroll = bool(state_auto_enroll)
65
        self.full_name = full_name
66
        self.mode = mode
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93

    def __repr__(self):
        return "{}(user={}, enrollment={}, allowed={}, auto_enroll={})".format(
            self.__class__.__name__,
            self.user,
            self.enrollment,
            self.allowed,
            self.auto_enroll,
        )

    def to_dict(self):
        """
        example: {
            'user': False,
            'enrollment': False,
            'allowed': True,
            'auto_enroll': True,
        }
        """
        return {
            'user': self.user,
            'enrollment': self.enrollment,
            'allowed': self.allowed,
            'auto_enroll': self.auto_enroll,
        }


94 95 96 97 98
def get_user_email_language(user):
    """
    Return the language most appropriate for writing emails to user. Returns
    None if the preference has not been set, or if the user does not exist.
    """
99 100 101
    # Calling UserPreference directly instead of get_user_preference because the user requesting the
    # information is not "user" and also may not have is_staff access.
    return UserPreference.get_value(user, LANGUAGE_KEY)
102 103 104


def enroll_email(course_id, student_email, auto_enroll=False, email_students=False, email_params=None, language=None):
105
    """
106
    Enroll a student by email.
107

108 109 110 111
    `student_email` is student's emails e.g. "foo@bar.com"
    `auto_enroll` determines what is put in CourseEnrollmentAllowed.auto_enroll
        if auto_enroll is set, then when the email registers, they will be
        enrolled in the course automatically.
112 113
    `email_students` determines if student should be notified of action by email.
    `email_params` parameters used while parsing email templates (a `dict`).
114
    `language` is the language used to render the email.
115

116 117
    returns two EmailEnrollmentState's
        representing state before and after the action.
118
    """
119
    previous_state = EmailEnrollmentState(course_id, student_email)
120
    enrollment_obj = None
121
    if previous_state.user:
122 123
        # if the student is currently unenrolled, don't enroll them in their
        # previous mode
124 125 126 127 128 129 130 131

        # for now, White Labels use 'shoppingcart' which is based on the
        # "honor" course_mode. Given the change to use "audit" as the default
        # course_mode in Open edX, we need to be backwards compatible with
        # how White Labels approach enrollment modes.
        if CourseMode.is_white_label(course_id):
            course_mode = CourseMode.DEFAULT_SHOPPINGCART_MODE_SLUG
        else:
132
            course_mode = None
133

134 135 136
        if previous_state.enrollment:
            course_mode = previous_state.mode

137
        enrollment_obj = CourseEnrollment.enroll_by_email(student_email, course_id, course_mode)
138 139 140 141
        if email_students:
            email_params['message'] = 'enrolled_enroll'
            email_params['email_address'] = student_email
            email_params['full_name'] = previous_state.full_name
142
            send_mail_to_student(student_email, email_params, language=language)
143 144 145 146
    else:
        cea, _ = CourseEnrollmentAllowed.objects.get_or_create(course_id=course_id, email=student_email)
        cea.auto_enroll = auto_enroll
        cea.save()
147 148 149
        if email_students:
            email_params['message'] = 'allowed_enroll'
            email_params['email_address'] = student_email
150
            send_mail_to_student(student_email, email_params, language=language)
151

152 153
    after_state = EmailEnrollmentState(course_id, student_email)

154
    return previous_state, after_state, enrollment_obj
155 156


157
def unenroll_email(course_id, student_email, email_students=False, email_params=None, language=None):
158
    """
159
    Unenroll a student by email.
160

161
    `student_email` is student's emails e.g. "foo@bar.com"
162 163
    `email_students` determines if student should be notified of action by email.
    `email_params` parameters used while parsing email templates (a `dict`).
164
    `language` is the language used to render the email.
165

166 167
    returns two EmailEnrollmentState's
        representing state before and after the action.
168
    """
169 170
    previous_state = EmailEnrollmentState(course_id, student_email)
    if previous_state.enrollment:
171
        CourseEnrollment.unenroll_by_email(student_email, course_id)
172 173 174 175
        if email_students:
            email_params['message'] = 'enrolled_unenroll'
            email_params['email_address'] = student_email
            email_params['full_name'] = previous_state.full_name
176
            send_mail_to_student(student_email, email_params, language=language)
177 178 179

    if previous_state.allowed:
        CourseEnrollmentAllowed.objects.get(course_id=course_id, email=student_email).delete()
180 181 182 183
        if email_students:
            email_params['message'] = 'allowed_unenroll'
            email_params['email_address'] = student_email
            # Since no User object exists for this student there is no "full_name" available.
184
            send_mail_to_student(student_email, email_params, language=language)
185 186

    after_state = EmailEnrollmentState(course_id, student_email)
187

188
    return previous_state, after_state
189 190


191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
def send_beta_role_email(action, user, email_params):
    """
    Send an email to a user added or removed as a beta tester.

    `action` is one of 'add' or 'remove'
    `user` is the User affected
    `email_params` parameters used while parsing email templates (a `dict`).
    """
    if action == 'add':
        email_params['message'] = 'add_beta_tester'
        email_params['email_address'] = user.email
        email_params['full_name'] = user.profile.name

    elif action == 'remove':
        email_params['message'] = 'remove_beta_tester'
        email_params['email_address'] = user.email
        email_params['full_name'] = user.profile.name

    else:
        raise ValueError("Unexpected action received '{}' - expected 'add' or 'remove'".format(action))

212
    send_mail_to_student(user.email, email_params, language=get_user_email_language(user))
213 214


215
def reset_student_attempts(course_id, student, module_state_key, requesting_user, delete_module=False):
216 217 218 219 220 221
    """
    Reset student attempts for a problem. Optionally deletes all student state for the specified problem.

    In the previous instructor dashboard it was possible to modify/delete
    modules that were not problems. That has been disabled for safety.

222 223 224 225
    `student` is a User
    `problem_to_reset` is the name of a problem e.g. 'L2Node1'.
    To build the module_state_key 'problem/' and course information will be appended to `problem_to_reset`.

226 227 228 229 230
    Raises:
        ValueError: `problem_state` is invalid JSON.
        StudentModule.DoesNotExist: could not load the student module.
        submissions.SubmissionError: unexpected error occurred while resetting the score in the submissions API.

231
    """
232 233 234
    user_id = anonymous_id_for_user(student, course_id)
    requesting_user_id = anonymous_id_for_user(requesting_user, course_id)
    submission_cleared = False
235 236 237 238 239 240
    try:
        # A block may have children. Clear state on children first.
        block = modulestore().get_item(module_state_key)
        if block.has_children:
            for child in block.children:
                try:
241
                    reset_student_attempts(course_id, student, child, requesting_user, delete_module=delete_module)
242 243 244
                except StudentModule.DoesNotExist:
                    # If a particular child doesn't have any state, no big deal, as long as the parent does.
                    pass
245 246 247 248 249 250 251 252 253 254 255 256
        if delete_module:
            # Some blocks (openassessment) use StudentModule data as a key for internal submission data.
            # Inform these blocks of the reset and allow them to handle their data.
            clear_student_state = getattr(block, "clear_student_state", None)
            if callable(clear_student_state):
                clear_student_state(
                    user_id=user_id,
                    course_id=unicode(course_id),
                    item_id=unicode(module_state_key),
                    requesting_user_id=requesting_user_id
                )
                submission_cleared = True
257
    except ItemNotFoundError:
258
        block = None
259 260
        log.warning("Could not find %s in modulestore when attempting to reset attempts.", module_state_key)

261 262 263 264 265 266
    # Reset the student's score in the submissions API, if xblock.clear_student_state has not done so already.
    # We need to do this before retrieving the `StudentModule` model, because a score may exist with no student module.

    # TODO: Should the LMS know about sub_api and call this reset, or should it generically call it on all of its
    # xblock services as well?  See JIRA ARCH-26.
    if delete_module and not submission_cleared:
267
        sub_api.reset_score(
268
            user_id,
269 270
            course_id.to_deprecated_string(),
            module_state_key.to_deprecated_string(),
271 272 273 274 275
        )

    module_to_reset = StudentModule.objects.get(
        student_id=student.id,
        course_id=course_id,
276
        module_state_key=module_state_key
277
    )
278 279 280

    if delete_module:
        module_to_reset.delete()
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
        create_new_event_transaction_id()
        grade_update_root_type = 'edx.grades.problem.state_deleted'
        set_event_transaction_type(grade_update_root_type)
        tracker.emit(
            unicode(grade_update_root_type),
            {
                'user_id': unicode(student.id),
                'course_id': unicode(course_id),
                'problem_id': unicode(module_state_key),
                'instructor_id': unicode(requesting_user.id),
                'event_transaction_id': unicode(get_event_transaction_id()),
                'event_transaction_type': unicode(grade_update_root_type),
            }
        )
        _fire_score_changed_for_block(
            course_id,
            student,
            block,
            module_state_key,
        )
301 302 303 304 305
    else:
        _reset_module_attempts(module_to_reset)


def _reset_module_attempts(studentmodule):
306 307 308 309 310
    """
    Reset the number of attempts on a studentmodule.

    Throws ValueError if `problem_state` is invalid JSON.
    """
311 312 313 314 315 316 317 318
    # load the state json
    problem_state = json.loads(studentmodule.state)
    # old_number_of_attempts = problem_state["attempts"]
    problem_state["attempts"] = 0

    # save
    studentmodule.state = json.dumps(problem_state)
    studentmodule.save()
319 320


321 322 323 324 325 326
def _fire_score_changed_for_block(
        course_id,
        student,
        block,
        module_state_key,
):
327
    """
328 329
    Fires a PROBLEM_RAW_SCORE_CHANGED event for the given module.
    The earned points are always zero. We must retrieve the possible points
330
    from the XModule, as noted below. The effective time is now().
331
    """
332 333 334
    if block and block.has_score and block.max_score() is not None:
        PROBLEM_RAW_SCORE_CHANGED.send(
            sender=None,
335 336
            raw_earned=0,
            raw_possible=block.max_score(),
337 338 339 340 341 342
            weight=getattr(block, 'weight', None),
            user_id=student.id,
            course_id=unicode(course_id),
            usage_id=unicode(module_state_key),
            score_deleted=True,
            only_if_higher=False,
343
            modified=datetime.now().replace(tzinfo=pytz.UTC),
344
        )
345 346


347
def get_email_params(course, auto_enroll, secure=True, course_key=None, display_name=None):
348 349 350 351 352 353 354
    """
    Generate parameters used when parsing email templates.

    `auto_enroll` is a flag for auto enrolling non-registered students: (a `boolean`)
    Returns a dict of parameters
    """

355
    protocol = 'https' if secure else 'http'
356
    course_key = course_key or course.id.to_deprecated_string()
357
    display_name = display_name or course.display_name_with_default_escaped
358

359
    stripped_site_name = configuration_helpers.get_value(
360 361 362
        'SITE_NAME',
        settings.SITE_NAME
    )
363
    # TODO: Use request.build_absolute_uri rather than '{proto}://{site}{path}'.format
364
    # and check with the Services team that this works well with microsites
365 366 367
    registration_url = u'{proto}://{site}{path}'.format(
        proto=protocol,
        site=stripped_site_name,
368
        path=reverse('register_user')
369
    )
370 371 372
    course_url = u'{proto}://{site}{path}'.format(
        proto=protocol,
        site=stripped_site_name,
373
        path=reverse('course_root', kwargs={'course_id': course_key})
374 375 376 377 378
    )

    # We can't get the url to the course's About page if the marketing site is enabled.
    course_about_url = None
    if not settings.FEATURES.get('ENABLE_MKTG_SITE', False):
379 380 381
        course_about_url = u'{proto}://{site}{path}'.format(
            proto=protocol,
            site=stripped_site_name,
382
            path=reverse('about_course', kwargs={'course_id': course_key})
383 384
        )

385 386 387 388 389 390 391
    is_shib_course = uses_shib(course)

    # Composition of email
    email_params = {
        'site_name': stripped_site_name,
        'registration_url': registration_url,
        'course': course,
392
        'display_name': display_name,
393
        'auto_enroll': auto_enroll,
394 395
        'course_url': course_url,
        'course_about_url': course_about_url,
396 397 398 399 400
        'is_shib_course': is_shib_course,
    }
    return email_params


401
def send_mail_to_student(student, param_dict, language=None):
402 403 404 405 406 407 408 409
    """
    Construct the email using templates and then send it.
    `student` is the student's email address (a `str`),

    `param_dict` is a `dict` with keys
    [
        `site_name`: name given to edX instance (a `str`)
        `registration_url`: url for registration (a `str`)
410
        `display_name` : display name of a course (a `str`)
411 412 413 414 415 416 417 418 419
        `course_id`: id of course (a `str`)
        `auto_enroll`: user input option (a `str`)
        `course_url`: url of course (a `str`)
        `email_address`: email of student (a `str`)
        `full_name`: student full name (a `str`)
        `message`: type of email to send and template to use (a `str`)
        `is_shib_course`: (a `boolean`)
    ]

420 421 422 423
    `language` is the language used to render the email. If None the language
    of the currently-logged in user (that is, the user sending the email) will
    be used.

424 425 426
    Returns a boolean indicating whether the email was sent successfully.
    """

427
    # add some helpers and microconfig subsitutions
428 429
    if 'display_name' in param_dict:
        param_dict['course_name'] = param_dict['display_name']
430

431
    param_dict['site_name'] = configuration_helpers.get_value(
432 433 434 435 436 437 438
        'SITE_NAME',
        param_dict['site_name']
    )

    subject = None
    message = None

439 440
    # see if there is an activation email template definition available as configuration,
    # if so, then render that
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
    message_type = param_dict['message']

    email_template_dict = {
        'allowed_enroll': (
            'emails/enroll_email_allowedsubject.txt',
            'emails/enroll_email_allowedmessage.txt'
        ),
        'enrolled_enroll': (
            'emails/enroll_email_enrolledsubject.txt',
            'emails/enroll_email_enrolledmessage.txt'
        ),
        'allowed_unenroll': (
            'emails/unenroll_email_subject.txt',
            'emails/unenroll_email_allowedmessage.txt'
        ),
        'enrolled_unenroll': (
            'emails/unenroll_email_subject.txt',
            'emails/unenroll_email_enrolledmessage.txt'
459 460 461 462 463 464 465 466 467
        ),
        'add_beta_tester': (
            'emails/add_beta_tester_email_subject.txt',
            'emails/add_beta_tester_email_message.txt'
        ),
        'remove_beta_tester': (
            'emails/remove_beta_tester_email_subject.txt',
            'emails/remove_beta_tester_email_message.txt'
        ),
asadiqbal08 committed
468 469 470 471
        'account_creation_and_enrollment': (
            'emails/enroll_email_enrolledsubject.txt',
            'emails/account_creation_and_enroll_emailMessage.txt'
        ),
472
    }
473

474
    subject_template, message_template = email_template_dict.get(message_type, (None, None))
475
    if subject_template is not None and message_template is not None:
476 477 478
        subject, message = render_message_to_string(
            subject_template, message_template, param_dict, language=language
        )
479

480
    if subject and message:
481 482 483 484 485
        # Remove leading and trailing whitespace from body
        message = message.strip()

        # Email subject *must not* contain newlines
        subject = ''.join(subject.splitlines())
486
        from_address = configuration_helpers.get_value(
487 488 489 490 491
            'email_from_address',
            settings.DEFAULT_FROM_EMAIL
        )

        send_mail(subject, message, from_address, [student], fail_silently=False)
492 493


494 495 496 497 498 499 500 501 502
def render_message_to_string(subject_template, message_template, param_dict, language=None):
    """
    Render a mail subject and message templates using the parameters from
    param_dict and the given language. If language is None, the platform
    default language is used.

    Returns two strings that correspond to the rendered, translated email
    subject and message.
    """
503
    language = language or settings.LANGUAGE_CODE
504 505 506 507 508 509 510 511 512 513 514 515 516
    with override_language(language):
        return get_subject_and_message(subject_template, message_template, param_dict)


def get_subject_and_message(subject_template, message_template, param_dict):
    """
    Return the rendered subject and message with the appropriate parameters.
    """
    subject = render_to_string(subject_template, param_dict)
    message = render_to_string(message_template, param_dict)
    return subject, message


517 518 519 520 521 522
def uses_shib(course):
    """
    Used to return whether course has Shibboleth as the enrollment domain

    Returns a boolean indicating if Shibboleth authentication is set for this course.
    """
523
    return course.enrollment_domain and course.enrollment_domain.startswith(settings.SHIBBOLETH_DOMAIN_PREFIX)