aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/services/PatientCriterionService.scala
diff options
context:
space:
mode:
authorvlad <vlad@driver.xyz>2017-06-27 17:13:02 -0700
committervlad <vlad@driver.xyz>2017-06-27 17:13:02 -0700
commit5832f63b84d7388441d1200f2442dc1e9de0225c (patch)
tree32f63acdc920c14effc3d0d2822c05c125ad49e4 /src/main/scala/xyz/driver/pdsuidomain/services/PatientCriterionService.scala
parent9dd50590d4c8f8b9442d7c21ddd1def9dd453d5e (diff)
downloadrest-query-5832f63b84d7388441d1200f2442dc1e9de0225c.tar.gz
rest-query-5832f63b84d7388441d1200f2442dc1e9de0225c.tar.bz2
rest-query-5832f63b84d7388441d1200f2442dc1e9de0225c.zip
All PDS UI domain models, API case classes, service traits and necessary utils moved to pdsui-commonv0.1.11
Diffstat (limited to 'src/main/scala/xyz/driver/pdsuidomain/services/PatientCriterionService.scala')
-rw-r--r--src/main/scala/xyz/driver/pdsuidomain/services/PatientCriterionService.scala126
1 files changed, 126 insertions, 0 deletions
diff --git a/src/main/scala/xyz/driver/pdsuidomain/services/PatientCriterionService.scala b/src/main/scala/xyz/driver/pdsuidomain/services/PatientCriterionService.scala
new file mode 100644
index 0000000..ff95ed0
--- /dev/null
+++ b/src/main/scala/xyz/driver/pdsuidomain/services/PatientCriterionService.scala
@@ -0,0 +1,126 @@
+package xyz.driver.pdsuidomain.services
+
+import java.time.LocalDateTime
+
+import xyz.driver.pdsuicommon.auth.AuthenticatedRequestContext
+import xyz.driver.pdsuicommon.db._
+import xyz.driver.pdsuicommon.domain._
+import xyz.driver.pdsuicommon.error.DomainError
+import xyz.driver.pdsuicommon.logging._
+import xyz.driver.pdsuidomain.entities._
+
+import scala.concurrent.Future
+
+object PatientCriterionService {
+
+ case class DraftPatientCriterion(id: LongId[PatientCriterion],
+ eligibilityStatus: Option[FuzzyValue],
+ isVerified: Option[Boolean]) {
+ def applyTo(orig: PatientCriterion) = {
+ orig.copy(
+ eligibilityStatus = eligibilityStatus.orElse(orig.eligibilityStatus),
+ isVerified = isVerified.getOrElse(orig.isVerified)
+ )
+ }
+ }
+
+ trait DefaultPatientNotFoundError {
+ def userMessage: String = "Patient not found"
+ }
+
+ trait DefaultNotFoundError {
+ def userMessage: String = "Patient criterion not found"
+ }
+
+ trait DefaultAccessDeniedError {
+ def userMessage: String = "Access denied"
+ }
+
+ sealed trait GetListReply
+ object GetListReply {
+ type Error = GetListReply with DomainError
+
+ case class EntityList(xs: Seq[(PatientCriterion, LongId[Label], List[Arm], Boolean)],
+ totalFound: Int,
+ lastUpdate: Option[LocalDateTime]) extends GetListReply
+
+ case object AuthorizationError
+ extends GetListReply with DomainError.AuthorizationError with DefaultAccessDeniedError
+
+ case object PatientNotFoundError
+ extends GetListReply with DomainError.NotFoundError with DefaultPatientNotFoundError
+
+ case class CommonError(userMessage: String)
+ extends GetListReply with DomainError
+
+ }
+
+ sealed trait GetByIdReply
+ object GetByIdReply {
+ type Error = GetByIdReply with DomainError
+
+ case class Entity(x: PatientCriterion,
+ labelId: LongId[Label],
+ armList: List[Arm],
+ criterionIsCompound: Boolean) extends GetByIdReply
+
+ case object AuthorizationError
+ extends GetByIdReply with DomainError.AuthorizationError with DefaultAccessDeniedError
+
+ case object NotFoundError
+ extends GetByIdReply with DomainError.NotFoundError with DefaultNotFoundError
+
+ case object PatientNotFoundError
+ extends GetByIdReply with DomainError.NotFoundError with DefaultPatientNotFoundError
+
+ case class CommonError(userMessage: String)
+ extends GetByIdReply with DomainError
+
+ implicit def toPhiString(reply: GetByIdReply): PhiString = reply match {
+ case x: DomainError => phi"GetByIdReply.Error($x)"
+ case Entity(x, labelId, armList, criterionIsCompound) =>
+ phi"GetByIdReply.Entity(entity=$x, labelId=$labelId, " +
+ phi"armList=$armList, criterionIsCompound=$criterionIsCompound)"
+ }
+ }
+
+ sealed trait UpdateReply
+ object UpdateReply {
+ type Error = UpdateReply with DomainError
+
+ case object Updated extends UpdateReply
+
+ case object AuthorizationError
+ extends UpdateReply with DomainError.AuthorizationError with DefaultAccessDeniedError
+
+ case object PatientNotFoundError
+ extends UpdateReply with DomainError.NotFoundError with DefaultPatientNotFoundError
+
+ case class CommonError(userMessage: String)
+ extends UpdateReply with DomainError
+ }
+}
+
+trait PatientCriterionService {
+
+ import PatientCriterionService._
+
+ def getAll(patientId: UuidId[Patient],
+ filter: SearchFilterExpr = SearchFilterExpr.Empty,
+ sorting: Option[Sorting] = None,
+ pagination: Option[Pagination] = None)
+ (implicit requestContext: AuthenticatedRequestContext): Future[GetListReply]
+
+ def getById(patientId: UuidId[Patient],
+ id: LongId[PatientCriterion])
+ (implicit requestContext: AuthenticatedRequestContext): Future[GetByIdReply]
+
+ def updateList(patientId: UuidId[Patient],
+ draftEntities: List[DraftPatientCriterion])
+ (implicit requestContext: AuthenticatedRequestContext): Future[UpdateReply]
+
+ def update(origEntity: PatientCriterion,
+ draftEntity: PatientCriterion,
+ patientId: UuidId[Patient])
+ (implicit requestContext: AuthenticatedRequestContext): Future[UpdateReply]
+}