aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/entities/DocumentHistory.scala
diff options
context:
space:
mode:
authorVyatcheslav Suharnikov <arz.freezy@gmail.com>2017-07-25 10:48:08 +0300
committerVyatcheslav Suharnikov <arz.freezy@gmail.com>2017-07-25 11:20:48 +0300
commit4c7b4102dede53b9707fe3758a4a9ff9ccf87bf8 (patch)
treee692c278f343fc3d0ce5945c1fab5e7d10459ec7 /src/main/scala/xyz/driver/pdsuidomain/entities/DocumentHistory.scala
parenta835eef22830ab86a9f65194a6645f4f474ae0cc (diff)
downloadrest-query-4c7b4102dede53b9707fe3758a4a9ff9ccf87bf8.tar.gz
rest-query-4c7b4102dede53b9707fe3758a4a9ff9ccf87bf8.tar.bz2
rest-query-4c7b4102dede53b9707fe3758a4a9ff9ccf87bf8.zip
PDSUI-2145 Create own user history for Documents and Medical Records
Diffstat (limited to 'src/main/scala/xyz/driver/pdsuidomain/entities/DocumentHistory.scala')
-rw-r--r--src/main/scala/xyz/driver/pdsuidomain/entities/DocumentHistory.scala90
1 files changed, 90 insertions, 0 deletions
diff --git a/src/main/scala/xyz/driver/pdsuidomain/entities/DocumentHistory.scala b/src/main/scala/xyz/driver/pdsuidomain/entities/DocumentHistory.scala
new file mode 100644
index 0000000..a82da12
--- /dev/null
+++ b/src/main/scala/xyz/driver/pdsuidomain/entities/DocumentHistory.scala
@@ -0,0 +1,90 @@
+package xyz.driver.pdsuidomain.entities
+
+import java.time.{LocalDateTime, ZoneId}
+
+import xyz.driver.pdsuicommon.domain._
+import xyz.driver.pdsuicommon.logging._
+import xyz.driver.pdsuicommon.utils.Utils
+import xyz.driver.pdsuidomain.entities.DocumentHistory._
+
+object DocumentHistory {
+
+ implicit def toPhiString(x: DocumentHistory): PhiString = {
+ import x._
+ phi"DocumentHistory(id=$id, executor=$executor, documentId=$documentId, state=$state, action=$action, " +
+ phi"created=$created)"
+ }
+
+ sealed trait State
+ object State {
+ case object Extract extends State
+ case object Review extends State
+ case object Flag extends State
+
+ val All: Set[State] = Set[State](Extract, Review, Flag)
+
+ val fromString: PartialFunction[String, State] = {
+ case "Extract" => State.Extract
+ case "Review" => State.Review
+ case "Flag" => State.Flag
+ }
+
+ def stateToString(x: State): String = x match {
+ case State.Extract => "Extract"
+ case State.Review => "Review"
+ case State.Flag => "Flag"
+ }
+
+ implicit def toPhiString(x: State): PhiString =
+ Unsafe(Utils.getClassSimpleName(x.getClass))
+ }
+
+ sealed trait Action extends Product with Serializable {
+
+ def oneOf(xs: Action*): Boolean = xs.contains(this)
+
+ def oneOf(xs: Set[Action]): Boolean = xs.contains(this)
+
+ }
+
+ object Action {
+ case object Start extends Action
+ case object Submit extends Action
+ case object Unassign extends Action
+ case object Resolve extends Action
+ case object Flag extends Action
+ case object Archive extends Action
+
+ val All: Set[Action] =
+ Set[Action](Start, Submit, Unassign, Resolve, Flag, Archive)
+
+ val fromString: PartialFunction[String, Action] = {
+ case "Start" => Action.Start
+ case "Submit" => Action.Submit
+ case "Unassign" => Action.Unassign
+ case "Resolve" => Action.Resolve
+ case "Flag" => Action.Flag
+ case "Archive" => Action.Archive
+ }
+
+ def actionToString(x: Action): String = x match {
+ case Action.Start => "Start"
+ case Action.Submit => "Submit"
+ case Action.Unassign => "Unassign"
+ case Action.Resolve => "Resolve"
+ case Action.Flag => "Flag"
+ case Action.Archive => "Archive"
+ }
+
+ implicit def toPhiString(x: Action): PhiString =
+ Unsafe(Utils.getClassSimpleName(x.getClass))
+ }
+
+}
+
+final case class DocumentHistory(id: LongId[DocumentHistory],
+ executor: StringId[User],
+ documentId: LongId[Document],
+ state: State,
+ action: Action,
+ created: LocalDateTime = LocalDateTime.now(ZoneId.of("Z")))