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

import java.time.LocalDateTime

import xyz.driver.pdsuicommon.concurrent.BridgeUploadQueue
import play.api.libs.json.{Format, Json}

final case class ApiQueueUploadItem(kind: String,
                                    tag: String,
                                    created: LocalDateTime,
                                    attempts: Int,
                                    nextAttempt: LocalDateTime,
                                    completed: Boolean) {
  def toDomain = BridgeUploadQueue.Item(
    kind = kind,
    tag = tag,
    created = created,
    attempts = attempts,
    nextAttempt = nextAttempt,
    completed = true,
    dependencyKind = None,
    dependencyTag = None
  )
}

object ApiQueueUploadItem {

  def fromDomain(domain: BridgeUploadQueue.Item) = ApiQueueUploadItem(
    kind = domain.kind,
    tag = domain.tag,
    created = domain.created,
    attempts = domain.attempts,
    nextAttempt = domain.nextAttempt,
    completed = domain.completed
  )

  implicit val format: Format[ApiQueueUploadItem] = Json.format[ApiQueueUploadItem]
}