9bdeb1e386ef6201536620714e40aa9d2d75b651
[modeling/etsicatalog.git] / genericparser / 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 redisco
20
21 from genericparser.pub.config.config import REDIS_HOST, REDIS_PORT, REDIS_PASSWD
22 from genericparser.pub.config.config import DB_NAME, DB_IP, DB_USER, DB_PASSWD, DB_PORT
23 from genericparser.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     'rest_framework',
52     'genericparser.pub.database',
53     'genericparser.samples',
54     'genericparser.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': 'genericparser.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     'genericparser.middleware.LogContextMiddleware',
91 ]
92
93 ROOT_URLCONF = 'genericparser.urls'
94
95 WSGI_APPLICATION = 'genericparser.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 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 # change
133 pub_config.GENERICPARSER_ROOT_PATH = os.path.join(STATICFILES_DIRS[0], "genericparser")
134 pub_config.GENERICPARSER_URL_PATH = "static/genericparser"
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         # change
149         'handlers': {
150             'genericparser_handler': {
151                 'level': 'DEBUG',
152                 'class': 'logging.handlers.RotatingFileHandler',
153                 'filename': os.path.join(BASE_DIR, 'logs/runtime_genericparser.log'),
154                 'formatter': 'standard',
155                 'maxBytes': 1024 * 1024 * 50,
156                 'backupCount': 5,
157             },
158         },
159
160         'loggers': {
161             # change
162             'genericparser': {
163                 'handlers': ['genericparser_handler'],
164                 'level': 'DEBUG',
165                 'propagate': False
166             },
167         }
168     }
169 else:
170     LOGGING_CONFIG = None
171     # yaml configuration of logging
172     LOGGING_FILE = os.path.join(BASE_DIR, 'genericparser/log.yml')
173     log_config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
174
175 if 'test' in sys.argv:
176     pub_config.REG_TO_MSB_WHEN_START = False
177
178     DATABASES = {}
179     DATABASES['default'] = {
180         'ENGINE': 'django.db.backends.sqlite3',
181         'NAME': ':memory:',
182     }
183     REST_FRAMEWORK = {}
184
185     if platform.system() == 'Linux':
186         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
187         TEST_OUTPUT_VERBOSE = True
188         TEST_OUTPUT_DESCRIPTIONS = True
189         TEST_OUTPUT_DIR = 'test-reports'
190
191     import mock
192     from genericparser.pub.utils import idutil
193
194     idutil.get_auto_id = mock.Mock()
195     idutil.get_auto_id.return_value = 1