module Yesod.Core.Internal.Session
( encodeClientSession
, decodeClientSession
, clientSessionDateCacher
, ClientSessionDateCache(..)
, SaveSession
, SessionBackend(..)
) where
import qualified Web.ClientSession as CS
import Data.Serialize
import Data.Time
import Data.ByteString (ByteString)
import Control.Monad (guard)
import Yesod.Core.Types
import Yesod.Core.Internal.Util
import Control.AutoUpdate
encodeClientSession :: CS.Key
-> CS.IV
-> ClientSessionDateCache
-> ByteString
-> SessionMap
-> ByteString
encodeClientSession :: Key
-> IV
-> ClientSessionDateCache
-> ByteString
-> SessionMap
-> ByteString
encodeClientSession Key
key IV
iv ClientSessionDateCache
date ByteString
rhost SessionMap
session' =
Key -> IV -> ByteString -> ByteString
CS.encrypt Key
key IV
iv (ByteString -> ByteString) -> ByteString -> ByteString
forall a b. (a -> b) -> a -> b
$ SessionCookie -> ByteString
forall a. Serialize a => a -> ByteString
encode (SessionCookie -> ByteString) -> SessionCookie -> ByteString
forall a b. (a -> b) -> a -> b
$ Either UTCTime ByteString
-> ByteString -> SessionMap -> SessionCookie
SessionCookie Either UTCTime ByteString
forall a. Either a ByteString
expires ByteString
rhost SessionMap
session'
where expires :: Either a ByteString
expires = ByteString -> Either a ByteString
forall a b. b -> Either a b
Right (ClientSessionDateCache -> ByteString
csdcExpiresSerialized ClientSessionDateCache
date)
decodeClientSession :: CS.Key
-> ClientSessionDateCache
-> ByteString
-> ByteString
-> Maybe SessionMap
decodeClientSession :: Key
-> ClientSessionDateCache
-> ByteString
-> ByteString
-> Maybe SessionMap
decodeClientSession Key
key ClientSessionDateCache
date ByteString
rhost ByteString
encrypted = do
ByteString
decrypted <- Key -> ByteString -> Maybe ByteString
CS.decrypt Key
key ByteString
encrypted
SessionCookie (Left UTCTime
expire) ByteString
rhost' SessionMap
session' <-
(String -> Maybe SessionCookie)
-> (SessionCookie -> Maybe SessionCookie)
-> Either String SessionCookie
-> Maybe SessionCookie
forall a c b. (a -> c) -> (b -> c) -> Either a b -> c
either (Maybe SessionCookie -> String -> Maybe SessionCookie
forall a b. a -> b -> a
const Maybe SessionCookie
forall a. Maybe a
Nothing) SessionCookie -> Maybe SessionCookie
forall a. a -> Maybe a
Just (Either String SessionCookie -> Maybe SessionCookie)
-> Either String SessionCookie -> Maybe SessionCookie
forall a b. (a -> b) -> a -> b
$ ByteString -> Either String SessionCookie
forall a. Serialize a => ByteString -> Either String a
decode ByteString
decrypted
Bool -> Maybe ()
forall (f :: * -> *). Alternative f => Bool -> f ()
guard (Bool -> Maybe ()) -> Bool -> Maybe ()
forall a b. (a -> b) -> a -> b
$ UTCTime
expire UTCTime -> UTCTime -> Bool
forall a. Ord a => a -> a -> Bool
> ClientSessionDateCache -> UTCTime
csdcNow ClientSessionDateCache
date
Bool -> Maybe ()
forall (f :: * -> *). Alternative f => Bool -> f ()
guard (Bool -> Maybe ()) -> Bool -> Maybe ()
forall a b. (a -> b) -> a -> b
$ ByteString
rhost' ByteString -> ByteString -> Bool
forall a. Eq a => a -> a -> Bool
== ByteString
rhost
SessionMap -> Maybe SessionMap
forall (m :: * -> *) a. Monad m => a -> m a
return SessionMap
session'
clientSessionDateCacher ::
NominalDiffTime
-> IO (IO ClientSessionDateCache, IO ())
clientSessionDateCacher :: NominalDiffTime -> IO (IO ClientSessionDateCache, IO ())
clientSessionDateCacher NominalDiffTime
validity = do
IO ClientSessionDateCache
getClientSessionDateCache <- UpdateSettings ClientSessionDateCache
-> IO (IO ClientSessionDateCache)
forall a. UpdateSettings a -> IO (IO a)
mkAutoUpdate UpdateSettings ()
defaultUpdateSettings
{ updateAction :: IO ClientSessionDateCache
updateAction = IO ClientSessionDateCache
getUpdated
, updateFreq :: Int
updateFreq = Int
10000000
}
(IO ClientSessionDateCache, IO ())
-> IO (IO ClientSessionDateCache, IO ())
forall (m :: * -> *) a. Monad m => a -> m a
return (IO ClientSessionDateCache
getClientSessionDateCache, () -> IO ()
forall (m :: * -> *) a. Monad m => a -> m a
return ())
where
getUpdated :: IO ClientSessionDateCache
getUpdated = do
UTCTime
now <- IO UTCTime
getCurrentTime
let expires :: UTCTime
expires = NominalDiffTime
validity NominalDiffTime -> UTCTime -> UTCTime
`addUTCTime` UTCTime
now
expiresS :: ByteString
expiresS = Put -> ByteString
runPut (UTCTime -> Put
putTime UTCTime
expires)
ClientSessionDateCache -> IO ClientSessionDateCache
forall (m :: * -> *) a. Monad m => a -> m a
return (ClientSessionDateCache -> IO ClientSessionDateCache)
-> ClientSessionDateCache -> IO ClientSessionDateCache
forall a b. (a -> b) -> a -> b
$! UTCTime -> UTCTime -> ByteString -> ClientSessionDateCache
ClientSessionDateCache UTCTime
now UTCTime
expires ByteString
expiresS