Skip to content

Commit

Permalink
Merge pull request #381 from edx/feature/ichuang/export_all_courses
Browse files Browse the repository at this point in the history
Add management command to Studio for exporting all courses; useful for periodic backups of course content in Studio
  • Loading branch information
ichuang committed Jul 12, 2013
2 parents 8f74342 + 8b6a55e commit 547f230
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cms/djangoapps/contentstore/management/commands/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@


class Command(BaseCommand):
help = 'Import the specified data directory into the default ModuleStore'
help = 'Export the specified data directory into the default ModuleStore'

def handle(self, *args, **options):
if len(args) != 2:
raise CommandError("import requires two arguments: <course location> <output path>")
raise CommandError("export requires two arguments: <course location> <output path>")

course_id = args[0]
output_path = args[1]
Expand All @@ -30,4 +30,4 @@ def handle(self, *args, **options):
root_dir = os.path.dirname(output_path)
course_dir = os.path.splitext(os.path.basename(output_path))[0]

export_to_xml(modulestore('direct'), contentstore(), location, root_dir, course_dir)
export_to_xml(modulestore('direct'), contentstore(), location, root_dir, course_dir, modulestore())
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
###
### Script for exporting all courseware from Mongo to a directory
###
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 xmodule.contentstore.django import contentstore
from xmodule.course_module import CourseDescriptor


unnamed_modules = 0


class Command(BaseCommand):
help = 'Export all courses from mongo to the specified data directory'

def handle(self, *args, **options):
if len(args) != 1:
raise CommandError("export requires one argument: <output path>")

output_path = args[0]

cs = contentstore()
ms = modulestore('direct')
root_dir = output_path
courses = ms.get_courses()

print "%d courses to export:" % len(courses)
cids = [x.id for x in courses]
print cids

for course_id in cids:

print "-"*77
print "Exporting course id = {0} to {1}".format(course_id, output_path)

if 1:
try:
location = CourseDescriptor.id_to_location(course_id)
course_dir = course_id.replace('/', '...')
export_to_xml(ms, cs, location, root_dir, course_dir, modulestore())
except Exception as err:
print "="*30 + "> Oops, failed to export %s" % course_id
print "Error:"
print err

0 comments on commit 547f230

Please sign in to comment.