-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
333 lines (301 loc) · 9.94 KB
/
config.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
/*
* Copyright 2020 FIWARE Foundation e.V.
*
* This file is part of iotagent-isoxml
*
* iotagent-isoxml is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the License,
* or (at your option) any later version.
*
* iotagent-isoxml is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with iotagent-isoxml.
* If not, see http://www.gnu.org/licenses/.
*
*/
let config = {};
/**
* Configuration for the HTTP transport binding.
*/
config.http = {
/**
* South Port where the ISOXML transport binding for HTTP will be listening for device requests.
*/
port: 7896
/**
* HTTP Timeout for the http command endpoint (in milliseconds).
*/
//timeout: 1000
/**
* HTTP Timeout for the http command endpoint (in milliseconds).
*/
//mics_endpoint: 'http://context-provider'
};
config.iota = {
/**
* Configures the log level. Appropriate values are: FATAL, ERROR, INFO, WARN and DEBUG.
*/
logLevel: 'FATAL',
/**
* When this flag is active, the IoTAgent will add the TimeInstant attribute to every entity created, as well
* as a TimeInstant metadata to each attribute, with the current timestamp.
*/
timestamp: true,
/**
* Context Broker configuration. Defines the connection information to the instance of the Context Broker where
* the IoT Agent will send the device data.
*/
contextBroker: {
/**
* Host where the Context Broker is located.
*/
host: 'localhost',
/**
* Port where the Context Broker is listening.
*/
port: '1026'
},
/**
* Configuration of the North Port of the IoT Agent.
*/
server: {
/**
* Port where the IoT Agent will be listening for NGSI and Provisioning requests.
*/
port: 4041
},
/**
* Configuration for secured access to instances of the Context Broker secured with a PEP Proxy.
* For the authentication mechanism to work, the authentication attribute in the configuration has to be fully
* configured, and the authentication.enabled subattribute should have the value `true`.
*
* The Username and password should be considered as sensitive data and should not be stored in plaintext.
* Either encrypt the config and decrypt when initializing the instance or use environment variables secured by
* docker secrets.
*/
//authentication: {
//enabled: false,
/**
* Type of the Identity Manager which is used when authenticating the IoT Agent.
* Either 'oauth2' or 'keystone'
*/
//type: 'keystone',
/**
* Name of the additional header passed to retrieve the identity of the IoT Agent
*/
//header: 'Authorization',
/**
* Hostname of the Identity Manager.
*/
//host: 'localhost',
/**
* Port of the Identity Manager.
*/
//port: '5000',
/**
* URL of the Identity Manager - a combination of the above
*/
//url: 'localhost:5000',
/**
* KEYSTONE ONLY: Username for the IoT Agent
* - Note this should not be stored in plaintext.
*/
//user: 'IOTA_AUTH_USER',
/**
* KEYSTONE ONLY: Password for the IoT Agent
* - Note this should not be stored in plaintext.
*/
//password: 'IOTA_AUTH_PASSWORD',
/**
* OAUTH2 ONLY: URL path for retrieving the token
*/
//tokenPath: '/oauth2/token',
/**
* OAUTH2 ONLY: Flag to indicate whether or not the token needs to be periodically refreshed.
*/
//permanentToken: true,
/**
* OAUTH2 ONLY: ClientId for the IoT Agent
* - Note this should not be stored in plaintext.
*/
//clientId: 'IOTA_AUTH_CLIENT_ID',
/**
* OAUTH2 ONLY: ClientSecret for the IoT Agent
* - Note this should not be stored in plaintext.
*/
//clientSecret: 'IOTA_AUTH_CLIENT_SECRET'
//},
/**
* Configuration for the IoT Manager. If the IoT Agent is part of a configuration composed of multiple IoTAgents
* coordinated by an IoT Manager, this section defines the information that will be used to connect with that
* manager.
*/
//iotManager: {
/**
* Host where the IoT Manager is located.
*/
//host: 'localhost',
/**
* Port where the IoT Manager is listening.
*/
//port: 8082,
/**
* Path where the IoT Manager accepts subscriptions.
*/
//path: '/protocols',
/**
* Protocol code identifying this IoT Agent.
*/
//protocol: 'MQTT_UL',
/**
* Textual description of this IoT Agent.
*/
//description: 'MQTT ISOXML 2.0 IoT Agent (Node.js version)'
//},
/**
* Default resource of the IoT Agent. This value must be different for every IoT Agent connecting to the IoT
* Manager.
*/
defaultResource: '/iot/isoxml',
/**
* Defines the configuration for the Device Registry, where all the information about devices and configuration
* groups will be stored. There are currently just two types of registries allowed:
*
* - 'memory': transient memory-based repository for testing purposes. All the information in the repository is
* wiped out when the process is restarted.
*
* - 'mongodb': persistent MongoDB storage repository. All the details for the MongoDB configuration will be read
* from the 'mongoDb' configuration property.
*/
deviceRegistry: {
type: 'mongodb'
},
/**
* Mongo DB configuration section. This section will only be used if the deviceRegistry property has the type
* 'mongodb'.
*/
mongodb: {
/**
* Host where MongoDB is located. If the MongoDB used is a replicaSet, this property will contain a
* comma-separated list of the instance names or IPs.
*/
host: 'localhost',
/**
* Port where MongoDB is listening. In the case of a replicaSet, all the instances are supposed to be listening
* in the same port.
*/
port: '27017',
/**
* Name of the Mongo database that will be created to store IoT Agent data.
*/
db: 'iotagentisoxml'
/**
* Name of the set in case the Mongo database is configured as a Replica Set. Optional otherwise.
*/
//replicaSet: ''
},
/**
* Types array for static configuration of services. Check documentation in the IoT Agent Library for Node.js for
* further details:
*
* https://github.com/telefonicaid/iotagent-node-lib#type-configuration
*/
types: {
AttachedFile: { apikey: 'afe' },
BaseStation: { apikey: 'bsn' },
CodedComment: { apikey: 'cct' },
CodedCommentGroup: { apikey: 'ccg' },
ColourLegend: { apikey: 'cld' },
CropType: { apikey: 'ctp' },
CulturalPractice: { apikey: 'cpc' },
Customer: {
apikey: 'ctr',
static_attributes: [
{
name: 'hasOccupation',
type: 'Occupation',
value: {
name: 'Customer'
}
}
]
},
Device: { apikey: 'dvc' },
Farm: {
apikey: 'frm',
static_attributes: [
{
name: 'category',
type: 'Text',
value: 'farm'
}
]
},
OperationTechnique: { apikey: 'otq' },
PartField: { apikey: 'pfd' },
Product: { apikey: 'pdt' },
ProductGroup: { apikey: 'pgp' },
TaskControllerCapabilities: { apikey: 'tcc' },
Task: { apikey: 'tsk' },
ValuePresentation: { apikey: 'vpn' },
Worker: {
apikey: 'wkr',
static_attributes: [
{
name: 'hasOccupation',
type: 'Occupation',
value: {
name: 'Worker'
}
}
]
},
ExternalFileReference: { apikey: 'xfr' }
},
/**
* Default service, for IoT Agent installations that won't require preregistration.
*/
service: 'openiot',
/**
* Default subservice, for IoT Agent installations that won't require preregistration.
*/
subservice: '/',
/**
* URL Where the IoT Agent Will listen for incoming updateContext and queryContext requests (for commands and
* passive attributes). This URL will be sent in the Context Registration requests.
*/
providerUrl: 'http://localhost:4041',
/**
* Default maximum expire date for device registrations.
*/
deviceRegistrationDuration: 'P20Y',
/**
* Default type, for IoT Agent installations that won't require preregistration.
*/
defaultType: 'Thing',
isoxmlType: 'isoxml_type'
};
/**
* flag indicating whether the incoming notifications to the IoTAgent should be processed using the bidirectionality
* plugin from the latest versions of the library or the UL-specific configuration retrieval mechanism.
*/
config.configRetrieval = false;
/**
* Default API Key, to use with device that have been provisioned without a Configuration Group.
*/
config.defaultKey = '';
/**
* Default transport protocol when no transport is provisioned through the Device Provisioning API.
*/
config.defaultTransport = 'HTTP';
/**
* flag indicating whether the node server will be executed in multi-core option (true) or it will be a
* single-thread one (false).
*/
//config.multiCore = false;
module.exports = config;