forked from anujsrc/devicehive-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevice.js
More file actions
218 lines (181 loc) · 7.5 KB
/
device.js
File metadata and controls
218 lines (181 loc) · 7.5 KB
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
var DHDevice = (function () {
'use strict';
/**
* DHDevice object constructor
* Specify device key or access key as an authentication/authorization parameters
* Auth type is predicted based on the parameters of the supplied string
*
* Note that authentication with device key is deprecated and will be removed in future
*
* @class
* @global
* @augments DeviceHive
* @param {String} serviceUrl - DeviceHive cloud API url
* @param {String} deviceId - Device unique identifier
* @param {String} accessKeyOrDeviceKey - Access key or device key (device key is deprecated) used for auth
* @param {Boolean} forceDeviceKeyAuth - Force using the third parameter as a device key
*/
var DHDevice = function (serviceUrl, deviceId, accessKeyOrDeviceKey, forceDeviceKeyAuth) {
this.serviceUrl = serviceUrl;
this.deviceId = deviceId;
// save auth information
this.auth = {};
if (forceDeviceKeyAuth || !utils.isAccessKey(accessKeyOrDeviceKey)) {
this.auth.deviceId = deviceId;
this.auth.deviceKey = accessKeyOrDeviceKey;
} else {
this.auth.accessKey = accessKeyOrDeviceKey;
}
};
DHDevice.prototype = DeviceHive;
DHDevice.constructor = DHDevice;
/**
* @callback getDeviceCb
* @param {DHError} err - An error object if any errors occurred
* @param {Object} device - Current device information
*/
/**
* Gets information about the current device
*
* @param {getDeviceCb} cb - The callback that handles the response
* @returns {Http} - Current http request
*/
DHDevice.prototype.getDevice = function (cb) {
cb = utils.createCallback(cb);
return this._executeApi(restApi.getDevice, [cb]);
};
/**
* Registers a device in the DeviceHive network with the current device id
* device key will be implicitly added if specified as an authentication parameter
*
* @param {Object} device - Device parameters
* @param {noDataCallback} cb - The callback that handles the response
* @returns {Http} - Current http request
*/
DHDevice.prototype.registerDevice = function (device, cb) {
cb = utils.createCallback(cb);
if (device.key && this.auth.deviceKey && device.key !== this.auth.deviceKey)
throw new Error('Conflicting device keys on device registration');
device.key = device.key || this.auth.deviceKey;
if (!device.key) {
throw new Error('Device key was not provided during the DHDevice object creation and therefore must be specified in the parameters')
}
return this._executeApi(restApi.registerDevice, [device, cb]);
};
/**
* Updates a device in the DeviceHive network with the current device id
*
* @param {Object} device - Device parameters
* @param {noDataCallback} cb - The callback that handles the response
* @returns {Http} - Current http request
*/
DHDevice.prototype.updateDevice = function (device, cb) {
cb = utils.createCallback(cb);
return this._executeApi(restApi.registerDevice, [device, cb]);
};
/**
* Sends new notification to the client
*
* @param {String} notification - Notification name
* @param {Object} params - Notification parameters
* @param {noDataCallback} cb - The callback that handles the response
* @returns {Http} - Current http request
*/
DHDevice.prototype.sendNotification = function (notification, params, cb) {
cb = utils.createCallback(cb);
this._ensureConnectedState();
return this.channel.sendNotification({
notification: {notification: notification, parameters: params},
deviceGuid: this.deviceId
}, cb);
};
/**
* @callback notificationSubscribeCb
* @param {DHError} err - An error object if any errors occurred
* @param {NotificationSubscription} subscription - added subscription object
*/
/**
* @typedef {Object} NotificationSubscribeParameters
* @property {function} onMessage - initial callback that will be invoked when a command is received
* @property {(Array | String)} names - notification name, array of notifications or null (subscribe to all notifications)
*/
/**
* @typedef {Subscription} NotificationSubscription
* @property {notificationReceivedCb} cb - a callback that will be invoked when a command is received
*/
/**
* @callback notificationReceivedCb
* @param {ReceivedCommand} command - Received command information
*/
/**
* @typedef {Object} ReceivedCommand
* @property {updateCommandFunction} update - function for updating the current command with the result
*/
/**
* @typedef {function} updateCommandFunction
* @param {Object} result - command result
* @param {function} cb - The callback that handles the response
* @throws {Error} - throws an error if status is not specified
*/
/**
* @callback getDeviceCb
* @param {DHError} err - An error object if any errors occurred
* @param {Object} device - Current device information
*/
var oldSubscribe = DeviceHive.subscribe;
/**
* Subscribes to device commands and returns a subscription object
* Use subscription object to bind to a 'new command received' event
* use command.update to specify command result parameters
*
* @param {notificationSubscribeCb} cb - The callback that handles the response
* @param {NotificationSubscribeParameters} params - Subscription parameters
* @returns {NotificationSubscription} - Added subscription object
*/
DHDevice.prototype.subscribe = function (cb, params) {
params = params || {};
params.deviceIds = [this.deviceId];
var sub = oldSubscribe.call(this, cb, params);
sub._handleMessageOld = sub._handleMessage;
var self = this;
// overwrite _handleMessage to add additional functionality to command object
sub._handleMessage = function (deviceId, cmd) {
self._populateCmd(cmd);
sub._handleMessageOld(cmd)
};
return sub;
};
DHDevice.prototype._populateCmd = function (cmd) {
var channel = this.channel;
var selfDeviceId = this.deviceId;
cmd.update = function (params, onUpdated) {
onUpdated = utils.createCallback(onUpdated);
if (!params || !params.status) {
throw new Error('Command status must be specified');
}
var updateParams = {};
updateParams.commandId = cmd.id;
updateParams.command = params || {};
updateParams.deviceGuid = selfDeviceId;
return channel.updateCommand(updateParams, onUpdated);
};
};
DHDevice.prototype._executeApi = function (endpoint, args) {
var endpointParams = [this.serviceUrl, this.auth, this.deviceId].concat(args);
return endpoint.apply(null, endpointParams);
};
DHDevice.prototype._channels = {};
DHDevice.prototype._channels.websocket = WebSocketDeviceChannel;
DHDevice.prototype._channels.longpolling = LongPollingDeviceChannel;
/**
* DHDevice channel states
* @borrows DeviceHive#channelStates
*/
DHDevice.channelStates = DeviceHive.channelStates;
/**
* DHDevice subscription states
* @borrows Subscription#states
*/
DHDevice.subscriptionStates = Subscription.states;
return DHDevice;
}());