vnfres upgrade from python2 to python3
[vfc/gvnfm/vnfres.git] / res / res / 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 res.pub.redisco
20
21 from res.pub.config.config import REDIS_HOST, REDIS_PORT, REDIS_PASSWD
22 from res.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     'res.pub.database',
51     'res.samples',
52     'res.swagger',
53     'res.resources',
54     'drf_yasg',
55 ]
56
57 MIDDLEWARE = [
58     'django.middleware.security.SecurityMiddleware',
59     'django.contrib.sessions.middleware.SessionMiddleware',
60     'django.middleware.common.CommonMiddleware',
61     'django.middleware.csrf.CsrfViewMiddleware',
62     'django.contrib.auth.middleware.AuthenticationMiddleware',
63     'django.contrib.messages.middleware.MessageMiddleware',
64     'django.middleware.clickjacking.XFrameOptionsMiddleware',
65     'res.middleware.LogContextMiddleware'
66 ]
67
68 ROOT_URLCONF = 'res.urls'
69
70 WSGI_APPLICATION = 'res.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     )
80 }
81
82 # drf-yasg
83 TEMPLATES = [
84     {
85         'BACKEND': 'django.template.backends.django.DjangoTemplates',
86         'DIRS': [],
87         'APP_DIRS': True,
88         'OPTIONS': {
89             'context_processors': [
90                 'django.template.context_processors.debug',
91                 'django.template.context_processors.request',
92                 'django.contrib.auth.context_processors.auth',
93                 'django.contrib.messages.context_processors.messages',
94             ],
95         },
96     },
97 ]
98
99 SWAGGER_SETTINGS = {
100     'LOGIN_URL': '/admin/login',
101     'LOGOUT_URL': '/admin/logout',
102
103     'DEFAULT_INFO': 'res.swagger.urls.swagger_info'
104 }
105
106 DATABASES = {
107     'default': {
108         'ENGINE': 'django.db.backends.mysql',
109         'NAME': DB_NAME,
110         'HOST': DB_IP,
111         'PORT': DB_PORT,
112         'USER': DB_USER,
113         'PASSWORD': DB_PASSWD,
114     },
115 }
116
117 res.pub.redisco.connection_setup(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWD, db=0)
118 # CACHE_BACKEND = 'redis_cache.cache://%s@%s:%s' % (REDIS_PASSWD, REDIS_HOST, REDIS_PORT)
119
120 TIME_ZONE = 'UTC'
121
122 # Static files (CSS, JavaScript, Images)
123 # https://docs.djangoproject.com/en/1.6/howto/static-files/
124
125 STATIC_URL = '/static/'
126
127 if platform.system() == 'Windows' or 'test' in sys.argv:
128     LOGGING = {
129         'version': 1,
130         'disable_existing_loggers': True,
131         'formatters': {
132             'standard': {
133                 'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s',
134             },
135         },
136         'filters': {
137         },
138         'handlers': {
139             'res_handler': {
140                 'level': 'DEBUG',
141                 'class': 'logging.handlers.RotatingFileHandler',
142                 'filename': os.path.join(BASE_DIR, 'logs/runtime_res.log'),
143                 'formatter': 'standard',
144                 'maxBytes': 1024 * 1024 * 50,
145                 'backupCount': 5,
146             },
147         },
148
149         'loggers': {
150             'res': {
151                 'handlers': ['res_handler'],
152                 'level': 'DEBUG',
153                 'propagate': False
154             },
155         }
156     }
157 else:
158     LOGGING_CONFIG = None
159     LOGGING_FILE = os.path.join(BASE_DIR, 'res/log.yml')
160     config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
161
162
163 if 'test' in sys.argv:
164     from res.pub.config import config
165     config.REG_TO_MSB_WHEN_START = False
166     DATABASES = {}
167     DATABASES['default'] = {
168         'ENGINE': 'django.db.backends.sqlite3',
169         'NAME': ':memory:',
170     }
171     REST_FRAMEWORK = {}
172     import platform
173
174     if platform.system() == 'Linux':
175         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
176         TEST_OUTPUT_VERBOSE = True
177         TEST_OUTPUT_DESCRIPTIONS = True
178         TEST_OUTPUT_DIR = 'test-reports'