Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
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
OpenEdx
configuration
Commits
ba3f8346
Commit
ba3f8346
authored
Apr 30, 2014
by
Feanil Patel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Grab the static links directory as well.
parent
c197243b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
16 deletions
+49
-16
util/import_xml_courses.py
+49
-16
No files found.
util/import_xml_courses.py
View file @
ba3f8346
...
@@ -6,25 +6,38 @@ import argparse
...
@@ -6,25 +6,38 @@ import argparse
import
logging
import
logging
import
subprocess
import
subprocess
from
os.path
import
basename
,
exists
,
join
from
os.path
import
basename
,
exists
,
join
from
os
import
chdir
import
os
import
contextlib
from
getpass
import
getuser
from
getpass
import
getuser
logging
.
basicConfig
(
level
=
logging
.
DEBUG
)
logging
.
basicConfig
(
level
=
logging
.
DEBUG
)
@contextlib.contextmanager
def
chdir
(
dirname
=
None
):
curdir
=
os
.
getcwd
()
try
:
if
dirname
is
not
None
:
os
.
chdir
(
dirname
)
yield
finally
:
os
.
chdir
(
curdir
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
parser
=
argparse
.
ArgumentParser
(
parser
=
argparse
.
ArgumentParser
(
description
=
"Import XML courses from git repos."
)
description
=
"Import XML courses from git repos."
)
parser
.
add_argument
(
"-c"
,
"--courses-csv"
,
required
=
True
,
parser
.
add_argument
(
"-c"
,
"--courses-csv"
,
required
=
True
,
help
=
"A CSV of xml courses to import."
)
help
=
"A CSV of xml courses to import."
)
parser
.
add_argument
(
"-d"
,
"--
data-dir"
,
required
=
True
,
parser
.
add_argument
(
"-d"
,
"--
var-dir"
,
default
=
"/edx/var/edxapp"
,
help
=
"The location
to checkout the repos for import
."
)
help
=
"The location
of the edxapp var directory that hold the data and courstatic dirs
."
)
args
=
parser
.
parse_args
()
args
=
parser
.
parse_args
()
courses
=
open
(
args
.
courses_csv
,
'r'
)
courses
=
open
(
args
.
courses_csv
,
'r'
)
data_dir
=
join
(
args
.
var_dir
,
'data'
)
static_dir
=
join
(
args
.
var_dir
,
'course_static'
)
# Go to the platform dir.
cwd
=
getcwd
()
# Need this for dealer to work.
platform_dir
=
"/edx/app/edxapp/edx-platform"
chdir
(
"/edx/app/edxapp/edx-platform"
)
for
line
in
courses
:
for
line
in
courses
:
cols
=
line
.
strip
()
.
split
(
','
)
cols
=
line
.
strip
()
.
split
(
','
)
...
@@ -59,24 +72,44 @@ if __name__ == '__main__':
...
@@ -59,24 +72,44 @@ if __name__ == '__main__':
if
disposition
.
lower
()
==
"on disk"
:
if
disposition
.
lower
()
==
"on disk"
:
pass
with
chdir
(
args
.
static_dir
):
# Link static files to course_static dir
static_location
=
join
(
repo_location
,
'static'
)
cmd
=
"ln -sf {} {}"
.
format
(
static_location
,
repo_name
)
logging
.
debug
(
"Running cmd: {}"
.
format
(
cmd
))
subprocess
.
check_call
(
cmd
,
shell
=
True
)
elif
disposition
.
lower
()
==
'no static import'
:
elif
disposition
.
lower
()
==
'no static import'
:
# Import w/nostatic flag
# Go to the platform dir.
cmd
=
"sudo -E -u edxapp /edx/bin/python.edxapp /edx/app/edxapp/edx-platform/manage.py cms --settings=aws import --nostatic {} {}"
.
format
(
args
.
data_dir
,
repo_name
)
# Need this for dealer to work.
logging
.
debug
(
"Running cmd:: {}"
.
format
(
cmd
))
with
chdir
(
platform_dir
):
subprocess
.
check_call
(
cmd
,
shell
=
True
)
# Import w/nostatic flag
cmd
=
"sudo -E -u edxapp /edx/bin/python.edxapp /edx/app/edxapp/edx-platform/manage.py cms --settings=aws import --nostatic {} {}"
.
format
(
args
.
data_dir
,
repo_name
)
logging
.
debug
(
"Running cmd: {}"
.
format
(
cmd
))
subprocess
.
check_call
(
cmd
,
shell
=
True
)
with
chdir
(
args
.
static_dir
):
# Link static files to course_static dir.
static_location
=
join
(
repo_location
,
'static'
)
cmd
=
"ln -sf {} {}"
.
format
(
static_location
,
repo_name
)
logging
.
debug
(
"Running cmd: {}"
.
format
(
cmd
))
subprocess
.
check_call
(
cmd
,
shell
=
True
)
elif
disposition
.
lower
()
==
'import'
:
elif
disposition
.
lower
()
==
'import'
:
# Import
# Go to the platform dir.
cmd
=
"sudo -E -u edxapp /edx/bin/python.edxapp /edx/app/edxapp/edx-platform/manage.py cms --settings=aws import {} {}"
.
format
(
args
.
data_dir
,
repo_name
)
# Need this for dealer to work.
logging
.
debug
(
"Running cmd: {}"
.
format
(
cmd
))
with
chdir
(
platform_dir
):
subprocess
.
check_call
(
cmd
,
shell
=
True
)
# Import
cmd
=
"sudo -E -u edxapp /edx/bin/python.edxapp /edx/app/edxapp/edx-platform/manage.py cms --settings=aws import {} {}"
.
format
(
args
.
data_dir
,
repo_name
)
logging
.
debug
(
"Running cmd: {}"
.
format
(
cmd
))
subprocess
.
check_call
(
cmd
,
shell
=
True
)
# Remove from disk.
# Remove from disk.
cmd
=
"sudo rm -rf {}"
.
format
(
repo_location
)
cmd
=
"sudo rm -rf {}"
.
format
(
repo_location
)
logging
.
debug
(
"Running cmd: {}"
.
format
(
cmd
))
logging
.
debug
(
"Running cmd: {}"
.
format
(
cmd
))
subprocess
.
check_call
(
cmd
,
shell
=
True
)
subprocess
.
check_call
(
cmd
,
shell
=
True
)
# Create the tar file of all xml courses
# Create the tar file of all xml courses
cmd
=
"sudo tar cvzf static_course_content.tar.gz -C {}
."
.
format
(
args
.
data
_dir
)
cmd
=
"sudo tar cvzf static_course_content.tar.gz -C {}
data course_static"
.
format
(
args
.
var
_dir
)
logging
.
debug
(
"Running cmd: {}"
.
format
(
cmd
))
logging
.
debug
(
"Running cmd: {}"
.
format
(
cmd
))
subprocess
.
check_call
(
cmd
,
shell
=
True
)
subprocess
.
check_call
(
cmd
,
shell
=
True
)
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