Skip to content

http-crud helps you expose CRUD repositories as an API

Notifications You must be signed in to change notification settings

fmsbeekmans/http-crud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

http-crud

This library is meant to help expose data from different sources as an API.

Install

To use the library add the following to your project settings

object versions {
  val `http-curd` = 0.1.0
}

libraryDependencies ++= Seq(
  "com.fmsbeekmans" %% "http-crud" % versions.`http-crud-akka`,
  "com.fmsbeekmans" %% "http-crud" % versions.`http-crud-core`,
  "com.fmsbeekmans" %% "http-crud" % versions.`http-crud-slick`
)

Modules

The project has been split into modules to limit unwanted transitive dependencies. These are the available modules and their description

module description
http-crud-core Core abstractions and typeclasses with instances for collections
http-crud-akka Routes and directives to expose a repository through akka-http
http-crud-slick Wrappers to create a Repository out of a slick Table

Repository

The central typeclass is a Repository. A repository is a (connection to) a datastructure with crud capabilities create, read, update delete and listing the contained items.

In case not all the operations are supported each of these are separate typeclasses

trait RGet[Backend, K, V, F[_]] {
  def get(backend: Backend, key: K): F[Option[V]]
}

trait RStore[Backend, K, V, F[_]] {
  def store(backend: Backend, value: V): F[K]
}

trait RSet[Backend, K, V, F[_]] {
  def set(backend: Backend, key: K, value: V): F[Boolean]
}

trait RRemove[Backend, K, V, F[_]] {
  def remove(backend: Backend, key: K): F[Boolean]
}

trait RKeys[Backend, K, V, F[_]] {
  def keys(backend: Backend): F[Seq[K]]
}

The core package includes instances for mutable datastructures

type instances notes
mutable.Seq RGet, RSet, RKeys Only implemented with Int as key
mutable.Buffer RGet, RStore, RSet, RRemove, RKeys Only implemented with Int as key, RGet, RSet & RKeys inherited from mutable.Seq
mutable.Map RGet, RSet, RRemove, RKeys

Example

The examples assume the following imports.

import akka.actor.ActorSystem
import akka.http.scaladsl.model.StatusCodes
import akka.http.scaladsl.Http
import akka.http.scaladsl.server.{Directives, Route}
import com.fmsbeekmans.http.crud.akka.CrudDirectives
import com.fmsbeekmans.http.crud.akka.CrudRoutes
import com.fmsbeekmans.http.crud.akka.ToFuture._  
import com.fmsbeekmans.http.crud.core._
import com.fmsbeekmans.http.crud.repository.slick.DatabaseRepository
import de.heikoseeberger.akkahttpcirce.FailFastCirceSupport
import io.circe.generic.auto._
import scala.concurrent.Future
import scala.util.{Failure, Success}
import slick.jdbc.H2Profile
import slick.jdbc.H2Profile.api._

The data model for our examples

case class Person(id: Option[Int], name: String)

class People(tag: Tag) extends Table[Person](tag, "people") {

def id: Rep[Option[Int]] =
  column[Option[Int]](
    "id",
    O.PrimaryKey,
    O.AutoInc
  )

  def name: Rep[String] = column[String]("name")
  
  override def * = ((id, name)) <> (Person.tupled, Person.unapply)
}
object RouteImplicits extends FailFastCirceSupport {

  type DB = slick.jdbc.JdbcBackend#DatabaseDef
  val database =
    Database.forURL(
      "jdbc:h2:mem:test;DB_CLOSE_DELAY=-1",
      driver = "org.h2.Driver"
    )


  implicit val system = ActorSystem("my-system")
  implicit val executionContext = system.dispatcher  

  val table = TableQuery[People]

  implicit val repository: Repository[DB, Int, Person, Future] = DatabaseRepository(H2Profile)
    .repository[Person, People](table, _.id)

  implicit val keyMatcher = Directives.IntNumber
}

Wholesale route

object RouteExample extends Directives {
  import RouteImplicits._
    

  // expose everything
  val crudlRoute = path("people/"){
    CrudRoutes[DB, Int, Person, Future](database)
  }

  val appendOnlyRoute = path("peopleAppendOnlyExample") { 
    CrudRoutes.create[DB, Int, Person, Future](database) ~ 
      CrudRoutes.create[DB, Int, Person, Future](database)
  }

  def main(): Unit = {
    val bindingFuture = Http().bindAndHandle(crudlRoute, "localhost", 8080)

    bindingFuture
      .flatMap(_.unbind())
      .onComplete(_ => system.terminate())
  }
}

If more control is required, the directives used to create these routes are also exposed.

object DirectiveExample extends Directives {
  import RouteImplicits._

  // expose everything
  val directives = CrudDirectives[DB, Int, Person, Future]
  
  // using a helper to ease implicit resolution
  def read(key: Int) = directives.read(database, key)

  val route: Route = path("people") {
    read(1) { fetchPerson =>
      onComplete(fetchPerson) {
        case Success(Some(person)) => complete(person.name)
        case Success(None) => complete(StatusCodes.NotFound)
        case Failure(ex) => failWith(ex)
      }
    }
  }

  def main(): Unit = {
    val bindingFuture = Http().bindAndHandle(route, "localhost", 8080)

    bindingFuture
      .flatMap(_.unbind())
      .onComplete(_ => system.terminate())
  }
}

About

http-crud helps you expose CRUD repositories as an API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages