aboutsummaryrefslogtreecommitdiff
path: root/core-database/src/main/scala/xyz/driver/core/database/Repository.scala
blob: 5d7f787789477a51ccacaa4315649fb710dfafb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package xyz.driver.core.database

import scalaz.std.scalaFuture._
import scalaz.{ListT, Monad, OptionT}
import slick.lifted.{AbstractTable, CanBeQueryCondition, RunnableCompiled}
import slick.{lifted => sl}

import scala.concurrent.{ExecutionContext, Future}
import scala.language.higherKinds

trait Repository {
  type T[D]
  implicit def monadT: Monad[T]

  def execute[D](operations: T[D]): Future[D]
  def noAction[V](v: V): T[V]
  def customAction[R](action: => Future[R]): T[R]

  def customAction[R](action: => OptionT[Future, R]): OptionT[T, R] =
    OptionT[T, R](customAction(action.run))
}

class FutureRepository(executionContext: ExecutionContext) extends Repository {
  implicit val exec: ExecutionContext = executionContext
  override type T[D] = Future[D]
  implicit val monadT: Monad[Future] = implicitly[Monad[Future]]

  def execute[D](operations: T[D]): Future[D]     = operations
  def noAction[V](v: V): T[V]                     = Future.successful(v)
  def customAction[R](action: => Future[R]): T[R] = action
}

class SlickRepository(database: Database, executionContext: ExecutionContext) extends Repository {
  import database.profile.api._
  implicit val exec: ExecutionContext = executionContext

  override type T[D] = slick.dbio.DBIO[D]

  implicit protected class QueryOps[+E, U](query: Query[E, U, Seq]) {
    def resultT: ListT[T, U] = ListT[T, U](query.result.map(_.toList))

    def maybeFilter[V, R: CanBeQueryCondition](data: Option[V])(f: V => E => R): sl.Query[E, U, Seq] =
      data.map(v => query.withFilter(f(v))).getOrElse(query)
  }

  implicit protected class CompiledQueryOps[U](compiledQuery: RunnableCompiled[_, Seq[U]]) {
    def resultT: ListT[T, U] = ListT.listT[T](compiledQuery.result.map(_.toList))
  }

  private val dbioMonad = new Monad[T] {
    override def point[A](a: => A): T[A] = DBIO.successful(a)

    override def bind[A, B](fa: T[A])(f: A => T[B]): T[B] = fa.flatMap(f)
  }

  override implicit def monadT: Monad[T] = dbioMonad

  override def execute[D](readOperations: T[D]): Future[D] = {
    database.database.run(readOperations.transactionally)
  }

  override def noAction[V](v: V): T[V] = DBIO.successful(v)

  override def customAction[R](action: => Future[R]): T[R] = DBIO.from(action)

  def affectsRows(updatesCount: Int): Option[Unit] = {
    if (updatesCount > 0) Some(()) else None
  }

  def insertReturning[AT <: AbstractTable[_], V](table: TableQuery[AT])(
      row: AT#TableElementType): slick.dbio.DBIO[AT#TableElementType] = {
    table.returning(table) += row
  }
}