51c9a889c14ea4cc8c43f07d47fd0b35c41af9af
[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 monkey.patch_all()
27
28 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
29 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
30
31 # Quick-start development settings - unsuitable for production
32 # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
33
34 # SECURITY WARNING: keep the secret key used in production secret!
35 SECRET_KEY = '3o-wney!99y)^h3v)0$j16l9=fdjxcb+a8g+q3tfbahcnu2b0o'
36
37 # SECURITY WARNING: don't run with debug turned on in production!
38 DEBUG = True
39
40 ALLOWED_HOSTS = ['*']
41
42 # Application definition
43
44 INSTALLED_APPS = [
45     'django.contrib.auth',
46     'django.contrib.contenttypes',
47     'django.contrib.sessions',
48     'django.contrib.messages',
49     'django.contrib.staticfiles',
50     'django.contrib.admin',
51     'rest_framework',
52     'catalog.pub.database',
53     'catalog.samples',
54     'catalog.swagger',
55     'drf_yasg',
56 ]
57
58 # drf-yasg
59 SWAGGER_SETTINGS = {
60     'LOGIN_URL': '/admin/login',
61     'LOGOUT_URL': '/admin/logout',
62     'DEFAULT_INFO': 'catalog.swagger.urls.swagger_info'
63 }
64
65 TEMPLATES = [
66     {
67         'BACKEND': 'django.template.backends.django.DjangoTemplates',
68         'DIRS': [],
69         'APP_DIRS': True,
70         'OPTIONS': {
71             'context_processors': [
72                 'django.template.context_processors.debug',
73                 'django.template.context_processors.request',
74                 'django.contrib.auth.context_processors.auth',
75                 'django.contrib.messages.context_processors.messages',
76             ],
77         },
78     },
79 ]
80
81 MIDDLEWARE_CLASSES = [
82     'django.middleware.security.SecurityMiddleware',
83     'django.contrib.sessions.middleware.SessionMiddleware',
84     'django.middleware.common.CommonMiddleware',
85     'django.middleware.csrf.CsrfViewMiddleware',
86     'django.contrib.auth.middleware.AuthenticationMiddleware',
87     'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
88     'django.contrib.messages.middleware.MessageMiddleware',
89     'django.middleware.clickjacking.XFrameOptionsMiddleware',
90     'catalog.middleware.LogContextMiddleware',
91 ]
92
93 ROOT_URLCONF = 'catalog.urls'
94
95 WSGI_APPLICATION = 'catalog.wsgi.application'
96
97 REST_FRAMEWORK = {
98     'DEFAULT_RENDERER_CLASSES': (
99         'rest_framework.renderers.JSONRenderer',
100     ),
101
102     'DEFAULT_PARSER_CLASSES': (
103         'rest_framework.parsers.JSONParser',
104         'rest_framework.parsers.MultiPartParser',
105     )
106 }
107
108 DATABASES = {
109     'default': {
110         'ENGINE': 'django.db.backends.mysql',
111         'NAME': DB_NAME,
112         'HOST': DB_IP,
113         'PORT': DB_PORT,
114         'USER': DB_USER,
115         'PASSWORD': DB_PASSWD,
116     },
117 }
118
119 catalog.pub.redisco.connection_setup(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWD, db=0)
120 # CACHE_BACKEND = 'redis_cache.cache://%s@%s:%s' % (REDIS_PASSWD, REDIS_HOST, REDIS_PORT)
121
122 TIME_ZONE = 'UTC'
123
124 # Static files (CSS, JavaScript, Images)
125 # https://docs.djangoproject.com/en/1.6/howto/static-files/
126
127 STATIC_URL = '/static/'
128
129 STATICFILES_DIRS = [
130     os.path.join(BASE_DIR, "static")
131 ]
132
133 pub_config.CATALOG_ROOT_PATH = os.path.join(STATICFILES_DIRS[0], "catalog")
134 pub_config.CATALOG_URL_PATH = "static/catalog"
135 pub_config.SDC_BASE_URL = "http://%s:%s/api" % (pub_config.MSB_SERVICE_IP, pub_config.MSB_SERVICE_PORT)
136
137 if platform.system() == 'Windows' or 'test' in sys.argv:
138     LOGGING = {
139         'version': 1,
140         'disable_existing_loggers': True,
141         'formatters': {
142             'standard': {
143                 'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s',
144             },
145         },
146         'filters': {
147         },
148         'handlers': {
149             'catalog_handler': {
150                 'level': 'DEBUG',
151                 'class': 'logging.handlers.RotatingFileHandler',
152                 'filename': os.path.join(BASE_DIR, 'logs/runtime_catalog.log'),
153                 'formatter': 'standard',
154                 'maxBytes': 1024 * 1024 * 50,
155                 'backupCount': 5,
156             },
157         },
158
159         'loggers': {
160             'catalog': {
161                 'handlers': ['catalog_handler'],
162                 'level': 'DEBUG',
163                 'propagate': False
164             },
165             'tosca': {
166                 'handlers': ['catalog_handler'],
167                 'level': 'DEBUG',
168                 'propagate': False
169             },
170         }
171     }
172 else:
173     LOGGING_CONFIG = None
174     # yaml configuration of logging
175     LOGGING_FILE = os.path.join(BASE_DIR, 'catalog/log.yml')
176     log_config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
177
178 if 'test' in sys.argv:
179     pub_config.REG_TO_MSB_WHEN_START = False
180
181     DATABASES = {}
182     DATABASES['default'] = {
183         'ENGINE': 'django.db.backends.sqlite3',
184         'NAME': ':memory:',
185     }
186     REST_FRAMEWORK = {}
187
188     if platform.system() == 'Linux':
189         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
190         TEST_OUTPUT_VERBOSE = True
191         TEST_OUTPUT_DESCRIPTIONS = True
192         TEST_OUTPUT_DIR = 'test-reports'
193
194     import mock
195     from catalog.pub.utils import idutil
196     idutil.get_auto_id = mock.Mock()
197     idutil.get_auto_id.return_value = 1