Commit ba3f8346 by Feanil Patel

Grab the static links directory as well.

parent c197243b
...@@ -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)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment