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

import java.time.{ZoneId, ZonedDateTime}

import play.api.libs.functional.syntax._
import play.api.libs.json._
import xyz.driver.pdsuidomain.entities.DocumentIssue

final case class ApiDocumentIssue(id: Long,
                                  startPage: Option[Double],
                                  endPage: Option[Double],
                                  text: String,
                                  lastUpdate: ZonedDateTime,
                                  userId: String,
                                  isDraft: Boolean,
                                  archiveRequired: Boolean)

object ApiDocumentIssue {
  implicit val format: Format[ApiDocumentIssue] = (
    (JsPath \ "id").format[Long] and
      (JsPath \ "startPage").formatNullable[Double] and
      (JsPath \ "endPage").formatNullable[Double] and
      (JsPath \ "text").format[String] and
      (JsPath \ "lastUpdate").format[ZonedDateTime] and
      (JsPath \ "userId").format[String] and
      (JsPath \ "isDraft").format[Boolean] and
      (JsPath \ "archiveRequired").format[Boolean]
  )(ApiDocumentIssue.apply, unlift(ApiDocumentIssue.unapply))

  def fromDomain(x: DocumentIssue) = ApiDocumentIssue(
    id = x.id.id,
    startPage = x.startPage,
    endPage = x.endPage,
    text = x.text,
    lastUpdate = ZonedDateTime.of(x.lastUpdate, ZoneId.of("Z")),
    userId = x.userId.id,
    isDraft = x.isDraft,
    archiveRequired = x.archiveRequired
  )
}