Add swagger export command for ztevnfmadaptor
[vfc/nfvo/driver/vnfm/svnfm.git] / zte / vmanager / driver / settings.py
1 # Copyright 2016-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 from logging import config
18 from onaplogging import monkey
19 monkey.patch_all()
20
21 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
22
23 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
24
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
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     'driver.pub.database',
48     'driver.interfaces',
49     'driver.swagger',
50     'drf_yasg',
51 ]
52
53 MIDDLEWARE_CLASSES = [
54     'django.middleware.security.SecurityMiddleware',
55     'django.contrib.sessions.middleware.SessionMiddleware',
56     'django.middleware.common.CommonMiddleware',
57     'django.middleware.csrf.CsrfViewMiddleware',
58     'django.contrib.auth.middleware.AuthenticationMiddleware',
59     'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
60     'django.contrib.messages.middleware.MessageMiddleware',
61     'django.middleware.clickjacking.XFrameOptionsMiddleware',
62     'driver.middleware.LogContextMiddleware',
63 ]
64
65 ROOT_URLCONF = 'driver.urls'
66
67 WSGI_APPLICATION = 'driver.wsgi.application'
68
69
70 REST_FRAMEWORK = {
71     'DEFAULT_RENDERER_CLASSES': (
72         'rest_framework.renderers.JSONRenderer',
73     ),
74
75     'DEFAULT_PARSER_CLASSES': (
76         'rest_framework.parsers.JSONParser',
77         'rest_framework.parsers.MultiPartParser',
78     )
79 }
80
81 # drf-yasg
82 TEMPLATES = [
83     {
84         'BACKEND': 'django.template.backends.django.DjangoTemplates',
85         'DIRS': [],
86         'APP_DIRS': True,
87         'OPTIONS': {
88             'context_processors': [
89                 'django.template.context_processors.debug',
90                 'django.template.context_processors.request',
91                 'django.contrib.auth.context_processors.auth',
92                 'django.contrib.messages.context_processors.messages',
93             ],
94         },
95     },
96 ]
97
98 SWAGGER_SETTINGS = {
99     'LOGIN_URL': '/admin/login',
100     'LOGOUT_URL': '/admin/logout',
101
102     'DEFAULT_INFO': 'driver.swagger.urls.swagger_info'
103 }
104
105 DATABASES = {
106     'default': {
107         'ENGINE': 'django.db.backends.sqlite3',
108         'NAME': ':memory:',
109     },
110 }
111
112 TIME_ZONE = 'UTC'
113
114 # Static files (CSS, JavaScript, Images)
115 # https://docs.djangoproject.com/en/1.6/howto/static-files/
116
117 STATIC_URL = '/static/'
118 #
119 # LOGGING = {
120 #     'version': 1,
121 #     'disable_existing_loggers': True,
122 #     'formatters': {
123 #         'standard': {
124 #             'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s',
125 #         },
126 #     },
127 #     'filters': {
128 #     },
129 #     'handlers': {
130 #         'driver_handler': {
131 #             'level': 'DEBUG',
132 #             'class': 'logging.handlers.RotatingFileHandler',
133 #             'filename': os.path.join(
134 #                 BASE_DIR,
135 #                 'logs/runtime_driver.log'),
136 #             'formatter': 'standard',
137 #             'maxBytes': 1024 * 1024 * 50,
138 #             'backupCount': 5,
139 #         },
140 #     },
141 #     'loggers': {
142 #         'driver': {
143 #             'handlers': ['driver_handler'],
144 #             'level': 'DEBUG',
145 #             'propagate': False},
146 #     }}
147
148 LOGGING_CONFIG = None
149 # yaml configuration of logging
150 LOGGING_FILE = os.path.join(BASE_DIR, 'driver/log.yml')
151 if 'test' in sys.argv:
152     os.system('sed -i "s|/var/log/onap/vfc/ztevnfmdriver|/tmp|" %s' % LOGGING_FILE)
153 config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
154
155
156 if 'test' in sys.argv:
157     os.system('sed -i "s|/tmp|/var/log/onap/vfc/ztevnfmdriver|" %s' % LOGGING_FILE)
158
159     from driver.pub.config import config
160     config.REG_TO_MSB_WHEN_START = False
161     REST_FRAMEWORK = {}
162     import platform
163     if platform.system() == 'Linux':
164         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
165         TEST_OUTPUT_VERBOSE = True
166         TEST_OUTPUT_DESCRIPTIONS = True
167         TEST_OUTPUT_DIR = 'test-reports'