Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
84992cdf
Commit
84992cdf
authored
Aug 01, 2014
by
Nimisha Asthagiri
Committed by
Don Mitchell
Aug 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor xml_importer.py for easier reading.
Remove post-publish step.
parent
47851c50
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
105 additions
and
96 deletions
+105
-96
cms/djangoapps/contentstore/management/commands/import.py
+1
-1
cms/djangoapps/contentstore/tests/test_contentstore.py
+15
-15
cms/djangoapps/contentstore/tests/test_import.py
+5
-5
cms/djangoapps/contentstore/tests/test_import_draft_order.py
+1
-1
cms/djangoapps/contentstore/tests/test_import_pure_xblock.py
+1
-1
cms/djangoapps/contentstore/views/import_export.py
+1
-1
cms/djangoapps/contentstore/views/tests/test_assets.py
+2
-2
common/lib/xmodule/xmodule/modulestore/xml_importer.py
+79
-70
No files found.
cms/djangoapps/contentstore/management/commands/import.py
View file @
84992cdf
...
...
@@ -40,7 +40,7 @@ class Command(BaseCommand):
dis
=
do_import_static
))
mstore
=
modulestore
()
_
,
course_items
=
import_from_xml
(
course_items
=
import_from_xml
(
mstore
,
ModuleStoreEnum
.
UserID
.
mgmt_command
,
data_dir
,
course_dirs
,
load_error_modules
=
False
,
static_content_store
=
contentstore
(),
verbose
=
True
,
do_import_static
=
do_import_static
,
...
...
cms/djangoapps/contentstore/tests/test_contentstore.py
View file @
84992cdf
...
...
@@ -89,7 +89,7 @@ class ContentStoreToyCourseTest(ContentStoreTestCase):
component_types should cause 'Video' to be present.
"""
store
=
self
.
store
_
,
course_items
=
import_from_xml
(
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'simple'
])
course_items
=
import_from_xml
(
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'simple'
])
course
=
course_items
[
0
]
course
.
advanced_modules
=
component_types
store
.
update_item
(
course
,
self
.
user
.
id
)
...
...
@@ -116,7 +116,7 @@ class ContentStoreToyCourseTest(ContentStoreTestCase):
def
test_malformed_edit_unit_request
(
self
):
store
=
self
.
store
_
,
course_items
=
import_from_xml
(
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'simple'
])
course_items
=
import_from_xml
(
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'simple'
])
# just pick one vertical
usage_key
=
course_items
[
0
]
.
id
.
make_usage_key
(
'vertical'
,
None
)
...
...
@@ -126,7 +126,7 @@ class ContentStoreToyCourseTest(ContentStoreTestCase):
def
check_edit_unit
(
self
,
test_course_name
):
"""Verifies the editing HTML in all the verticals in the given test course"""
_
,
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
test_course_name
])
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
test_course_name
])
items
=
self
.
store
.
get_items
(
course_items
[
0
]
.
id
,
qualifiers
=
{
'category'
:
'vertical'
})
self
.
_check_verticals
(
items
)
...
...
@@ -148,7 +148,7 @@ class ContentStoreToyCourseTest(ContentStoreTestCase):
both draft and non-draft copies.
'''
store
=
self
.
store
_
,
course_items
=
import_from_xml
(
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'simple'
])
course_items
=
import_from_xml
(
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'simple'
])
course_key
=
course_items
[
0
]
.
id
html_usage_key
=
course_key
.
make_usage_key
(
'html'
,
'test_html'
)
...
...
@@ -263,7 +263,7 @@ class ContentStoreToyCourseTest(ContentStoreTestCase):
self
.
assertEqual
(
num_drafts
,
1
)
def
test_no_static_link_rewrites_on_import
(
self
):
_
,
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
course
=
course_items
[
0
]
handouts_usage_key
=
course
.
id
.
make_usage_key
(
'course_info'
,
'handouts'
)
...
...
@@ -287,7 +287,7 @@ class ContentStoreToyCourseTest(ContentStoreTestCase):
self
.
assertGreater
(
len
(
course
.
textbooks
),
0
)
def
test_import_polls
(
self
):
_
,
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
course_key
=
course_items
[
0
]
.
id
items
=
self
.
store
.
get_items
(
course_key
,
qualifiers
=
{
'category'
:
'poll_question'
})
...
...
@@ -307,7 +307,7 @@ class ContentStoreToyCourseTest(ContentStoreTestCase):
Tests the ajax callback to render an XModule
"""
direct_store
=
self
.
store
_
,
course_items
=
import_from_xml
(
direct_store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
course_items
=
import_from_xml
(
direct_store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
usage_key
=
course_items
[
0
]
.
id
.
make_usage_key
(
'vertical'
,
'vertical_test'
)
# also try a custom response which will trigger the 'is this course in whitelist' logic
resp
=
self
.
client
.
get_json
(
...
...
@@ -357,7 +357,7 @@ class ContentStoreToyCourseTest(ContentStoreTestCase):
This test case verifies that a course can use specialized override for about data, e.g. /about/Fall_2012/effort.html
while there is a base definition in /about/effort.html
'''
_
,
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
course_key
=
course_items
[
0
]
.
id
effort
=
self
.
store
.
get_item
(
course_key
.
make_usage_key
(
'about'
,
'effort'
))
self
.
assertEqual
(
effort
.
data
,
'6 hours'
)
...
...
@@ -460,7 +460,7 @@ class ContentStoreToyCourseTest(ContentStoreTestCase):
content_store
=
contentstore
()
trash_store
=
contentstore
(
'trashcan'
)
_
,
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
],
static_content_store
=
content_store
)
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
],
static_content_store
=
content_store
)
# look up original (and thumbnail) in content store, should be there after import
location
=
AssetLocation
.
from_deprecated_string
(
'/c4x/edX/toy/asset/sample_static.txt'
)
...
...
@@ -618,7 +618,7 @@ class ContentStoreToyCourseTest(ContentStoreTestCase):
"""
content_store
=
contentstore
()
_
,
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
],
static_content_store
=
content_store
)
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
],
static_content_store
=
content_store
)
course_id
=
course_items
[
0
]
.
id
...
...
@@ -845,7 +845,7 @@ class ContentStoreToyCourseTest(ContentStoreTestCase):
def
test_course_handouts_rewrites
(
self
):
# import a test course
_
,
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
course_id
=
course_items
[
0
]
.
id
handouts_location
=
course_id
.
make_usage_key
(
'course_info'
,
'handouts'
)
...
...
@@ -895,7 +895,7 @@ class ContentStoreToyCourseTest(ContentStoreTestCase):
# Create toy course
_
,
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
course_id
=
course_items
[
0
]
.
id
root_dir
=
path
(
mkdtemp_clean
())
...
...
@@ -1271,7 +1271,7 @@ class ContentStoreTest(ContentStoreTestCase):
)
self
.
assertEqual
(
resp
.
status_code
,
200
)
_
,
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'simple'
])
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'simple'
])
course_key
=
course_items
[
0
]
.
id
resp
=
self
.
_show_course_overview
(
course_key
)
...
...
@@ -1400,7 +1400,7 @@ class ContentStoreTest(ContentStoreTestCase):
self
.
assertNotEquals
(
new_discussion_item
.
discussion_id
,
'$$GUID$$'
)
def
test_metadata_inheritance
(
self
):
_
,
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
course_items
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
])
course
=
course_items
[
0
]
verticals
=
self
.
store
.
get_items
(
course
.
id
,
qualifiers
=
{
'category'
:
'vertical'
})
...
...
@@ -1466,7 +1466,7 @@ class ContentStoreTest(ContentStoreTestCase):
content_store
=
contentstore
()
# Use conditional_and_poll, as it's got an image already
__
,
courses
=
import_from_xml
(
courses
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data/'
,
...
...
cms/djangoapps/contentstore/tests/test_import.py
View file @
84992cdf
...
...
@@ -64,7 +64,7 @@ class ContentStoreImportTest(ModuleStoreTestCase):
# edx/course can be imported into a namespace with an org/course
# like edx/course_name
module_store
,
__
,
course
=
self
.
load_test_import_course
()
__
,
course_items
=
import_from_xml
(
course_items
=
import_from_xml
(
module_store
,
self
.
user
.
id
,
'common/test/data'
,
...
...
@@ -139,7 +139,7 @@ class ContentStoreImportTest(ModuleStoreTestCase):
def
test_no_static_link_rewrites_on_import
(
self
):
module_store
=
modulestore
()
_
,
courses
=
import_from_xml
(
module_store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
],
do_import_static
=
False
,
verbose
=
True
)
courses
=
import_from_xml
(
module_store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'toy'
],
do_import_static
=
False
,
verbose
=
True
)
course_key
=
courses
[
0
]
.
id
handouts
=
module_store
.
get_item
(
course_key
.
make_usage_key
(
'course_info'
,
'handouts'
))
...
...
@@ -157,10 +157,10 @@ class ContentStoreImportTest(ModuleStoreTestCase):
store
=
modulestore
()
.
_get_modulestore_by_type
(
ModuleStoreEnum
.
Type
.
mongo
)
# we try to refresh the inheritance tree for each update_item in the import
with
check_exact_number_of_calls
(
store
,
store
.
refresh_cached_metadata_inheritance_tree
,
46
):
with
check_exact_number_of_calls
(
store
,
store
.
refresh_cached_metadata_inheritance_tree
,
28
):
#
the post-publish step loads each item in the subtree, which calls _get_cached_metadata_inheritance_tre
e
with
check_exact_number_of_calls
(
store
,
store
.
_get_cached_metadata_inheritance_tree
,
22
):
#
_get_cached_metadata_inheritance_tree should be called only onc
e
with
check_exact_number_of_calls
(
store
,
store
.
_get_cached_metadata_inheritance_tree
,
1
):
# with bulk-edit in progress, the inheritance tree should be recomputed only at the end of the import
# NOTE: On Jenkins, with memcache enabled, the number of calls here is only 1.
...
...
cms/djangoapps/contentstore/tests/test_import_draft_order.py
View file @
84992cdf
...
...
@@ -10,7 +10,7 @@ class DraftReorderTestCase(ModuleStoreTestCase):
def
test_order
(
self
):
store
=
modulestore
()
_
,
course_items
=
import_from_xml
(
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'import_draft_order'
])
course_items
=
import_from_xml
(
store
,
self
.
user
.
id
,
'common/test/data/'
,
[
'import_draft_order'
])
course_key
=
course_items
[
0
]
.
id
sequential
=
store
.
get_item
(
course_key
.
make_usage_key
(
'sequential'
,
'0f4f7649b10141b0bdc9922dcf94515a'
))
verticals
=
sequential
.
children
...
...
cms/djangoapps/contentstore/tests/test_import_pure_xblock.py
View file @
84992cdf
...
...
@@ -58,7 +58,7 @@ class XBlockImportTest(ModuleStoreTestCase):
the expected field value set.
"""
_
,
courses
=
import_from_xml
(
courses
=
import_from_xml
(
self
.
store
,
self
.
user
.
id
,
'common/test/data'
,
[
course_dir
]
)
...
...
cms/djangoapps/contentstore/views/import_export.py
View file @
84992cdf
...
...
@@ -214,7 +214,7 @@ def import_handler(request, course_key_string):
logging
.
debug
(
'found course.xml at {0}'
.
format
(
dirpath
))
_module_store
,
course_items
=
import_from_xml
(
course_items
=
import_from_xml
(
modulestore
(),
request
.
user
.
id
,
settings
.
GITHUB_REPO_ROOT
,
...
...
cms/djangoapps/contentstore/views/tests/test_assets.py
View file @
84992cdf
...
...
@@ -49,7 +49,7 @@ class BasicAssetsTestCase(AssetsTestCase):
def
test_pdf_asset
(
self
):
module_store
=
modulestore
()
_
,
course_items
=
import_from_xml
(
course_items
=
import_from_xml
(
module_store
,
self
.
user
.
id
,
'common/test/data/'
,
...
...
@@ -193,7 +193,7 @@ class LockAssetTestCase(AssetsTestCase):
# Load the toy course.
module_store
=
modulestore
()
_
,
course_items
=
import_from_xml
(
course_items
=
import_from_xml
(
module_store
,
self
.
user
.
id
,
'common/test/data/'
,
...
...
common/lib/xmodule/xmodule/modulestore/xml_importer.py
View file @
84992cdf
...
...
@@ -117,29 +117,36 @@ def import_from_xml(
target_course_id
=
None
,
verbose
=
False
,
do_import_static
=
True
,
create_new_course_if_not_present
=
False
):
"""
Import the specified xml data_dir into the "store" modulestore,
using org and course as the location org and course.
Import xml-based courses from data_dir into modulestore.
course_dirs: If specified, the list of course_dirs to load. Otherwise, load
Returns:
list of new course objects
Args:
store: a modulestore implementing ModuleStoreWriteBase in which to store the imported courses.
data_dir: the root directory from which to find the xml courses.
course_dirs: If specified, the list of data_dir subdirectories to load. Otherwise, load
all course dirs
target_course_id is the CourseKey that all modules should be remapped to
after import off disk. We do this remapping as a post-processing step
because there's logic in the importing which expects a 'url_name' as an
identifier to where things are on disk
e.g. ../policies/<url_name>/policy.json as well as metadata keys in
the policy.json. so we need to keep the original url_name during import
:param do_import_static:
if False, then static files are not imported into the static content
store. This can be employed for courses which have substantial
unchanging static content, which is to inefficient to import every
target_course_id: is the CourseKey that all modules should be remapped to
after import off disk. NOTE: this only makes sense if importing only
one course. If there are more than one course loaded from data_dir/course_dirs & you
supply this id, this method will raise an AssertException.
static_content_store: the static asset store
do_import_static: if True, then import the course's static files into static_content_store
This can be employed for courses which have substantial
unchanging static content, which is too inefficient to import every
time the course is loaded. Static content for some courses may also be
served directly by nginx, instead of going through django.
: create_new_course_if_not_present:
If True, then a new course is created if it doesn't already exist.
The check for existing courses is case-insensitive.
create_new_course_if_not_present: If True, then a new course is created if it doesn't already exist.
Otherwise, it throws an InvalidLocationError for the course.
default_class, load_error_modules: are arguments for constructing the XMLModuleStore (see its doc)
"""
xml_module_store
=
XMLModuleStore
(
...
...
@@ -156,15 +163,8 @@ def import_from_xml(
if
target_course_id
:
assert
(
len
(
xml_module_store
.
modules
)
==
1
)
# NOTE: the XmlModuleStore does not implement get_items()
# which would be a preferable means to enumerate the entire collection
# of course modules. It will be left as a TBD to implement that
# method on XmlModuleStore.
course_items
=
[]
new_courses
=
[]
for
course_key
in
xml_module_store
.
modules
.
keys
():
with
store
.
branch_setting
(
ModuleStoreEnum
.
Branch
.
draft_preferred
,
course_key
):
if
target_course_id
is
not
None
:
dest_course_id
=
target_course_id
else
:
...
...
@@ -176,16 +176,62 @@ def import_from_xml(
store
.
create_course
(
dest_course_id
.
org
,
dest_course_id
.
course
,
dest_course_id
.
run
,
user_id
)
except
DuplicateCourseError
:
# course w/ same org and course exists
# The Mongo modulestore checks *with* the run in has_course, but not in create_course.
log
.
debug
(
"Skipping import of course with id, {0}
,"
"since it collides with an existing one"
.
format
(
dest_course_id
)
"Skipping import of course with id,
%
s
,"
"since it collides with an existing one"
,
dest_course_id
)
continue
with
store
.
bulk_write_operations
(
dest_course_id
):
course_data_path
=
None
# STEP 1: find and import course module
course
,
course_data_path
=
_import_course_module
(
xml_module_store
,
store
,
user_id
,
data_dir
,
course_key
,
dest_course_id
,
do_import_static
,
verbose
)
new_courses
.
append
(
course
)
# STEP 2: import static content
_import_static_content_wrapper
(
static_content_store
,
do_import_static
,
course_data_path
,
dest_course_id
,
verbose
)
# STEP 3: import PUBLISHED items
# now loop through all the modules
with
store
.
branch_setting
(
ModuleStoreEnum
.
Branch
.
published_only
,
dest_course_id
):
for
module
in
xml_module_store
.
modules
[
course_key
]
.
itervalues
():
if
module
.
scope_ids
.
block_type
==
'course'
:
# we've already saved the course module up above
continue
if
verbose
:
log
.
debug
(
'importing module location {loc}'
.
format
(
loc
=
module
.
location
))
_import_module_and_update_references
(
module
,
store
,
user_id
,
course_key
,
dest_course_id
,
do_import_static
=
do_import_static
,
runtime
=
course
.
runtime
)
# STEP 4: import any DRAFT items
with
store
.
branch_setting
(
ModuleStoreEnum
.
Branch
.
draft_preferred
,
dest_course_id
):
_import_course_draft
(
xml_module_store
,
store
,
user_id
,
course_data_path
,
course_key
,
dest_course_id
,
course
.
runtime
)
return
new_courses
def
_import_course_module
(
xml_module_store
,
store
,
user_id
,
data_dir
,
course_key
,
dest_course_id
,
do_import_static
,
verbose
):
if
verbose
:
log
.
debug
(
"Scanning {0} for course module..."
.
format
(
course_key
))
...
...
@@ -251,12 +297,13 @@ def import_from_xml(
CourseTabList
.
initialize_default
(
course
)
store
.
update_item
(
course
,
user_id
)
return
course
,
course_data_path
course_items
.
append
(
course
)
break
# raise an exception if the course wasn't found
raise
Exception
(
"Course module not found in imported modules"
)
# TODO: shouldn't this raise an exception if course wasn't found?
def
_import_static_content_wrapper
(
static_content_store
,
do_import_static
,
course_data_path
,
dest_course_id
,
verbose
):
# then import all the static content
if
static_content_store
is
not
None
and
do_import_static
:
# first pass to find everything in /static/
...
...
@@ -288,44 +335,6 @@ def import_from_xml(
dest_course_id
,
subpath
=
simport
,
verbose
=
verbose
)
# now loop through all the modules
for
module
in
xml_module_store
.
modules
[
course_key
]
.
itervalues
():
if
module
.
scope_ids
.
block_type
==
'course'
:
# we've already saved the course module up at the top
# of the loop so just skip over it in the inner loop
continue
if
verbose
:
log
.
debug
(
'importing module location {loc}'
.
format
(
loc
=
module
.
location
))
_import_module_and_update_references
(
module
,
store
,
user_id
,
course_key
,
dest_course_id
,
do_import_static
=
do_import_static
,
runtime
=
course
.
runtime
)
# finally, publish the course
store
.
publish
(
course
.
location
,
user_id
)
# now import any DRAFT items
_import_course_draft
(
xml_module_store
,
store
,
user_id
,
course_data_path
,
course_key
,
dest_course_id
,
course
.
runtime
)
return
xml_module_store
,
course_items
def
_import_module_and_update_references
(
module
,
store
,
user_id
,
source_course_id
,
dest_course_id
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment