Skip to content

gvolpe/light-play-rest-api

Repository files navigation

light-play-rest-api

Codeship Status for gvolpe/light-play-rest-api Coverage Status Codacy Badge

This project aims to be the reference to create a Light Weight REST API using Play Framework 2.4.x.

About

We are using customized routers, easy to re-use them and fully testables. Every router represents a funcionality (separation of concerns). No more single 'Routes' file that becomes huge with the time.

How it works?

The entry point is a custom class that extends ApplicationLoader which defines the 'load' method.

class Boot extends ApplicationLoader {

  def load(context: Context): Application = ???

}

To indicate that we want to use this custom loader, we have to specify it in the application.conf file.

play.application.loader = Boot

After that we have to create the customized routers. This project has 3 sample routers for Users, Products and Orders. This is how it looks:

object UsersRouter extends DefaultUsersRepository with UsersRouter {
  def apply(): Router.Routes = routes
}

trait UsersRouter {

  self: UsersRepository =>

  def routes: Router.Routes = {

    case GET(p"/users/${long(id)}") => Action.async {
      find(id) map {
        case Some(user) => Ok(Json.toJson(user))
        case None => NotFound
      }
    }

    case POST(p"/users") => Action.async(parse.json[User]) { implicit request =>
      val user = request.body
      save(user) map (_ => Created)
    }

  }

}

Since the type Router.Routes is a PartialFunction[RequestHeader, Handler], we can define the cases in our 'routes' method. We created a companion object with an apply() method to make things easier.

Putting the pieces together

After all, we are able to combine our Routes in a defined Router as shown in the code below:

def router: Router = Router.from {
  UsersRouter() orElse
  ProductsRouter() orElse
  OrdersRouter()
}

There are different ways to combine PartialFunctions to get only one. We choose the first one but we can, for instance, define the Router by reducing a List of PartialFunctions, as we do in the BaseRouterSpecification class:

def router: Router = Router.from {
  val routers = List(UsersRouter(), ProductsRouter(), OrdersRouter())
  routers reduceLeft (_ orElse _)
}

You can find more information about the new Routing system in the Official Documentation.

That's enough to start a Light REST API from the scratch thinking seriously in clean coding.

Testing

We choose Specs2 to test Play's applications. As it's explained in the documentation, we are able to test the Routers instead of call directly to an Action.

So we start creating a Specification for the UsersRouterSpec as shown below:

class UsersRouterSpec extends PlaySpecification {
   ......
}

Then we create a FakeUsersRouter to replace the Real Users Repository for an InMemoryRepository (Default). In the application we are using the same repository, but that will be changed for a repository accessing a real database.

object FakeUsersRouter extends DefaultUsersRepository with UsersRouter {
  def apply(): Router.Routes = routes
}

Finally we create a fakeApplicationLoader to start testing the Routers.

val fakeRouter = Router.from(FakeUsersRouter())
  
val fakeAppLoader = new ApplicationLoader() {
  def load(context: Context): Application = new BuiltInComponentsFromContext(context) {
    def router = fakeRouter
  }.application
}

Now we are able to write our tests, using our Fake Application Loader.

"Users Router" should {

  "Not find the user" in new WithApplicationLoader(fakeAppLoader) {
    val fakeRequest = FakeRequest(GET, "/users/123")
    val Some(result) = route(fakeRequest)

    status(result) must equalTo(NOT_FOUND)
  }

  ... More cases ...
}

To learn more see the completed test specification.

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

This project aims to be the reference to create a Light Weight REST API using Play Framework 2.4.x.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published