-
Notifications
You must be signed in to change notification settings - Fork 1
/
wot.js
1474 lines (1255 loc) · 38.8 KB
/
wot.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
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Web Hub telemetry demo of virtual thing */
// This is a client library with a clean abstraction
// layer above the implementations for different hubs
class Thing {
constructor (uri, model) {
// accept relative URLs by resolving against web page URL
uri = new URL(uri, window.location.href).href;
this.name = model.name;
this.model = model;
this.uri = uri;
this.pending = {};
this.properties = {};
for (var name in model.properties) {
if (model.properties.hasOwnProperty) {
this.properties[name] =
new ThingProperty(this, name, model.properties[name]);
}
}
this.actions = {};
for (var name in model.actions) {
if (model.actions.hasOwnProperty) {
this.actions[name] =
new ThingAction(this, name, model.actions[name]);
}
}
this.events = {};
for (var name in model.events) {
if (model.events.hasOwnProperty) {
this.events[name] =
new ThingEvent(this, name, model.events[name]);
}
}
this.platform = wot.discoverPlatform(this);
let thing = this;
this.unsubscribe = () => {
thing.platform.unsubscribe(thing);
};
// watch for when browser tab becomes visible or
// when it regains the focus after a long interval
// so that connections can be re-openeed as needed
if (document && document.hidden !== undefined) {
document.addEventListener("visibilitychange", () => {
if (document.visibilityState === 'visible') {
console.log('wake up on visibility change');
thing.platform.resubscribe(thing);
}
}, false);
window.addEventListener("focus", () => {
if (document.visibilityState === 'visible') {
console.log('wake up on regaining focus');
thing.platform.resubscribe(thing);
}
}, false);
}
}
}
class ThingProperty {
constructor(thing, name, meta) {
// hack to support Things Gateway
if (meta.hasOwnProperty("readOnly")) {
meta.writable = ! meta.readOnly;
delete meta.readOnly;
}
this.name = name;
this.description = meta.description;
this.type = meta.type;
this.value = meta.value;
this.writable = meta.writable;
this.thing = thing;
this.observers = [];
}
// synchronous as it returns the local value
read () {
return this.value;
}
// called by exposing app to update property value and notify clients
write(value) {
// be safe
if (value === undefined)
value = null;
this.value = value;
// notify server of change
return wot.platform.write(this.thing, this.name, value)
}
// subscribe to property update events
subscribe(observer) {
let observers = this.observers;
let found = false;
for (let i = 0; i < observers.length; ++i) {
if (observers[i] === observer) {
found = true;
break;
}
}
if (!found)
this.observers.push(observer);
this.thing.platform.observeProperty(this.thing, this.name);
}
unsubscribe(observer) {
let observers = this.observers;
for (let i = 0; i < observers.length; ++i) {
if (observers[i] === observer) {
observers.splice(i, 1);
return;
}
}
}
// used internally
notify(value) {
let observers = this.observers;
for (let i = 0; i < observers.length; ++i) {
observers[i](value);
}
}
}
class ThingAction {
constructor(thing, name, meta) {
this.name = name;
this.description = meta.description;
this.thing = thing;
}
// invoke action with data, returning a promise
// optional timeout in milliseconds
invoke(input, timeout) {
if (timeout === undefined)
timeout = Number.MAX_SAFE_INTEGER;
console.log('invoking ' + this.name + ' with timeout ' + timeout);
return this.thing.platform.invoke(this.thing, this.name, input, timeout);
}
}
class ThingEvent {
constructor(thing, name, meta) {
this.name = name;
if (meta) {
this.description = meta.description;
this.type = meta.type;
}
this.thing = thing;
this.observers = [];
}
// subscribe to this event
subscribe(observer) {
let found = false;
let observers = this.observers;
for (let i = 0; i < observers.length; ++i) {
if (observers[i] === observer) {
found = true;
console.log('observer already present');
break;
}
}
if (!found)
observers.push(observer);
this.thing.platform.observeEvent(this.thing, this.name);
}
// unsubscribe to this event
unsubscribe(observer) {
let observers = this.observers;
for (let i = 0; i < observers.length; ++i) {
if (observers[i] === observer) {
observers.splice(i, 1);
break;
}
}
}
// used internally
notify(value) {
let observers = this.observers;
for (let i = 0; i < observers.length; ++i) {
observers[i](value);
}
}
}
// define the wot object API
let wot = {
things: {}, // map from name to thing
// use thing description to discover which platform it uses
// this is a hack and not currently in use
discoverPlatform: thing => {
// the thing description should provide a URI
// that uniquely identifies the platform
// use some heuristics if it is missing
let model = thing.model;
let url = new URL(thing.uri);
let port = url.port;
let webHub = "https://github.com/draggett/arena-webhub";
let thingsGateway = "https://iot.mozilla.org/wot/";
let thingWeb = "https://projects.eclipse.org/projects/iot.thingweb";
if (model.platform) {
if (model.platform === webHub)
return new ArenaWebHubWS();
if (model.platform === thingsGateway)
return new ThingsGateway();
if (model.platform === thingWeb)
return new ThingWeb();
} else {
// ThingWeb always provides "forms" on
// each property, action and event
// find a property
for (let name in model.properties) {
if (model.properties.hasOwnProperty(name)) {
let property = model.properties[name];
if (property.forms)
return new ThingWeb();
}
}
// find an action
for (let name in model.actions) {
if (model.actions.hasOwnProperty(name)) {
let action = model.actions[name];
if (action.forms)
return new ThingWeb();
}
}
// find an event
for (let name in model.events) {
if (model.events.hasOwnProperty(name)) {
let event = model.events[name];
if (event.forms)
return new ThingWeb();
}
}
// Mozilla always provides "links" on the thing
// and by default uses port 4443
if (model.links || port == 4443)
return new ThingsGateway();
}
// otherwise assume it's compatible with ThingWeb
return new ThingWeb();
},
// asynchronous function to create consumed thing from its URI
consume: function (uri) {
let create = function (resolve, reject) {
// use WebHub driver to retrieve thing description
wot.platform.getModel(uri).then(model => {
let thing = new Thing(uri, model);
wot.things[model.name] = thing;
resolve(thing);
})
};
return new Promise(function (resolve, reject) {
create(resolve, reject);
});
},
invoke: function (name, data) {
return wot.platform.invoke(name, data);
},
poll: function () {
let list = document.getElementById("plist");
let readArray = [];
let names = [];
let properties = wot.td.properties;
for (var name in properties) {
if (properties.hasOwnProperty(name)) {
readArray.push(wot.getProperty(name));
names.push(name);
}
}
Promise.all(readArray).then(resArray => {
list.innerHTML = null;
for (var i = 0; i < resArray.length; ++i) {
let li = document.createElement("li");
li.innerText = names[i] + ': ' + resArray[i];
list.appendChild(li);
}
}).catch(error => console.error('Error:', error));
},
/*
// this is currently unused and may be inherited from the Siemens code
dispatch_message: function (msg) {
const type = msg.messageType;
const data = msg.data;
if (type === "propertyStatus") {
let list = document.getElementById("plist").getElementsByTagName("li");
//console.log("data: " + JSON.stringify(data));
for (var name in data) {
if (data.hasOwnProperty(name)) {
//console.log(name + " = " + data[name]);
if (wot.li)
wot.li[name].innerText = name + ': ' + data[name];
}
}
} else if (type === "event") {
console.log("event: " + JSON.stringify(data));
for (var name in data) {
if (data.hasOwnProperty(name)) {
console.log("event: " + name + " : " + data[name].data);
}
}
} else {
console.log("unknown message type: " + type)
}
},
*/
timedFetch: (uri, opts, timeout) => {
var start = function (resolve, reject) {
let timer = setTimeout(() => {
reject("fetch timeout on " + uri);
}, timeout);
console.log('timedFetch with uri = ' + uri +
' and opts = ' + JSON.stringify(opts));
fetch(uri, opts).then(response => {
if (!response.ok)
reject('fetch failed with ' + response.status + ' ' + response.statusText);
console.log('timedFetch got response ');
clearTimeout(timer);
resolve(response);
}).catch(err => {
console.log('timedFetch failed, ' + err);
clearTimeout(timer);
reject(err);
});
};
return new Promise(function (resolve, reject) {
start(resolve, reject);
});
}
};
/*
The platform class exposes methods that abstract the variation
in how the underlying protocols are used by each platform
getModel(uri) return promise with client thing
write(thing, propertyPath, value) returns promise with value
read(thing, propertyPath) returns promise with value
writeState(thing) returns promise which resolves when done
readState(thing) returns promise which resolves when done
invoke(thing, actionName, data) returns promise with response
observeEvent(thing, eventName, handler)
observeProperty(thing, propertyPath, handler)
unObserveEvent(thing, eventName, handler)
unObserveProperty(thing, propertyPath, handler)
getModel initialises polling for property updates, and for event
streams directed to the thing. These are then delivered to the
property and event class instances, as well as to the thing's
event handler.
*/
class ArenaWebHub {
constructor () {
this.jwt = "somerandomstuff"; //localStorage.getItem('jwt'),
}
login (email, password) {
const opts = {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Accept: 'application/json',
},
body: JSON.stringify({
'action': 'login',
'email': email,
'password': password
}),
};
return fetch('/account', opts).then((res) => {
if (!res.ok) {
throw new Error('Incorrect username or password');
}
return res.json();
}).then((body) => {
const jwt = body.jwt;
localStorage.setItem('jwt', jwt);
this.jwt = jwt;
//wot.webhub.logged_in();
});
}
logout () {
localStorage.removeItem('jwt');
return fetch('/acount', {
method: 'POST',
headers: {
'Authorization': `Bearer ${this.jwt}`,
'Content-Type': 'application/json',
'Accept': 'application/json',
},
body: JSON.stringify({
'action': 'logout'
}),
}).then((res) => {
if (res.ok) {
wot.webhub.jwt = null;
} else {
console.error('Logout failed...');
}
});
}
getModel (uri) {
let server = this;
var getTD = function (resolve, reject) {
console.log('getting model for ' + uri);
const opts = {
method: "GET",
headers: {
'Authorization': `Bearer ${server.jwt}`,
'Accept': 'application/json'
}
};
fetch(uri, opts).then(response => {
if (response.ok) {
resolve(response.json());
}
else
throw(new Error("response status = " + response.status));
}).catch(err => {
console.log("couldn't get thing description at " + uri);
reject(err);
});
};
return new Promise(function (resolve, reject) {
getTD(resolve, reject);
});
}
waitForLongPolledEvent (thing, name, timeout) {
let server = this;
let expect = function (resolve, reject) {
var poll = function () {
const opts = {
method: "GET",
headers: {
'Authorization': `Bearer ${server.jwt}`,
'Accept': 'application/json'
}
};
console.log("initiating longpoll on " + name);
let uri = thing.uri + '/events/'+ name;
wot.timedFetch(uri, opts, timeout)
.then(res => res.json())
.then(data => {
console.log("got event " + name + " with data " + JSON.stringify(data));
resolve(data);
//setTimeout(poll, 0); // to wait for next event
}).catch(err => {
console.log(err + " - couldn't get event from " + uri);
reject(err);
});
};
poll(); //setTimeout(poll, 0); // kick off polling
};
return new Promise(function (resolve, reject) {
expect(resolve, reject);
});
}
}
// driver for Arena Web Hub using Server-Sent Events
class ArenaWebHubSSE extends ArenaWebHub {
// write value to named property, returning a promise
write (thing, name, value) {
let server = this;
let setValue = function (resolve, reject) {
const uri = thing.uri + "/properties/" + name;
const opts = {
method: "PUT",
headers: {
'Authorization': `Bearer ${server.jwt}`,
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify(value)
};
fetch(uri, opts).then(response => {
if (response.ok) {
console.log("resolve: set property " + name + " to " + value);
resolve(true);
}
else {
console.log("reject: couldn't set property " + name + " to " + value);
reject("reject: couldn't set property " + name + " to " + value);
}
}).catch(err => {
//log("catch: couldn't set property " + name + " to " + value);
reject(err);
});
};
return new Promise(function (resolve, reject) {
setValue(resolve, reject);
});
}
// read named property, returning a promise for the value
read (thing, name) {
let server = this;
let getValue = function (resolve, reject) {
const uri = thing.uri + "/properties/" + name;
const opts = {
method: "GET",
headers: {
'Authorization': `Bearer ${server.jwt}`,
'Accept': 'application/json'
}
};
fetch(uri, opts).then(response => {
if (response.ok) {
//console.log("got value ");
resolve(response.json());
} else
throw(new Error("property is unknown or unreadable"));
}).catch(err => {
console.log("couldn't get property " + name);
reject(err);
});
};
return new Promise(function (resolve, reject) {
getValue(resolve, reject);
});
}
// invoke action with data, returns promise for response data
// optional timeout in milliseconds
invoke (thing, name, data, timeout) {
let server = this;
if (data === undefined)
data = null;
var act = function (resolve, reject) {
console.log('timeout is ' + timeout);
const uri = thing.uri + "/actions/" + name;
let timer = setTimeout(function () {
reject('timeout on action ' + name);
}, timeout);
const opts = {
method: "POST",
headers: {
'Authorization': `Bearer ${server.jwt}`,
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
};
fetch(uri, opts).then(response => {
console.log('got response');
clearTimeout(timer);
if (response.ok) {
if (response.status == 204)
resolve();
else
resolve(response.json());
} else
throw(new Error("action is unknown or failed"));
}).catch(err => {
console.log("couldn't invoke action " + name);
clearTimeout(timer);
reject(err);
});
};
return new Promise(function (resolve, reject) {
act(resolve, reject);
});
}
observeEvent (thing, name) {
let event = thing.events[name];
if (!thing.eventSource)
thing.platform.subscribe(thing);
}
observeProperty (thing, name) {
let property = thing.properties[name];
if (!thing.eventSource)
thing.platform.subscribe(thing);
}
// internal methods
subscribe (thing) {
// open the server-sent event stream
thing.eventSource = new EventSource(thing.uri+ "/events?jwt=" + this.jwt);
thing.eventSource.onopen = function() {
console.log("EventSource opened connection to " + thing.uri + "/events")
};
thing.eventSource.onerror = function() {
console.log("EventSource error on connection to " + thing.uri + "/events");
thing.eventSource = null;
};
thing.eventSource.onmessage = function(e) {
//console.log("received SSE message: " + e.data);
let data = JSON.parse(e.data);
// different kinds of notifications
if (data.event) {
let event = thing.events[data.event];
event.notify(data.data);
} else if (data.property) {
let property = thing.properties[data.property];
property.notify(data.data);
//console.log('setting ' + property.name + ' to ' + data.data);
property.value = data.data;
} else if (data.state) {
let state = data.state;
for (let name in state) {
if (state.hasOwnProperty(name)) {
let property = thing.properties[name];
property.notify(state[name]);
property.value = state[name];
}
}
} else {
console.log("unknown message")
}
};
}
// when browser tab becomes visible
// check if the connection needs reopening
resubscribe (thing) {
if (!thing.eventSource) {
console.log('reopening event source for ' + thing.name);
thing.platform.subscribe(thing);
}
}
unsubscribe (thing) {
if (thing.eventSource) {
thing.eventSource.close();
thing.eventSource = null;
}
}
}
// driver Arena Web Hub using Web Sockets
class ArenaWebHubWS extends ArenaWebHub {
// write value to named property, returning a promise
write (thing, name, value) {
let server = this;
let setValue = function (resolve, reject) {
let json = {
property: name,
data: value
};
let id = server.send(thing, json);
thing.pending[id] = {
'resolve': resolve,
'reject': reject
};
};
return new Promise(function (resolve, reject) {
setValue(resolve, reject);
});
}
// read named property, returning a promise for the value
read (thing, name) {
}
// request state for all properties
readState (thing) {
}
// write state for multiple properties
writeState (thing, state) {
}
// invoke action with data, returns promise for response data
// optional timeout in milliseconds
invoke (thing, name, data, timeout) {
let server = this;
if (data === undefined)
data = null;
var act = function (resolve, reject) {
let json = {
action: name,
input: data
};
let id = server.send(thing, json);
thing.pending[id] = {
'resolve': resolve,
'reject': reject
};
};
return new Promise(function (resolve, reject) {
act(resolve, reject);
});
}
observeEvent (thing, name) {
if (!thing.ws)
thing.platform.subscribe(thing);
}
observeProperty (thing, name) {
if (!thing.ws)
thing.platform.subscribe(thing);
}
unObserveEvent (thing, name) {
}
unObserveProperty (thing, name) {
}
// internal methods
send (thing, json) {
json.id = 'r' + thing.requestId++;
let message = JSON.stringify(json);
thing.ws.send(message);
return json.id;
}
receive (thing, json) {
console.log("ArenaWebHubWS.receive: " + JSON.stringify(json));
if (json.event) {
// event notification
if (thing.events.hasOwnProperty(json.event)) {
let event = thing.events[json.event];
event.notify(json.data);
}
} else if (json.property) {
// single property update
if (thing.properties.hasOwnProperty(json.property)) {
let property = thing.properties[json.property];
property.notify(json.data);
property.value = json.data;
}
} else if (json.state) {
// multiple property update
let state = json.state;
let properties = thing.properties;
for (let name in state) {
if (state.hasOwnProperty(name)) {
let property = properties[name];
console.log("initialising " + name);
property.notify(state[name]);
console.log("notified " + name);
property.value = state[name];
console.log("set " + name + " to " + JSON.stringify(state[name]));
}
}
console.log("initialised thing's state");
} else if (json.id) {
// response to previous request
//console.log('response to request ' + json.id + ' with status ' + json.status);
let request = thing.pending[json.id]; // {resolve:res, reject:rej}
if (json.status == 200) {
request.resolve(json.output);
} else {
request.reject('failed: ' + json.status + ' ' + json.description);
}
delete thing.pending[json.id];
} else {
console.log('unrecognised message: ' + JSON.stringify(json));
}
}
subscribe (thing) {
// open the WebSockets event stream
//console.log('subscribe to ' + thing.name)
console.log('opening event stream for ' + thing.uri);
const wsUri = thing.uri.replace(/^http/, 'ws');
thing.ws = new WebSocket(`${wsUri}?jwt=${this.jwt}`);
thing.requestId = 1;
let platform = this;
console.log("websocket connection opening ...");
thing.ws.onopen = () => {
console.log("websocket connection opened");
};
thing.ws.onclose = () => {
console.log("websocket connection closed");
thing.ws = null;
};
thing.ws.onerror = () => {
console.log("websocket connection error");
this.ws.close();
thing.ws = null;
};
thing.ws.onmessage = message => {
//console.log("received message: " + message.data);
try {
let json = JSON.parse(message.data);
console.log('parsed message as JSON')
platform.receive(thing, json);
} catch (e) {
console.log("can't process " + message.data);
}
};
}
// when browser tab becomes visible
// check if the connection needs reopening
resubscribe (thing) {
if (!thing.ws) {
console.log('reopening web socket for ' + thing.name);
thing.platform.subscribe(thing);
}
}
unsubscribe (thing) {
//console.log('unsubscribe from ' + thing.name);
if (thing.ws) {
thing.ws.close();
thing.ws = null;
}
}
}
// Driver for Mozilla Things Gateway, see https://iot.mozilla.org/wot/
//
// This uses HTTP for reading and writing properties, and invoking actions.
// WebSockets is used for listening for events and property updates.
// The code could be updated to also use WebSockets for invoking actions
// and when the client wants to update a property. Further work is also
// needed to share a WebSocket connection rather than as now opening one
// connection for each observeEvent or observeProperty. Additional work
// is needed to support the browser visibilityChange event to re-open
// sockets when a browser tab becomes visible after being hidden.
//
// Note that Things Gateway Web typically uses port 4443 and adds a
// "links" meta property to thing description
class ThingsGateway {
constructor () {
//this.jwt = localStorage.getItem('jwt');
this.login('[email protected]', '78HelloGreen');
}
login (email, password) {
const opts = {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Accept: 'application/json',
},
body: JSON.stringify({
email, password,
}),
};
return fetch('/login', opts).then((res) => {
if (!res.ok) {
throw new Error('Incorrect username or password');
}
return res.json();
}).then((body) => {
const jwt = body.jwt;
localStorage.setItem('jwt', jwt);
wot.thingsgateway.jwt = jwt;
//wot.thingsgateway.logged_in();
});
}
logout () {
localStorage.removeItem('jwt');
return fetch('/log-out', {
method: 'POST',
headers: {
'Authorization': `Bearer ${wot.thingsgateway.jwt}`,
'Content-Type': 'application/json',
'Accept': 'application/json',
}
}).then((res) => {
if (res.ok) {
wot.thingsgateway.jwt = null;
} else {
console.error('Logout failed...');
}
});
}
getModel (uri) {
var getTD = function (resolve, reject) {
const opts = {
method: "GET",
headers: {
'Accept': 'application/json',
'Authorization': `Bearer ${this.jwt}`
}
};
fetch(uri, opts).then(response => {
if (response.ok)
resolve(response.json());
else
throw(new Error("can't get thing description"));
}).catch(err => {
console.log("couldn't get thing description at " + uri);
reject(err);
});
};
return new Promise(function (resolve, reject) {
getTD(resolve, reject);
});
}
// write value to named property, returning a promise
write (thing, name, value) {
var setValue = function (resolve, reject) {
const uri = thing.uri + "/properties/" + name;
console.log('uri: ' + uri);