* Add a handler to mark a block complete when a problem is scored.
* Also handle marking incomplete when user problem state is deleted.
* Add score_deleted to published providing_args for PROBLEM_{RAW,WEIGHTED}_SCORE_CHANGED
OC-3089
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
"""
|
|
Signal handlers to trigger completion updates.
|
|
"""
|
|
|
|
from __future__ import absolute_import, division, print_function, unicode_literals
|
|
|
|
from django.contrib.auth.models import User
|
|
from django.dispatch import receiver
|
|
|
|
from opaque_keys.edx.keys import CourseKey, UsageKey
|
|
from lms.djangoapps.grades.signals.signals import PROBLEM_WEIGHTED_SCORE_CHANGED
|
|
|
|
from .models import BlockCompletion
|
|
from . import waffle
|
|
|
|
|
|
@receiver(PROBLEM_WEIGHTED_SCORE_CHANGED)
|
|
def scorable_block_completion(sender, **kwargs): # pylint: disable=unused-argument
|
|
"""
|
|
When a problem is scored, submit a new BlockCompletion for that block.
|
|
"""
|
|
if not waffle.waffle().is_enabled(waffle.ENABLE_COMPLETION_TRACKING):
|
|
return
|
|
user = User.objects.get(id=kwargs['user_id'])
|
|
course_key = CourseKey.from_string(kwargs['course_id'])
|
|
block_key = UsageKey.from_string(kwargs['usage_id'])
|
|
if kwargs.get('score_deleted'):
|
|
completion = 0.0
|
|
else:
|
|
completion = 1.0
|
|
BlockCompletion.objects.submit_completion(
|
|
user=user,
|
|
course_key=course_key,
|
|
block_key=block_key,
|
|
completion=completion,
|
|
)
|