7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-02 14:20:47 +00:00
tutor/tutor/scripts.py

90 lines
2.8 KiB
Python
Raw Normal View History

from . import env
from . import exceptions
from . import fmt
from . import plugins
class BaseRunner:
def __init__(self, root, config):
self.root = root
self.config = config
def run(self, service, *path):
2019-06-05 17:57:30 +00:00
command = self.render(*path)
self.exec(service, command)
2019-06-05 17:57:30 +00:00
def render(self, *path):
return env.render_file(self.config, *path).strip()
def exec(self, service, command):
raise NotImplementedError
def check_service_is_activated(self, service):
if not self.is_activated(service):
raise exceptions.TutorError(
"This command may only be executed on the server where the {} is running".format(
service
)
)
def is_activated(self, service):
return self.config["ACTIVATE_" + service.upper()]
def iter_plugin_hooks(self, hook):
yield from plugins.iter_hooks(self.config, hook)
def initialise(runner):
fmt.echo_info("Initialising all services...")
runner.run("mysql", "hooks", "mysql", "init")
for plugin_name, hook in runner.iter_plugin_hooks("pre-init"):
for service in hook:
fmt.echo_info(
2019-07-05 06:31:28 +00:00
"Plugin {}: running pre-init for service {}...".format(
plugin_name, service
)
)
runner.run(service, plugin_name, "hooks", service, "pre-init")
2019-07-03 14:09:33 +00:00
for service in ["lms", "cms", "forum"]:
if runner.is_activated(service):
fmt.echo_info("Initialising {}...".format(service))
runner.run(service, "hooks", service, "init")
for plugin_name, hook in runner.iter_plugin_hooks("init"):
for service in hook:
fmt.echo_info(
"Plugin {}: running init for service {}...".format(plugin_name, service)
)
runner.run(service, plugin_name, "hooks", service, "init")
fmt.echo_info("All services initialised.")
def create_user_command(superuser, staff, username, email, password=None):
command = """
export DJANGO_SETTINGS_MODULE=$SERVICE_VARIANT.envs.$SETTINGS
echo "Loading settings $DJANGO_SETTINGS_MODULE"
"""
opts = ""
if superuser:
opts += " --superuser"
if staff:
opts += " --staff"
command += """
./manage.py lms manage_user {opts} {username} {email}
"""
if password:
command += """
./manage.py lms shell -c "from django.contrib.auth import get_user_model; u = get_user_model().objects.get(username='{username}'); u.set_password('{password}'); u.save()"
"""
else:
command += """
./manage.py lms changepassword {username}
"""
return command.format(opts=opts, username=username, email=email, password=password)
def import_demo_course(runner):
runner.check_service_is_activated("cms")
runner.run("cms", "hooks", "cms", "importdemocourse")