| lombardofr | 3218b2b | 2018-10-29 13:41:08 +0100 | [diff] [blame] | 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 | # |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 16 | |
| 17 | import os |
| Benjamin Diaz | 65f0dc4 | 2019-05-24 17:54:48 -0300 | [diff] [blame] | 18 | from sqlalchemy.engine.url import make_url |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 19 | |
| 20 | # Build paths inside the project like this: os.path.join(BASE_DIR, ...) |
| 21 | BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) |
| 22 | |
| 23 | |
| 24 | # Quick-start development settings - unsuitable for production |
| 25 | # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/ |
| 26 | |
| 27 | # SECURITY WARNING: keep the secret key used in production secret! |
| 28 | SECRET_KEY = 'o5+o2jv(3-dqr(&ia#-@79cgr%xi*s+6xjws^8cxp211ge#buf' |
| lombardofr | c89a4a0 | 2018-09-02 16:15:25 +0200 | [diff] [blame] | 29 | if os.getenv('DJANGO_ENV') == 'prod': |
| 30 | DEBUG = False |
| 31 | else: |
| 32 | DEBUG = True |
| lombardofr | 3fcf21a | 2019-03-11 10:26:08 +0100 | [diff] [blame] | 33 | |
| lombardofr | c89a4a0 | 2018-09-02 16:15:25 +0200 | [diff] [blame] | 34 | ALLOWED_HOSTS = ['*'] |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 35 | |
| lombardofr | 099364f | 2018-06-12 11:21:02 +0200 | [diff] [blame] | 36 | AUTH_USER_MODEL = "authosm.OsmUser" |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 37 | |
| lombardof | 3384829 | 2018-05-08 10:12:14 +0200 | [diff] [blame] | 38 | SITE_NAME = "Open Source MANO" |
| 39 | SHORT_SITE_NAME = "OSM" |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 40 | |
| 41 | LOGIN_URL = '/auth/' |
| 42 | LOGOUT_URL = '/auth/' |
| 43 | |
| 44 | VERSION = "0.0.1" |
| 45 | |
| 46 | |
| 47 | # Application definition |
| 48 | INSTALLED_APPS = [ |
| 49 | 'django.contrib.admin', |
| 50 | 'django.contrib.auth', |
| 51 | 'django.contrib.contenttypes', |
| 52 | 'django.contrib.messages', |
| 53 | 'django.contrib.staticfiles', |
| lombardofr | 0793022 | 2018-06-19 16:59:45 +0200 | [diff] [blame] | 54 | 'django.contrib.sessions', |
| lombardofr | 099364f | 2018-06-12 11:21:02 +0200 | [diff] [blame] | 55 | 'authosm', |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 56 | 'projecthandler', |
| lombardofr | e1ed7b2 | 2018-12-19 17:27:24 +0100 | [diff] [blame] | 57 | 'packagehandler', |
| lombardofr | 3218b2b | 2018-10-29 13:41:08 +0100 | [diff] [blame] | 58 | 'descriptorhandler', |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 59 | 'vimhandler', |
| lombardofr | 3fcf21a | 2019-03-11 10:26:08 +0100 | [diff] [blame] | 60 | 'wimhandler', |
| lombardof | a03da5e | 2018-06-02 18:36:44 +0200 | [diff] [blame] | 61 | 'instancehandler', |
| lombardofr | 099364f | 2018-06-12 11:21:02 +0200 | [diff] [blame] | 62 | 'sdnctrlhandler', |
| lombardofr | c3051ef | 2019-01-16 10:59:18 +0100 | [diff] [blame] | 63 | 'userhandler', |
| lombardofr | 8da2313 | 2019-06-02 17:18:48 +0200 | [diff] [blame] | 64 | 'rolehandler', |
| lombardofr | c3051ef | 2019-01-16 10:59:18 +0100 | [diff] [blame] | 65 | 'netslicehandler' |
| lombardofr | 099364f | 2018-06-12 11:21:02 +0200 | [diff] [blame] | 66 | |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 67 | ] |
| 68 | |
| 69 | MIDDLEWARE_CLASSES = [ |
| 70 | 'django.middleware.security.SecurityMiddleware', |
| 71 | 'django.contrib.sessions.middleware.SessionMiddleware', |
| lombardofr | 99f922f | 2018-07-17 17:27:36 +0200 | [diff] [blame] | 72 | 'projecthandler.middleware.OsmProjectMiddleware', |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 73 | 'django.middleware.common.CommonMiddleware', |
| 74 | 'django.middleware.csrf.CsrfViewMiddleware', |
| 75 | 'django.contrib.auth.middleware.AuthenticationMiddleware', |
| 76 | 'django.contrib.auth.middleware.SessionAuthenticationMiddleware', |
| 77 | 'django.contrib.messages.middleware.MessageMiddleware', |
| 78 | 'django.middleware.clickjacking.XFrameOptionsMiddleware', |
| 79 | |
| lombardofr | 99f922f | 2018-07-17 17:27:36 +0200 | [diff] [blame] | 80 | |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 81 | ] |
| 82 | |
| lombardofr | 0793022 | 2018-06-19 16:59:45 +0200 | [diff] [blame] | 83 | SESSION_ENGINE ='django.contrib.sessions.backends.db' |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 84 | SESSION_COOKIE_AGE = 3500 #25 min |
| 85 | SESSION_EXPIRE_AT_BROWSER_CLOSE = True |
| 86 | SESSION_SAVE_EVERY_REQUEST = True |
| 87 | |
| 88 | ROOT_URLCONF = 'sf_t3d.urls' |
| 89 | |
| 90 | TEMPLATES = [ |
| 91 | { |
| 92 | 'BACKEND': 'django.template.backends.django.DjangoTemplates', |
| 93 | 'DIRS': [ |
| 94 | os.path.join(BASE_DIR, 'template'), |
| 95 | os.path.join(BASE_DIR, 'projecthandler', 'template'), |
| 96 | os.path.join(BASE_DIR, 'projecthandler', 'template', 'download'), |
| 97 | os.path.join(BASE_DIR, 'projecthandler', 'template', 'project'), |
| lombardofr | e1ed7b2 | 2018-12-19 17:27:24 +0100 | [diff] [blame] | 98 | os.path.join(BASE_DIR, 'packagehandler', 'template'), |
| lombardofr | 3218b2b | 2018-10-29 13:41:08 +0100 | [diff] [blame] | 99 | os.path.join(BASE_DIR, 'descriptorhandler', 'template'), |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 100 | os.path.join(BASE_DIR, 'vimhandler', 'template'), |
| lombardofr | 3fcf21a | 2019-03-11 10:26:08 +0100 | [diff] [blame] | 101 | os.path.join(BASE_DIR, 'wimhandler', 'template'), |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 102 | os.path.join(BASE_DIR, 'instancehandler', 'template'), |
| lombardof | a03da5e | 2018-06-02 18:36:44 +0200 | [diff] [blame] | 103 | os.path.join(BASE_DIR, 'sdnctrlhandler', 'template'), |
| lombardofr | 10b52d1 | 2018-07-17 23:42:28 +0200 | [diff] [blame] | 104 | os.path.join(BASE_DIR, 'userhandler', 'templates'), |
| lombardofr | c3051ef | 2019-01-16 10:59:18 +0100 | [diff] [blame] | 105 | os.path.join(BASE_DIR, 'netslicehandler', 'template'), |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 106 | ], |
| 107 | 'APP_DIRS': True, |
| 108 | 'OPTIONS': { |
| 109 | 'context_processors': [ |
| 110 | 'django.template.context_processors.debug', |
| 111 | 'django.template.context_processors.request', |
| 112 | 'django.contrib.auth.context_processors.auth', |
| 113 | 'django.contrib.messages.context_processors.messages', |
| 114 | 'sf_t3d.context_processor.conf_constants', |
| 115 | ], |
| 116 | 'libraries':{ |
| 117 | 'get': 'sf_t3d.templatetags.get', |
| lombardof | 74ed51a | 2018-05-11 01:07:01 +0200 | [diff] [blame] | 118 | 'date_tag': 'sf_t3d.templatetags.datetag', |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 119 | } |
| 120 | }, |
| 121 | }, |
| 122 | ] |
| 123 | |
| 124 | WSGI_APPLICATION = 'sf_t3d.wsgi.application' |
| 125 | |
| 126 | |
| 127 | # Database |
| 128 | # https://docs.djangoproject.com/en/1.9/ref/settings/#databases |
| 129 | |
| Benjamin Diaz | 65f0dc4 | 2019-05-24 17:54:48 -0300 | [diff] [blame] | 130 | sql_uri = make_url(os.getenv('OSMUI_SQL_DATABASE_URI', 'sqlite:///db.sqlite3')) |
| 131 | if 'sqlite' in sql_uri.drivername: |
| 132 | DATABASES = { |
| 133 | 'default': { |
| 134 | 'ENGINE': 'django.db.backends.sqlite3', |
| 135 | 'NAME': os.path.join(BASE_DIR, sql_uri.database if sql_uri.database else 'db.sqlite3'), |
| 136 | } |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 137 | } |
| Benjamin Diaz | 65f0dc4 | 2019-05-24 17:54:48 -0300 | [diff] [blame] | 138 | else: |
| 139 | DATABASES = { |
| 140 | 'default': { |
| 141 | 'ENGINE': 'django.db.backends.mysql', |
| 142 | 'NAME': sql_uri.database if sql_uri.database else 'lwui', |
| 143 | 'USER': sql_uri.username, |
| 144 | 'PASSWORD': sql_uri.password, |
| 145 | 'HOST': sql_uri.host, |
| 146 | 'PORT': sql_uri.port, |
| 147 | } |
| 148 | } |
| 149 | |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 150 | |
| lombardofr | 099364f | 2018-06-12 11:21:02 +0200 | [diff] [blame] | 151 | AUTHENTICATION_BACKENDS = ['authosm.backend.OsmBackend'] |
| 152 | |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 153 | |
| 154 | # Password validation |
| 155 | # https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators |
| 156 | |
| 157 | AUTH_PASSWORD_VALIDATORS = [ |
| 158 | { |
| 159 | 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', |
| 160 | }, |
| 161 | { |
| 162 | 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', |
| 163 | }, |
| 164 | { |
| 165 | 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', |
| 166 | }, |
| 167 | { |
| 168 | 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', |
| 169 | }, |
| 170 | ] |
| 171 | |
| 172 | |
| 173 | # Internationalization |
| 174 | # https://docs.djangoproject.com/en/1.9/topics/i18n/ |
| 175 | |
| 176 | LANGUAGE_CODE = 'en-us' |
| 177 | |
| 178 | TIME_ZONE = 'UTC' |
| 179 | |
| 180 | USE_I18N = True |
| 181 | |
| 182 | USE_L10N = True |
| 183 | |
| 184 | USE_TZ = True |
| 185 | |
| 186 | |
| 187 | # Static files (CSS, JavaScript, Images) |
| 188 | # https://docs.djangoproject.com/en/1.9/howto/static-files/ |
| 189 | |
| 190 | STATIC_URL = '/static/' |
| lombardofr | c89a4a0 | 2018-09-02 16:15:25 +0200 | [diff] [blame] | 191 | if DEBUG: |
| 192 | STATICFILES_FINDERS = ( |
| 193 | 'django.contrib.staticfiles.finders.FileSystemFinder', |
| 194 | 'django.contrib.staticfiles.finders.AppDirectoriesFinder', |
| 195 | 'django.contrib.staticfiles.finders.DefaultStorageFinder' |
| 196 | ) |
| 197 | STATICFILES_DIRS = ( |
| 198 | # Put strings here, like "/home/html/static" or "C:/www/django/static". |
| 199 | # Always use forward slashes, even on Windows. |
| 200 | # Don't forget to use absolute paths, not relative paths. |
| 201 | os.path.join(BASE_DIR, "static"), |
| 202 | ) |
| 203 | else: |
| 204 | STATIC_ROOT = os.path.join(BASE_DIR, "static/") |
| lombardof | fb37bca | 2018-05-03 16:20:04 +0200 | [diff] [blame] | 205 | |
| 206 | LOCALE_PATHS = ( |
| 207 | os.path.join(BASE_DIR, 'locale'), |
| lombardofr | c89a4a0 | 2018-09-02 16:15:25 +0200 | [diff] [blame] | 208 | ) |