Dennis Jeffrey | b95ba5a | 2012-11-12 17:55:18 -0800 | [diff] [blame] | 1 | """Django settings for frontend project. |
Jakob Juelich | 8a764d1 | 2014-10-14 19:24:21 -0700 | [diff] [blame] | 2 | |
| 3 | Two databases are configured for the use with django here. One for tko tables, |
| 4 | which will always be the same database for all instances (the global database), |
| 5 | and one for everything else, which will be the same as the global database for |
| 6 | the master, but a local database for shards. |
| 7 | Additionally there is a third database connection for read only access to the |
| 8 | global database. |
| 9 | |
| 10 | This is implemented using a Django database router. |
| 11 | For more details on how the routing works, see db_router.py. |
Dennis Jeffrey | b95ba5a | 2012-11-12 17:55:18 -0800 | [diff] [blame] | 12 | """ |
mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 13 | |
showard | e90eb5e | 2008-07-25 20:54:21 +0000 | [diff] [blame] | 14 | import os |
mbligh | 437c3a6 | 2008-04-07 00:42:57 +0000 | [diff] [blame] | 15 | import common |
| 16 | from autotest_lib.client.common_lib import global_config |
Jakob Juelich | 934f0dc | 2014-10-14 18:21:13 -0700 | [diff] [blame] | 17 | from autotest_lib.frontend import database_settings_helper |
showard | fa7ef63 | 2008-03-26 00:02:30 +0000 | [diff] [blame] | 18 | |
Dale Curtis | 74a314b | 2011-06-23 14:55:46 -0700 | [diff] [blame] | 19 | c = global_config.global_config |
| 20 | _section = 'AUTOTEST_WEB' |
| 21 | |
| 22 | DEBUG = c.get_config_value(_section, "sql_debug_mode", type=bool, default=False) |
| 23 | TEMPLATE_DEBUG = c.get_config_value(_section, "template_debug_mode", type=bool, |
| 24 | default=False) |
mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 25 | |
| 26 | FULL_ADMIN = False |
| 27 | |
| 28 | ADMINS = ( |
| 29 | # ('Your Name', 'your_email@domain.com'), |
| 30 | ) |
| 31 | |
| 32 | MANAGERS = ADMINS |
| 33 | |
Jakob Juelich | 934f0dc | 2014-10-14 18:21:13 -0700 | [diff] [blame] | 34 | AUTOTEST_DEFAULT = database_settings_helper.get_default_db_config() |
Jakob Juelich | 7bef841 | 2014-10-14 19:11:54 -0700 | [diff] [blame] | 35 | AUTOTEST_GLOBAL = database_settings_helper.get_global_db_config() |
| 36 | AUTOTEST_READONLY = database_settings_helper.get_readonly_db_config() |
Dan Shi | 9a535c9 | 2014-11-24 08:52:40 -0800 | [diff] [blame] | 37 | AUTOTEST_SERVER = database_settings_helper.get_server_db_config() |
Alex Miller | 47d6128 | 2013-04-17 13:53:58 -0700 | [diff] [blame] | 38 | |
| 39 | ALLOWED_HOSTS = '*' |
showard | 09096d8 | 2008-07-07 23:20:49 +0000 | [diff] [blame] | 40 | |
Jakob Juelich | 7bef841 | 2014-10-14 19:11:54 -0700 | [diff] [blame] | 41 | DATABASES = {'default': AUTOTEST_DEFAULT, |
Jakob Juelich | 8a764d1 | 2014-10-14 19:24:21 -0700 | [diff] [blame] | 42 | 'global': AUTOTEST_GLOBAL, |
Dan Shi | 9a535c9 | 2014-11-24 08:52:40 -0800 | [diff] [blame] | 43 | 'readonly': AUTOTEST_READONLY, |
| 44 | 'server': AUTOTEST_SERVER,} |
Mike Truty | 3536b98 | 2011-08-29 13:05:16 -0700 | [diff] [blame] | 45 | |
Jakob Juelich | 934f0dc | 2014-10-14 18:21:13 -0700 | [diff] [blame] | 46 | # Have to set SECRET_KEY before importing connections because of this bug: |
| 47 | # https://code.djangoproject.com/ticket/20704 |
| 48 | # TODO: Order this again after an upgrade to Django 1.6 or higher. |
| 49 | # Make this unique, and don't share it with anybody. |
| 50 | SECRET_KEY = 'pn-t15u(epetamdflb%dqaaxw+5u&2#0u-jah70w1l*_9*)=n7' |
mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 51 | |
Jakob Juelich | 8a764d1 | 2014-10-14 19:24:21 -0700 | [diff] [blame] | 52 | # Do not do this here or from the router, or most unit tests will fail. |
| 53 | # from django.db import connection |
| 54 | |
| 55 | DATABASE_ROUTERS = ['autotest_lib.frontend.db_router.Router'] |
| 56 | |
mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 57 | # prefix applied to all URLs - useful if requests are coming through apache, |
| 58 | # and you need this app to coexist with others |
| 59 | URL_PREFIX = 'afe/server/' |
showard | 250d84d | 2010-01-12 21:59:48 +0000 | [diff] [blame] | 60 | TKO_URL_PREFIX = 'new_tko/server/' |
Mike Truty | ddd44b2 | 2011-04-14 15:38:56 -0700 | [diff] [blame] | 61 | CROSCHART_URL_PREFIX = 'croschart/server/' |
mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 62 | |
| 63 | # Local time zone for this installation. Choices can be found here: |
| 64 | # http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE |
| 65 | # although not all variations may be possible on all operating systems. |
| 66 | # If running in a Windows environment this must be set to the same as your |
| 67 | # system time zone. |
| 68 | TIME_ZONE = 'America/Los_Angeles' |
| 69 | |
| 70 | # Language code for this installation. All choices can be found here: |
| 71 | # http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes |
| 72 | # http://blogs.law.harvard.edu/tech/stories/storyReader$15 |
| 73 | LANGUAGE_CODE = 'en-us' |
| 74 | |
| 75 | SITE_ID = 1 |
| 76 | |
| 77 | # If you set this to False, Django will make some optimizations so as not |
| 78 | # to load the internationalization machinery. |
| 79 | USE_I18N = True |
| 80 | |
| 81 | # Absolute path to the directory that holds media. |
| 82 | # Example: "/home/media/media.lawrence.com/" |
| 83 | MEDIA_ROOT = '' |
| 84 | |
| 85 | # URL that handles the media served from MEDIA_ROOT. |
| 86 | # Example: "http://media.lawrence.com" |
| 87 | MEDIA_URL = '' |
| 88 | |
Jiaxi Luo | c342f9f | 2014-05-19 16:22:03 -0700 | [diff] [blame] | 89 | # URL prefix of static file. Only used by the admin interface. |
| 90 | STATIC_URL = '/' + URL_PREFIX + 'admin/' |
| 91 | |
mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 92 | # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a |
| 93 | # trailing slash. |
| 94 | # Examples: "http://foo.com/media/", "/media/". |
| 95 | ADMIN_MEDIA_PREFIX = '/media/' |
| 96 | |
mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 97 | # List of callables that know how to import templates from various sources. |
| 98 | TEMPLATE_LOADERS = ( |
Mike Truty | f5814ba | 2011-08-29 18:27:46 -0700 | [diff] [blame] | 99 | 'django.template.loaders.filesystem.Loader', |
| 100 | 'django.template.loaders.app_directories.Loader', |
| 101 | # 'django.template.loaders.eggs.Loader', |
mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 102 | ) |
| 103 | |
| 104 | MIDDLEWARE_CLASSES = ( |
| 105 | 'django.middleware.common.CommonMiddleware', |
| 106 | 'django.contrib.sessions.middleware.SessionMiddleware', |
| 107 | 'frontend.apache_auth.ApacheAuthMiddleware', |
| 108 | 'django.contrib.auth.middleware.AuthenticationMiddleware', |
| 109 | 'django.middleware.doc.XViewMiddleware', |
Jiaxi Luo | 76a11d3 | 2014-05-08 19:03:28 -0700 | [diff] [blame] | 110 | 'django.contrib.messages.middleware.MessageMiddleware', |
showard | 00b167c | 2010-02-03 20:29:45 +0000 | [diff] [blame] | 111 | 'frontend.shared.json_html_formatter.JsonToHtmlMiddleware', |
mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 112 | ) |
| 113 | |
| 114 | ROOT_URLCONF = 'frontend.urls' |
| 115 | |
| 116 | TEMPLATE_DIRS = ( |
| 117 | # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". |
| 118 | # Always use forward slashes, even on Windows. |
| 119 | # Don't forget to use absolute paths, not relative paths. |
showard | 37c7fe6 | 2008-07-24 16:35:02 +0000 | [diff] [blame] | 120 | |
Mike Truty | ddd44b2 | 2011-04-14 15:38:56 -0700 | [diff] [blame] | 121 | os.path.abspath(os.path.dirname(__file__) + '/templates'), |
Dennis Jeffrey | b95ba5a | 2012-11-12 17:55:18 -0800 | [diff] [blame] | 122 | os.path.abspath(os.path.dirname(__file__) + '/croschart/templates'), |
| 123 | os.path.abspath(os.path.dirname(__file__) + '/perf-dashboard/templates') |
mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 124 | ) |
| 125 | |
| 126 | INSTALLED_APPS = ( |
| 127 | 'frontend.afe', |
showard | 250d84d | 2010-01-12 21:59:48 +0000 | [diff] [blame] | 128 | 'frontend.tko', |
Mike Truty | ddd44b2 | 2011-04-14 15:38:56 -0700 | [diff] [blame] | 129 | 'frontend.croschart', |
mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 130 | 'django.contrib.admin', |
| 131 | 'django.contrib.auth', |
| 132 | 'django.contrib.contenttypes', |
| 133 | 'django.contrib.sessions', |
| 134 | 'django.contrib.sites', |
| 135 | ) |
| 136 | |
mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 137 | AUTHENTICATION_BACKENDS = ( |
| 138 | 'frontend.apache_auth.SimpleAuthBackend', |
| 139 | ) |
Scott Zawalski | 38428ef | 2012-07-10 15:29:10 -0400 | [diff] [blame] | 140 | # TODO(scottz): Temporary addition until time can be spent untangling middleware |
| 141 | # session crosbug.com/31608 |
| 142 | SESSION_COOKIE_AGE = 1200 |
Aviv Keshet | 62cf047 | 2013-05-04 22:40:17 -0700 | [diff] [blame] | 143 | |
Dan Shi | 9a535c9 | 2014-11-24 08:52:40 -0800 | [diff] [blame] | 144 | AUTOTEST_CREATE_ADMIN_GROUPS = True |