-
Notifications
You must be signed in to change notification settings - Fork 1
/
configs.js
152 lines (144 loc) · 4.34 KB
/
configs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/**
* Основной конфиг всех сервисов
* @type {Object}
*/
module.exports = {
'rest-api': {
protocol: 'http://',
host: 'localhost',
port: 8090,
path: '/api/v1',
routers: require('./services/rest-api/routers.js'),
// Кроссдоменные запросы
cors: {
active: true,
// С каких хостов допустимы запросы
// - ['http://localhost:8000', /\.ysa\.com$/]
// - '*' - все хосты
origin: [
'http://localhost:8091',
],
// Допустимые методы от кросдомена
methods: ['GET', 'HEAD', 'PUT', 'PATCH', 'POST', 'DELETE'],
// Для PUT, DELETE запросов и других с нестандартными заголовками ил их значениями
// Сервер будет сперва получать OPTION запрос
preflightContinue: true,
// Разрешенные заголовки от клиента. У клиента должен быть Access-Control-Request-Headers
allowedHeaders: ['X-Token', 'Content-Type', 'Content-Range', 'Content-Disposition', 'X-Requested-With'],
// Доступные заголовки для клиента
exposedHeaders: ['X-Token', 'Content-Type'],
// Чтобы работали кроссдоменные куки. У клиента должен быть withCredentials:true
credentials: true,
// Сколько секунд браузер может кэшировать OPTION запросы при preflightContinue:true
maxAge: 100,
// Код для OPTIONS запросов
optionsSuccessStatus: 204,
},
log: true,
defaultSecurity: [{token: []}], // Способ авторизация в swagger по умолчанию, если определено условие доступа
},
storage: {
db: {
//url: 'mongodb://user:passw@localhost:27017', // Может быть строкой
url: {
host: 'localhost',
port: '27017',
user: '',
password: '',
},
name: 'exser',
},
models: {},
properties: require('./services/storage/properties'),
},
logs: {
unsetFields: [
'password'
],
all: true,
process: true,
step: true,
error: false,
},
dump: {
models: [],
filter: {_deleted: false},
uniqueFields: {
defaults: ['code'],
},
removeFields: {
defaults: ['_id'],
},
clear: false,
dir: './services/dump/data/'
},
spec: {
default: {
// servers: [
// {url: '/api/v1', description: 'API server'},
// ],
components: {
parameters: require('./services/spec/components/parameters'),
responses: require('./services/spec/components/responses'),
schemas: require('./services/spec/components/schemas'),
securitySchemes: {
token: {type: 'apiKey', in: 'header', name: 'X-Token'},
},
},
tags: [
//{name: 'Authorize', description: 'Авторизация'},
],
// externalDocs: {
// description: 'source.json',
// url: '/api/v1/docs/source.json',
// },
},
keywords: require('./services/spec/keywords')
},
example: {
xxx: 0,
},
tasks: {
example: {
service: 'example',
interval: 500, // ms
iterations: 3,
someOption: 'xxx',
log: true,
},
},
access: {
acl: [
{
key: 1,
session: {'user.role.name': 'admin'},
actions: {
'*': true,
'*.*': true,
'*.*.*': true
}
},
{
key: 2,
session: {},// Любая сессия
actions: {
'test.create': true,
'test.update': false,
//'test.find.*': false,
'test.find.*': {},
'test.delete': false,
}
},
// {
// key: 3,
// session: {'session.user._deleted': false},// Авторизован
// actions: {
// 'tests.create': true,
// 'tests.update': true,
// 'tests.find.*': true,
// 'tests.delete': false,
// }
// }
],
}
};