vfclcm upgrade from python2 to python3
[vfc/gvnfm/vnflcm.git] / lcm / lcm / 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 lcm.pub.redisco
20
21 from lcm.pub.config.config import REDIS_HOST, REDIS_PORT, REDIS_PASSWD
22 from lcm.pub.config.config import DB_NAME, DB_IP, DB_USER, DB_PASSWD, DB_PORT
23 from logging import config
24 from onaplogging import monkey
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     'lcm.pub.database',
52     'lcm.samples',
53     'lcm.swagger',
54     'drf_yasg',
55 ]
56
57 MIDDLEWARE = [
58     # 'django.contrib.sessions.middleware.SessionMiddleware',
59     # 'django.middleware.common.CommonMiddleware',
60     # 'django.middleware.csrf.CsrfViewMiddleware',
61     # 'django.contrib.auth.middleware.AuthenticationMiddleware',
62     # # 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
63     # 'django.contrib.messages.middleware.MessageMiddleware',
64     # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
65     # 'django.middleware.security.SecurityMiddleware',
66     'django.middleware.security.SecurityMiddleware',
67     'django.contrib.sessions.middleware.SessionMiddleware',
68     'django.middleware.common.CommonMiddleware',
69     'django.middleware.csrf.CsrfViewMiddleware',
70     'django.contrib.auth.middleware.AuthenticationMiddleware',
71     'django.contrib.messages.middleware.MessageMiddleware',
72     'django.middleware.clickjacking.XFrameOptionsMiddleware',
73     'lcm.middleware.LogContextMiddleware'
74 ]
75
76 ROOT_URLCONF = 'lcm.urls'
77
78 WSGI_APPLICATION = 'lcm.wsgi.application'
79
80 REST_FRAMEWORK = {
81     'DEFAULT_RENDERER_CLASSES': (
82         'rest_framework.renderers.JSONRenderer',
83     ),
84
85     'DEFAULT_PARSER_CLASSES': (
86         'rest_framework.parsers.JSONParser',
87         'rest_framework.parsers.MultiPartParser',
88     )
89 }
90
91 # drf-yasg
92 TEMPLATES = [
93     {
94         'BACKEND': 'django.template.backends.django.DjangoTemplates',
95         'DIRS': [],
96         'APP_DIRS': True,
97         'OPTIONS': {
98             'context_processors': [
99                 'django.template.context_processors.debug',
100                 'django.template.context_processors.request',
101                 'django.contrib.auth.context_processors.auth',
102                 'django.contrib.messages.context_processors.messages',
103             ],
104         },
105     },
106 ]
107
108 SWAGGER_SETTINGS = {
109     'LOGIN_URL': '/admin/login',
110     'LOGOUT_URL': '/admin/logout',
111
112     'DEFAULT_INFO': 'lcm.swagger.urls.swagger_info'
113 }
114
115 DATABASES = {
116     'default': {
117         'ENGINE': 'django.db.backends.mysql',
118         'NAME': DB_NAME,
119         'HOST': DB_IP,
120         'PORT': DB_PORT,
121         'USER': DB_USER,
122         'PASSWORD': DB_PASSWD,
123     },
124 }
125
126 lcm.pub.redisco.connection_setup(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWD, db=0)
127 # CACHE_BACKEND = 'redis_cache.cache://%s@%s:%s' % (REDIS_PASSWD, REDIS_HOST, REDIS_PORT)
128
129 TIME_ZONE = 'UTC'
130
131 # Static files (CSS, JavaScript, Images)
132 # https://docs.djangoproject.com/en/1.6/howto/static-files/
133
134 STATIC_URL = '/static/'
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             'lcm_handler': {
149                 'level': 'DEBUG',
150                 'class': 'logging.handlers.RotatingFileHandler',
151                 'filename': os.path.join(BASE_DIR, 'logs/runtime_lcm.log'),
152                 'formatter': 'standard',
153                 'maxBytes': 1024 * 1024 * 50,
154                 'backupCount': 5,
155             },
156         },
157
158         'loggers': {
159             'lcm': {
160                 'handlers': ['lcm_handler'],
161                 'level': 'DEBUG',
162                 'propagate': False
163             },
164         }
165     }
166 else:
167     LOGGING_CONFIG = None
168     LOGGING_FILE = os.path.join(BASE_DIR, 'lcm/log.yml')
169     config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
170
171
172 if 'test' in sys.argv:
173     from lcm.pub.config import config
174     config.REG_TO_MSB_WHEN_START = False
175
176     DATABASES = {}
177     DATABASES['default'] = {
178         'ENGINE': 'django.db.backends.sqlite3',
179         'NAME': ':memory:',
180     }
181     REST_FRAMEWORK = {}
182     import platform
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 lcm.pub.utils import idutil
192     idutil.get_auto_id = mock.Mock()
193     idutil.get_auto_id.return_value = 1