58473a25de2ff7932433770a671f66f490dad3dd
[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 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     'rest_framework',
50     'lcm.pub.database',
51     'lcm.samples',
52     'lcm.swagger',
53     'drf_yasg',
54 ]
55
56 MIDDLEWARE_CLASSES = [
57     'django.middleware.security.SecurityMiddleware',
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     'lcm.middleware.LogContextMiddleware',
66 ]
67
68 ROOT_URLCONF = 'lcm.urls'
69
70 WSGI_APPLICATION = 'lcm.wsgi.application'
71
72 REST_FRAMEWORK = {
73     'DEFAULT_RENDERER_CLASSES': (
74         'rest_framework.renderers.JSONRenderer',
75     ),
76
77     'DEFAULT_PARSER_CLASSES': (
78         'rest_framework.parsers.JSONParser',
79         'rest_framework.parsers.MultiPartParser',
80     )
81 }
82
83 # drf-yasg
84 TEMPLATES = [
85     {
86         'BACKEND': 'django.template.backends.django.DjangoTemplates',
87         'DIRS': [],
88         'APP_DIRS': True,
89         'OPTIONS': {
90             'context_processors': [
91                 'django.template.context_processors.debug',
92                 'django.template.context_processors.request',
93                 'django.contrib.auth.context_processors.auth',
94                 'django.contrib.messages.context_processors.messages',
95             ],
96         },
97     },
98 ]
99
100 SWAGGER_SETTINGS = {
101     'LOGIN_URL': '/admin/login',
102     'LOGOUT_URL': '/admin/logout',
103
104     'DEFAULT_INFO': 'lcm.swagger.urls.swagger_info'
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 if platform.system() == 'Windows' or 'test' in sys.argv:
129     LOGGING = {
130         'version': 1,
131         'disable_existing_loggers': True,
132         'formatters': {
133             'standard': {
134                 'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s',
135             },
136         },
137         'filters': {
138         },
139         'handlers': {
140             'lcm_handler': {
141                 'level': 'DEBUG',
142                 'class': 'logging.handlers.RotatingFileHandler',
143                 'filename': os.path.join(BASE_DIR, 'logs/runtime_lcm.log'),
144                 'formatter': 'standard',
145                 'maxBytes': 1024 * 1024 * 50,
146                 'backupCount': 5,
147             },
148         },
149
150         'loggers': {
151             'lcm': {
152                 'handlers': ['lcm_handler'],
153                 'level': 'DEBUG',
154                 'propagate': False
155             },
156         }
157     }
158 else:
159     LOGGING_CONFIG = None
160     LOGGING_FILE = os.path.join(BASE_DIR, 'lcm/log.yml')
161     config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
162
163
164 if 'test' in sys.argv:
165     from lcm.pub.config import config
166     config.REG_TO_MSB_WHEN_START = False
167
168     DATABASES = {}
169     DATABASES['default'] = {
170         'ENGINE': 'django.db.backends.sqlite3',
171         'NAME': ':memory:',
172     }
173     REST_FRAMEWORK = {}
174     import platform
175
176     if platform.system() == 'Linux':
177         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
178         TEST_OUTPUT_VERBOSE = True
179         TEST_OUTPUT_DESCRIPTIONS = True
180         TEST_OUTPUT_DIR = 'test-reports'
181
182     import mock
183     from lcm.pub.utils import idutil
184     idutil.get_auto_id = mock.Mock()
185     idutil.get_auto_id.return_value = 1