@itentialopensource/adapter-robustel 0.4.6 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +1 -0
- package/AUTH.md +4 -4
- package/BROKER.md +4 -4
- package/CALLS.md +9 -9
- package/ENHANCE.md +3 -3
- package/PROPERTIES.md +24 -9
- package/README.md +24 -23
- package/SUMMARY.md +2 -2
- package/SYSTEMINFO.md +1 -1
- package/TAB1.md +2 -2
- package/TAB2.md +9 -5
- package/TROUBLESHOOT.md +10 -1
- package/UTILITIES.md +473 -0
- package/adapter.js +27 -179
- package/adapterBase.js +52 -16
- package/package.json +25 -29
- package/pronghorn.json +17 -15
- package/propertiesSchema.json +68 -7
- package/report/adapterInfo.json +7 -7
- package/report/auto-adapter-openapi.json +248 -0
- package/report/updateReport1748555069445.json +120 -0
- package/sampleProperties.json +4 -0
- package/test/integration/adapterTestBasicGet.js +88 -54
- package/test/integration/adapterTestConnectivity.js +15 -16
- package/test/integration/adapterTestIntegration.js +1 -38
- package/test/unit/adapterBaseTestUnit.js +641 -39
- package/test/unit/adapterTestUnit.js +17 -54
- package/utils/adapterInfo.js +114 -164
- package/utils/argParser.js +44 -0
- package/utils/checkMigrate.js +77 -38
- package/utils/entitiesToDB.js +53 -42
- package/utils/logger.js +26 -0
- package/utils/modify.js +56 -55
- package/utils/mongoDbConnection.js +79 -0
- package/utils/mongoUtils.js +162 -0
- package/utils/taskMover.js +31 -32
- package/utils/tbScript.js +36 -172
- package/utils/tbUtils.js +84 -226
- package/utils/troubleshootingAdapter.js +68 -84
- package/utils/updateAdapterConfig.js +158 -0
- package/utils/addAuth.js +0 -94
- package/utils/artifactize.js +0 -146
- package/utils/basicGet.js +0 -50
- package/utils/packModificationScript.js +0 -35
- package/utils/patches2bundledDeps.js +0 -90
package/propertiesSchema.json
CHANGED
|
@@ -779,6 +779,14 @@
|
|
|
779
779
|
"security/ca.pem"
|
|
780
780
|
]
|
|
781
781
|
},
|
|
782
|
+
"ca_file_content": {
|
|
783
|
+
"type": "string",
|
|
784
|
+
"description": "The content of the CA file used for SSL",
|
|
785
|
+
"default": "",
|
|
786
|
+
"examples": [
|
|
787
|
+
"-----BEGIN CERTIFICATE-----"
|
|
788
|
+
]
|
|
789
|
+
},
|
|
782
790
|
"key_file": {
|
|
783
791
|
"type": "string",
|
|
784
792
|
"description": "The fully qualified path name to the key file used for SSL",
|
|
@@ -868,32 +876,48 @@
|
|
|
868
876
|
"mongo": {
|
|
869
877
|
"type": "object",
|
|
870
878
|
"properties": {
|
|
879
|
+
"url": {
|
|
880
|
+
"type": "string",
|
|
881
|
+
"description": "Mongo's complete connection URL. This property overrides host, port, database, username, password and replSet settings.",
|
|
882
|
+
"examples": [
|
|
883
|
+
"mongodb://[username:password@]host1[:port1][,...hostN[:portN]][/[defaultauthdb][?options]]",
|
|
884
|
+
"mongodb+srv://[username:password@]cluster0.xxxxx.mongodb.net/[defaultauthdb][?options]",
|
|
885
|
+
"mongodb+srv://cluster0.xxxxx.mongodb.net/[defaultauthdb][?options]"
|
|
886
|
+
]
|
|
887
|
+
},
|
|
871
888
|
"host": {
|
|
872
889
|
"type": "string",
|
|
873
|
-
"description": "
|
|
890
|
+
"description": "Host information for the Mongo server",
|
|
874
891
|
"default": "",
|
|
875
892
|
"examples": [
|
|
876
|
-
"localhost"
|
|
893
|
+
"localhost",
|
|
894
|
+
"cluster0.xxxxx.mongodb.net",
|
|
895
|
+
"my-cluster.example.com"
|
|
877
896
|
]
|
|
878
897
|
},
|
|
879
898
|
"port": {
|
|
880
899
|
"type": "integer",
|
|
881
|
-
"description": "
|
|
900
|
+
"description": "Port information for the Mongo server. Not used when using mongodb+srv:// protocol",
|
|
882
901
|
"default": 443,
|
|
883
902
|
"minimum": 0,
|
|
884
903
|
"maximum": 65535
|
|
885
904
|
},
|
|
886
905
|
"database": {
|
|
887
906
|
"type": "string",
|
|
888
|
-
"description": "The
|
|
907
|
+
"description": "The database for the adapter to use for its data.",
|
|
889
908
|
"default": "",
|
|
890
909
|
"examples": [
|
|
891
910
|
"adapter-xyz"
|
|
892
911
|
]
|
|
893
912
|
},
|
|
913
|
+
"dbAuth": {
|
|
914
|
+
"type": "boolean",
|
|
915
|
+
"description": "Whether to use authentication for MongoDB connection. Default is false.",
|
|
916
|
+
"default": false
|
|
917
|
+
},
|
|
894
918
|
"username": {
|
|
895
919
|
"type": "string",
|
|
896
|
-
"description": "
|
|
920
|
+
"description": "If credentials are required to access Mongo, this is the user to login as.",
|
|
897
921
|
"default": "",
|
|
898
922
|
"examples": [
|
|
899
923
|
"username"
|
|
@@ -901,7 +925,7 @@
|
|
|
901
925
|
},
|
|
902
926
|
"password": {
|
|
903
927
|
"type": "string",
|
|
904
|
-
"description": "
|
|
928
|
+
"description": "If credentials are required to access Mongo, this is the password to login with.",
|
|
905
929
|
"default": "",
|
|
906
930
|
"examples": [
|
|
907
931
|
"password"
|
|
@@ -909,12 +933,17 @@
|
|
|
909
933
|
},
|
|
910
934
|
"replSet": {
|
|
911
935
|
"type": "string",
|
|
912
|
-
"description": "
|
|
936
|
+
"description": "If the database is set up to use replica sets, define it here so it can be added to the database connection. Not used when using mongodb+srv:// protocol",
|
|
913
937
|
"default": "",
|
|
914
938
|
"examples": [
|
|
915
939
|
"my_repolica_set"
|
|
916
940
|
]
|
|
917
941
|
},
|
|
942
|
+
"addSrv": {
|
|
943
|
+
"type": "boolean",
|
|
944
|
+
"description": "Whether the connection requires the mongodb+srv:// protocol. If true, uses mongodb+srv:// protocol. Note: mongodb+srv:// can also be used for non-Atlas deployments that support DNS SRV records",
|
|
945
|
+
"default": false
|
|
946
|
+
},
|
|
918
947
|
"db_ssl": {
|
|
919
948
|
"type": "object",
|
|
920
949
|
"description": "SSL for mongo database connection",
|
|
@@ -955,6 +984,38 @@
|
|
|
955
984
|
}
|
|
956
985
|
}
|
|
957
986
|
}
|
|
987
|
+
},
|
|
988
|
+
"dependencies": {
|
|
989
|
+
"dbAuth": {
|
|
990
|
+
"oneOf": [
|
|
991
|
+
{
|
|
992
|
+
"properties": {
|
|
993
|
+
"dbAuth": {
|
|
994
|
+
"const": false
|
|
995
|
+
}
|
|
996
|
+
}
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"properties": {
|
|
1000
|
+
"dbAuth": {
|
|
1001
|
+
"const": true
|
|
1002
|
+
},
|
|
1003
|
+
"username": {
|
|
1004
|
+
"type": "string",
|
|
1005
|
+
"minLength": 1
|
|
1006
|
+
},
|
|
1007
|
+
"password": {
|
|
1008
|
+
"type": "string",
|
|
1009
|
+
"minLength": 1
|
|
1010
|
+
}
|
|
1011
|
+
},
|
|
1012
|
+
"required": [
|
|
1013
|
+
"username",
|
|
1014
|
+
"password"
|
|
1015
|
+
]
|
|
1016
|
+
}
|
|
1017
|
+
]
|
|
1018
|
+
}
|
|
958
1019
|
}
|
|
959
1020
|
},
|
|
960
1021
|
"devicebroker": {
|
package/report/adapterInfo.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.4.
|
|
3
|
-
"configLines":
|
|
4
|
-
"scriptLines":
|
|
5
|
-
"codeLines":
|
|
6
|
-
"testLines":
|
|
7
|
-
"testCases":
|
|
8
|
-
"totalCodeLines":
|
|
2
|
+
"version": "0.4.6",
|
|
3
|
+
"configLines": 3711,
|
|
4
|
+
"scriptLines": 2498,
|
|
5
|
+
"codeLines": 2827,
|
|
6
|
+
"testLines": 4090,
|
|
7
|
+
"testCases": 176,
|
|
8
|
+
"totalCodeLines": 9415,
|
|
9
9
|
"wfTasks": 31
|
|
10
10
|
}
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.1.0",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "",
|
|
5
|
+
"version": "1.0.0"
|
|
6
|
+
},
|
|
7
|
+
"paths": {
|
|
8
|
+
"/dashboard/deviceTotal": {
|
|
9
|
+
"get": {
|
|
10
|
+
"tags": [
|
|
11
|
+
"Dashboard"
|
|
12
|
+
],
|
|
13
|
+
"operationId": "getDeviceTotal",
|
|
14
|
+
"description": "The parameters and request body are for method: getDeviceTotal. Same endpoint also used in methods:",
|
|
15
|
+
"responses": {
|
|
16
|
+
"200": {
|
|
17
|
+
"description": "Successful operation",
|
|
18
|
+
"content": {
|
|
19
|
+
"application/json": {
|
|
20
|
+
"schema": {
|
|
21
|
+
"title": "result",
|
|
22
|
+
"type": "object"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"requestBody": {
|
|
29
|
+
"content": {
|
|
30
|
+
"application/json": {
|
|
31
|
+
"schema": {
|
|
32
|
+
"type": "object"
|
|
33
|
+
},
|
|
34
|
+
"example": {}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"/dashboard/networkTotal": {
|
|
41
|
+
"get": {
|
|
42
|
+
"tags": [
|
|
43
|
+
"Dashboard"
|
|
44
|
+
],
|
|
45
|
+
"operationId": "getNetworkTotal",
|
|
46
|
+
"description": "The parameters and request body are for method: getNetworkTotal. Same endpoint also used in methods:",
|
|
47
|
+
"responses": {
|
|
48
|
+
"200": {
|
|
49
|
+
"description": "Successful operation",
|
|
50
|
+
"content": {
|
|
51
|
+
"application/json": {
|
|
52
|
+
"schema": {
|
|
53
|
+
"title": "result",
|
|
54
|
+
"type": "object"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"requestBody": {
|
|
61
|
+
"content": {
|
|
62
|
+
"application/json": {
|
|
63
|
+
"schema": {
|
|
64
|
+
"type": "object"
|
|
65
|
+
},
|
|
66
|
+
"example": {}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"/device/devices/{serialNumber}": {
|
|
73
|
+
"get": {
|
|
74
|
+
"tags": [
|
|
75
|
+
"Device"
|
|
76
|
+
],
|
|
77
|
+
"operationId": "getDeviceDetails",
|
|
78
|
+
"description": "The parameters and request body are for method: getDeviceDetails. Same endpoint also used in methods:",
|
|
79
|
+
"responses": {
|
|
80
|
+
"200": {
|
|
81
|
+
"description": "Successful operation",
|
|
82
|
+
"content": {
|
|
83
|
+
"application/json": {
|
|
84
|
+
"schema": {
|
|
85
|
+
"title": "result",
|
|
86
|
+
"type": "object"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"parameters": [
|
|
93
|
+
{
|
|
94
|
+
"name": "serialNumber",
|
|
95
|
+
"in": "path",
|
|
96
|
+
"required": true,
|
|
97
|
+
"schema": {
|
|
98
|
+
"title": "serialNumber",
|
|
99
|
+
"type": "string"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"requestBody": {
|
|
104
|
+
"content": {
|
|
105
|
+
"application/json": {
|
|
106
|
+
"schema": {
|
|
107
|
+
"type": "object"
|
|
108
|
+
},
|
|
109
|
+
"example": {}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"/devices/{serialNumber}/firmwares": {
|
|
116
|
+
"get": {
|
|
117
|
+
"tags": [
|
|
118
|
+
"Device"
|
|
119
|
+
],
|
|
120
|
+
"operationId": "getDeviceFirmwareList",
|
|
121
|
+
"description": "The parameters and request body are for method: getDeviceFirmwareList. Same endpoint also used in methods:",
|
|
122
|
+
"responses": {
|
|
123
|
+
"200": {
|
|
124
|
+
"description": "Successful operation",
|
|
125
|
+
"content": {
|
|
126
|
+
"application/json": {
|
|
127
|
+
"schema": {
|
|
128
|
+
"title": "result",
|
|
129
|
+
"type": "object"
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"parameters": [
|
|
136
|
+
{
|
|
137
|
+
"name": "serialNumber",
|
|
138
|
+
"in": "path",
|
|
139
|
+
"required": true,
|
|
140
|
+
"schema": {
|
|
141
|
+
"title": "serialNumber",
|
|
142
|
+
"type": "string"
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
"requestBody": {
|
|
147
|
+
"content": {
|
|
148
|
+
"application/json": {
|
|
149
|
+
"schema": {
|
|
150
|
+
"type": "object"
|
|
151
|
+
},
|
|
152
|
+
"example": {}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"/devices/{serialNumber}": {
|
|
159
|
+
"put": {
|
|
160
|
+
"tags": [
|
|
161
|
+
"Device"
|
|
162
|
+
],
|
|
163
|
+
"operationId": "runCommandOnDevice",
|
|
164
|
+
"description": "The parameters and request body are for method: runCommandOnDevice. Same endpoint also used in methods:",
|
|
165
|
+
"responses": {
|
|
166
|
+
"200": {
|
|
167
|
+
"description": "Successful operation",
|
|
168
|
+
"content": {
|
|
169
|
+
"application/json": {
|
|
170
|
+
"schema": {
|
|
171
|
+
"title": "result",
|
|
172
|
+
"type": "object"
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"parameters": [
|
|
179
|
+
{
|
|
180
|
+
"name": "serialNumber",
|
|
181
|
+
"in": "path",
|
|
182
|
+
"required": true,
|
|
183
|
+
"schema": {
|
|
184
|
+
"title": "serialNumber",
|
|
185
|
+
"type": "string"
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
],
|
|
189
|
+
"requestBody": {
|
|
190
|
+
"description": "indeterminate body object",
|
|
191
|
+
"content": {
|
|
192
|
+
"application/json": {
|
|
193
|
+
"schema": {
|
|
194
|
+
"type": "object"
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"/command/{commandId}": {
|
|
202
|
+
"get": {
|
|
203
|
+
"tags": [
|
|
204
|
+
"Device"
|
|
205
|
+
],
|
|
206
|
+
"operationId": "getFirmwareUpdateResult",
|
|
207
|
+
"description": "The parameters and request body are for method: getFirmwareUpdateResult. Same endpoint also used in methods:",
|
|
208
|
+
"responses": {
|
|
209
|
+
"200": {
|
|
210
|
+
"description": "Successful operation",
|
|
211
|
+
"content": {
|
|
212
|
+
"application/json": {
|
|
213
|
+
"schema": {
|
|
214
|
+
"title": "result",
|
|
215
|
+
"type": "object"
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"parameters": [
|
|
222
|
+
{
|
|
223
|
+
"name": "commandId",
|
|
224
|
+
"in": "path",
|
|
225
|
+
"required": true,
|
|
226
|
+
"schema": {
|
|
227
|
+
"title": "commandId",
|
|
228
|
+
"type": "string"
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
],
|
|
232
|
+
"requestBody": {
|
|
233
|
+
"content": {
|
|
234
|
+
"application/json": {
|
|
235
|
+
"schema": {
|
|
236
|
+
"type": "object"
|
|
237
|
+
},
|
|
238
|
+
"example": {}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
"components": {
|
|
246
|
+
"schemas": {}
|
|
247
|
+
}
|
|
248
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"errors": [],
|
|
3
|
+
"statistics": [
|
|
4
|
+
{
|
|
5
|
+
"owner": "errorJson",
|
|
6
|
+
"description": "New adapter errors available for use",
|
|
7
|
+
"value": 0
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"owner": "errorJson",
|
|
11
|
+
"description": "Adapter errors no longer available for use",
|
|
12
|
+
"value": 0
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"owner": "errorJson",
|
|
16
|
+
"description": "Adapter errors that have been updated (e.g. recommendation changes)",
|
|
17
|
+
"value": 31
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"owner": "packageJson",
|
|
21
|
+
"description": "Number of production dependencies",
|
|
22
|
+
"value": 15
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"owner": "packageJson",
|
|
26
|
+
"description": "Number of development dependencies",
|
|
27
|
+
"value": 6
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"owner": "packageJson",
|
|
31
|
+
"description": "Number of npm scripts",
|
|
32
|
+
"value": 19
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"owner": "packageJson",
|
|
36
|
+
"description": "Runtime Library dependency",
|
|
37
|
+
"value": "5.10.16"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"owner": "propertiesSchemaJson",
|
|
41
|
+
"description": "Adapter properties defined in the propertiesSchema file",
|
|
42
|
+
"value": 82
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"owner": "markdown",
|
|
46
|
+
"description": "Number of lines in the README.md",
|
|
47
|
+
"value": 345
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"owner": "markdown",
|
|
51
|
+
"description": "Number of lines in the SUMMARY.md",
|
|
52
|
+
"value": 9
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"owner": "markdown",
|
|
56
|
+
"description": "Number of lines in the PROPERTIES.md",
|
|
57
|
+
"value": 662
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"owner": "markdown",
|
|
61
|
+
"description": "Number of lines in the TROUBLESHOOT.md",
|
|
62
|
+
"value": 57
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"owner": "markdown",
|
|
66
|
+
"description": "Number of lines in the ENHANCE.md",
|
|
67
|
+
"value": 70
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"owner": "markdown",
|
|
71
|
+
"description": "Number of lines in the BROKER.md",
|
|
72
|
+
"value": 70
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"owner": "unitTestJS",
|
|
76
|
+
"description": "Number of lines of code in unit tests",
|
|
77
|
+
"value": 1631
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"owner": "unitTestJS",
|
|
81
|
+
"description": "Number of unit tests",
|
|
82
|
+
"value": 79
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"owner": "integrationTestJS",
|
|
86
|
+
"description": "Number of lines of code in integration tests",
|
|
87
|
+
"value": 596
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"owner": "integrationTestJS",
|
|
91
|
+
"description": "Number of integration tests",
|
|
92
|
+
"value": 15
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"owner": "staticFile",
|
|
96
|
+
"description": "Number of lines of code in adapterBase.js",
|
|
97
|
+
"value": 1489
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"owner": "staticFile",
|
|
101
|
+
"description": "Number of static files added",
|
|
102
|
+
"value": 37
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"owner": "Overall",
|
|
106
|
+
"description": "Total lines of Code",
|
|
107
|
+
"value": 3716
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"owner": "Overall",
|
|
111
|
+
"description": "Total Tests",
|
|
112
|
+
"value": 94
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"owner": "Overall",
|
|
116
|
+
"description": "Total Files",
|
|
117
|
+
"value": 6
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
}
|
package/sampleProperties.json
CHANGED
|
@@ -98,18 +98,22 @@
|
|
|
98
98
|
"enabled": false,
|
|
99
99
|
"accept_invalid_cert": false,
|
|
100
100
|
"ca_file": "",
|
|
101
|
+
"ca_file_content": "",
|
|
101
102
|
"key_file": "",
|
|
102
103
|
"cert_file": "",
|
|
103
104
|
"secure_protocol": "",
|
|
104
105
|
"ciphers": ""
|
|
105
106
|
},
|
|
106
107
|
"mongo": {
|
|
108
|
+
"url": "",
|
|
107
109
|
"host": "",
|
|
108
110
|
"port": 0,
|
|
109
111
|
"database": "",
|
|
112
|
+
"dbAuth": false,
|
|
110
113
|
"username": "",
|
|
111
114
|
"password": "",
|
|
112
115
|
"replSet": "",
|
|
116
|
+
"addSrv": false,
|
|
113
117
|
"db_ssl": {
|
|
114
118
|
"enabled": false,
|
|
115
119
|
"accept_invalid_cert": false,
|