-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path5-agents.js
56 lines (49 loc) · 1.52 KB
/
5-agents.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
'use strict';
const AGENTS = new Map(); // Notification agent strategies
const registerAgent = (name, behaviour) => {
if (typeof name !== 'string') {
throw new Error('Agent name expected to be string');
}
const { notify, multicast } = behaviour;
if (typeof notify !== 'function') {
throw new Error('Key "notify" expected to be function');
}
if (typeof multicast !== 'function') {
throw new Error('Key "multicast" expected to be function');
}
AGENTS.set(name, { notify, multicast });
};
const getAgent = (name, action) => {
const behaviour = AGENTS.get(name);
if (!behaviour) {
throw new Error(`Strategy "${name}" is not found`);
}
const handler = behaviour[action];
if (!handler) {
throw new Error(`Action "${action}" for strategy "${name}" is not found`);
}
return handler;
};
// Usage
registerAgent('email', {
notify: (to, message) => {
console.log(`Sending "email" notification to <${to}>`);
console.log(`message length: ${message.length}`);
},
multicast: (message) => {
console.log(`Sending "email" notification to all`);
console.log(`message length: ${message.length}`);
},
});
registerAgent('sms', {
notify: (to, message) => {
console.log(`Sending "sms" notification to <${to}>`);
console.log(`message length: ${message.length}`);
},
multicast: (message) => {
console.log(`Sending "sms" notification to all`);
console.log(`message length: ${message.length}`);
},
});
const notify = getAgent('sms', 'notify');
notify('+380501234567', 'Hello world');