aboutsummaryrefslogtreecommitdiff
path: root/src/Sproxy/Application/Cookie.hs
blob: 07cc1624a1045c4d6f02b084e486ce8a94dbc1dc (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module Sproxy.Application.Cookie (
  AuthCookie(..)
, AuthUser(..)
, cookieDecode
, cookieEncode
) where

import Data.ByteString (ByteString)
import Foreign.C.Types (CTime(..))
import qualified Data.Serialize as DS

import qualified Sproxy.Application.State as State

data AuthUser = AuthUser {
  auEmail      :: String
, auGivenName  :: String
, auFamilyName :: String
}

data AuthCookie = AuthCookie {
  acUser   :: AuthUser
, acExpiry :: CTime
}

instance DS.Serialize AuthCookie where
  put c = DS.put (auEmail u, auGivenName u, auFamilyName u, x)
          where u = acUser c
                x = (\(CTime i) -> i) $ acExpiry c
  get = do
    (e, n, f, x) <- DS.get
    return AuthCookie {
        acUser = AuthUser { auEmail = e, auGivenName = n, auFamilyName = f }
      , acExpiry = CTime x
      }


cookieDecode :: ByteString -> ByteString -> Either String AuthCookie
cookieDecode key d = State.decode key d >>= DS.decode


cookieEncode :: ByteString -> AuthCookie -> ByteString
cookieEncode key = State.encode key . DS.encode