Middleware
The listener functions that are being passed to bot
, bot
, and their siblings, are called middleware. While it is not wrong to say that they are listening for updates, calling them “listeners” is a simplification.
This section explains what middleware is, and uses grammY as an example to illustrate how it can be used. If you are looking for specific documentation about what makes grammY’s implementation of middleware special, check out Middleware Redux in the advanced section of the docs.
The Middleware Stack
Suppose you write a bot like this:
const bot = new Bot("");
bot.use(session());
bot.command("start", (ctx) => ctx.reply("Started!"));
bot.command("help", (ctx) => ctx.reply("Help text"));
bot.on(":text", (ctx) => ctx.reply("Text!")); // (*)
bot.on(":photo", (ctx) => ctx.reply("Photo!"));
bot.start();
2
3
4
5
6
7
8
9
10
11
When an update with a regular text message arrives, these steps will be performed:
- You send
"Hi there!"
to the bot. - The session middleware receives the update, and does its session things
- The update will be checked for a
/start
command, which is not contained - The update will be checked for a
/help
command, which is not contained - The update will be checked for text in the message (or channel post), which succeeds.
- The middleware at
(*)
will be invoked, it handles the update by replying with"Text!"
.
The update is not checked for a photo content, because the middleware at (*)
already handled the update.
Now, how does this work? Let’s find out.
We can inspect the Middleware
type in grammY’s reference here:
// Omitted some type parameters for brevity.
type Middleware = MiddlewareFn | MiddlewareObj;
2
Aha! Middleware can be a function or an object. We only used functions ((ctx)
) so far, so let’s ignore middleware objects for now, and dig deeper into the Middleware
type (reference):
// Omitted type parameters again.
type MiddlewareFn = (ctx: Context, next: NextFunction) => MaybePromise<unknown>;
// with
type NextFunction = () => Promise<void>;
2
3
4
So, middleware takes two parameters! We only used one so far, the context object ctx
. We already know what ctx
is, but we also see a function with the name next
. In order to understand what next
is, we have to look at all middleware that you install on your bot object as a whole.
You can view all installed middleware functions as a number of layers that are stacked on top of each other. The first middleware (session
in our example) is the uppermost layer, hence receiving each update first. It can then decide if it wants to handle the update, or pass it down to the next layer (the /start
command handler). The function next
can be used to invoke the subsequent middleware, often called downstream middleware. This also means that if you don’t call next
in your middleware, the underlying layers of middleware will not be invoked.
This stack of functions is the middleware stack.
(ctx, next) => ... |
(ctx, next) => ... |—————upstream middleware of X
(ctx, next) => ... |
(ctx, next) => ... <— middleware X. Call `next` to pass down updates
(ctx, next) => ... |
(ctx, next) => ... |—————downstream middleware of X
(ctx, next) => ... |
Looking back at our earlier example, we now know why bot
was never even checked: the middleware in bot
already handled the update, and it did not call next
. In fact, it did not even specify next
as a parameter. It simply ignored next
, hence not passing on the update.
Let’s try out something else with our new knowledge!
const bot = new Bot("");
bot.on(":text", (ctx) => ctx.reply("Text!"));
bot.command("start", (ctx) => ctx.reply("Command!"));
bot.start();
2
3
4
5
6
If you run the above bot, and send /start
, you will never get to see a response saying Command!
. Let’s inspect what happens:
- You send
"
to the bot./start" - The
":
middleware receives the update and checks for text, which succeeds because commands are text messages. The update is handled immediately by the first middleware and your bot replies with “Text!”.text"
The message is never even checked for if it contains the /start
command! The order in which you register your middleware matters, because it determines the order of the layers in the middleware stack. You can fix the issue by flipping the order of lines 3 and 4. If you called next
on line 3, two responses would be sent.
The bot
function simply registers middleware that receives all updates. This is why session()
is installed via bot
—we want the plugin to operate on all updates, no matter what data is contained.
Having a middleware stack is an extremely powerful property of any web framework, and this pattern is widely popular (not just for Telegram bots).
Let’s write our own little piece of middleware to better illustrate how it works.
Writing Custom Middleware
We will illustrate the concept of middleware by writing a simple middleware function that can measure the response time of your bot, i.e. how long it takes your bot to handle a message.
Here is the function signature for our middleware. You can compare it to the middleware type from above, and convince yourself that we actually have middleware here.
/** Measures the response time of the bot, and logs it to `console` */
async function responseTime(
ctx: Context,
next: NextFunction, // is an alias for: () => Promise<void>
): Promise<void> {
// TODO: implement
}
2
3
4
5
6
7
/** Measures the response time of the bot, and logs it to `console` */
async function responseTime(ctx, next) {
// TODO: implement
}
2
3
4
We can install it into our bot
instance with bot
:
bot.use(responseTime);
Let’s begin implementing it. Here is what we want to do:
- Once an update arrives, we store
Date
in a variable..now() - We invoke the downstream middleware, hence let all message handling happen. This includes command matching, replying, and everything else your bot does.
- We take
Date
again, compare it to the old value, and.now() console
the time difference..log
It is important to install our response
middleware first on the bot (at the top of the middleware stack) to make sure that all operations are included in the measurement.
/** Measures the response time of the bot, and logs it to `console` */
async function responseTime(
ctx: Context,
next: NextFunction, // is an alias for: () => Promise<void>
): Promise<void> {
// take time before
const before = Date.now(); // milliseconds
// invoke downstream middleware
await next(); // make sure to `await`!
// take time after
const after = Date.now(); // milliseconds
// log difference
console.log(`Response time: ${after - before} ms`);
}
bot.use(responseTime);
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** Measures the response time of the bot, and logs it to `console` */
async function responseTime(ctx, next) {
// take time before
const before = Date.now(); // milliseconds
// invoke downstream middleware
await next(); // make sure to `await`!
// take time after
const after = Date.now(); // milliseconds
// log difference
console.log(`Response time: ${after - before} ms`);
}
bot.use(responseTime);
2
3
4
5
6
7
8
9
10
11
12
13
Complete, and works! ✔️
Feel free to use this middleware on your bot object, register more listeners, and play around with the example. Doing so will help you to fully understand what middleware is.
DANGER: Always Make Sure to await next!
If you ever call next()
without the await
keyword, several things will break:
- ❌ Your middleware stack will be executed in the wrong order.
- ❌ You may experience data loss.
- ❌ Some messages may not be sent.
- ❌ Your bot may randomly crash in ways that are hard to reproduce.
- ❌ If an error happens, your error handler will not be called for it. Instead, you will see that an
Unhandled
will occur, which may crash your bot process.Promise Rejection Warning - ❌ The backpressure mechanism of grammY runner breaks, which protects your server from overly-high load, such as during load spikes.
- 💀 Sometimes, it also kills all of your innocent kittens. 😿
The rule that you should use await
is especially important for next()
, but it actually applies to any expression in general that returns a Promise
. This includes bot
, ctx
, and all other network calls. If your project is important to you, then you use linting tools that warn you if you ever forget to use await
on a Promise
.
Enable no-floating-promises
Consider using ESLint and configure it to use the noawait
(by yelling at you).
Properties of Middleware in grammY
In grammY, middleware may return a Promise
(which will be await
ed), but it can also be synchronous.
In contrast to other middleware systems (such as the one from express
), you cannot pass error values to next
. next
does not take any arguments. If you want to error, you can simply throw
the error. Another difference is that it does not matter how many arguments your middleware takes: ()
will be handled exactly as (ctx)
, or as (ctx
.
There are two types of middleware: functions and objects. Middleware objects are simply a wrapper for middleware functions. They are mostly used internally, but can sometimes also help third-party libraries, or be used in advanced use cases, such as with Composer:
const bot = new Bot("");
bot.use(/*...*/);
bot.use(/*...*/);
const composer = new Composer();
composer.use(/*...*/);
composer.use(/*...*/);
composer.use(/*...*/);
bot.use(composer); // composer is a middleware object!
bot.use(/*...*/);
bot.use(/*...*/);
// ...
2
3
4
5
6
7
8
9
10
11
12
13
14
If you want to dig deeper into how grammY implements middleware, check out Middleware Redux in the advanced section of the docs.