startup.py 3.05 KB
Newer Older
1 2 3
"""
Module with code executed during Studio startup
"""
4

5 6 7
from django.conf import settings

# Force settings to run so that the python path is modified
8
settings.INSTALLED_APPS  # pylint: disable=pointless-statement
9

10
from openedx.core.lib.django_startup import autostartup
11
import django
12 13
from monkey_patch import (
    third_party_auth,
14
    django_db_models_options
15
)
16

17 18 19
import xmodule.x_module
import cms.lib.xblock.runtime

20 21
from openedx.core.djangoapps.theming.core import enable_comprehensive_theme

Calen Pennington committed
22

23 24 25 26
def run():
    """
    Executed during django startup
    """
27
    third_party_auth.patch()
28
    django_db_models_options.patch()
29

30 31 32 33 34
    # Comprehensive theming needs to be set up before django startup,
    # because modifying django template paths after startup has no effect.
    if settings.COMPREHENSIVE_THEME_DIR:
        enable_comprehensive_theme(settings.COMPREHENSIVE_THEME_DIR)

35
    django.setup()
36

37
    autostartup()
38 39 40

    add_mimetypes()

41 42 43
    if settings.FEATURES.get('USE_CUSTOM_THEME', False):
        enable_theme()

44 45 46 47 48 49 50
    # In order to allow descriptors to use a handler url, we need to
    # monkey-patch the x_module library.
    # TODO: Remove this code when Runtimes are no longer created by modulestores
    # https://openedx.atlassian.net/wiki/display/PLAT/Convert+from+Storage-centric+runtimes+to+Application-centric+runtimes
    xmodule.x_module.descriptor_global_handler_url = cms.lib.xblock.runtime.handler_url
    xmodule.x_module.descriptor_global_local_resource_url = cms.lib.xblock.runtime.local_resource_url

51 52 53 54 55 56 57 58 59 60 61 62 63

def add_mimetypes():
    """
    Add extra mimetypes. Used in xblock_resource.

    If you add a mimetype here, be sure to also add it in lms/startup.py.
    """
    import mimetypes

    mimetypes.add_type('application/vnd.ms-fontobject', '.eot')
    mimetypes.add_type('application/x-font-opentype', '.otf')
    mimetypes.add_type('application/x-font-ttf', '.ttf')
    mimetypes.add_type('application/font-woff', '.woff')
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94


def enable_theme():
    """
    Enable the settings for a custom theme, whose files should be stored
    in ENV_ROOT/themes/THEME_NAME (e.g., edx_all/themes/stanford).
    At this moment this is actually just a fix for collectstatic,
    (see https://openedx.atlassian.net/browse/TNL-726),
    but can be improved with a full theming option also for Studio
    in the future (see lms.startup)
    """
    # Workaround for setting THEME_NAME to an empty
    # string which is the default due to this ansible
    # bug: https://github.com/ansible/ansible/issues/4812
    if settings.THEME_NAME == "":
        settings.THEME_NAME = None
        return

    assert settings.FEATURES['USE_CUSTOM_THEME']
    settings.FAVICON_PATH = 'themes/{name}/images/favicon.ico'.format(
        name=settings.THEME_NAME
    )

    # Calculate the location of the theme's files
    theme_root = settings.ENV_ROOT / "themes" / settings.THEME_NAME

    # Namespace the theme's static files to 'themes/<theme_name>' to
    # avoid collisions with default edX static files
    settings.STATICFILES_DIRS.append(
        (u'themes/{}'.format(settings.THEME_NAME), theme_root / 'static')
    )