39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
"""
|
|
Script for exporting courseware from Mongo to a tar.gz file
|
|
"""
|
|
import os
|
|
|
|
from django.core.management.base import BaseCommand, CommandError
|
|
from xmodule.modulestore.xml_exporter import export_to_xml
|
|
from xmodule.modulestore.django import modulestore
|
|
from opaque_keys.edx.keys import CourseKey
|
|
from xmodule.contentstore.django import contentstore
|
|
from opaque_keys import InvalidKeyError
|
|
from opaque_keys.edx.locations import SlashSeparatedCourseKey
|
|
|
|
|
|
class Command(BaseCommand):
|
|
"""
|
|
Export the specified data directory into the default ModuleStore
|
|
"""
|
|
help = 'Export the specified data directory into the default ModuleStore'
|
|
|
|
def handle(self, *args, **options):
|
|
"Execute the command"
|
|
if len(args) != 2:
|
|
raise CommandError("export requires two arguments: <course id> <output path>")
|
|
|
|
try:
|
|
course_key = CourseKey.from_string(args[0])
|
|
except InvalidKeyError:
|
|
course_key = SlashSeparatedCourseKey.from_deprecated_string(args[0])
|
|
|
|
output_path = args[1]
|
|
|
|
print("Exporting course id = {0} to {1}".format(course_key, output_path))
|
|
|
|
root_dir = os.path.dirname(output_path)
|
|
course_dir = os.path.splitext(os.path.basename(output_path))[0]
|
|
|
|
export_to_xml(modulestore(), contentstore(), course_key, root_dir, course_dir)
|