startup.py 2.06 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

9
settings.INSTALLED_APPS  # pylint: disable=pointless-statement
10

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

19 20 21
import xmodule.x_module
import cms.lib.xblock.runtime

22
from startup_configurations.validate_config import validate_cms_config
23 24
from openedx.core.djangoapps.theming.core import enable_theming
from openedx.core.djangoapps.theming.helpers import is_comprehensive_theming_enabled
25

Calen Pennington committed
26

27 28 29 30
def run():
    """
    Executed during django startup
    """
31
    third_party_auth.patch()
32
    django_db_models_options.patch()
33

34 35
    # Comprehensive theming needs to be set up before django startup,
    # because modifying django template paths after startup has no effect.
36 37
    if is_comprehensive_theming_enabled():
        enable_theming()
38

39
    django.setup()
40

41
    autostartup()
42 43 44

    add_mimetypes()

45 46 47 48 49
    # 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
50
    xmodule.x_module.descriptor_global_local_resource_url = xblock_local_resource_url
51

52 53 54
    # validate configurations on startup
    validate_cms_config(settings)

55 56 57 58 59 60 61 62 63 64 65 66 67

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')