forked from idchlife/node-telegram-bot-api-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
224 lines (192 loc) · 5.3 KB
/
index.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
'use strict';
const co = require('co');
/**
* Checking if fn is generator
*/
function isGenerator(fn) {
return Object.getPrototypeOf(fn) === Object.getPrototypeOf(function* () {});
}
/**
* This is default middleware, that adds handy functionality to context for
* other middlewares to use
*/
function defaultMiddleware(msg) {
this.msg = msg;
this.chatId = msg.chat.id;
this.shouldStop = false;
/**
* Function that stops stepping into another middleware. Useful for stopping
* if e.g. there is logical error or auth error etc.
*/
this.stop = () => {
this.shouldStop = true;
};
}
/**
* This is the main function that is used for creating context with .use and
* returning function that also can add middleware or execute middleware if
* bot object passed in arguments
*
* @param middleware
* @returns {function(this:{middlewares})}
*/
const use = function use(middleware) {
/**
* Copying context, so middleware will be added only in returned callback,
* and won't be added to global context of this function
*/
const copy = {
middlewares: this.middlewares.slice()
};
/**
* Adding new middlewares
*/
copy.middlewares.push(middleware);
/**
* Binding callback to new context, so middlewares will be available
*/
const callback = botCallback.bind(copy);
/**
* Adding use method and binding it co copy context, so context will
* be saved for further usage
*/
callback.use = use.bind(copy);
return callback;
}.bind({
middlewares: []
});
/**
* First time binding to object with middlewares, so `this` context will be as
* we expected
*/
const botCallback = function botCallback() {
const args = arguments;
/**
* If arguments length is positive and first arguments
* is function, then callback for bot message is added
*/
if (args.length && typeof args[0] === 'function') {
const copy = {
middlewares: this.middlewares.slice()
};
copy.middlewares.push(args[0]);
const callback = botCallback.bind(copy);
callback.use = use.bind(copy);
return callback;
}
/**
* Check if there is msg.chat and msg.chat.id to ensure that everything is ok
* when bot is executing function with arguments
*/
if (!args.length) {
console.error(
'[node-telegram-bot-api-middleware]: No arguments passed ' +
'to a function used in bot event callback or adding new middleware'
);
return;
}
if (typeof args[0].chat === 'undefined') {
console.error(
'[node-telegram-bot-api-middleware]: Chat id not ' +
'defined in arguments. Not executing middlewares'
);
return;
}
if (typeof args[0].chat.id === 'undefined') {
console.error(
'[node-telegram-bot-api-middleware]: There is no ' +
'visible chat id in chat in arguments. Not executing middlewares'
);
return;
}
/**
* Context object, that will be modified by all middlewares
*/
const context = {};
/**
* Adding default middleware before other middlewares
*/
this.middlewares.unshift(defaultMiddleware);
/**
* Using co for executing generator, so we can use yield keyword
*/
return co(function* executeMiddlewares() {
for (let i = 0, size = this.middlewares.length; i < size; i++) {
/**
* Somewhere in middleware was activated .stop method. No need to execute
* middlewares further
*/
if (context.shouldStop) {
return;
}
/**
* Creating callback
*/
const middleware = this.middlewares[i];
/**
* If middleware just a function, execute it without yield
*
*
* Executing middleware with context object and args.
* Args by this point is arguments passed by node-telegram-bot-api when
* receiving new message from recipient
*/
try {
if (!isGenerator(middleware)) {
middleware.apply(context, args);
} else {
yield middleware.apply(context, args);
}
} catch (err) {
/**
* If middleware that had error has onErrorHandler in it,
* pass error to it also
*/
if (typeof middleware.onErrorHandler === 'function') {
middleware.onErrorHandler(err);
}
/**
* We want error to pass to main handler also,
* so it won't be lost
*/
throw err;
}
}
}.bind(this)).catch(onErrorHandler);
};
/**
* Default error handler to handle errors in middleware.
* It will only console.errors
*
* @param error
*/
const onErrorHandlerDefault = (error) => {
console.error('[node-telegram-bot-api-middleware]: Error occured in the middleware: ');
console.error(error);
};
let onErrorHandler = onErrorHandlerDefault;
/**
* You can set your own handler of all errors
* @param onError
*/
exports.setOnErrorHandler = (onError) => {
/**
* OnError must be a function that does something
*/
if (typeof onError !== 'function') {
console.error(
'[node-telegram-bot-api-middleware]: ' +
'onErrorHandler must be function. Not setting.'
);
} else {
onErrorHandler = onError;
}
};
exports.getDefaultErrorHandler = () => onErrorHandlerDefault;
/**
* Reset error handler to default. For testing and various purposes
*/
exports.resetErrorHandler = () => {
onErrorHandler = onErrorHandlerDefault;
};
exports.use = use;