Fix bug 1262 - Updated requirements to use mysqlclient
[osm/LW-UI.git] / sf_t3d / settings.py
1 #
2 # Copyright 2018 EveryUP Srl
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 import os
18 import sys
19
20 from sqlalchemy.engine.url import make_url
21
22 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
23 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
24
25
26 # Quick-start development settings - unsuitable for production
27 # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
28
29 # SECURITY WARNING: keep the secret key used in production secret!
30 SECRET_KEY = 'o5+o2jv(3-dqr(&ia#-@79cgr%xi*s+6xjws^8cxp211ge#buf'
31 if os.getenv('DJANGO_ENV') == 'prod':
32 DEBUG = False
33 else:
34 DEBUG = True
35
36 ALLOWED_HOSTS = ['*']
37
38 AUTH_USER_MODEL = "authosm.OsmUser"
39
40 SITE_NAME = "Open Source MANO"
41 SHORT_SITE_NAME = "OSM"
42
43 LOGIN_URL = '/auth/'
44 LOGOUT_URL = '/auth/'
45
46 VERSION = "0.0.1"
47
48
49 # Application definition
50 INSTALLED_APPS = [
51 'django.contrib.admin',
52 'django.contrib.auth',
53 'django.contrib.contenttypes',
54 'django.contrib.messages',
55 'django.contrib.staticfiles',
56 'django.contrib.sessions',
57 'authosm',
58 'projecthandler',
59 'packagehandler',
60 'descriptorhandler',
61 'vimhandler',
62 'wimhandler',
63 'instancehandler',
64 'sdnctrlhandler',
65 'userhandler',
66 'rolehandler',
67 'netslicehandler',
68 'k8sclusterhandler',
69 'k8srepohandler',
70 'osmrepohandler'
71
72 ]
73
74 MIDDLEWARE_CLASSES = [
75 'django.middleware.security.SecurityMiddleware',
76 'django.contrib.sessions.middleware.SessionMiddleware',
77 'projecthandler.middleware.OsmProjectMiddleware',
78 'django.middleware.common.CommonMiddleware',
79 'django.middleware.csrf.CsrfViewMiddleware',
80 'django.contrib.auth.middleware.AuthenticationMiddleware',
81 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
82 'django.contrib.messages.middleware.MessageMiddleware',
83 'django.middleware.clickjacking.XFrameOptionsMiddleware',
84
85
86 ]
87
88 SESSION_ENGINE ='django.contrib.sessions.backends.db'
89 SESSION_COOKIE_AGE = 3500 #25 min
90 SESSION_EXPIRE_AT_BROWSER_CLOSE = True
91 SESSION_SAVE_EVERY_REQUEST = True
92
93 ROOT_URLCONF = 'sf_t3d.urls'
94
95 TEMPLATES = [
96 {
97 'BACKEND': 'django.template.backends.django.DjangoTemplates',
98 'DIRS': [
99 os.path.join(BASE_DIR, 'template'),
100 os.path.join(BASE_DIR, 'projecthandler', 'template'),
101 os.path.join(BASE_DIR, 'projecthandler', 'template', 'download'),
102 os.path.join(BASE_DIR, 'projecthandler', 'template', 'project'),
103 os.path.join(BASE_DIR, 'packagehandler', 'template'),
104 os.path.join(BASE_DIR, 'descriptorhandler', 'template'),
105 os.path.join(BASE_DIR, 'vimhandler', 'template'),
106 os.path.join(BASE_DIR, 'wimhandler', 'template'),
107 os.path.join(BASE_DIR, 'instancehandler', 'template'),
108 os.path.join(BASE_DIR, 'sdnctrlhandler', 'template'),
109 os.path.join(BASE_DIR, 'userhandler', 'templates'),
110 os.path.join(BASE_DIR, 'netslicehandler', 'template'),
111 os.path.join(BASE_DIR, 'k8sclusterhandler', 'template'),
112 os.path.join(BASE_DIR, 'k8srepohandler', 'template'),
113 os.path.join(BASE_DIR, 'osmrepohandler', 'template'),
114 ],
115 'APP_DIRS': True,
116 'OPTIONS': {
117 'context_processors': [
118 'django.template.context_processors.debug',
119 'django.template.context_processors.request',
120 'django.contrib.auth.context_processors.auth',
121 'django.contrib.messages.context_processors.messages',
122 'sf_t3d.context_processor.conf_constants',
123 ],
124 'libraries':{
125 'get': 'sf_t3d.templatetags.get',
126 'date_tag': 'sf_t3d.templatetags.datetag',
127 }
128 },
129 },
130 ]
131
132 WSGI_APPLICATION = 'sf_t3d.wsgi.application'
133
134
135 # Database
136 # https://docs.djangoproject.com/en/1.9/ref/settings/#databases
137
138 sql_uri = make_url(os.getenv('OSMUI_SQL_DATABASE_URI', 'sqlite:///db.sqlite3'))
139 if 'sqlite' in sql_uri.drivername:
140 DATABASES = {
141 'default': {
142 'ENGINE': 'django.db.backends.sqlite3',
143 'NAME': os.path.join(BASE_DIR, sql_uri.database if sql_uri.database else 'db.sqlite3'),
144 }
145 }
146 else:
147 DATABASES = {
148 'default': {
149 'ENGINE': 'django.db.backends.mysql',
150 'NAME': sql_uri.database if sql_uri.database else 'lwui',
151 'USER': sql_uri.username,
152 'PASSWORD': sql_uri.password,
153 'HOST': sql_uri.host,
154 'PORT': sql_uri.port,
155 }
156 }
157
158
159 AUTHENTICATION_BACKENDS = ['authosm.backend.OsmBackend']
160
161
162 # Password validation
163 # https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
164
165 AUTH_PASSWORD_VALIDATORS = [
166 {
167 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
168 },
169 {
170 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
171 },
172 {
173 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
174 },
175 {
176 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
177 },
178 ]
179
180
181 # Internationalization
182 # https://docs.djangoproject.com/en/1.9/topics/i18n/
183
184 LANGUAGE_CODE = 'en-us'
185
186 TIME_ZONE = 'UTC'
187
188 USE_I18N = True
189
190 USE_L10N = True
191
192 USE_TZ = True
193
194
195 # Static files (CSS, JavaScript, Images)
196 # https://docs.djangoproject.com/en/1.9/howto/static-files/
197
198 STATIC_URL = '/static/'
199 if DEBUG:
200 STATICFILES_FINDERS = (
201 'django.contrib.staticfiles.finders.FileSystemFinder',
202 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
203 'django.contrib.staticfiles.finders.DefaultStorageFinder'
204 )
205 STATICFILES_DIRS = (
206 # Put strings here, like "/home/html/static" or "C:/www/django/static".
207 # Always use forward slashes, even on Windows.
208 # Don't forget to use absolute paths, not relative paths.
209 os.path.join(BASE_DIR, "static"),
210 )
211 else:
212 STATIC_ROOT = os.path.join(BASE_DIR, "static/")
213
214 LOCALE_PATHS = (
215 os.path.join(BASE_DIR, 'locale'),
216 )
217
218 LOGGING = {
219 'version': 1,
220 'disable_existing_loggers': False,
221 'formatters': {
222 'verbose': {
223 'format': '[django] %(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
224 }
225 },
226 'handlers': {
227 'console': {
228 'level': 'DEBUG',
229 'class': 'logging.StreamHandler',
230 'stream': sys.stdout,
231 'formatter': 'verbose'
232 },
233 },
234 'loggers': {
235 'django': {
236 'handlers': ['console'],
237 'level': 'DEBUG',
238 'propagate': True,
239 },
240 },
241 }