163 lines
5.8 KiB
Python
163 lines
5.8 KiB
Python
"""
|
|
Course certificate generation
|
|
|
|
These methods generate course certificates (they create a new course certificate if it does not yet exist, or update the
|
|
existing cert if it does already exist).
|
|
|
|
For now, these methods deal primarily with allowlist certificates, and are part of the V2 certificates revamp.
|
|
|
|
These methods should be called from tasks.
|
|
"""
|
|
|
|
import logging
|
|
import random
|
|
from uuid import uuid4
|
|
|
|
from capa.xqueue_interface import make_hashkey
|
|
from xmodule.modulestore.django import modulestore
|
|
|
|
from common.djangoapps.student.models import CourseEnrollment, UserProfile
|
|
from lms.djangoapps.certificates.models import CertificateStatuses, GeneratedCertificate
|
|
from lms.djangoapps.certificates.queue import XQueueCertInterface
|
|
from lms.djangoapps.certificates.utils import emit_certificate_event
|
|
from lms.djangoapps.certificates.utils import has_html_certificates_enabled
|
|
from lms.djangoapps.grades.api import CourseGradeFactory
|
|
from lms.djangoapps.instructor.access import list_with_level
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
def generate_allowlist_certificate(user, course_key):
|
|
"""
|
|
Generate an allowlist certificate for this user, in this course run. This method should be called from a task.
|
|
"""
|
|
cert = _generate_certificate(user, course_key)
|
|
|
|
if CertificateStatuses.is_passing_status(cert.status):
|
|
# Emit a certificate event. Note that the two options for generation_mode are "self" (implying the user
|
|
# generated the cert themself) and "batch" for everything else.
|
|
event_data = {
|
|
'user_id': user.id,
|
|
'course_id': str(course_key),
|
|
'certificate_id': cert.verify_uuid,
|
|
'enrollment_mode': cert.mode,
|
|
'generation_mode': 'batch'
|
|
}
|
|
emit_certificate_event(event_name='created', user=user, course_id=course_key, event_data=event_data)
|
|
|
|
return cert
|
|
|
|
|
|
def _generate_certificate(user, course_id):
|
|
"""
|
|
Generate a certificate for this user, in this course run.
|
|
"""
|
|
profile = UserProfile.objects.get(user=user)
|
|
profile_name = profile.name
|
|
|
|
course = modulestore().get_course(course_id, depth=0)
|
|
course_grade = CourseGradeFactory().read(user, course)
|
|
enrollment_mode, __ = CourseEnrollment.enrollment_mode_for_user(user, course_id)
|
|
key = make_hashkey(random.random())
|
|
uuid = uuid4().hex
|
|
|
|
cert, created = GeneratedCertificate.objects.update_or_create(
|
|
user=user,
|
|
course_id=course_id,
|
|
defaults={
|
|
'user': user,
|
|
'course_id': course_id,
|
|
'mode': enrollment_mode,
|
|
'name': profile_name,
|
|
'status': CertificateStatuses.downloadable,
|
|
'grade': course_grade.percent,
|
|
'download_url': '',
|
|
'key': key,
|
|
'verify_uuid': uuid
|
|
}
|
|
)
|
|
|
|
if created:
|
|
created_msg = 'Certificate was created.'
|
|
else:
|
|
created_msg = 'Certificate already existed and was updated.'
|
|
log.info(
|
|
'Generated certificate with status {status} for {user} : {course}. {created_msg}'.format(
|
|
status=cert.status,
|
|
user=cert.user.id,
|
|
course=cert.course_id,
|
|
created_msg=created_msg
|
|
))
|
|
return cert
|
|
|
|
|
|
def generate_user_certificates(student, course_key, course=None, insecure=False, generation_mode='batch',
|
|
forced_grade=None):
|
|
"""
|
|
It will add the add-cert request into the xqueue.
|
|
|
|
A new record will be created to track the certificate
|
|
generation task. If an error occurs while adding the certificate
|
|
to the queue, the task will have status 'error'. It also emits
|
|
`edx.certificate.created` event for analytics.
|
|
|
|
This method has not yet been updated (it predates the certificates revamp). If modifying this method,
|
|
see also generate_user_certificates() in generation_handler.py (which is very similar but is not called from a
|
|
celery task). In the future these methods will be unified.
|
|
|
|
Args:
|
|
student (User)
|
|
course_key (CourseKey)
|
|
|
|
Keyword Arguments:
|
|
course (Course): Optionally provide the course object; if not provided
|
|
it will be loaded.
|
|
insecure - (Boolean)
|
|
generation_mode - who has requested certificate generation. Its value should `batch`
|
|
in case of django command and `self` if student initiated the request.
|
|
forced_grade - a string indicating to replace grade parameter. if present grading
|
|
will be skipped.
|
|
"""
|
|
|
|
if not course:
|
|
course = modulestore().get_course(course_key, depth=0)
|
|
|
|
beta_testers_queryset = list_with_level(course, 'beta')
|
|
|
|
if beta_testers_queryset.filter(username=student.username):
|
|
message = 'Cancelling course certificate generation for user [{}] against course [{}], user is a Beta Tester.'
|
|
log.info(message.format(student.username, course_key))
|
|
return
|
|
|
|
xqueue = XQueueCertInterface()
|
|
if insecure:
|
|
xqueue.use_https = False
|
|
|
|
generate_pdf = not has_html_certificates_enabled(course)
|
|
|
|
cert = xqueue.add_cert(
|
|
student,
|
|
course_key,
|
|
course=course,
|
|
generate_pdf=generate_pdf,
|
|
forced_grade=forced_grade
|
|
)
|
|
|
|
message = 'Queued Certificate Generation task for {user} : {course}'
|
|
log.info(message.format(user=student.id, course=course_key))
|
|
|
|
# If cert_status is not present in certificate valid_statuses (for example unverified) then
|
|
# add_cert returns None and raises AttributeError while accessing cert attributes.
|
|
if cert is None:
|
|
return
|
|
|
|
if CertificateStatuses.is_passing_status(cert.status):
|
|
emit_certificate_event('created', student, course_key, course, {
|
|
'user_id': student.id,
|
|
'course_id': str(course_key),
|
|
'certificate_id': cert.verify_uuid,
|
|
'enrollment_mode': cert.mode,
|
|
'generation_mode': generation_mode
|
|
})
|
|
return cert.status
|