-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsystem-event-node.js
More file actions
141 lines (118 loc) · 4.38 KB
/
system-event-node.js
File metadata and controls
141 lines (118 loc) · 4.38 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
'use strict'
const WoTProm = require("./WoTSingleton").getInstance();
module.exports = function (RED) {
function SystemEventNode(config) {
RED.nodes.createNode(this, config);
let node = this;
node.subscribed = false;
this.status({});
var thingEventValue = {};
try {
thingEventValue = JSON.parse(config.thingEventValue);
}
catch {
//Do nothing
}
if (!thingEventValue.uri) {
this.status({ fill: 'red', shape: 'dot', text: 'Error: Thing undefined' });
return;
} else if (!thingEventValue.event) {
this.status({ fill: 'red', shape: 'dot', text: 'Error: Choose an event' });
return;
}
fetchEvents(thingEventValue.uri);
/**
* Fetches the events from the given uri and initiates event subscription when successful
* @param {*} uri The uri of the Thing to be queried
*/
function fetchEvents(uri) {
fetch(
uri,
{ method: "GET" }
)
.then(async (response) => {
setUpEventSubscription(await response.json(), thingEventValue.event);
node.subscribed = true;
if (node.subscribed) {
node.status({
fill: 'green',
shape: 'dot',
text: 'Subscribed',
});
}
})
.catch((reason) => {
node.status({
fill: 'red',
shape: 'ring',
text: 'Connection error',
});
node.error(`[error] Failed to access ` + thingEventValue.uri);
setTimeout(() => fetchEvents(uri), 5000);
});
}
async function setUpEventSubscription(thingDescription, event) { //Logic taken from @node-wot
let WoT = await WoTProm;
let consumedThing = await WoT.consume(thingDescription)
try {
while (true) { //Repeat until successful subscription
let subscription = attemptSubscription(consumedThing, event);
if (subscription) return subscription;
await timeout();
}
}
catch(reason) {
node.status({
fill: 'red',
shape: 'ring',
text: 'Subscription error',
});
node.error(`[error] Failed to create consumed thing for events. err: ${reason.toString()}`);
};
}
function attemptSubscription(consumedThing, event) {
return consumedThing.subscribeEvent(
event,
async (response) => {
if (response) {
let payload;
try {
payload = await response.value();
} catch (err) {
node.error(`[error] failed to read event value. ${err.toString()}`);
return;
}
node.send({ payload });
}
node.status({
fill: 'green',
shape: 'dot',
text: 'Subscribed',
});
},
(err) => {
console.error('[error] subscribe events.', err);
node.error(`[error] subscribe events. ${err.toString()}`);
node.status({
fill: 'red',
shape: 'ring',
text: 'Subscription error',
});
setTimeout(() => attemptSubscription(consumedThing, event), 5000);
}
)
.catch((err) => {
console.warn('[warn] event subscription error. try again. ' + err);
});
}
async function timeout() {
return new Promise((resolve, reject) => {
setTimeout(
() => resolve(),
500
);
});
}
}
RED.nodes.registerType('system-event-node', SystemEventNode);
}