forked from particle-iot/sparkjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspark.js
762 lines (654 loc) · 22.2 KB
/
spark.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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
/*
******************************************************************************
* @file lib/spark.js
* @company Spark ( https://www.spark.io/ )
* @source https://github.com/spark/sparkjs
*
* @Contributors
* David Middlecamp ([email protected])
* Edgar Silva (https://github.com/edgarsilva)
* Javier Cervantes (https://github.com/solojavier)
*
* @brief Main Spark Api class
******************************************************************************
Copyright (c) 2014 Spark Labs, Inc. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation, either
version 3 of the License, or (at your option) any later version.
This program 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this program; if not, see <http://www.gnu.org/licenses/>.
******************************************************************************
*/
/*jslint node: true */
'use strict';
var when = require('when'),
pipeline = require('when/pipeline');
var fs = require('fs'),
util = require('util'),
EventEmitter = require('events').EventEmitter,
Device = require('./device'),
SparkApi = require('./spark-api');
/**
* Creates a new Spark obj
* @constructor {Spark}
*/
var Spark = function() {
this.clientId = 'Spark';
this.clientSecret = 'Spark';
this.baseUrl = 'https://api.spark.io';
this.accessToken = null;
this.plugins = [];
this.devices = [];
this.api = new SparkApi({
clientId: this.clientId,
clientSecret: this.clientSecret,
baseUrl: this.baseUrl
});
};
util.inherits(Spark, EventEmitter);
/**
* Resolves an api response
*
* @this {Spark}
* @param {string} defer - The defer object that will be resolved
* @param {string} err - The error returned from reponse
* @param {object} data - The data of the response
* @param {function} callback - Function to execute on complete
* @returns: null
*/
Spark.prototype.resolveDefer = function(defer, err, data, callback) {
if (defer) {
if (err) {
defer.reject(err);
} else{
defer.resolve(data);
}
}
};
/**
* Creates and returns a defet obj based on listeners and callback provided.
*
* @this {Spark}
* @param {string} eventName
* @param {function} callback
* @returns: null
*/
Spark.prototype.createDefer = function(eventName, callback) {
var defer = null;
if (!callback && (this.listeners(eventName).length === 0)) {
defer = when.defer();
}
return defer;
};
/**
* Returns a default normalized err, created either by request or by response
*
* @this {Spark}
* @param {Err} err - The err returned by request
* @param {Object} data - Data returned by request
* @param {function} callback - Callback to be executed upon completion
* @returns: {Error} err - Normalized error
*/
Spark.prototype.normalizeErr = function(err, data, callback) {
if (!err && data.error) {
err = new Error(data.error);
}
return err;
};
/**
* Emits an event and executes the callback
*
* @this {Spark}
* @param {string} eventName - Name of the event to be emitted.
* @param {error} err - Error thrown if any, or null.
* @param {object} params - To be passed to the callback and event emitted.
* @param {function} callback - To be executed, only if typeof returns 'function'.
* @returns null
*/
Spark.prototype.emitAndCallback = function(eventName, err, data, callback) {
if (!!err) { data = null; }
this.emit(eventName, err, data);
if ('function' === typeof(callback)) { callback(err, data); }
};
/**
* Returns a default handler for generic ApiCalls
*
* @this {Spark}
* @param {string} eventName - The event name to be triggered
* @param {Defer} defer - The deferer to resolve/reject the promise
* @param {function} userCb - Callback passed by the user to be executed on completion of request
* @param {function} sparkCb - Callback created to setup attrs on request completion
* @returns: {function} handler - the handler function to be passed to the request
*/
Spark.prototype.defaultHandler = function(eventName, defer, userCb, sparkCb) {
var handler = function(err, response, data) {
err = this.normalizeErr(err, data);
if (!err && (typeof(sparkCb) === 'function')) { sparkCb(data); }
this.resolveDefer(defer, err, data);
this.emitAndCallback(eventName, err, data, userCb);
}.bind(this);
return handler;
};
Spark.prototype.include = function(plugins) {
plugins = (Array.isArray(plugins) ? plugins : [plugins]);
for (var i in plugins) {
if (this.plugins.indexOf(plugins[i]) == -1) {
this.plugins.push(plugins[i]);
}
}
};
/**
* Login to the Spark Cloud
*
* @param {string} username - Email for the user
* @param {string} password
* @param {callback} callback(err, data)
* @returns {Promise}
* @endpoint GET /oauth/token
*/
Spark.prototype.login = function (params, callback) {
var defer = this.createDefer('login', callback);
var handler = this.defaultHandler('login', defer, callback, function(data) {
this.accessToken = data.access_token || data.accessToken;
}.bind(this));
if (params.accessToken) {
handler(null, params, params);
} else {
this.api.login(params, handler);
}
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Returns a device based on the param deviceId
*
* @this {Spark}
* @param {string} deviceId - the id of the core to retrieve
* @param {function} callback(err, data)
* @returns {Promise}
* @endpoint GET /v1/devices
*/
Spark.prototype.getDevice = function (deviceId, callback) {
var defer = this.createDefer('getDevice', callback);
var device = null;
var handler = function(err, response, data) {
err = this.normalizeErr(err, data);
if (data && (data.id == deviceId)) {
device = new Device(data, this);
}
this.resolveDefer(defer, err, device);
this.emitAndCallback('getDevice', err, device, callback);
}.bind(this);
this.api.getDevice({deviceId: deviceId, accessToken: this.accessToken }, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Returns a list of devices for the logged in user
*
* @this {Spark}
* @param {function} callback(err, data)
* @returns {Promise}
* @endpoint GET /v1/devices
*/
Spark.prototype.listDevices = function (callback) {
var defer = this.createDefer('listDevices', callback);
var handler = function(err, response, data) {
err = this.normalizeErr(err, data);
this.devices = [];
if (Array.isArray(data)) {
for (var i in data) {
this.devices.push(new Device(data[i], this));
}
}
this.resolveDefer(defer, err, this.devices);
this.emitAndCallback('listDevices', err, this.devices, callback);
}.bind(this);
this.api.listDevices({ accessToken: this.accessToken }, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Returns true if Spark has an accessToken and is able to make API calls
*
* @this {Spark}
* @returns {boolean}
*/
Spark.prototype.ready = function() {
return !!this.accessToken;
};
/**
* Creates an user in the Spark cloud
*
* @this {Spark}
* @param {string} username - Email for the user to be registered
* @param {string} password
* @param {function} callback(err, data) - To be executed upon API call completion
* @returns {Promise}
* @endpoint POST /v1/users
*/
Spark.prototype.createUser = function (username, password, callback) {
var defer = this.createDefer('createUser', callback),
emailRegex = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
if (!username || (username === '') || (!emailRegex.test(username))) {
var err = new Error('Username must be an email address.');
this.emitAndCallback('createUser', err, null, callback);
if (!!defer) { defer.reject(err); }
} else {
var handler = this.defaultHandler('createUser', defer, callback, function(data) {
this.username = username;
this.password = password;
}.bind(this));
this.api.createUser(username, password, handler);
}
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Removes accessToken from the Spark cloud for the specified user.
*
* @this {Spark}
* @param {string} username - Email for the user to be registered
* @param {string} password
* @param {string} accessToken - the access_token to be removed
* @param {function} callback(err, data) - To be executed upon API call completion
* @returns {Promise}
* @endpoint DELETE /v1/access_tokens/<access_token>
*/
Spark.prototype.removeAccessToken = function (username, password, accessToken, callback) {
var defer = this.createDefer('removeAccessToken', callback),
handler = this.defaultHandler('removeAccessToken', defer, callback).bind(this);
accessToken = accessToken || this.accessToken;
this.api.removeAccessToken(username, password, accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Claims a core and adds it to the user currently logged in
*
* @param {string} coreId - The id of the Spark core you wish to claim
* @param {function} callback
* @returns {Promise}
* @endpoint POST /v1/devices
*/
Spark.prototype.claimCore = function (coreId, callback) {
var defer = this.createDefer('claimCore', callback),
handler = this.defaultHandler('claimCore', defer, callback).bind(this);
this.api.claimCore(coreId, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Removes a core from the user currently logged in
*
* @param {string} coreId - The id of the Spark core you wish to claim
* @param {function} callback
* @returns {Promise}
* @endpoint DELETE /v1/devices/<core_id>
*/
Spark.prototype.removeCore = function (coreId, callback) {
var defer = this.createDefer('removeCore', callback),
handler = this.defaultHandler('removeCore', defer, callback).bind(this);
this.api.removeCore(coreId, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Renames a core for the user currently logged in
*
* @param {string} coreId - The id of the Spark core you wish to claim
* @param {string} name - New core name
* @param {function} callback
* @returns {Promise}
* @endpoint PUT /v1/devices/<core_id>
*/
Spark.prototype.renameCore = function (coreId, name, callback) {
var defer = this.createDefer('renameCore', callback),
handler = this.defaultHandler('renameCore', defer, callback).bind(this);
this.api.renameCore(coreId, name, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Gets all attributes for a given core
*
* @param {string} coreId - The id of the Spark core you wish get attrs for
* @param {function} callback
* @returns {Promise}
* @endpoint GET /v1/devices/<core_id>
*/
Spark.prototype.getAttributes = function (coreId, callback) {
var defer = this.createDefer('getAttributes', callback),
handler = this.defaultHandler('getAttributes', defer, callback);
this.api.getAttributes(coreId, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Gets an attribute for a specific Core
*
* @param {string} coreId - The id of the Spark core you wish get attrs for
* @param {string} name - The name of the variable/attr to retrieve
* @param {function} callback
* @returns {Promise}
* @endpoint GET /v1/devices/<core_id>/<variable_name>
*/
Spark.prototype.getVariable = function (coreId, name, callback) {
var defer = this.createDefer('getVariable', callback),
handler = this.defaultHandler('getVariable', defer, callback).bind(this);
this.api.getVariable(coreId, name, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Send a signal to a Core
*
* @param {string} coreId - The id of the Spark core you wish to signal
* @param {boolean} name - If the core should be emitting signals or not
* @param {function} callback
* @returns {Promise}
* @endpoint PUT /v1/devices/<core_id>
*/
Spark.prototype.signalCore = function (coreId, beSignalling, callback) {
var defer = this.createDefer('signalCore', callback),
handler = this.defaultHandler('signalCore', defer, callback).bind(this);
this.api.signalCore(coreId, beSignalling, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Flash Tinker firmware to a Core
*
* @param {string} coreId - The id of the Spark core you wish to signal
* @param {function} callback
* @returns {Promise}
* @endpoint PUT /v1/devices/<core_id>
*/
Spark.prototype.flashTinker = function (coreId, callback) {
var defer = this.createDefer('flashTinker', callback),
handler = this.defaultHandler('flashTinker', defer, callback).bind(this);
this.api.flashTinker(coreId, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Flash firmware to a Core
*
* @param {string} coreId - The id of the Spark core you wish to signal
* @param {[string]} files - An array of strings containing the files to flash
* @param {function} callback
* @returns {Promise}
* @endpoint PUT /v1/devices/<core_id>
*/
Spark.prototype.flashCore = function (coreId, files, callback) {
var defer = this.createDefer('flashCore', callback),
handler = this.defaultHandler('flashCore', defer, callback).bind(this);
this.api.flashCore(coreId, files, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Compiles files in the Spark cloud
*
* @param {[string]} files - An array of strings containing the files to compile
* @param {function} callback
* @returns {Promise}
* @endpoint PUT /v1/binaries
*/
Spark.prototype.compileCode = function(files, callback) {
var defer = this.createDefer('compileCode', callback),
handler = this.defaultHandler('compileCode', defer, callback);
this.api.compileCode(files, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Download binary file from the spark cloud
*
* @param {string} url - The url for the binary
* @param {string} filename
* @param {function} callback
* @returns {Promise}
* @endpoint GET /<url>
*/
Spark.prototype.downloadBinary = function (url, filename, callback) {
var defer = this.createDefer('downloadBinary', callback),
outFs = fs.createWriteStream(filename),
handler = this.defaultHandler('downloadBinary', defer, callback).bind(this);
this.api.downloadBinary(url, filename, this.accessToken, handler).pipe(outFs);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Sends a public key to the Spark cloud
*
* @param {string} coreId - The id of the Core
* @param {Buffer} buffer - The buffer for the public key
* @param {function} callback
* @returns {Promise}
* @endpoint GET /v1/provisioning/<core_id>
*/
Spark.prototype.sendPublicKey = function (coreId, buffer, callback) {
var defer = this.createDefer('sendPublicKey', callback),
handler = this.defaultHandler('sendPublicKey', defer, callback).bind(this);
this.api.sendPublicKey(coreId, buffer, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Call a function on a Core
*
* @param {string} coreId - The id of the Core
* @param {string} functionName - The name of the function to call
* @param {string} funcParam - Param for the function
* @returns {Promise}
* @endpoint GET /v1/devices/<core_id>/<function_name>
*/
Spark.prototype.callFunction = function (coreId, functionName, funcParam, callback) {
var defer = this.createDefer('callFunction', callback),
handler = this.defaultHandler('callFunction', defer, callback).bind(this);
this.api.callFunction(coreId, functionName, funcParam, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Lookup all attrs for a list of Cores
*
* @param {[string]} cores - An array of all the cores to get attributes for
* @returns {Promise}
*/
Spark.prototype.lookupAttributesForAll = function (cores) {
var defer = this.createDefer('lookupAttributesForAll', null);
if (!cores || (cores.length === 0)) {
this._attributeCache = null;
} else {
var promises = [];
for (var i = 0; i < cores.length; i++) {
var coreId = cores[i].id;
if (cores[i].connected) {
promises.push(this.getAttributes(coreId));
} else {
promises.push(when.resolve(cores[i]));
}
}
when.all(promises).then(function (cores) {
//sort alphabetically
cores = cores.sort(function (a, b) {
return (a.name || '').localeCompare(b.name);
});
this._attributeCache = cores;
defer.resolve(cores);
}.bind(this));
}
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Retrieves all attributes for all cores for the currently logged in user
*
* @returns {Promise}
*/
Spark.prototype.getAttributesForAll = function () {
if (this._attributeCache) {
return when.resolve(this._attributeCache);
}
// TODO: Probably bind to this in pipeline execution
return pipeline([
this.listDevices.bind(this),
this.lookupAttributesForAll.bind(this)
]);
};
/**
* Get eventListener to an event stream in the Spark cloud
*
* @param {string} eventName - Event to register
* @param {[string]} coreId - Optional Id for the core for which to get the listener
* @param {function} callback
* @endpoint GET /v1/devices/<core_id>/events
*
* @returns {Request}
*/
Spark.prototype.getEventStream = function (eventName, coreId, callback) {
var requestObj = this.api.getEventStream(eventName, coreId, this.accessToken);
if (callback) {
//if ((event !== '') && (typeof(callback) === 'function')) { callback(event); }
var processor = this._createStreamProcessor();
processor.watch(requestObj, callback);
}
return requestObj;
};
/**
* Collects SSE pieces, and parses and returns them nicely
* @private
*/
Spark.prototype._createStreamProcessor = function() {
var Processor = function() {};
Processor.prototype = {
chunks: [],
appendToQueue: function(arr) {
for (var i = 0; i < arr.length; i++) {
var line = (arr[i] || "").trim();
if (line == "") {
continue;
}
this.chunks.push(line);
if (line.indexOf("data:") == 0) {
this.processItem(this.chunks);
this.chunks = [];
}
}
},
processItem: function(arr) {
var obj = {};
for (var i = 0; i < arr.length; i++) {
var line = arr[i];
if (line.indexOf("event:") == 0) {
obj.name = line.replace("event:", "").trim();
}
else if (line.indexOf("data:") == 0) {
line = line.replace("data:", "");
var name = obj.name;
obj = JSON.parse(line);
obj.name = name;
}
}
if (this.onDataReady) {
this.onDataReady(obj);
}
},
onData: function(event) {
var chunk = event.toString();
this.appendToQueue(chunk.split("\n"));
},
watch: function(eventer, callback) {
//when we have a JSON object ready
this.onDataReady = callback;
//when we get something from the SSE
eventer.on('data', this.onData.bind(this));
}
};
return new Processor();
};
/**
* Subscribe callback to a global event in the Spark cloud
*
* @param {string} eventName - Event to listen
* @param {function} callback
*
* @returns {Request}
*/
Spark.prototype.onEvent = function(eventName, callback) {
this.getEventStream(eventName, false, callback);
};
/**
* Register an event stream in the Spark cloud
*
* @param {string} eventName - Event to register
* @param {string} data - To be passed to the to the event
* @param {function} callback
* @endpoint POST /v1/devices/events
*
* @returns {Promise}
*/
Spark.prototype.publishEvent = function (eventName, data, callback) {
var defer = this.createDefer('publishEvent', callback),
handler = this.defaultHandler('publishEvent', defer, callback).bind(this);
this.api.publishEvent(eventName, data, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Creates a new webhook in the Spark cloud
*
* @param {string} eventName - Event to register
* @param {string} url - To hook to
* @param {string} coreId - Id of the Core
* @param {function} callback
* @endpoint POST /v1/webhooks
*
* @returns {Promise}
*/
Spark.prototype.createWebhook = function (eventName, url, coreId, callback) {
var defer = this.createDefer('createWebhook', callback),
handler = this.defaultHandler('createWebhook', defer, callback).bind(this);
this.api.createWebhook(eventName, url, coreId, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Deletes a webhook
*
* @param {string} hookId - Id of the webhook
* @param {function} callback
* @endpoint DELETE /v1/webhooks/<hook_id>
*
* @returns {Promise}
*/
Spark.prototype.deleteWebhook = function (hookId, callback) {
var defer = this.createDefer('deleteWebhook', callback),
handler = this.defaultHandler('deleteWebhook', defer, callback).bind(this);
this.api.deleteWebhook(hookId, this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
/**
* Gets a list of all webhooks
*
* @param {function} callback
* @endpoint GET /v1/webhooks
*
* @returns {Promise}
*/
Spark.prototype.listWebhooks = function (callback) {
var defer = this.createDefer('listWebhooks', callback),
handler = this.defaultHandler('listWebhooks', defer, callback).bind(this);
this.api.listWebhooks(this.accessToken, handler);
var promise = (!!defer) ? defer.promise : null;
return promise;
};
module.exports = new Spark();