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

5
import django
6 7
from django.conf import settings

8 9
import cms.lib.xblock.runtime
import xmodule.x_module
10
from openedx.core.djangoapps.monkey_patch import django_db_models_options
11
from openedx.core.lib.django_startup import autostartup
12

13
# Force settings to run so that the python path is modified
14

15
settings.INSTALLED_APPS  # pylint: disable=pointless-statement
16

17 18 19
from openedx.core.lib.xblock_utils import xblock_local_resource_url
from startup_configurations.validate_config import validate_cms_config

Calen Pennington committed
20

21 22 23
def run():
    """
    Executed during django startup
24 25 26

    NOTE: DO **NOT** add additional code to this method or this file! The Platform Team
          is moving all startup code to more standard locations using Django best practices.
27
    """
28
    django_db_models_options.patch()
29 30

    django.setup()
31

32
    autostartup()
33 34 35

    add_mimetypes()

36 37 38 39 40
    # 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
41
    xmodule.x_module.descriptor_global_local_resource_url = xblock_local_resource_url
42

43 44 45
    # validate configurations on startup
    validate_cms_config(settings)

46 47 48 49 50 51 52 53 54 55 56 57 58

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