36.
Microservices, Part 1
Written by Tim Condon
In previous chapters, you’ve built a single Vapor application to run your server code. For large applications, the single monolith becomes difficult to maintain and scale. In this chapter, you’ll learn how to leverage microservices to split up your code into different applications. You’ll learn the benefits and the downsides of microservices and how to interact with them. Finally, you’ll learn how authentication and relationships work in a microservices architecture.
Microservices
Microservices are a design pattern that’s become popular in recent years. The aim of microservices is to provide small, independent modules that interact with one another. This is different to a large monolithic application. Such an approach makes the individual services easier to develop and test as they are smaller. Because they’re independent, you can develop them individually. This removes the need to use and build all the dependencies for the entire application.
Microservices also allow you to scale your application better. In a monolithic application, you must scale the entire application when under heavy load. This includes parts of the application that receive low traffic. In microservices, you scale only the services that are busy.
Finally, microservices make building and deploying your applications easier. Deploying very large applications is complex and prone to errors. In large applications, you must coordinate with every development team to ensure the application is ready to deploy. Breaking a monolithic application up into smaller services makes deploying each service easier.
Each microservice should be a fully contained application. Each service has its own database, its own cache and, if necessary, its own front end. The only shared part should be the public API to allow other services to interact with that microservice. Typically, they provide an HTTP REST API, although you can use other techniques such as protobuf or remote procedural calls (RPC). Since each microservice interacts with other services only via a public API, each can use different technology stacks. For instance, you could use PostgreSQL for one service that required it, but use MySQL for the main user service. You can even mix languages. This allows different teams to use the languages they prefer.
Swift is an excellent choice for microservices. Swift applications have low memory footprints and can handle large numbers of connections. This allows Swift microservices to fit easily into existing applications without the need for lots of resources.
The TIL microservices
In the first few sections of this book, you developed a single TIL application. You could have used a microservices architecture instead. For instance, you could have one service that deals with users, another that deals with categories and another for acronyms. Throughout this chapter, you’ll start to see how to do this.
Download and open the starter project for this chapter. There are two Vapor applications in there:
- TILAppUsers: a microservice for users running on port 8081. This services uses a PostgreSQL database to persist the users’ information.
- TILAppAcronyms: a microservice for the acronyms running on port 8082. This service uses a MySQL database to store the acronyms.
The user microservice
Navigate to the TILAppUsers directory in Terminal. Enter the following the start the database:
docker run --name postgres -e POSTGRES_DB=vapor_database \
-e POSTGRES_USER=vapor_username \
-e POSTGRES_PASSWORD=vapor_password \
-p 5432:5432 -d postgres
Here’s what this does:
- Run a new container named postgres.
- Specify the database name, username and password through environment variables.
- Allow applications to connect to the PostgreSQL server on its default port: 5432.
- Run the server in the background as a daemon.
- Use the Docker image named postgres for this container. If the image isn’t present on your machine, Docker automatically downloads it.
Next generate and open the project in Xcode:
open Package.swift
Once Xcode finishes downloading the dependencies, open User.swift. The User model for this service is a simplified version from the main TIL application.
Next, open UsersController.swift. Again, like the TIL application, this contains routes to create a user, retrieve a user and retrieve all users.
Build and run the application and launch RESTed. Configure a request as follows:
- URL: http://localhost:8081/users
- method: POST
- Parameter encoding: JSON-encoded
Add three parameters with names and values:
- username: a username of your choice
- name: a name of your choice
- password: a password of your choice
Click Send Request. This creates a user in the application.
Configure a new request as follows:
- URL: http://localhost:8081/users
- method: GET
Click Send Request. You’ll see the user you created:
For now, that’s as complicated as the user service needs to be!
The acronym microservice
Keep the user service running and navigate to the TILAppAcronyms directory in Terminal. Enter the following the start the database:
docker run --name mysql -e MYSQL_USER=vapor_username \
-e MYSQL_PASSWORD=vapor_password \
-e MYSQL_DATABASE=vapor_database \
-e MYSQL_RANDOM_ROOT_PASSWORD=yes \
-p 3306:3306 -d mysql
Here’s what this does:
- Run a new container named mysql.
- Specify the database name, username and password through environment variables.
- Set
MYSQL_RANDOM_ROOT_PASSWORDwhich sets the required root password to a random value. - Allow applications to connect to the MySQL server on its default port: 3306.
- Run the server in the background as a daemon.
- Use the Docker image named mysql for this container. If the image is not present on your machine, Docker automatically downloads it.
Next enter the following in Terminal to open the project in Xcode:
open Package.swift
This service contains the exact same Acronym model as the main TIL application. Open AcronymsController.swift. You’ll see routes for CRUD operations on Acronym. When Xcode finishes downloading the dependencies, build and run the service and configure a new request in RESTed as follows:
- URL: http://localhost:8082/
- method: POST
- Parameter encoding: JSON-encoded
Add three parameters with names and values:
- short: OMG
- long: Oh My God
- userID: The ID of the user created earlier
Click Send Request. This creates an acronym in the service:
Configure a new request as follows:
- URL: http://localhost:8082/
- method: GET
Click Send Request. You’ll see the acronym you created:
Dealing with relationships
At this point, you can create both users and acronyms in their respective microservices. However, dealing with relationships between different services is more complicated. In Section 1 of this book, you learned how to use Fluent to enable you to query for different relationships between models. With microservices, since the models are in different databases, you must do this manually.
Getting a user’s acronyms
In the TILAppAcronyms Xcode project, open AcronymsController.swift. Below updateHandler(_:), add a new route handler to get the acronyms for a particular user:
func getUsersAcronyms(_ req: Request)
throws -> EventLoopFuture<[Acronym]> {
// 1
let userID =
try req.parameters.require("userID", as: UUID.self)
// 2
return Acronym.query(on: req.db)
.filter(\.$userID == userID)
.all()
}
Here’s what the route handler does:
- Get the user’s ID as a UUID from the request’s parameters.
- Perform a query on the
Acronymtable to get all acronyms with auserIDthat matches the ID passed in.
Since the Acronym table contains the user ID, you don’t need to request any external information to perform the query. Add the following to the end of boot(routes:) to register the route:
routes.get("user", ":userID", use: getUsersAcronyms)
This routes GET requests to /user/<USER_ID> to getUsersAcronyms(_:). Build and run the TILAppAcronyms service and configure a new request in RESTed as follows:
- URL: http://localhost:8082/user/<ID_OF_THE_USER_CREATED_EARLIER>
- method: GET
Click Send request and you’ll see all acronyms created by that user:
Getting an acronym’s user
You can already get an acronym’s user with the current projects. You make a request to get the acronym, extract the user’s ID from it, then make a request to get the user from the user service. Chapter 37, “Microservices, Part 2” discusses how to simplify this for clients.
Authentication in Microservices
Currently a user can create, edit and delete acronyms with no authentication. Like the TIL app, you should add authentication to microservices as necessary. For this chapter, you’ll add authentication to the TILAppAcronyms microservice. However, you’ll delegate this authentication to the TILAppUsers microservice.
In practice, it works like this:
- A user logs in to the TILAppUsers microservice and obtains a token.
- When creating an acronym, the user provides the token to the TILAppAcronyms service.
- The TILAppAcronyms service validates the token with the TILAppUsers service.
- If the token is valid, the TILAppAcronyms proceeds with the request, otherwise it rejects the request.
Logging in
Open the TILAppUsers project in Xcode. The starter project already contains a Token type and an empty AuthContoller. You could store the tokens in the same database as the user. Since every validation request requires a lookup and you have multiple services, you want this to be as quick as possible. One solution is to store them in memory. However, if you want to scale your microservice, this doesn’t work. You need to use something like Redis. Redis is a fast, key-value database, which is ideal for storing session tokens. You can share the database across different servers which allows you to scale without any performance penalties.
In Terminal, type the following to start a Redis database server:
docker run --name redis -p 6379:6379 -d redis
Here’s what this does:
- Run a new container named redis.
- Allow applications to connect to the Redis server on its default port: 6379.
- Run the server in the background as a daemon.
- Use the Docker image named redis for this container. If the image isn’t present on your machine, Docker automatically downloads it.
Back in Xcode, open configure.swift for the TILAppUsers project. At the top of the file, add the following underneath import Vapor:
import Redis
This allows you to use Redis in your application. The project already has Redis configured as a dependency. Next, below:
app.migrations.add(CreateUser())
add the following:
// 1
let redisHostname: String
if let redisEnvironmentHostname =
Environment.get("REDIS_HOSTNAME") {
redisHostname = redisEnvironmentHostname
} else {
redisHostname = "localhost"
}
// 2
app.redis.configuration =
try RedisConfiguration(hostname: redisHostname)
Here’s what the code does:
- Use the REDIS_HOSTNAME environment variable for the Redis server hostname, if it’s set. Otherwise, use localhost.
- Configure the app’s
Redissetup to use aRedisConfiguration.
You’ve now configured the TILAppUsers project to use Redis. Notice the project now uses two databases — PostgreSQL and Redis. Next, open AuthController.swift and create a new route handler below boot(routes:) to handle a user logging in:
func loginHandler(_ req: Request)
throws -> EventLoopFuture<Token> {
// 1
let user = try req.auth.require(User.self)
// 2
let token = try Token.generate(for: user)
// 3
return req.redis
.set(RedisKey(token.tokenString), toJSON: token)
.transform(to: token)
}
Here’s what the new code does:
- Get the authenticated user from the request. The route will use Basic HTTP Authentication to retrieve the user.
- Generate a
Tokenfor the user. - Save the token in Redis as a JSON string for the value. Create a
RedisKeyusing the token string. Return theTokenas the response usingtransform(to:).
Finally, register the route in boot(routes:):
// 1
let authGroup = routes.grouped("auth")
// 2
let basicMiddleware = User.authenticator()
// 3
let basicAuthGroup = authGroup.grouped(basicMiddleware)
// 4
basicAuthGroup.post("login", use: loginHandler)
Here’s what the routing code does:
- Create a new route group under /auth for handling all authentication routes.
- Create the HTTP Basic Authentication middleware from
Userusingauthenticator(). - Create a new route group using the middleware.
- Route POST requests to /auth/login to
loginHandler(_:).
For more information on HTTP Basic Authentication, see Chapter 18, “API Authentication, Part 1.”
Authenticating tokens
Now that users can log in and get a token, you need a way for other microservices to validate that token and retrieve the user information associated with it.
First, create a new type to represent the data sent in token validation requests. At the bottom of AuthController.swift, add the following:
struct AuthenticateData: Content {
let token: String
}
The request only needs the token to validate the request. Next, create a new route below loginHandler(_:) to handle the requests with this data from other microservices:
func authenticate(_ req: Request)
throws -> EventLoopFuture<User.Public> {
// 1
let data = try req.content.decode(AuthenticateData.self)
// 2
return req.redis
.get(RedisKey(data.token), asJSON: Token.self)
.flatMap { token in
// 3
guard let token = token else {
return req.eventLoop.future(error: Abort(.unauthorized))
}
// 4
return User.query(on: req.db)
.filter(\.$id == token.userID)
.first()
.unwrap(or: Abort(.internalServerError))
.convertToPublic()
}
}
Here’s what the route handler does:
- Decode the request body to
AuthenticateData. - Retrieve the data in Redis using the token sent in the request as the key. Decode the data to
Token. - Ensure the token exists, otherwise return a 401 Unauthorized response.
- Query the user database to get the user with the ID from the
Token. Ensure the user exists, otherwise throw an internal server error. The application should never store a token in the database with a user ID of a user that doesn’t exist. Return the public representation of the user to avoid sending the user’s password in the response.
Finally, add the following at the end of boot(routes:) to register the route:
authGroup.post("authenticate", use: authenticate)
This routes a POST request to /auth/authenticate to authenticate(_:data:). Build and run the application and configure a new request in RESTed as follows:
- URL: http://localhost:8081/auth/login
- method: POST
Click the Authorization button and set Username and Password to the values for the user you created earlier. Ensure you check Present Before Authentication Challenge and click OK. Click Send Request and you’ll see the token returned in the response:
Click Authorization again and uncheck the checkbox. This ensures the HTTP Basic Authentication header isn’t sent with the next request. Configure a new request as follows:
- URL: http://localhost:8081/auth/authenticate
- method: POST
Add a single parameter with the name token and value of the token returned in the previous request. Click Send request and you’ll see the user returned in the response:
Authenticating with other microservices
Go back to the TILAppAcronyms project in Xcode and stop the app. Open User.swift and add the following at the bottom of the file:
extension User: Authenticatable {}
This allows you to add authenticated users to requests, using Vapor’s authentication logic. Next, create a new file in Sources/App/Middlewares/ called UserAuthMiddleware.swift. You’ll create a middleware to talk to the other microservice. Open the new file and insert the following:
import Vapor
struct AuthenticateData: Content {
let token: String
}
This represents the data sent to the TILAppUsers microservice to validate tokens. Notice this is the exact same code as used in that microservice. Next, above AuthenticateData, add the middleware to authenticate tokens with the TILAppUsers microservice:
struct UserAuthMiddleware: Middleware {
// 1
func respond(to request: Request, chainingTo next: Responder)
-> EventLoopFuture<Response> {
// 2
guard let token =
request.headers.bearerAuthorization else {
return request.eventLoop
.future(error: Abort(.unauthorized))
}
// 3
return request.client.post(
"http://localhost:8081/auth/authenticate",
beforeSend: { authRequest in
// 4
try authRequest.content
.encode(AuthenticateData(token: token.token))
// 5
}).flatMapThrowing { response in
// 6
guard response.status == .ok else {
if response.status == .unauthorized {
throw Abort(.unauthorized)
} else {
throw Abort(.internalServerError)
}
}
// 7
let user = try response.content.decode(User.self)
// 8
request.auth.login(user)
// 9
}.flatMap {
// 10
return next.respond(to: request)
}
}
}
Here’s what the new middleware does:
- Implement
respond(to:chainingTo:)as required byMiddleware. - Ensure the request contains a bearer token in the Authorization header. Otherwise, return a 401 Unauthorized response.
- Send a request to the TILAppUsers microservice to validate the token.
- Encode the token into the request string using the
beforeSendparameter ofpost(_:headers:beforeSend). - Resolve the future using
flatMapThrowing(_:). This allows you to throw errors inside the closure. - Ensure the response code is 200 OK. If not, return a 401 Unauthorized if the service returned that status, otherwise return a 500 Internal Server Error.
- Decode the response body into a
User. - Authenticate the request with the user returned from the TILAppUsers service.
- Use
flatMap(_:)to chain the result offlatMapThrowing(_:)and allow you to return a future. - Call the next middleware in the chain.
For more information on middleware, see Chapter 29, “Middleware”.
Use the new middleware to protect the routes that mutate the database. Open AcronymsController.swift and, add the following at the end of boot(routes:):
let authGroup = routes.grouped(UserAuthMiddleware())
authGroup.post(use: createHandler)
authGroup.delete(":acronymID", use: deleteHandler)
authGroup.put(":acronymID", use: updateHandler)
This creates a new route group using UserAuthMiddleware and protects the create, update and delete routes. Delete the following routes that are now duplicated:
routes.post(use: createHandler)
routes.delete(":acronymID", use: deleteHandler)
routes.put(":acronymID", use: updateHandler)
Now that those routes contain an authenticated user, change the route handlers to use that user instead. At the bottom of the file, add a new type for the data required to create an acronym:
struct AcronymData: Content {
let short: String
let long: String
}
Since the user comes from the request, you only need the short and long properties. Next, replace the body of createHandler(_:) with the following:
// 1
let data = try req.content.decode(AcronymData.self)
// 2
let user = try req.auth.require(User.self)
// 3
let acronym = Acronym(
short: data.short,
long: data.long,
userID: user.id)
return acronym.save(on: req.db).map { acronym }
Here’s what the new code does:
- Get the acronym data from the request body using the new type created above.
- Get the authenticated user from the request.
- Create an
Acronymfrom the user and data and save it.
Next, in updateHandler(_:), replace the type decoded from the request:
let updateData = try req.content.decode(AcronymData.self)
This uses AcronymData instead of Acronym. Below the changed line, add:
let user = try req.auth.require(User.self)
This gets the authenticated user from the request. You do this here as you can throw errors at this level. Finally, replace acronym.userID = updateData.userID with the following:
acronym.userID = user.id
This uses the ID of the request’s authenticated user. Build and run the app and configure a new request in RESTed as follows:
- URL: http://localhost:8082/
- method: POST
- Parameter encoding: JSON-encoded
Add two parameters with names and values:
- short: IKR
- long: I Know Right
Add a header for Authorization with the value Bearer . Click Send Request. You’ll see the new acronym returned in the response:
There are a number of options for authenticating requests across microservices. For large applications, you could split the authentication out into another microservice. You may also want authentication between microservices, even if the original request from the user doesn’t need it. Finally, another option is to use JWT (JSON Web Tokens). These are JSON tokens that contain information encoded in them and a signature. They are useful because the signature ensures you can trust the token without needing access to another microservice.
Where to go from here?
In this chapter, you learned how to split the TIL app into different microservices for users and acronyms. You’ve seen how to handle authentication and relationships across different services.
In the next chapter, you’ll build another microservice that acts as a gateway for clients to access the different services. You’ll also learn how to build and run the different services together easily on Linux using Docker.