a3310b95ecbec293fa905e7aea8821cd95e74ee7
[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 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     'rest_framework',
51     'genericparser.pub.database',
52     'genericparser.samples',
53     'genericparser.swagger',
54     'drf_yasg',
55 ]
56
57 # drf-yasg
58 SWAGGER_SETTINGS = {
59     'LOGIN_URL': '/admin/login',
60     'LOGOUT_URL': '/admin/logout',
61     'DEFAULT_INFO': 'genericparser.swagger.urls.swagger_info'
62 }
63
64 TEMPLATES = [
65     {
66         'BACKEND': 'django.template.backends.django.DjangoTemplates',
67         'DIRS': [],
68         'APP_DIRS': True,
69         'OPTIONS': {
70             'context_processors': [
71                 'django.template.context_processors.debug',
72                 'django.template.context_processors.request',
73                 'django.contrib.auth.context_processors.auth',
74                 'django.contrib.messages.context_processors.messages',
75             ],
76         },
77     },
78 ]
79
80 MIDDLEWARE_CLASSES = [
81     'django.middleware.security.SecurityMiddleware',
82     'django.contrib.sessions.middleware.SessionMiddleware',
83     'django.middleware.common.CommonMiddleware',
84     'django.middleware.csrf.CsrfViewMiddleware',
85     'django.contrib.auth.middleware.AuthenticationMiddleware',
86     'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
87     'django.contrib.messages.middleware.MessageMiddleware',
88     'django.middleware.clickjacking.XFrameOptionsMiddleware',
89         'genericparser.middleware.LogContextMiddleware',
90 ]
91
92 ROOT_URLCONF = 'genericparser.urls'
93
94 WSGI_APPLICATION = 'genericparser.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 redisco.connection_setup(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWD, db=0)
119 # CACHE_BACKEND = 'redis_cache.cache://%s@%s:%s' % (REDIS_PASSWD, REDIS_HOST, REDIS_PORT)
120
121 TIME_ZONE = 'UTC'
122
123 # Static files (CSS, JavaScript, Images)
124 # https://docs.djangoproject.com/en/1.6/howto/static-files/
125
126 STATIC_URL = '/static/'
127
128 STATICFILES_DIRS = [
129     os.path.join(BASE_DIR, "static")
130 ]
131 # change
132 pub_config.GENERICPARSER_ROOT_PATH = os.path.join(STATICFILES_DIRS[0], "genericparser")
133 pub_config.GENERICPARSER_URL_PATH = "static/genericparser"
134 pub_config.SDC_BASE_URL = "http://%s:%s/api" % (pub_config.MSB_SERVICE_IP, pub_config.MSB_SERVICE_PORT)
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         # change
148         'handlers': {
149             'genericparser_handler': {
150                 'level': 'DEBUG',
151                 'class': 'logging.handlers.RotatingFileHandler',
152                 'filename': os.path.join(BASE_DIR, 'logs/runtime_genericparser.log'),
153                 'formatter': 'standard',
154                 'maxBytes': 1024 * 1024 * 50,
155                 'backupCount': 5,
156             },
157         },
158
159         'loggers': {
160             # change
161             'genericparser': {
162                 'handlers': ['genericparser_handler'],
163                 'level': 'DEBUG',
164                 'propagate': False
165             },
166         }
167     }
168 else:
169     LOGGING_CONFIG = None
170     # yaml configuration of logging
171     LOGGING_FILE = os.path.join(BASE_DIR, 'genericparser/log.yml')
172     log_config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
173
174 if 'test' in sys.argv:
175     pub_config.REG_TO_MSB_WHEN_START = False
176
177     DATABASES = {}
178     DATABASES['default'] = {
179         'ENGINE': 'django.db.backends.sqlite3',
180         'NAME': ':memory:',
181     }
182     REST_FRAMEWORK = {}
183
184     if platform.system() == 'Linux':
185         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
186         TEST_OUTPUT_VERBOSE = True
187         TEST_OUTPUT_DESCRIPTIONS = True
188         TEST_OUTPUT_DIR = 'test-reports'
189
190     import mock
191     from genericparser.pub.utils import idutil
192     idutil.get_auto_id = mock.Mock()
193     idutil.get_auto_id.return_value = 1