aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/formats/json/user/ApiUser.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/xyz/driver/pdsuidomain/formats/json/user/ApiUser.scala')
-rw-r--r--src/main/scala/xyz/driver/pdsuidomain/formats/json/user/ApiUser.scala32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/main/scala/xyz/driver/pdsuidomain/formats/json/user/ApiUser.scala b/src/main/scala/xyz/driver/pdsuidomain/formats/json/user/ApiUser.scala
new file mode 100644
index 0000000..c2653ec
--- /dev/null
+++ b/src/main/scala/xyz/driver/pdsuidomain/formats/json/user/ApiUser.scala
@@ -0,0 +1,32 @@
+package xyz.driver.pdsuidomain.formats.json.user
+
+import java.time.{ZoneId, ZonedDateTime}
+
+import xyz.driver.pdsuicommon.domain.User
+import play.api.data.validation.ValidationError
+import play.api.libs.functional.syntax._
+import play.api.libs.json._
+
+final case class ApiUser(id: Long, email: String, name: String, roleId: String, latestActivity: Option[ZonedDateTime])
+
+object ApiUser {
+
+ implicit val format: Format[ApiUser] = (
+ (JsPath \ "id").format[Long] and
+ (JsPath \ "email").format[String](Reads.email) and
+ (JsPath \ "name").format[String] and
+ (JsPath \ "roleId").format[String](Format(Reads.of[String].filter(ValidationError("unknown role"))({
+ case x if UserRole.roleFromString.isDefinedAt(x) => true
+ case _ => false
+ }), Writes.of[String])) and
+ (JsPath \ "latestActivity").formatNullable[ZonedDateTime]
+ ) (ApiUser.apply, unlift(ApiUser.unapply))
+
+ def fromDomain(user: User) = ApiUser(
+ user.id.id,
+ user.email.value,
+ user.name,
+ UserRole.roleToString(user.role),
+ user.latestActivity.map(ZonedDateTime.of(_, ZoneId.of("Z")))
+ )
+}