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