2023-05-26 01:39:50 +02:00
|
|
|
module App.UserPublic where
|
|
|
|
|
|
|
|
import Prelude
|
|
|
|
|
|
|
|
import Data.Codec.Argonaut (JsonCodec)
|
|
|
|
import Data.Codec.Argonaut as CA
|
|
|
|
import Data.Codec.Argonaut.Record as CAR
|
|
|
|
import Data.Newtype (class Newtype)
|
|
|
|
|
2023-05-27 12:26:03 +02:00
|
|
|
-- | Currently not the real type.
|
|
|
|
-- | Lacks 'profile' and 'date_registration' attributes.
|
|
|
|
-- type UserPublic row = { login :: String, uid :: Int | row }
|
|
|
|
-- TODO: add profile :: JSON any, date_registration :: Maybe Time
|
|
|
|
type UserPublic = { login :: String, uid :: Int }
|
2023-05-26 01:39:50 +02:00
|
|
|
|
|
|
|
-- | UserPublic.codec can be used to parse and encode public user info,
|
|
|
|
-- | which can be exchanged in different messages.
|
|
|
|
codec :: JsonCodec UserPublic
|
|
|
|
codec = CA.object "UserPublic" (CAR.record { "login": CA.string, "uid": CA.int })
|