Awesome
CodelyTV Scala HTTP API
<img src="http://codely.tv/wp-content/uploads/2016/05/cropped-logo-codelyTV.png" align="left" width="192px" height="192px"/> <img align="left" width="0" height="192px" hspace="10"/>Project showing up how you could implement a HTTP API with Scala.
This is the first iteration of the project where you will find a very Object Oriented approach. We've followed the Ports & Adapters (or Hexagonal Architecture) Software Architecture using trait
s as the domain contracts/ports in order to be implemented by the infrastructure adapters.
Contents
Endpoints
One of the goals of this project is to serve as an example for the course on Scala HTTP API (Spanish) illustrating how to implement several concepts you would commonly find in any production application. In order to accomplish so, we have implemented the following 5 endpoints:
GET /status
: Application status health check.POST /videos
: Create new video inserting it into the database and publishing thevideo_created
domain event to the message queue.GET /videos
: Obtain all the system videos.POST /users
: Create new user inserting it into the database and publishing theuser_registered
domain event to the message queue.GET /users
: Obtain all the system users.
Libraries and implementation examples
Environment setup
Install the needed tools
- Clone this repository:
git clone https://github.com/CodelyTV/cqrs-ddd-scala-example.git cqrs-ddd-scala-example
- Download and install Docker compose. We'll need it in order to run all the project infrastructure.
- Download and install SBT
Prepare the application environment
- Copy the Docker environment variables config file and tune it with your desired values:
cp .env.dist .env
- Start Docker and bring up the project needed containers:
docker-compose up -d
- Create the database tables in your Docker MySQL container:
sbt createDbTables
Run the tests and start the HTTP server
- Enter into the SBT console:
sbt
- Run the tests:
t
- Start the local server:
app/run mooc-api
(if you run the app from outside SBT:sbt "app/run mooc-api"
) - Request for the server status:
curl http://localhost:8080/status
- Take a look at the courses related to this repository (Spanish) just in case you're interested into them!
- Introducción a Scala
- API HTTP con Scala y Akka
- Programación funcional: Refactorizando código orientado a objetos con TypeClasses
- Principios SOLID Aplicados
- Arquitectura Hexagonal
- Command Query Responsibility Segregation
- Comunicación entre microservicios: Event-Driven Architecture
- Domain-Driven Design
Pre-push Git hook
There's one Git hook included. It's inside the doc/hooks
folder and it will run the prep
SBT task before pushing to any remote.
This prep
task is intended to run all the checks you consider before pushing. At this very moment, it try to compile and check the code style rules with ScalaFmt.
You can define what this task does modifying the prep
task in the build.sbt
file. We like the approach of just running 1 single SBT task as the hook instead of multiple tasks because it's more efficient (the hook doesn't have to run SBT multiple times), and also because this way we can control the pre push tasks with the SBT alias defined at the build.sbt
without altering the hooks.
In order to install this hook, just cd doc/hooks
and run ./install-hooks.sh
.
Logs
We've added a logging mechanism thanks to logback and logstash-logback-encoder in order to:
- Output the log records through the standard output channel (usually, your terminal :P)
- Store the log records in JSON format in a log file available at
var/log/app_log.json
- Compress the historical log files into
var/log/app_log-%d{yyyy-MM-dd}.gz
files - Delete compressed historical logs older than 10 days
If you want more information on the logging policies and appenders, take a look at the logback.xml.
Deploy
We use SBT Native Packager in order to package the app in single Jar file that you can execute.
- Create the universal package:
sbt universal:packageBin
. - Extract the generated zip:
unzip target/universal/codelytv-cqrs-ddd-scala-example-1.0.zip -d ~/var/www/
which will contain:bin/
: All the executable binaries of our main classes in Unix and Windows (bat) formatlib/
: All the project dependencies jar files.
- Run the main app binary:
- Without specifying any parameters (OK for this example app):
~/var/www/codelytv-cqrs-ddd-scala-example-1.0/bin/codelytv-cqrs-ddd-scala-example
- Specifying parameters for the JVM:
~/var/www/codelytv-cqrs-ddd-scala-example-1.0/bin/codelytv-cqrs-ddd-scala-example -Dconfig.resource=application/$CONFIG_PATH
- Specifying application parameters:
~/var/www/codelytv-cqrs-ddd-scala-example-1.0/bin/codelytv-cqrs-ddd-scala-example -Dconfig.resource=application/$CONFIG_PATH -- -appParam
- Without specifying any parameters (OK for this example app):
About
This hopefully helpful utility has been developed by CodelyTV and contributors.
We'll try to maintain this project as simple as possible, but Pull Requests are welcome!
License
The MIT License (MIT). Please see License for more information.