aboutsummaryrefslogtreecommitdiff
path: root/src/common/Model/User.hs
blob: 8c64bc2a46648dbed8f325b70ff8154c7e298b81 (plain)
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
{-# LANGUAGE DeriveGeneric #-}

module Common.Model.User
  ( UserId
  , User(..)
  , find
  ) where

import Data.Aeson (FromJSON, ToJSON)
import qualified Data.List as L
import Data.Int (Int64)
import Data.Text (Text)
import Data.Time (UTCTime)
import GHC.Generics (Generic)

type UserId = Int64

data User = User
  { _user_id :: UserId
  , _user_creation :: UTCTime
  , _user_email :: Text
  , _user_name :: Text
  } deriving (Show, Generic)

instance FromJSON User
instance ToJSON User

find :: UserId -> [User] -> Maybe User
find userId users = L.find ((== userId) . _user_id) users