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 |
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
57
1
1 | /*
* Copyright 2014 Telefonica Investigación y Desarrollo, S.A.U
*
* This file is part of iotagent-lwm2m-lib
*
* iotagent-lwm2m-lib 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-lwm2m-lib 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-lwm2m-lib.
* If not, seehttp://www.gnu.org/licenses/.
*
* For those usages not covered by the GNU Affero General Public License
* please contact with::[contacto@tid.es]
*/
'use strict';
var async = require('async'),
registry,
logger = require('logops'),
context = {
op: 'LWM2MLib.UpdateRegistration'
},
coapUtils = require('./../coapUtils'),
apply = async.apply;
/**
* Generates the end of request handler that will generate the final response to the COAP Client.
*/
function endUpdate(req, res) {
return function (error, result) {
Iif (error) {
logger.debug(context, 'Registration request ended up in error [%s] with code [%s]', error.name, error.code);
res.code = error.code;
res.end(error.message);
} else {
logger.debug(context, 'Update registration request ended successfully');
res.code = '2.04';
res.end('');
}
};
}
/**
* Updates the lifetime and address of the Device.
*
* @param {Object} req Arriving COAP Request to be processed.
* @param {Object} queryParams Object containing all the query parameters.
* @param {Object} obj Old version of the Device retrieved from the registry.
*/
function updateRegister(req, queryParams, obj, callback) {
logger.debug(context, 'Updating device register with lifetime [%s] and address [%s].',
queryParams.lt, req.rsinfo.address);
obj.lifetime = queryParams.lt;
obj.address = req.rsinfo.address;
callback(null, obj);
}
/**
* Parse the pathname of the request to extract the device id and return it through the callback.
*
* @param {Object} req Arriving COAP Request to be processed.
*/
function parsePath(req, callback) {
var pathElements = req.urlObj.pathname.split('/');
callback(null, pathElements[2]);
}
/**
* Invoke the user handler for this operation with the updated object as its only argument.
*
* @param {Function} handler User handler for the update registration.
* @param {String} payload String representation of the update payload.
* @param {Object} updatedObj The updated Device object.
*/
function applyHandler(handler, payload, updatedObj, callback) {
handler(updatedObj, payload.toString(), callback);
}
/**
* Handle the registration operation.
*
* @param {Object} req Arriving COAP Request to be handled.
* @param {Object} res Outgoing COAP Response.
* @param {Function} handler User handler to be executed if everything goes ok.
*/
function handleUpdateRegistration(req, res, handler) {
logger.debug(context, 'Handling update registration request');
async.series([
apply(coapUtils.extractQueryParams, req),
apply(parsePath, req)
], function (error, extractedData) {
Iif (error) {
endUpdate(req, res)(error);
} else {
async.waterfall([
apply(registry.get, extractedData[1]),
apply(updateRegister, req, extractedData[0]),
apply(registry.update, extractedData[1]),
apply(applyHandler, handler, req.payload)
], endUpdate(req, res));
}
});
}
function setRegistry(newRegistry) {
registry = newRegistry;
}
exports.init = setRegistry;
exports.handle = handleUpdateRegistration; |