The `commit` argument had already been removed from code [1][2][3], prompted by the django18 upgrade. [1] https://github.com/edx/edx-platform/pull/10927 [2]07f015bb57[3]a4006c8604
42 lines
1.5 KiB
Python
42 lines
1.5 KiB
Python
"""
|
|
Command for deleting courses
|
|
|
|
Arguments:
|
|
arg1 (str): Course key of the course to delete
|
|
|
|
Returns:
|
|
none
|
|
"""
|
|
from django.core.management.base import BaseCommand, CommandError
|
|
from .prompt import query_yes_no
|
|
from contentstore.utils import delete_course_and_groups
|
|
from opaque_keys.edx.keys import CourseKey
|
|
from opaque_keys import InvalidKeyError
|
|
from xmodule.modulestore import ModuleStoreEnum
|
|
from xmodule.modulestore.django import modulestore
|
|
|
|
|
|
class Command(BaseCommand):
|
|
"""
|
|
Delete a MongoDB backed course
|
|
"""
|
|
help = '''Delete a MongoDB backed course'''
|
|
|
|
def add_arguments(self, parser):
|
|
parser.add_argument('course_key', help="ID of the course to delete.")
|
|
|
|
def handle(self, *args, **options):
|
|
try:
|
|
course_key = CourseKey.from_string(options['course_key'])
|
|
except InvalidKeyError:
|
|
raise CommandError("Invalid course_key: '%s'." % options['course_key'])
|
|
|
|
if not modulestore().get_course(course_key):
|
|
raise CommandError("Course with '%s' key not found." % options['course_key'])
|
|
|
|
print 'Going to delete the %s course from DB....' % options['course_key']
|
|
if query_yes_no("Deleting course {0}. Confirm?".format(course_key), default="no"):
|
|
if query_yes_no("Are you sure. This action cannot be undone!", default="no"):
|
|
delete_course_and_groups(course_key, ModuleStoreEnum.UserID.mgmt_command)
|
|
print "Deleted course {}".format(course_key)
|