You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
741 B
23 lines
741 B
3 years ago
|
package telebot
|
||
|
|
||
|
// MiddlewareFunc represents a middleware processing function,
|
||
|
// which get called before the endpoint group or specific handler.
|
||
|
type MiddlewareFunc func(HandlerFunc) HandlerFunc
|
||
|
|
||
|
// Group is a separated group of handlers, united by the general middleware.
|
||
|
type Group struct {
|
||
|
b *Bot
|
||
|
middleware []MiddlewareFunc
|
||
|
}
|
||
|
|
||
|
// Use adds middleware to the chain.
|
||
|
func (g *Group) Use(middleware ...MiddlewareFunc) {
|
||
|
g.middleware = append(g.middleware, middleware...)
|
||
|
}
|
||
|
|
||
|
// Handle adds endpoint handler to the bot, combining group's middleware
|
||
|
// with the optional given middleware.
|
||
|
func (g *Group) Handle(endpoint interface{}, h HandlerFunc, m ...MiddlewareFunc) {
|
||
|
g.b.Handle(endpoint, h, append(g.middleware, m...)...)
|
||
|
}
|