startup.py 5.26 KB
Newer Older
1 2 3
"""
Module for code that should run during LMS startup
"""
Calen Pennington committed
4

5 6
# pylint: disable=unused-argument

7 8 9
from django.conf import settings

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

12
from openedx.core.lib.django_startup import autostartup
13
import edxmako
14
import logging
15
from monkey_patch import django_utils_translation
16
import analytics
17

18 19

log = logging.getLogger(__name__)
20

21

22 23 24 25
def run():
    """
    Executed during django startup
    """
26 27
    django_utils_translation.patch()

28
    autostartup()
29

30 31
    add_mimetypes()

32
    if settings.FEATURES.get('USE_CUSTOM_THEME', False):
David Baumgold committed
33
        enable_stanford_theme()
34

35 36 37
    if settings.FEATURES.get('USE_MICROSITES', False):
        enable_microsites()

38 39 40
    if settings.FEATURES.get('ENABLE_THIRD_PARTY_AUTH', False):
        enable_third_party_auth()

41
    # Initialize Segment analytics module by setting the write_key.
42 43
    if settings.LMS_SEGMENT_KEY:
        analytics.write_key = settings.LMS_SEGMENT_KEY
44

45 46 47 48
    # register any dependency injections that we need to support in edx_proctoring
    # right now edx_proctoring is dependent on the openedx.core.djangoapps.credit
    # as well as the instructor dashboard (for deleting student attempts)
    if settings.FEATURES.get('ENABLE_PROCTORED_EXAMS'):
49 50 51 52 53
        # Import these here to avoid circular dependencies of the form:
        # edx-platform app --> DRF --> django translation --> edx-platform app
        from edx_proctoring.runtime import set_runtime_service
        from instructor.services import InstructorService
        from openedx.core.djangoapps.credit.services import CreditService
54 55 56
        set_runtime_service('credit', CreditService())
        set_runtime_service('instructor', InstructorService())

57

58 59 60
def add_mimetypes():
    """
    Add extra mimetypes. Used in xblock_resource.
61 62

    If you add a mimetype here, be sure to also add it in cms/startup.py.
63 64 65 66 67 68 69 70 71
    """
    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')


David Baumgold committed
72
def enable_stanford_theme():
73 74 75 76 77 78 79
    """
    Enable the settings for a custom theme, whose files should be stored
    in ENV_ROOT/themes/THEME_NAME (e.g., edx_all/themes/stanford).
    """
    # 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
David Baumgold committed
80
    if getattr(settings, "THEME_NAME", "") == "":
81 82 83 84 85 86 87 88 89 90 91 92
        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

    # Include the theme's templates in the template search paths
93
    settings.TEMPLATE_DIRS.insert(0, theme_root / 'templates')
94
    edxmako.paths.add_lookup('main', theme_root / 'templates', prepend=True)
95 96 97 98 99 100

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

102 103 104
    # Include theme locale path for django translations lookup
    settings.LOCALE_PATHS = (theme_root / 'conf/locale',) + settings.LOCALE_PATHS

105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130

def enable_microsites():
    """
    Enable the use of microsites, which are websites that allow
    for subdomains for the edX platform, e.g. foo.edx.org
    """

    microsites_root = settings.MICROSITE_ROOT_DIR
    microsite_config_dict = settings.MICROSITE_CONFIGURATION

    for ms_name, ms_config in microsite_config_dict.items():
        # Calculate the location of the microsite's files
        ms_root = microsites_root / ms_name
        ms_config = microsite_config_dict[ms_name]

        # pull in configuration information from each
        # microsite root

        if ms_root.isdir():
            # store the path on disk for later use
            ms_config['microsite_root'] = ms_root

            template_dir = ms_root / 'templates'
            ms_config['template_dir'] = template_dir

            ms_config['microsite_name'] = ms_name
131
            log.info('Loading microsite %s', ms_root)
132 133 134
        else:
            # not sure if we have application logging at this stage of
            # startup
135
            log.error('Error loading microsite %s. Directory does not exist', ms_root)
136 137 138 139 140 141
            # remove from our configuration as it is not valid
            del microsite_config_dict[ms_name]

    # if we have any valid microsites defined, let's wire in the Mako and STATIC_FILES search paths
    if microsite_config_dict:
        settings.TEMPLATE_DIRS.append(microsites_root)
142
        edxmako.paths.add_lookup('main', microsites_root)
143 144

        settings.STATICFILES_DIRS.insert(0, microsites_root)
145 146 147 148 149 150 151 152 153 154


def enable_third_party_auth():
    """
    Enable the use of third_party_auth, which allows users to sign in to edX
    using other identity providers. For configuration details, see
    common/djangoapps/third_party_auth/settings.py.
    """

    from third_party_auth import settings as auth_settings
155
    auth_settings.apply_settings(settings)