shard-kemal/docs/middlewares.md

37 lines
733 B
Markdown
Raw Normal View History

2015-12-16 18:32:01 +00:00
# Middlewares
2015-12-27 10:05:19 +00:00
## Built-in Middlewares
Kemal has built-in middlewares for common use cases.
### HTTP Basic Authorization
This middleware let's you add HTTP Basic Authorization support to your Kemal application.
To increase easy of use you can use this middleware with `basic_auth` macro like below.
```crystal
require "kemal"
basic_auth "username", "password"
get "/" do
"This won't render without correct username and password."
end
```
## Custom middlewares
You can create your own middleware by inheriting from ```HTTP::Handler```
2015-12-16 18:32:01 +00:00
```crystal
class CustomHandler < HTTP::Handler
def call(request)
puts "Doing some custom stuff here"
call_next request
end
end
Kemal.config.add_handler CustomHandler.new
```