blob: 0beb212ef512f3636bc0d298b1a96193e615fb33 [file] [log] [blame]
lombardofr3218b2b2018-10-29 13:41:08 +01001#
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#
lombardoffb37bca2018-05-03 16:20:04 +020016
17import os
Benjamin Diazc38fffb2019-07-24 15:57:38 -030018import sys
19
Benjamin Diaz65f0dc42019-05-24 17:54:48 -030020from sqlalchemy.engine.url import make_url
lombardoffb37bca2018-05-03 16:20:04 +020021
22# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
23BASE_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!
30SECRET_KEY = 'o5+o2jv(3-dqr(&ia#-@79cgr%xi*s+6xjws^8cxp211ge#buf'
lombardofrc89a4a02018-09-02 16:15:25 +020031if os.getenv('DJANGO_ENV') == 'prod':
32 DEBUG = False
33else:
34 DEBUG = True
lombardofr3fcf21a2019-03-11 10:26:08 +010035
lombardofrc89a4a02018-09-02 16:15:25 +020036ALLOWED_HOSTS = ['*']
lombardoffb37bca2018-05-03 16:20:04 +020037
lombardofr099364f2018-06-12 11:21:02 +020038AUTH_USER_MODEL = "authosm.OsmUser"
lombardoffb37bca2018-05-03 16:20:04 +020039
lombardof33848292018-05-08 10:12:14 +020040SITE_NAME = "Open Source MANO"
41SHORT_SITE_NAME = "OSM"
lombardoffb37bca2018-05-03 16:20:04 +020042
43LOGIN_URL = '/auth/'
44LOGOUT_URL = '/auth/'
45
46VERSION = "0.0.1"
47
48
49# Application definition
50INSTALLED_APPS = [
51 'django.contrib.admin',
52 'django.contrib.auth',
53 'django.contrib.contenttypes',
54 'django.contrib.messages',
55 'django.contrib.staticfiles',
lombardofr07930222018-06-19 16:59:45 +020056 'django.contrib.sessions',
lombardofr099364f2018-06-12 11:21:02 +020057 'authosm',
lombardoffb37bca2018-05-03 16:20:04 +020058 'projecthandler',
lombardofre1ed7b22018-12-19 17:27:24 +010059 'packagehandler',
lombardofr3218b2b2018-10-29 13:41:08 +010060 'descriptorhandler',
lombardoffb37bca2018-05-03 16:20:04 +020061 'vimhandler',
lombardofr3fcf21a2019-03-11 10:26:08 +010062 'wimhandler',
lombardofa03da5e2018-06-02 18:36:44 +020063 'instancehandler',
lombardofr099364f2018-06-12 11:21:02 +020064 'sdnctrlhandler',
lombardofrc3051ef2019-01-16 10:59:18 +010065 'userhandler',
lombardofr8da23132019-06-02 17:18:48 +020066 'rolehandler',
lombardofrc3051ef2019-01-16 10:59:18 +010067 'netslicehandler'
lombardofr099364f2018-06-12 11:21:02 +020068
lombardoffb37bca2018-05-03 16:20:04 +020069]
70
71MIDDLEWARE_CLASSES = [
72 'django.middleware.security.SecurityMiddleware',
73 'django.contrib.sessions.middleware.SessionMiddleware',
lombardofr99f922f2018-07-17 17:27:36 +020074 'projecthandler.middleware.OsmProjectMiddleware',
lombardoffb37bca2018-05-03 16:20:04 +020075 'django.middleware.common.CommonMiddleware',
76 'django.middleware.csrf.CsrfViewMiddleware',
77 'django.contrib.auth.middleware.AuthenticationMiddleware',
78 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
79 'django.contrib.messages.middleware.MessageMiddleware',
80 'django.middleware.clickjacking.XFrameOptionsMiddleware',
81
lombardofr99f922f2018-07-17 17:27:36 +020082
lombardoffb37bca2018-05-03 16:20:04 +020083]
84
lombardofr07930222018-06-19 16:59:45 +020085SESSION_ENGINE ='django.contrib.sessions.backends.db'
lombardoffb37bca2018-05-03 16:20:04 +020086SESSION_COOKIE_AGE = 3500 #25 min
87SESSION_EXPIRE_AT_BROWSER_CLOSE = True
88SESSION_SAVE_EVERY_REQUEST = True
89
90ROOT_URLCONF = 'sf_t3d.urls'
91
92TEMPLATES = [
93 {
94 'BACKEND': 'django.template.backends.django.DjangoTemplates',
95 'DIRS': [
96 os.path.join(BASE_DIR, 'template'),
97 os.path.join(BASE_DIR, 'projecthandler', 'template'),
98 os.path.join(BASE_DIR, 'projecthandler', 'template', 'download'),
99 os.path.join(BASE_DIR, 'projecthandler', 'template', 'project'),
lombardofre1ed7b22018-12-19 17:27:24 +0100100 os.path.join(BASE_DIR, 'packagehandler', 'template'),
lombardofr3218b2b2018-10-29 13:41:08 +0100101 os.path.join(BASE_DIR, 'descriptorhandler', 'template'),
lombardoffb37bca2018-05-03 16:20:04 +0200102 os.path.join(BASE_DIR, 'vimhandler', 'template'),
lombardofr3fcf21a2019-03-11 10:26:08 +0100103 os.path.join(BASE_DIR, 'wimhandler', 'template'),
lombardoffb37bca2018-05-03 16:20:04 +0200104 os.path.join(BASE_DIR, 'instancehandler', 'template'),
lombardofa03da5e2018-06-02 18:36:44 +0200105 os.path.join(BASE_DIR, 'sdnctrlhandler', 'template'),
lombardofr10b52d12018-07-17 23:42:28 +0200106 os.path.join(BASE_DIR, 'userhandler', 'templates'),
lombardofrc3051ef2019-01-16 10:59:18 +0100107 os.path.join(BASE_DIR, 'netslicehandler', 'template'),
lombardoffb37bca2018-05-03 16:20:04 +0200108 ],
109 'APP_DIRS': True,
110 'OPTIONS': {
111 'context_processors': [
112 'django.template.context_processors.debug',
113 'django.template.context_processors.request',
114 'django.contrib.auth.context_processors.auth',
115 'django.contrib.messages.context_processors.messages',
116 'sf_t3d.context_processor.conf_constants',
117 ],
118 'libraries':{
119 'get': 'sf_t3d.templatetags.get',
lombardof74ed51a2018-05-11 01:07:01 +0200120 'date_tag': 'sf_t3d.templatetags.datetag',
lombardoffb37bca2018-05-03 16:20:04 +0200121 }
122 },
123 },
124]
125
126WSGI_APPLICATION = 'sf_t3d.wsgi.application'
127
128
129# Database
130# https://docs.djangoproject.com/en/1.9/ref/settings/#databases
131
Benjamin Diaz65f0dc42019-05-24 17:54:48 -0300132sql_uri = make_url(os.getenv('OSMUI_SQL_DATABASE_URI', 'sqlite:///db.sqlite3'))
133if 'sqlite' in sql_uri.drivername:
134 DATABASES = {
135 'default': {
136 'ENGINE': 'django.db.backends.sqlite3',
137 'NAME': os.path.join(BASE_DIR, sql_uri.database if sql_uri.database else 'db.sqlite3'),
138 }
lombardoffb37bca2018-05-03 16:20:04 +0200139 }
Benjamin Diaz65f0dc42019-05-24 17:54:48 -0300140else:
141 DATABASES = {
142 'default': {
143 'ENGINE': 'django.db.backends.mysql',
144 'NAME': sql_uri.database if sql_uri.database else 'lwui',
145 'USER': sql_uri.username,
146 'PASSWORD': sql_uri.password,
147 'HOST': sql_uri.host,
148 'PORT': sql_uri.port,
149 }
150 }
151
lombardoffb37bca2018-05-03 16:20:04 +0200152
lombardofr099364f2018-06-12 11:21:02 +0200153AUTHENTICATION_BACKENDS = ['authosm.backend.OsmBackend']
154
lombardoffb37bca2018-05-03 16:20:04 +0200155
156# Password validation
157# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
158
159AUTH_PASSWORD_VALIDATORS = [
160 {
161 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
162 },
163 {
164 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
165 },
166 {
167 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
168 },
169 {
170 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
171 },
172]
173
174
175# Internationalization
176# https://docs.djangoproject.com/en/1.9/topics/i18n/
177
178LANGUAGE_CODE = 'en-us'
179
180TIME_ZONE = 'UTC'
181
182USE_I18N = True
183
184USE_L10N = True
185
186USE_TZ = True
187
188
189# Static files (CSS, JavaScript, Images)
190# https://docs.djangoproject.com/en/1.9/howto/static-files/
191
192STATIC_URL = '/static/'
lombardofrc89a4a02018-09-02 16:15:25 +0200193if DEBUG:
194 STATICFILES_FINDERS = (
195 'django.contrib.staticfiles.finders.FileSystemFinder',
196 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
197 'django.contrib.staticfiles.finders.DefaultStorageFinder'
198 )
199 STATICFILES_DIRS = (
200 # Put strings here, like "/home/html/static" or "C:/www/django/static".
201 # Always use forward slashes, even on Windows.
202 # Don't forget to use absolute paths, not relative paths.
203 os.path.join(BASE_DIR, "static"),
204 )
205else:
206 STATIC_ROOT = os.path.join(BASE_DIR, "static/")
lombardoffb37bca2018-05-03 16:20:04 +0200207
208LOCALE_PATHS = (
209 os.path.join(BASE_DIR, 'locale'),
lombardofrc89a4a02018-09-02 16:15:25 +0200210)
Benjamin Diazc38fffb2019-07-24 15:57:38 -0300211
212LOGGING = {
213 'version': 1,
214 'disable_existing_loggers': False,
215 'formatters': {
216 'verbose': {
217 'format': '[django] %(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
218 }
219 },
220 'handlers': {
221 'console': {
222 'level': 'DEBUG',
223 'class': 'logging.StreamHandler',
224 'stream': sys.stdout,
225 'formatter': 'verbose'
226 },
227 },
228 'loggers': {
229 'django': {
230 'handlers': ['console'],
231 'level': 'DEBUG',
232 'propagate': True,
233 },
234 },
235}