988740ea2d1a833bc3322bc71b71ddc125db2da4
[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     'lcm.swagger',
49     'drf_yasg',
50 ]
51
52 MIDDLEWARE_CLASSES = [
53     'django.middleware.security.SecurityMiddleware',
54     'django.contrib.sessions.middleware.SessionMiddleware',
55     'django.middleware.common.CommonMiddleware',
56     'django.middleware.csrf.CsrfViewMiddleware',
57     'django.contrib.auth.middleware.AuthenticationMiddleware',
58     'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
59     'django.contrib.messages.middleware.MessageMiddleware',
60     'django.middleware.clickjacking.XFrameOptionsMiddleware',
61 ]
62
63 ROOT_URLCONF = 'lcm.urls'
64
65 WSGI_APPLICATION = 'lcm.wsgi.application'
66
67 REST_FRAMEWORK = {
68     'DEFAULT_RENDERER_CLASSES': (
69         'rest_framework.renderers.JSONRenderer',
70     ),
71
72     'DEFAULT_PARSER_CLASSES': (
73         'rest_framework.parsers.JSONParser',
74         'rest_framework.parsers.MultiPartParser',
75         # 'rest_framework.parsers.FormParser',
76         # 'rest_framework.parsers.FileUploadParser',
77     )
78 }
79
80 # drf-yasg
81 TEMPLATES = [
82     {
83         'BACKEND': 'django.template.backends.django.DjangoTemplates',
84         'DIRS': [],
85         'APP_DIRS': True,
86         'OPTIONS': {
87             'context_processors': [
88                 'django.template.context_processors.debug',
89                 'django.template.context_processors.request',
90                 'django.contrib.auth.context_processors.auth',
91                 'django.contrib.messages.context_processors.messages',
92             ],
93         },
94     },
95 ]
96
97 DATABASES = {
98     'default': {
99         'ENGINE': 'django.db.backends.mysql',
100         'NAME': DB_NAME,
101         'HOST': DB_IP,
102         'PORT': DB_PORT,
103         'USER': DB_USER,
104         'PASSWORD': DB_PASSWD,
105     },
106 }
107
108 redisco.connection_setup(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWD, db=0)
109 # CACHE_BACKEND = 'redis_cache.cache://%s@%s:%s' % (REDIS_PASSWD, REDIS_HOST, REDIS_PORT)
110
111 TIME_ZONE = 'UTC'
112
113 # Static files (CSS, JavaScript, Images)
114 # https://docs.djangoproject.com/en/1.6/howto/static-files/
115
116 STATIC_URL = '/static/'
117
118 LOGGING = {
119     'version': 1,
120     'disable_existing_loggers': True,
121     'formatters': {
122         'standard': {
123             'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s',
124         },
125     },
126     'filters': {
127     },
128     'handlers': {
129         'lcm_handler': {
130             'level': 'DEBUG',
131             'class': 'logging.handlers.RotatingFileHandler',
132             'filename': os.path.join(BASE_DIR, 'logs/runtime_lcm.log'),
133             'formatter': 'standard',
134             'maxBytes': 1024 * 1024 * 50,
135             'backupCount': 5,
136         },
137     },
138
139     'loggers': {
140         'lcm': {
141             'handlers': ['lcm_handler'],
142             'level': 'DEBUG',
143             'propagate': False
144         },
145     }
146 }
147
148 if 'test' in sys.argv:
149     from lcm.pub.config import config
150     config.REG_TO_MSB_WHEN_START = False
151
152     DATABASES = {}
153     DATABASES['default'] = {
154         'ENGINE': 'django.db.backends.sqlite3',
155         'NAME': ':memory:',
156     }
157     REST_FRAMEWORK = {}
158     import platform
159
160     if platform.system() == 'Linux':
161         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
162         TEST_OUTPUT_VERBOSE = True
163         TEST_OUTPUT_DESCRIPTIONS = True
164         TEST_OUTPUT_DIR = 'test-reports'