From ef9517e1b8f599fbdd15c474cf7dfea61e803c2f Mon Sep 17 00:00:00 2001 From: Kseniya Tomskikh Date: Fri, 4 Aug 2017 17:57:12 +0600 Subject: PDSUI-2188 Created and fixed spray json formats for tric and rep --- .../json/sprayformats/patienthypothesis.scala | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/main/scala/xyz/driver/pdsuidomain/formats/json/sprayformats/patienthypothesis.scala (limited to 'src/main/scala/xyz/driver/pdsuidomain/formats/json/sprayformats/patienthypothesis.scala') diff --git a/src/main/scala/xyz/driver/pdsuidomain/formats/json/sprayformats/patienthypothesis.scala b/src/main/scala/xyz/driver/pdsuidomain/formats/json/sprayformats/patienthypothesis.scala new file mode 100644 index 0000000..4f2783c --- /dev/null +++ b/src/main/scala/xyz/driver/pdsuidomain/formats/json/sprayformats/patienthypothesis.scala @@ -0,0 +1,37 @@ +package xyz.driver.pdsuidomain.formats.json.sprayformats + +import spray.json._ +import xyz.driver.pdsuidomain.entities._ + +object patienthypothesis { + import DefaultJsonProtocol._ + import common._ + + def applyUpdateToPatientHypothesis(json: JsValue, orig: PatientHypothesis): PatientHypothesis = json match { + case JsObject(fields) => + val rationale = if (fields.contains("rationale")) { + fields.get("rationale").map(_.convertTo[String]) + } else orig.rationale + + orig.copy(rationale = rationale) + + case _ => deserializationError(s"Expected Json Object as partial PatientHypothesis, but got $json") + } + + implicit val patientHypothesisWriter: JsonWriter[(PatientHypothesis, Boolean)] = + new JsonWriter[(PatientHypothesis, Boolean)] { + override def write(obj: (PatientHypothesis, Boolean)): JsValue = { + val patientHypothesis = obj._1 + val isRationaleRequired = obj._2 + JsObject( + "id" -> patientHypothesis.id.toJson, + "patientId" -> patientHypothesis.patientId.toJson, + "hypothesisId" -> patientHypothesis.hypothesisId.toJson, + "matchedTrials" -> patientHypothesis.matchedTrials.toJson, + "rationale" -> patientHypothesis.rationale.toJson, + "isRationaleRequired" -> isRationaleRequired.toJson + ) + } + } + +} -- cgit v1.2.3