aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportTrialWithLabels.scala
blob: de76ac0a2ad558ac7e270f624e132ae8f8d31e43 (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
package xyz.driver.pdsuidomain.formats.json.export

import java.time.ZoneId

import play.api.libs.functional.syntax._
import play.api.libs.json.{Format, JsPath}
import xyz.driver.pdsuidomain.entities.export.trial.ExportTrialWithLabels

final case class ApiExportTrialWithLabels(nctId: String,
                                          trialId: String,
                                          condition: String,
                                          lastReviewed: Long,
                                          labelVersion: Long,
                                          arms: List[ApiExportTrialArm],
                                          criteria: List[ApiExportTrialLabelCriterion])

object ApiExportTrialWithLabels {

  implicit val format: Format[ApiExportTrialWithLabels] = (
    (JsPath \ "nctId").format[String] and
      (JsPath \ "trialId").format[String] and
      (JsPath \ "disease").format[String] and
      (JsPath \ "lastReviewed").format[Long] and
      (JsPath \ "labelVersion").format[Long] and
      (JsPath \ "arms").format[List[ApiExportTrialArm]] and
      (JsPath \ "criteria").format[List[ApiExportTrialLabelCriterion]]
  )(ApiExportTrialWithLabels.apply, unlift(ApiExportTrialWithLabels.unapply))

  def fromDomain(x: ExportTrialWithLabels) = ApiExportTrialWithLabels(
    nctId = x.nctId.id,
    trialId = x.trialId.toString,
    condition = x.condition,
    lastReviewed = x.lastReviewed.atZone(ZoneId.of("Z")).toEpochSecond,
    labelVersion = x.labelVersion,
    arms = x.arms.map(ApiExportTrialArm.fromDomain),
    criteria = x.criteria.map(ApiExportTrialLabelCriterion.fromDomain)
  )
}