Merge "Fix vfc-lcm auto-swagger ui issue"
[vfc/nfvo/lcm.git] / lcm / settings.py
1 # Copyright 2016 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
18 import redisco
19
20 from lcm.pub.config.config import REDIS_HOST, REDIS_PORT, REDIS_PASSWD
21 from lcm.pub.config.config import DB_NAME, DB_IP, DB_USER, DB_PASSWD, DB_PORT
22 from lcm.pub.config import config
23
24 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
25 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
26
27 # Quick-start development settings - unsuitable for production
28 # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
29
30 # SECURITY WARNING: keep the secret key used in production secret!
31 SECRET_KEY = '3o-wney!99y)^h3v)0$j16l9=fdjxcb+a8g+q3tfbahcnu2b0o'
32
33 # SECURITY WARNING: don't run with debug turned on in production!
34 DEBUG = True
35
36 ALLOWED_HOSTS = ['*']
37
38 # Application definition
39
40 INSTALLED_APPS = [
41     'django.contrib.auth',
42     'django.contrib.contenttypes',
43     'django.contrib.sessions',
44     'django.contrib.messages',
45     'django.contrib.staticfiles',
46     'rest_framework',
47     'lcm.pub.database',
48     # 'lcm.samples',
49     # 'lcm.swagger',
50     'drf_yasg'
51 ]
52
53 TEMPLATES = [
54     {
55         'BACKEND': 'django.template.backends.django.DjangoTemplates',
56         'DIRS': [],
57         'APP_DIRS': True,
58         'OPTIONS': {
59             'context_processors': [
60                 'django.template.context_processors.debug',
61                 'django.template.context_processors.request',
62                 'django.contrib.auth.context_processors.auth',
63                 'django.contrib.messages.context_processors.messages',
64             ],
65         },
66     },
67 ]
68
69 SWAGGER_SETTINGS = {
70     'LOGIN_URL': '/admin/login',
71     'LOGOUT_URL': '/admin/logout',
72     'DEFAULT_INFO': 'lcm.urls.swagger_info'
73 }
74
75 MIDDLEWARE_CLASSES = [
76     'django.middleware.security.SecurityMiddleware',
77     'django.contrib.sessions.middleware.SessionMiddleware',
78     'django.middleware.common.CommonMiddleware',
79     'django.middleware.csrf.CsrfViewMiddleware',
80     'django.contrib.auth.middleware.AuthenticationMiddleware',
81     'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
82     'django.contrib.messages.middleware.MessageMiddleware',
83     'django.middleware.clickjacking.XFrameOptionsMiddleware',
84 ]
85
86 ROOT_URLCONF = 'lcm.urls'
87
88 WSGI_APPLICATION = 'lcm.wsgi.application'
89
90 REST_FRAMEWORK = {
91     'DEFAULT_RENDERER_CLASSES': (
92         'rest_framework.renderers.JSONRenderer',
93     ),
94
95     'DEFAULT_PARSER_CLASSES': (
96         'rest_framework.parsers.JSONParser',
97         'rest_framework.parsers.MultiPartParser',
98         'rest_framework.parsers.FormParser',
99         # 'rest_framework.parsers.FileUploadParser',
100     )
101 }
102
103 DATABASES = {
104     'default': {
105         'ENGINE': 'django.db.backends.mysql',
106         'NAME': DB_NAME,
107         'HOST': DB_IP,
108         'PORT': DB_PORT,
109         'USER': DB_USER,
110         'PASSWORD': DB_PASSWD,
111     },
112 }
113
114 redisco.connection_setup(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWD, db=0)
115 # CACHE_BACKEND = 'redis_cache.cache://%s@%s:%s' % (REDIS_PASSWD, REDIS_HOST, REDIS_PORT)
116
117 TIME_ZONE = 'UTC'
118
119 # Static files (CSS, JavaScript, Images)
120 # https://docs.djangoproject.com/en/1.6/howto/static-files/
121
122 STATIC_URL = '/static/'
123
124 STATICFILES_DIRS = [
125     os.path.join(BASE_DIR, "static")
126 ]
127
128 config.CATALOG_ROOT_PATH = os.path.join(STATICFILES_DIRS[0], "catalog")
129 config.CATALOG_URL_PATH = "static/catalog"
130
131 LOGGING = {
132     'version': 1,
133     'disable_existing_loggers': True,
134     'formatters': {
135         'standard': {
136             'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s',
137         },
138     },
139     'filters': {
140     },
141     'handlers': {
142         'lcm_handler': {
143             'level': 'DEBUG',
144             'class': 'logging.handlers.RotatingFileHandler',
145             'filename': os.path.join(BASE_DIR, 'logs/runtime_lcm.log'),
146             'formatter': 'standard',
147             'maxBytes': 1024 * 1024 * 50,
148             'backupCount': 5,
149         },
150     },
151
152     'loggers': {
153         'lcm': {
154             'handlers': ['lcm_handler'],
155             'level': 'DEBUG',
156             'propagate': False
157         },
158     }
159 }
160
161 if 'test' in sys.argv:
162     config.REG_TO_MSB_WHEN_START = False
163     config.DEPLOY_WORKFLOW_WHEN_START = False
164     DATABASES = {}
165     DATABASES['default'] = {
166         'ENGINE': 'django.db.backends.sqlite3',
167         'NAME': ':memory:',
168     }
169     REST_FRAMEWORK = {}
170     import platform
171
172     if platform.system() == 'Linux':
173         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
174         TEST_OUTPUT_VERBOSE = True
175         TEST_OUTPUT_DESCRIPTIONS = True
176         TEST_OUTPUT_DIR = 'test-reports'