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