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