blob: d000e65b975a6ffe364fa45e3605288988e754c6 [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
18
19# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
20BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
21
22
23# Quick-start development settings - unsuitable for production
24# See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
25
26# SECURITY WARNING: keep the secret key used in production secret!
27SECRET_KEY = 'o5+o2jv(3-dqr(&ia#-@79cgr%xi*s+6xjws^8cxp211ge#buf'
lombardofrc89a4a02018-09-02 16:15:25 +020028if os.getenv('DJANGO_ENV') == 'prod':
29 DEBUG = False
30else:
31 DEBUG = True
lombardofr3fcf21a2019-03-11 10:26:08 +010032
lombardofrc89a4a02018-09-02 16:15:25 +020033ALLOWED_HOSTS = ['*']
lombardoffb37bca2018-05-03 16:20:04 +020034
lombardofr099364f2018-06-12 11:21:02 +020035AUTH_USER_MODEL = "authosm.OsmUser"
lombardoffb37bca2018-05-03 16:20:04 +020036
lombardof33848292018-05-08 10:12:14 +020037SITE_NAME = "Open Source MANO"
38SHORT_SITE_NAME = "OSM"
lombardoffb37bca2018-05-03 16:20:04 +020039
40LOGIN_URL = '/auth/'
41LOGOUT_URL = '/auth/'
42
43VERSION = "0.0.1"
44
45
46# Application definition
47INSTALLED_APPS = [
48 'django.contrib.admin',
49 'django.contrib.auth',
50 'django.contrib.contenttypes',
51 'django.contrib.messages',
52 'django.contrib.staticfiles',
lombardofr07930222018-06-19 16:59:45 +020053 'django.contrib.sessions',
lombardofr099364f2018-06-12 11:21:02 +020054 'authosm',
lombardoffb37bca2018-05-03 16:20:04 +020055 'projecthandler',
lombardofre1ed7b22018-12-19 17:27:24 +010056 'packagehandler',
lombardofr3218b2b2018-10-29 13:41:08 +010057 'descriptorhandler',
lombardoffb37bca2018-05-03 16:20:04 +020058 'vimhandler',
lombardofr3fcf21a2019-03-11 10:26:08 +010059 'wimhandler',
lombardofa03da5e2018-06-02 18:36:44 +020060 'instancehandler',
lombardofr099364f2018-06-12 11:21:02 +020061 'sdnctrlhandler',
lombardofrc3051ef2019-01-16 10:59:18 +010062 'userhandler',
63 'netslicehandler'
lombardofr099364f2018-06-12 11:21:02 +020064
lombardoffb37bca2018-05-03 16:20:04 +020065]
66
67MIDDLEWARE_CLASSES = [
68 'django.middleware.security.SecurityMiddleware',
69 'django.contrib.sessions.middleware.SessionMiddleware',
lombardofr99f922f2018-07-17 17:27:36 +020070 'projecthandler.middleware.OsmProjectMiddleware',
lombardoffb37bca2018-05-03 16:20:04 +020071 'django.middleware.common.CommonMiddleware',
72 'django.middleware.csrf.CsrfViewMiddleware',
73 'django.contrib.auth.middleware.AuthenticationMiddleware',
74 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
75 'django.contrib.messages.middleware.MessageMiddleware',
76 'django.middleware.clickjacking.XFrameOptionsMiddleware',
77
lombardofr99f922f2018-07-17 17:27:36 +020078
lombardoffb37bca2018-05-03 16:20:04 +020079]
80
lombardofr07930222018-06-19 16:59:45 +020081SESSION_ENGINE ='django.contrib.sessions.backends.db'
lombardoffb37bca2018-05-03 16:20:04 +020082SESSION_COOKIE_AGE = 3500 #25 min
83SESSION_EXPIRE_AT_BROWSER_CLOSE = True
84SESSION_SAVE_EVERY_REQUEST = True
85
86ROOT_URLCONF = 'sf_t3d.urls'
87
88TEMPLATES = [
89 {
90 'BACKEND': 'django.template.backends.django.DjangoTemplates',
91 'DIRS': [
92 os.path.join(BASE_DIR, 'template'),
93 os.path.join(BASE_DIR, 'projecthandler', 'template'),
94 os.path.join(BASE_DIR, 'projecthandler', 'template', 'download'),
95 os.path.join(BASE_DIR, 'projecthandler', 'template', 'project'),
lombardofre1ed7b22018-12-19 17:27:24 +010096 os.path.join(BASE_DIR, 'packagehandler', 'template'),
lombardofr3218b2b2018-10-29 13:41:08 +010097 os.path.join(BASE_DIR, 'descriptorhandler', 'template'),
lombardoffb37bca2018-05-03 16:20:04 +020098 os.path.join(BASE_DIR, 'vimhandler', 'template'),
lombardofr3fcf21a2019-03-11 10:26:08 +010099 os.path.join(BASE_DIR, 'wimhandler', 'template'),
lombardoffb37bca2018-05-03 16:20:04 +0200100 os.path.join(BASE_DIR, 'instancehandler', 'template'),
lombardofa03da5e2018-06-02 18:36:44 +0200101 os.path.join(BASE_DIR, 'sdnctrlhandler', 'template'),
lombardofr10b52d12018-07-17 23:42:28 +0200102 os.path.join(BASE_DIR, 'userhandler', 'templates'),
lombardofrc3051ef2019-01-16 10:59:18 +0100103 os.path.join(BASE_DIR, 'netslicehandler', 'template'),
lombardoffb37bca2018-05-03 16:20:04 +0200104 ],
105 'APP_DIRS': True,
106 'OPTIONS': {
107 'context_processors': [
108 'django.template.context_processors.debug',
109 'django.template.context_processors.request',
110 'django.contrib.auth.context_processors.auth',
111 'django.contrib.messages.context_processors.messages',
112 'sf_t3d.context_processor.conf_constants',
113 ],
114 'libraries':{
115 'get': 'sf_t3d.templatetags.get',
lombardof74ed51a2018-05-11 01:07:01 +0200116 'date_tag': 'sf_t3d.templatetags.datetag',
lombardoffb37bca2018-05-03 16:20:04 +0200117 }
118 },
119 },
120]
121
122WSGI_APPLICATION = 'sf_t3d.wsgi.application'
123
124
125# Database
126# https://docs.djangoproject.com/en/1.9/ref/settings/#databases
127
128DATABASES = {
129 'default': {
130 'ENGINE': 'django.db.backends.sqlite3',
131 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
132 }
133}
134
lombardofr099364f2018-06-12 11:21:02 +0200135AUTHENTICATION_BACKENDS = ['authosm.backend.OsmBackend']
136
lombardoffb37bca2018-05-03 16:20:04 +0200137
138# Password validation
139# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
140
141AUTH_PASSWORD_VALIDATORS = [
142 {
143 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
144 },
145 {
146 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
147 },
148 {
149 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
150 },
151 {
152 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
153 },
154]
155
156
157# Internationalization
158# https://docs.djangoproject.com/en/1.9/topics/i18n/
159
160LANGUAGE_CODE = 'en-us'
161
162TIME_ZONE = 'UTC'
163
164USE_I18N = True
165
166USE_L10N = True
167
168USE_TZ = True
169
170
171# Static files (CSS, JavaScript, Images)
172# https://docs.djangoproject.com/en/1.9/howto/static-files/
173
174STATIC_URL = '/static/'
lombardofrc89a4a02018-09-02 16:15:25 +0200175if DEBUG:
176 STATICFILES_FINDERS = (
177 'django.contrib.staticfiles.finders.FileSystemFinder',
178 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
179 'django.contrib.staticfiles.finders.DefaultStorageFinder'
180 )
181 STATICFILES_DIRS = (
182 # Put strings here, like "/home/html/static" or "C:/www/django/static".
183 # Always use forward slashes, even on Windows.
184 # Don't forget to use absolute paths, not relative paths.
185 os.path.join(BASE_DIR, "static"),
186 )
187else:
188 STATIC_ROOT = os.path.join(BASE_DIR, "static/")
lombardoffb37bca2018-05-03 16:20:04 +0200189
190LOCALE_PATHS = (
191 os.path.join(BASE_DIR, 'locale'),
lombardofrc89a4a02018-09-02 16:15:25 +0200192)