return 404 instead of 500 if subscription does not exist
[modeling/etsicatalog.git] / catalog / settings.py
1 # Copyright 2017 ZTE Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import os
16 import sys
17 import platform
18
19 # import catalog.pub.redisco
20
21 # from catalog.pub.config.config import REDIS_HOST, REDIS_PORT, REDIS_PASSWD
22 from catalog.pub.config.config import DB_NAME, DB_IP, DB_USER, DB_PASSWD, DB_PORT
23 from catalog.pub.config import config as pub_config
24 from logging import config as log_config
25 from onaplogging import monkey
26
27 monkey.patch_all()
28
29 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
30 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
31
32 # Quick-start development settings - unsuitable for production
33 # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
34
35 # SECURITY WARNING: keep the secret key used in production secret!
36 SECRET_KEY = '3o-wney!99y)^h3v)0$j16l9=fdjxcb+a8g+q3tfbahcnu2b0o'
37
38 # SECURITY WARNING: don't run with debug turned on in production!
39 DEBUG = True
40
41 ALLOWED_HOSTS = ['*']
42
43 # Application definition
44
45 INSTALLED_APPS = [
46     'django.contrib.auth',
47     'django.contrib.contenttypes',
48     'django.contrib.sessions',
49     'django.contrib.messages',
50     'django.contrib.staticfiles',
51     'django.contrib.admin',
52     'rest_framework',
53     'catalog.pub.database',
54     'catalog.samples',
55     'catalog.swagger',
56     'drf_yasg',
57     # 'django_nose'
58 ]
59 # TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
60 # drf-yasg
61 SWAGGER_SETTINGS = {
62     'LOGIN_URL': '/admin/login',
63     'LOGOUT_URL': '/admin/logout',
64     'DEFAULT_INFO': 'catalog.swagger.urls.swagger_info'
65 }
66
67 TEMPLATES = [
68     {
69         'BACKEND': 'django.template.backends.django.DjangoTemplates',
70         'DIRS': [],
71         'APP_DIRS': True,
72         'OPTIONS': {
73             'context_processors': [
74                 'django.template.context_processors.debug',
75                 'django.template.context_processors.request',
76                 'django.contrib.auth.context_processors.auth',
77                 'django.contrib.messages.context_processors.messages',
78             ],
79         },
80     },
81 ]
82
83 MIDDLEWARE_CLASSES = [
84     'django.middleware.security.SecurityMiddleware',
85     'django.contrib.sessions.middleware.SessionMiddleware',
86     'django.middleware.common.CommonMiddleware',
87     'django.middleware.csrf.CsrfViewMiddleware',
88     'django.contrib.auth.middleware.AuthenticationMiddleware',
89     'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
90     'django.contrib.messages.middleware.MessageMiddleware',
91     'django.middleware.clickjacking.XFrameOptionsMiddleware',
92     'catalog.middleware.LogContextMiddleware',
93 ]
94
95 ROOT_URLCONF = 'catalog.urls'
96
97 WSGI_APPLICATION = 'catalog.wsgi.application'
98
99 REST_FRAMEWORK = {
100     'DEFAULT_RENDERER_CLASSES': (
101         'rest_framework.renderers.JSONRenderer',
102     ),
103
104     'DEFAULT_PARSER_CLASSES': (
105         'rest_framework.parsers.JSONParser',
106         'rest_framework.parsers.MultiPartParser',
107     )
108 }
109
110 DATABASES = {
111     'default': {
112         'ENGINE': 'django.db.backends.mysql',
113         'NAME': DB_NAME,
114         'HOST': DB_IP,
115         'PORT': DB_PORT,
116         'USER': DB_USER,
117         'PASSWORD': DB_PASSWD,
118     },
119 }
120
121 # DATABASES = {}
122 # DATABASES['default'] = {
123 #     'ENGINE': 'django.db.backends.sqlite3',
124 #     'NAME': ':memory:',
125 # }
126
127 # catalog.pub.redisco.connection_setup(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWD, db=0)
128 # CACHE_BACKEND = 'redis_cache.cache://%s@%s:%s' % (REDIS_PASSWD, REDIS_HOST, REDIS_PORT)
129
130 TIME_ZONE = 'UTC'
131
132 # Static files (CSS, JavaScript, Images)
133 # https://docs.djangoproject.com/en/1.6/howto/static-files/
134
135 STATIC_URL = '/static/'
136
137 STATICFILES_DIRS = [
138     os.path.join(BASE_DIR, "static")
139 ]
140
141 pub_config.CATALOG_ROOT_PATH = os.path.join(STATICFILES_DIRS[0], "catalog")
142 pub_config.CATALOG_URL_PATH = "static/catalog"
143 pub_config.SDC_BASE_URL = "https://%s:%s/api" % (pub_config.MSB_SERVICE_IP, pub_config.MSB_SERVICE_PORT)
144
145 if platform.system() == 'Windows' or 'test' in sys.argv:
146     LOGGING = {
147         'version': 1,
148         'disable_existing_loggers': True,
149         'formatters': {
150             'standard': {
151                 'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s',
152             },
153         },
154         'filters': {
155         },
156         'handlers': {
157             'catalog_handler': {
158                 'level': 'DEBUG',
159                 'class': 'logging.handlers.RotatingFileHandler',
160                 'filename': os.path.join(BASE_DIR, 'logs/runtime_catalog.log'),
161                 'formatter': 'standard',
162                 'maxBytes': 1024 * 1024 * 50,
163                 'backupCount': 5,
164             },
165             'console': {
166                 'level': 'DEBUG',
167                 'class': 'logging.StreamHandler',
168                 'formatter': 'standard'
169             },
170         },
171
172         'loggers': {
173             'catalog': {
174                 'handlers': ['catalog_handler', 'console'],
175                 'level': 'DEBUG',
176                 'propagate': False
177             },
178             'tosca': {
179                 'handlers': ['catalog_handler'],
180                 'level': 'DEBUG',
181                 'propagate': False
182             },
183         }
184     }
185 else:
186     LOGGING_CONFIG = None
187     # yaml configuration of logging
188     LOGGING_FILE = os.path.join(BASE_DIR, 'catalog/log.yml')
189     log_config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
190
191 if 'test' in sys.argv:
192     pub_config.REG_TO_MSB_WHEN_START = False
193
194     DATABASES = {}
195     DATABASES['default'] = {
196         'ENGINE': 'django.db.backends.sqlite3',
197         'NAME': ':memory:',
198     }
199     REST_FRAMEWORK = {}
200
201     if platform.system() == 'Linux':
202         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
203         TEST_OUTPUT_VERBOSE = True
204         TEST_OUTPUT_DESCRIPTIONS = True
205         TEST_OUTPUT_DIR = 'test-reports'