blob: 528929dacbcf6c31de1dce8a73ff6b3752d83987 [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',
lombardofr3c7234a2019-12-03 11:23:17 +010067 'netslicehandler',
68 'k8sclusterhandler',
69 'k8srepohandler'
lombardofr099364f2018-06-12 11:21:02 +020070
lombardoffb37bca2018-05-03 16:20:04 +020071]
72
73MIDDLEWARE_CLASSES = [
74 'django.middleware.security.SecurityMiddleware',
75 'django.contrib.sessions.middleware.SessionMiddleware',
lombardofr99f922f2018-07-17 17:27:36 +020076 'projecthandler.middleware.OsmProjectMiddleware',
lombardoffb37bca2018-05-03 16:20:04 +020077 'django.middleware.common.CommonMiddleware',
78 'django.middleware.csrf.CsrfViewMiddleware',
79 'django.contrib.auth.middleware.AuthenticationMiddleware',
80 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
81 'django.contrib.messages.middleware.MessageMiddleware',
82 'django.middleware.clickjacking.XFrameOptionsMiddleware',
83
lombardofr99f922f2018-07-17 17:27:36 +020084
lombardoffb37bca2018-05-03 16:20:04 +020085]
86
lombardofr07930222018-06-19 16:59:45 +020087SESSION_ENGINE ='django.contrib.sessions.backends.db'
lombardoffb37bca2018-05-03 16:20:04 +020088SESSION_COOKIE_AGE = 3500 #25 min
89SESSION_EXPIRE_AT_BROWSER_CLOSE = True
90SESSION_SAVE_EVERY_REQUEST = True
91
92ROOT_URLCONF = 'sf_t3d.urls'
93
94TEMPLATES = [
95 {
96 'BACKEND': 'django.template.backends.django.DjangoTemplates',
97 'DIRS': [
98 os.path.join(BASE_DIR, 'template'),
99 os.path.join(BASE_DIR, 'projecthandler', 'template'),
100 os.path.join(BASE_DIR, 'projecthandler', 'template', 'download'),
101 os.path.join(BASE_DIR, 'projecthandler', 'template', 'project'),
lombardofre1ed7b22018-12-19 17:27:24 +0100102 os.path.join(BASE_DIR, 'packagehandler', 'template'),
lombardofr3218b2b2018-10-29 13:41:08 +0100103 os.path.join(BASE_DIR, 'descriptorhandler', 'template'),
lombardoffb37bca2018-05-03 16:20:04 +0200104 os.path.join(BASE_DIR, 'vimhandler', 'template'),
lombardofr3fcf21a2019-03-11 10:26:08 +0100105 os.path.join(BASE_DIR, 'wimhandler', 'template'),
lombardoffb37bca2018-05-03 16:20:04 +0200106 os.path.join(BASE_DIR, 'instancehandler', 'template'),
lombardofa03da5e2018-06-02 18:36:44 +0200107 os.path.join(BASE_DIR, 'sdnctrlhandler', 'template'),
lombardofr10b52d12018-07-17 23:42:28 +0200108 os.path.join(BASE_DIR, 'userhandler', 'templates'),
lombardofrc3051ef2019-01-16 10:59:18 +0100109 os.path.join(BASE_DIR, 'netslicehandler', 'template'),
lombardofr3c7234a2019-12-03 11:23:17 +0100110 os.path.join(BASE_DIR, 'k8sclusterhandler', 'template'),
111 os.path.join(BASE_DIR, 'k8srepohandler', 'template'),
lombardoffb37bca2018-05-03 16:20:04 +0200112 ],
113 'APP_DIRS': True,
114 'OPTIONS': {
115 'context_processors': [
116 'django.template.context_processors.debug',
117 'django.template.context_processors.request',
118 'django.contrib.auth.context_processors.auth',
119 'django.contrib.messages.context_processors.messages',
120 'sf_t3d.context_processor.conf_constants',
121 ],
122 'libraries':{
123 'get': 'sf_t3d.templatetags.get',
lombardof74ed51a2018-05-11 01:07:01 +0200124 'date_tag': 'sf_t3d.templatetags.datetag',
lombardoffb37bca2018-05-03 16:20:04 +0200125 }
126 },
127 },
128]
129
130WSGI_APPLICATION = 'sf_t3d.wsgi.application'
131
132
133# Database
134# https://docs.djangoproject.com/en/1.9/ref/settings/#databases
135
Benjamin Diaz65f0dc42019-05-24 17:54:48 -0300136sql_uri = make_url(os.getenv('OSMUI_SQL_DATABASE_URI', 'sqlite:///db.sqlite3'))
137if 'sqlite' in sql_uri.drivername:
138 DATABASES = {
139 'default': {
140 'ENGINE': 'django.db.backends.sqlite3',
141 'NAME': os.path.join(BASE_DIR, sql_uri.database if sql_uri.database else 'db.sqlite3'),
142 }
lombardoffb37bca2018-05-03 16:20:04 +0200143 }
Benjamin Diaz65f0dc42019-05-24 17:54:48 -0300144else:
145 DATABASES = {
146 'default': {
147 'ENGINE': 'django.db.backends.mysql',
148 'NAME': sql_uri.database if sql_uri.database else 'lwui',
149 'USER': sql_uri.username,
150 'PASSWORD': sql_uri.password,
151 'HOST': sql_uri.host,
152 'PORT': sql_uri.port,
153 }
154 }
155
lombardoffb37bca2018-05-03 16:20:04 +0200156
lombardofr099364f2018-06-12 11:21:02 +0200157AUTHENTICATION_BACKENDS = ['authosm.backend.OsmBackend']
158
lombardoffb37bca2018-05-03 16:20:04 +0200159
160# Password validation
161# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
162
163AUTH_PASSWORD_VALIDATORS = [
164 {
165 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
166 },
167 {
168 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
169 },
170 {
171 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
172 },
173 {
174 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
175 },
176]
177
178
179# Internationalization
180# https://docs.djangoproject.com/en/1.9/topics/i18n/
181
182LANGUAGE_CODE = 'en-us'
183
184TIME_ZONE = 'UTC'
185
186USE_I18N = True
187
188USE_L10N = True
189
190USE_TZ = True
191
192
193# Static files (CSS, JavaScript, Images)
194# https://docs.djangoproject.com/en/1.9/howto/static-files/
195
196STATIC_URL = '/static/'
lombardofrc89a4a02018-09-02 16:15:25 +0200197if DEBUG:
198 STATICFILES_FINDERS = (
199 'django.contrib.staticfiles.finders.FileSystemFinder',
200 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
201 'django.contrib.staticfiles.finders.DefaultStorageFinder'
202 )
203 STATICFILES_DIRS = (
204 # Put strings here, like "/home/html/static" or "C:/www/django/static".
205 # Always use forward slashes, even on Windows.
206 # Don't forget to use absolute paths, not relative paths.
207 os.path.join(BASE_DIR, "static"),
208 )
209else:
210 STATIC_ROOT = os.path.join(BASE_DIR, "static/")
lombardoffb37bca2018-05-03 16:20:04 +0200211
212LOCALE_PATHS = (
213 os.path.join(BASE_DIR, 'locale'),
lombardofrc89a4a02018-09-02 16:15:25 +0200214)
Benjamin Diazc38fffb2019-07-24 15:57:38 -0300215
216LOGGING = {
217 'version': 1,
218 'disable_existing_loggers': False,
219 'formatters': {
220 'verbose': {
221 'format': '[django] %(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
222 }
223 },
224 'handlers': {
225 'console': {
226 'level': 'DEBUG',
227 'class': 'logging.StreamHandler',
228 'stream': sys.stdout,
229 'formatter': 'verbose'
230 },
231 },
232 'loggers': {
233 'django': {
234 'handlers': ['console'],
235 'level': 'DEBUG',
236 'propagate': True,
237 },
238 },
239}