-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNotificationHandler.js
133 lines (108 loc) · 3.45 KB
/
NotificationHandler.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
/**
* The Notitification Handler is used to handle notifications not processed by the syncher when running in a sandbox.
*/
import { divideURL } from '../utils/utils';
class NotificationHandler {
constructor(bus) {
if (!bus) throw Error('[NotificationHandler Constructor] bus input is mandatory');
this._bus = bus;
this._onNotificationHandler = {};
}
onNotification(scheme, callback) {
this._onNotificationHandler[scheme] = callback;
}
onCreate(msg) {
let _this = this;
// let resource = msg.from.slice(0, -13); //remove "/subscription" from the URL
let resource = msg.body.hasOwnProperty('resource') ? msg.body.resource : msg.from.slice(0, -13);
let dividedURL = divideURL(resource);
let domain = dividedURL.domain;
let scheme = resource.split('://')[0];
let error = (reason) => {
_this._bus.postMessage({
id: msg.id, type: 'response', from: msg.to, to: msg.from,
body: { code: 400, desc: 'Bad Request: ' + reason }
});
};
if (!msg.body.hasOwnProperty('source')) { error('Missing source'); }
if (!msg.body.hasOwnProperty('schema')) { error('Missing schema'); }
if (!msg.body.hasOwnProperty('value')) { error('Missing value'); }
if (!msg.body.hasOwnProperty('identity')) { error('Missing identity'); }
let event = {
type: msg.type,
from: msg.body.source,
url: resource,
domain: domain,
schema: msg.body.schema,
value: msg.body.value,
identity: msg.body.identity,
to: msg.to,
via: msg.body.via,
ack: (type) => {
let lType = 200;
if (type) {
lType = type;
}
//send ack response message
_this._bus.postMessage({
id: msg.id, type: 'response', from: msg.to, to: msg.from,
body: { code: lType }
});
},
error: (reason) => {
error(reason);
}
};
if (_this._onNotificationHandler[scheme]) {
console.info('[NotificationHandler] NOTIFICATION-EVENT: ', event);
_this._onNotificationHandler[scheme](event);
}
}
onDelete(msg) {
let _this = this;
//remove "/subscription" from the URL
let resource = msg.body.resource;
let object = _this._observers[resource];
let unsubscribe = {
from: _this.owner,
to: _this._subURL,
id: msg.id,
type: 'unsubscribe',
body: { resource: msg.body.resource }
};
_this._bus.postMessage(unsubscribe);
delete _this._observers[resource];
if (object) {
let event = {
type: msg.type,
url: resource,
identity: msg.body.identity,
ack: (type) => {
let lType = 200;
if (type) {
lType = type;
}
//TODO: any other different options for the release process, like accept but nor release local?
if (lType === 200) {
object.delete();
}
//send ack response message
_this._bus.postMessage({
id: msg.id, type: 'response', from: msg.to, to: msg.from,
body: { code: lType, source: _this._owner }
});
}
};
if (_this._onNotificationHandler) {
log.log('NOTIFICATION-EVENT: ', event);
_this._onNotificationHandler(event);
}
} else {
_this._bus.postMessage({
id: msg.id, type: 'response', from: msg.to, to: msg.from,
body: { code: 404, source: _this._owner }
});
}
}
}
export default NotificationHandler;