Middleware¶
Middleware is an essential part of any modern web framework. It allows you to modify requests and responses as they pass between the client and your server.
You can imagine middleware as a chain of logic connecting your server to the client requesting your web app.
Version Middleware¶
As an example, let's create a middleware that will add the version of our API to each response. The middleware would look something like this:
import HTTP final class VersionMiddleware: Middleware { func respond(to request: Request, chainingTo next: Responder) throws -> Response { let response = try next.respond(to: request) response.headers["Version"] = "API v1.0" return response } }
We then supply this middleware to our Droplet
.
import Vapor let config = try Config() config.addConfigurable(middleware: VersionMiddleware(), name: "version") let drop = try Droplet(config)
Tip
You can now dynamically enable and disable this middleware from your configuration files.
Simply add "version"
to the "middleware"
array in your droplet.json
file.
See the configuration section for more information.
You can imagine our VersionMiddleware
sitting in the middle of a chain that connects the client and our server. Every request and response that hits our server must go through this chain of middleware.
Breakdown¶
Let's break down the middleware line by line.
let response = try next.respond(to: request)
Since the VersionMiddleware
in this example is not interested in modifying the request, we immediately ask the next middleware in the chain to respond to the request. This goes all the way down the chain to the Droplet
and comes back with the response that should be sent to the client.
response.headers["Version"] = "API v1.0"
We then modify the response to contain a Version header.
return response
The response is returned and will chain back up any remaining middleware and back to the client.
Request¶
The middleware can also modify or interact with the request.
func respond(to request: Request, chainingTo next: Responder) throws -> Response { guard request.cookies["token"] == "secret" else { throw Abort(.badRequest) } return try next.respond(to: request) }
This middleware will require that the request has a cookie named token
that equals secret
or else the request will be aborted.
Errors¶
Middleware is the perfect place to catch errors thrown from anywhere in your application. When you let the middleware catch errors, you can remove a lot of duplicated logic from your route closures. Take a look at the following example:
enum FooError: Error { case fooServiceUnavailable }
Say there is a custom error that either you defined or one of the APIs you are using throws
. This error must be caught when thrown, or else it will end up as an internal server error (500) which may be unexpected to a user. The most obvious solution is to catch the error in the route closure.
app.get("foo") { request in let foo: Foo do { foo = try getFooFromService() } catch { throw Abort(.badRequest) } // continue with Foo object }
This solution works, but it would get repetitive if multiple routes need to handle the error. Luckily, this error could be caught in a middleware instead.
final class FooErrorMiddleware: Middleware { func respond(to request: Request, chainingTo next: Responder) throws -> Response { do { return try next.respond(to: request) } catch FooError.fooServiceUnavailable { throw Abort( .badRequest, reason: "Sorry, we were unable to query the Foo service." ) } } }
We just need to add this middleware to our droplet's config.
config.addConfigurable(middleware: FooErrorMiddleware(), name: "foo-error")
Tip
Don't forget to enable the middleware in your droplet.json
file.
Now our route closures look a lot better and we don't have to worry about code duplication.
app.get("foo") { request in let foo = try getFooFromService() // continue with Foo object }
Route Groups¶
For more granularity, Middleware can be applied to specific route groups.
let authed = drop.grouped(AuthMiddleware()) authed.get("secure") { req in return Secrets.all().makeJSON() }
Anything added to the authed
group must pass through AuthMiddleware
. Because of this, we can assume all traffic to /secure
has been authorized. Learn more in Routing.
Configuration¶
You can use the configuration files to enabled or disable middleware dynamically. This is especially useful if you have middleware that should, for example, run only in production.
Appending configurable middleware looks like the following:
let config = try Config() config.addConfigurable(middleware: myMiddleware, name: "my-middleware") let drop = Droplet(config)
Then, in the Config/droplet.json
file, add my-middleware
to the middleware
array.
{ ... "middleware": { ... "my-middleware", ... }, ... }
If the name of the added middleware appears in the middleware array it will be added to the server's middleware when the application boots.
The ordering of middleware is respected.
Manual¶
You can also hardcode your middleware if you don't want to use configuration files.
import Vapor let versionMiddleware = VersionMiddleware() let drop = try Droplet(middleware: [versionMiddleware])
Advanced¶
Extensions¶
Middleware pairs great with request/response extensions and storage. This example shows you how to dynamically return either HTML or JSON responses for a Model depending on the type of client.
Middleware¶
final class PokemonMiddleware: Middleware { let view: ViewProtocol init(_ view: ViewProtocol) { self.view = view } func respond(to request: Request, chainingTo next: Responder) throws -> Response { let response = try next.respond(to: request) if let pokemon = response.pokemon { if request.accept.prefers("html") { response.view = try view.make("pokemon.mustache", pokemon) } else { response.json = try pokemon.makeJSON() } } return response } } extension PokemonMiddleware: ConfigInitializable { convenience init(config: Config) throws { let view = try config.resolveView() self.init(view) } }
Response¶
And the extension to Response
.
extension Response { var pokemon: Pokemon? { get { return storage["pokemon"] as? Pokemon } set { storage["pokemon"] = newValue } } }
In this example, we added a new property to response capable of holding a Pokémon object. If the middleware finds a response with one of these Pokémon objects, it will dynamically check whether the client prefers HTML. If the client is a browser like Safari and prefers HTML, it will return a Mustache view. If the client does not prefer HTML, it will return JSON.
Usage¶
Your closures can now look something like this:
import Vapor let config = try Config() config.addConfigurable(middleware: PokemonMiddleware.init, name: "pokemon") let drop = try Droplet(config) drop.get("pokemon", Pokemon.self) { request, pokemon in let response = Response() response.pokemon = pokemon return response }
Tip
Don't forget to add "pokemon"
to your droplet.json
middleware array.
Response Representable¶
If you want to go a step further, you can make Pokemon
conform to ResponseRepresentable
.
import HTTP extension Pokemon: ResponseRepresentable { func makeResponse() throws -> Response { let response = Response() response.pokemon = self return response } }
Now your route closures are greatly simplified.
drop.get("pokemon", Pokemon.self) { request, pokemon in return pokemon }
Middleware is incredibly powerful. Combined with extensions, it allows you to add functionality that feels native to the framework.