aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/services/PatientLabelEvidenceService.scala
blob: 1ddf40110ad1b9c09fd661ca9e424d4cecef4bc9 (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
package xyz.driver.pdsuidomain.services

import xyz.driver.core.rest.AuthorizedServiceRequestContext
import xyz.driver.entities.labels.Label
import xyz.driver.entities.users.AuthUserInfo
import xyz.driver.pdsuicommon.db._
import xyz.driver.pdsuicommon.domain.{LongId, UuidId}
import xyz.driver.pdsuicommon.error.DomainError
import xyz.driver.pdsuidomain.entities._

import scala.concurrent.Future

object PatientLabelEvidenceService {

  trait DefaultAccessDeniedError {
    def userMessage: String = "Access denied"
  }

  trait DefaultPatientNotFoundError {
    def userMessage: String = "Patient not found"
  }

  sealed trait GetByIdReply
  object GetByIdReply {
    final case class Entity(x: PatientLabelEvidenceView) extends GetByIdReply

    type Error = GetByIdReply with DomainError

    final case class NotFoundError(userMessage: String) extends GetByIdReply with DomainError.NotFoundError

    final case class CommonError(userMessage: String) extends GetByIdReply with DomainError

    case object AuthorizationError
        extends GetByIdReply with DomainError.AuthorizationError with DefaultAccessDeniedError
  }

  sealed trait GetListReply
  object GetListReply {
    final case class EntityList(xs: Seq[PatientLabelEvidenceView], totalFound: Int) extends GetListReply

    type Error = GetListReply with DomainError

    case object PatientNotFoundError
        extends GetListReply with DefaultPatientNotFoundError with DomainError.NotFoundError

    case object AuthorizationError
        extends GetListReply with DomainError.AuthorizationError with DefaultAccessDeniedError

    final case class CommonError(userMessage: String) extends GetListReply with DomainError
  }
}

trait PatientLabelEvidenceService {

  import PatientLabelEvidenceService._

  def getById(patientId: UuidId[Patient], labelId: LongId[Label], id: LongId[PatientLabelEvidence])(
          implicit requestContext: AuthorizedServiceRequestContext[AuthUserInfo]): Future[GetByIdReply]

  def getAll(patientId: UuidId[Patient],
             labelId: LongId[Label],
             filter: SearchFilterExpr = SearchFilterExpr.Empty,
             sorting: Option[Sorting] = None,
             pagination: Option[Pagination] = None)(
          implicit requestContext: AuthorizedServiceRequestContext[AuthUserInfo]): Future[GetListReply]
}