aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/formats/json/patientlabel.scala
blob: 64993186c774f203ba3c0839f3a88bc1c2635a33 (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.formats.json

import spray.json._
import xyz.driver.entities.labels.LabelValue
import xyz.driver.formats.json.labels._
import xyz.driver.pdsuidomain.entities._
import xyz.driver.pdsuidomain.services.PatientLabelService.RichPatientLabel
import xyz.driver.formats.json.labels._
import xyz.driver.pdsuidomain.formats.json.record._
import xyz.driver.pdsuidomain.formats.json.document._

object patientlabel {
  import DefaultJsonProtocol._
  import common._

  def applyUpdateToPatientLabel(json: JsValue, orig: PatientLabel): PatientLabel = json match {
    case JsObject(fields) =>
      val primaryValue = fields
        .get("primaryValue")
        .map(_.convertTo[LabelValue])
        .getOrElse(orig.primaryValue)

      val verifiedPrimaryValue = fields
        .get("verifiedPrimaryValue")
        .map(_.convertTo[LabelValue])
        .getOrElse(orig.verifiedPrimaryValue)

      orig.copy(
        primaryValue = primaryValue,
        verifiedPrimaryValue = verifiedPrimaryValue
      )

    case _ => deserializationError(s"Expected Json Object as PatientLabel, but got $json")
  }

  implicit val patientLabelFormat: RootJsonFormat[PatientLabel] = jsonFormat8(PatientLabel.apply)

  implicit val richPatientLabelFormat: RootJsonFormat[RichPatientLabel] = new RootJsonFormat[RichPatientLabel] {
    override def read(json: JsValue): RichPatientLabel = {
      val isVerified =
        json.asJsObject.fields.getOrElse("isVerified", deserializationError("isVerified field is missing"))
      RichPatientLabel(json.convertTo[PatientLabel], isVerified.convertTo[Boolean])
    }
    override def write(obj: RichPatientLabel): JsValue = {
      val labelFields = obj.patientLabel.toJson.asJsObject.fields
      JsObject(labelFields ++ Map("isVerified" -> obj.isVerified.toJson))
    }
  }

  implicit val patientLabelEvidenceWriter: RootJsonWriter[PatientLabelEvidenceView] =
    new RootJsonWriter[PatientLabelEvidenceView] {
      override def write(evidence: PatientLabelEvidenceView): JsValue =
        JsObject(
          "id"           -> evidence.id.toJson,
          "value"        -> evidence.value.toJson,
          "evidenceText" -> evidence.evidenceText.toJson,
          "documentId"   -> evidence.documentId.toJson,
          "evidenceId"   -> evidence.evidenceId.toJson,
          "reportId"     -> evidence.reportId.toJson,
          "documentType" -> evidence.documentType.toJson,
          "date"         -> evidence.date.toJson,
          "providerType" -> evidence.providerType.toJson
        )
    }

}