1. Remove the mandatory dependency on MSB
[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 platform
17 import sys
18 from logging import config as log_config
19
20 from onaplogging import monkey
21
22 from catalog.pub.config import config as pub_config
23 from catalog.pub.config.config import DB_NAME, DB_IP, DB_USER, DB_PASSWD, DB_PORT
24
25 monkey.patch_all()
26
27 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
28 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
29
30 # Quick-start development settings - unsuitable for production
31 # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
32
33 # SECURITY WARNING: keep the secret key used in production secret!
34 SECRET_KEY = '3o-wney!99y)^h3v)0$j16l9=fdjxcb+a8g+q3tfbahcnu2b0o'
35
36 # SECURITY WARNING: don't run with debug turned on in production!
37 DEBUG = True
38
39 ALLOWED_HOSTS = ['*']
40
41 # Application definition
42
43 INSTALLED_APPS = [
44     'django.contrib.auth',
45     'django.contrib.contenttypes',
46     'django.contrib.sessions',
47     'django.contrib.messages',
48     'django.contrib.staticfiles',
49     'django.contrib.admin',
50     'rest_framework',
51     'catalog.pub.database',
52     'catalog.samples',
53     'catalog.swagger',
54     'drf_yasg',
55     # 'django_nose'
56 ]
57 # TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
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 = [
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.messages.middleware.MessageMiddleware',
88     'django.middleware.clickjacking.XFrameOptionsMiddleware',
89     'catalog.middleware.LogContextMiddleware',
90 ]
91
92 ROOT_URLCONF = 'catalog.urls'
93
94 WSGI_APPLICATION = 'catalog.wsgi.application'
95
96 REST_FRAMEWORK = {
97     'DEFAULT_RENDERER_CLASSES': (
98         'rest_framework.renderers.JSONRenderer',
99     ),
100
101     'DEFAULT_PARSER_CLASSES': (
102         'rest_framework.parsers.JSONParser',
103         'rest_framework.parsers.MultiPartParser',
104     )
105 }
106
107 DATABASES = {
108     'default': {
109         'ENGINE': 'django.db.backends.mysql',
110         'NAME': DB_NAME,
111         'HOST': DB_IP,
112         'PORT': DB_PORT,
113         'USER': DB_USER,
114         'PASSWORD': DB_PASSWD,
115     },
116 }
117
118 # DATABASES = {}
119 # DATABASES['default'] = {
120 #     'ENGINE': 'django.db.backends.sqlite3',
121 #     'NAME': ':memory:',
122 # }
123
124 # catalog.pub.redisco.connection_setup(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWD, db=0)
125 # CACHE_BACKEND = 'redis_cache.cache://%s@%s:%s' % (REDIS_PASSWD, REDIS_HOST, REDIS_PORT)
126
127 TIME_ZONE = 'UTC'
128
129 # Static files (CSS, JavaScript, Images)
130 # https://docs.djangoproject.com/en/1.6/howto/static-files/
131
132 STATIC_URL = '/static/'
133
134 STATICFILES_DIRS = [
135     os.path.join(BASE_DIR, "static")
136 ]
137
138 pub_config.CATALOG_ROOT_PATH = os.path.join(STATICFILES_DIRS[0], "catalog")
139 pub_config.CATALOG_URL_PATH = "static/catalog"
140
141 if platform.system() == 'Windows' or 'test' in sys.argv:
142     LOGGING = {
143         'version': 1,
144         'disable_existing_loggers': True,
145         'formatters': {
146             'standard': {
147                 'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s',
148             },
149         },
150         'filters': {
151         },
152         'handlers': {
153             'catalog_handler': {
154                 'level': 'DEBUG',
155                 'class': 'logging.handlers.RotatingFileHandler',
156                 'filename': os.path.join(BASE_DIR, 'logs/runtime_catalog.log'),
157                 'formatter': 'standard',
158                 'maxBytes': 1024 * 1024 * 50,
159                 'backupCount': 5,
160             },
161             'console': {
162                 'level': 'DEBUG',
163                 'class': 'logging.StreamHandler',
164                 'formatter': 'standard'
165             },
166         },
167
168         'loggers': {
169             'catalog': {
170                 'handlers': ['catalog_handler', 'console'],
171                 'level': 'DEBUG',
172                 'propagate': False
173             },
174             'tosca': {
175                 'handlers': ['catalog_handler'],
176                 'level': 'DEBUG',
177                 'propagate': False
178             },
179         }
180     }
181 else:
182     LOGGING_CONFIG = None
183     # yaml configuration of logging
184     LOGGING_FILE = os.path.join(BASE_DIR, 'catalog/log.yml')
185     log_config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
186
187 if 'test' in sys.argv:
188     pub_config.REG_TO_MSB_WHEN_START = False
189
190     DATABASES = {}
191     DATABASES['default'] = {
192         'ENGINE': 'django.db.backends.sqlite3',
193         'NAME': ':memory:',
194     }
195     REST_FRAMEWORK = {}
196
197     if platform.system() == 'Linux':
198         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
199         TEST_OUTPUT_VERBOSE = True
200         TEST_OUTPUT_DESCRIPTIONS = True
201         TEST_OUTPUT_DIR = 'test-reports'