[MICROBA-1806] We are aware of product issue where it is possible for a self-paced course-run to get have a `certificate_availability_date` created in the course settings. This can have an adverse effect on the Credentials IDA where a learner's Program Record does not correctly display the course certificates they have earned because of this data. This not only causes confusion for our learners, as it appears that a course certificate a learner can access and share in the LMS is displayed as unearned in the Credential's program record, but this can also cause issues when a learner attempts to share their program record through a credit pathway and the program record would not accurately reflect their program completion. Unfortunately, the settings that manage the certificate availability date are hidden for self-paced courses in Studio (as they should only be used in instructor-paced courses). For this reason, we are introducing a management command that will remove a certificate available date for a specified (self-paced) course-run. This will allow us to fix issues for individual learners while we work on a longer-term fix for the larger issue. * Add new `clean_stale_certificate_available_dates` management command * Add new `CleanStaleCertificateAvailabilityDates` Configuration Model * Add tests for the new management command * (Unrelated cleanup) Fix potential issue with private.py settings in the CMS being overwritten in devstack.py for developers using devstack.
66 lines
2.0 KiB
Python
66 lines
2.0 KiB
Python
"""
|
|
Models for contentstore
|
|
"""
|
|
|
|
|
|
from config_models.models import ConfigurationModel
|
|
from django.db.models.fields import IntegerField, TextField
|
|
|
|
|
|
class VideoUploadConfig(ConfigurationModel):
|
|
"""
|
|
Configuration for the video upload feature.
|
|
|
|
.. no_pii:
|
|
"""
|
|
profile_whitelist = TextField(
|
|
blank=True,
|
|
help_text="A comma-separated list of names of profiles to include in video encoding downloads."
|
|
)
|
|
|
|
@classmethod
|
|
def get_profile_whitelist(cls):
|
|
"""Get the list of profiles to include in the encoding download"""
|
|
return [profile for profile in cls.current().profile_whitelist.split(",") if profile]
|
|
|
|
|
|
class BackfillCourseTabsConfig(ConfigurationModel):
|
|
"""
|
|
Manages configuration for a run of the backfill_course_tabs management command.
|
|
|
|
.. no_pii:
|
|
"""
|
|
|
|
class Meta:
|
|
verbose_name = 'Arguments for backfill_course_tabs'
|
|
verbose_name_plural = 'Arguments for backfill_course_tabs'
|
|
|
|
start_index = IntegerField(
|
|
help_text='Index of first course to start backfilling (in an alphabetically sorted list of courses)',
|
|
default=0,
|
|
)
|
|
count = IntegerField(
|
|
help_text='How many courses to backfill in this run (or zero for all courses)',
|
|
default=0,
|
|
)
|
|
|
|
|
|
class CleanStaleCertificateAvailabilityDatesConfig(ConfigurationModel):
|
|
"""
|
|
Manages configuration for a run of the `clean_stale_certificate_availability_dates` management command.
|
|
|
|
.. no_pii:
|
|
"""
|
|
class Meta:
|
|
app_label = "contentstore"
|
|
verbose_name = "Arguments for 'clean_stale_certificate_availability_dates'"
|
|
verbose_name_plural = "Arguments for 'clean_stale_certificate_availability_dates'"
|
|
|
|
arguments = TextField(
|
|
blank=True,
|
|
help_text=(
|
|
"A space seperated collection of arguments to be used when running the "
|
|
"`clean_stale_certificate_available_dates` management command.' See the management command for options."
|
|
)
|
|
)
|