aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/formats/json/criterion/ApiNewCriterion.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/formats/json/criterion/ApiNewCriterion.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/formats/json/criterion/ApiNewCriterion.scala')
-rw-r--r--src/main/scala/xyz/driver/pdsuidomain/formats/json/criterion/ApiNewCriterion.scala41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/main/scala/xyz/driver/pdsuidomain/formats/json/criterion/ApiNewCriterion.scala b/src/main/scala/xyz/driver/pdsuidomain/formats/json/criterion/ApiNewCriterion.scala
new file mode 100644
index 0000000..85c91d5
--- /dev/null
+++ b/src/main/scala/xyz/driver/pdsuidomain/formats/json/criterion/ApiNewCriterion.scala
@@ -0,0 +1,41 @@
+package xyz.driver.pdsuidomain.formats.json.criterion
+
+import xyz.driver.pdsuicommon.domain.{LongId, StringId}
+import xyz.driver.pdsuicommon.json.Serialization.seqJsonFormat
+import xyz.driver.pdsuidomain.entities._
+import play.api.libs.functional.syntax._
+import play.api.libs.json._
+import xyz.driver.pdsuidomain.formats.json.label.ApiCriterionLabel
+import xyz.driver.pdsuidomain.services.CriterionService.RichCriterion
+
+final case class ApiNewCriterion(meta: Option[String],
+ arms: Option[Seq[Long]],
+ text: Option[String],
+ labels: Seq[ApiCriterionLabel],
+ trialId: String) {
+
+ def toDomain = RichCriterion(
+ criterion = Criterion(
+ id = LongId(0L),
+ meta = meta.getOrElse(""),
+ trialId = StringId(trialId),
+ isCompound = false,
+ text = text
+ ),
+ armIds = arms.getOrElse(Seq.empty).map(LongId[Arm]),
+ labels = labels.map(_.toDomain(LongId(Long.MaxValue))) // A developer should specify right criterionId himself
+ )
+}
+
+object ApiNewCriterion {
+
+ implicit val format: Format[ApiNewCriterion] = (
+ (JsPath \ "meta").formatNullable(Format(Reads { x =>
+ JsSuccess(Json.stringify(x))
+ }, Writes[String](Json.parse))) and
+ (JsPath \ "arms").formatNullable(seqJsonFormat[Long]) and
+ (JsPath \ "text").formatNullable[String] and
+ (JsPath \ "labels").format(seqJsonFormat[ApiCriterionLabel]) and
+ (JsPath \ "trialId").format[String]
+ ) (ApiNewCriterion.apply, unlift(ApiNewCriterion.unapply))
+}