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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
|
module HTML.Session (
sessionCookie, doesSessionExist, withSessionCookie, withSessionCookieInfo,
SessionStore, sessionStore,
getSessionMaybeData, getSessionData,
putSessionData, removeSessionData, modifySessionData
) where
import Control.Monad ( unless, when )
import Data.List ( findIndex, init, intercalate, replace, split )
import Data.Maybe ( fromMaybe )
import System.Environment ( getEnv )
import System.IO ( IOMode(..), hGetContents, hPutStrLn, openFile
, stderr )
import System.Directory ( createDirectory, doesDirectoryExist, doesFileExist
, getDirectoryContents, getModificationTime
, removeFile )
import System.FilePath ( (</>) )
import System.IOExts ( exclusiveIO )
import Data.Time (ClockTime, addMinutes, clockTimeToInt, getClockTime )
import Crypto.Hash ( randomString )
import Data.Global
import HTML.Base
sessionLifespan :: Int
sessionLifespan = 60
sessionCookieName :: String
sessionCookieName = "currySessionId"
lastId :: GlobalP (Int, Int)
lastId = globalPersistent (inSessionDataDir "_CURRYSESSIONID_") (0, 0)
data SessionId = SessionId String
deriving (Eq, Read, Show)
getId :: SessionId -> String
getId (SessionId i) = i
getUnusedId :: IO SessionId
getUnusedId = do
ensureSessionDataDir
(ltime,lsid) <- safeReadGlobalP lastId (0,0)
clockTime <- getClockTime
if clockTimeToInt clockTime /= ltime
then writeGlobalP lastId (clockTimeToInt clockTime, 0)
else writeGlobalP lastId (clockTimeToInt clockTime, lsid+1)
rans <- randomString 30
return (SessionId (show (clockTimeToInt clockTime) ++ show (lsid+1) ++ rans))
doesSessionExist :: IO Bool
doesSessionExist = do
cookies <- getCookies
return $ maybe False (const True) (lookup sessionCookieName cookies)
getSessionId :: IO SessionId
getSessionId = do
cookies <- getCookies
case (lookup sessionCookieName cookies) of
Just sessionCookieValue -> return (SessionId sessionCookieValue)
Nothing -> getUnusedId
sessionCookie :: IO PageParam
sessionCookie = do
sessionId <- getSessionId
clockTime <- getClockTime
dirpath <- getScriptDirPath
return $ PageCookie sessionCookieName (getId sessionId)
[CookiePath (if null dirpath then "/" else dirpath),
CookieExpire (addMinutes sessionLifespan clockTime)]
getScriptDirPath :: IO String
getScriptDirPath = do
scriptname <- getEnv "SCRIPT_NAME"
let scriptpath = if null scriptname then []
else split (=='/') (tail scriptname)
if null scriptpath
then return ""
else return $ "/" ++ intercalate "/" (init scriptpath)
withSessionCookie :: HtmlPage -> IO HtmlPage
withSessionCookie p = do
cookie <- sessionCookie
return $ (p `addPageParam` cookie)
withSessionCookieInfo :: HtmlPage -> IO HtmlPage
withSessionCookieInfo p = do
hassession <- doesSessionExist
if hassession then withSessionCookie p
else cookieInfoPage
cookieInfoPage :: IO HtmlPage
cookieInfoPage = do
urlparam <- getUrlParameter
withSessionCookie $ headerPage "Cookie Info"
[ par [ htxt $ "This web site uses cookies for navigation and user " ++
"inputs and preferences. In order to proceed, "
, bold [href ('?' : urlparam) [htxt "please click here."]]]]
data SessionStore _ = SessionStore String
sessionStore :: (Read a, Show a) => String -> SessionStore a
sessionStore name = SessionStore name
sessionDataDir :: String
sessionDataDir = "sessiondata"
inSessionDataDir :: String -> String
inSessionDataDir filename = sessionDataDir </> filename
ensureSessionDataDir :: IO ()
ensureSessionDataDir = do
exsdd <- doesDirectoryExist sessionDataDir
unless exsdd $ createDirectory sessionDataDir
ensureSessionStoreDir :: SessionStore a -> IO ()
ensureSessionStoreDir (SessionStore sname) = do
ensureSessionDataDir
let storedir = inSessionDataDir sname
fexists <- doesFileExist storedir
when fexists $ removeFile storedir
exsdd <- doesDirectoryExist storedir
unless exsdd $ createDirectory storedir
sessionDataFile :: SessionStore a -> SessionId -> String
sessionDataFile (SessionStore sname) sid =
inSessionDataDir sname </> getId sid
readSessionDataFile :: Read a => SessionStore a -> SessionId -> IO (Maybe a)
readSessionDataFile sstore sid = exclusiveIO (f ++ ".LOCK") $ do
fexists <- doesFileExist f
if fexists
then do
cnt <- openFile f ReadMode >>= hGetContents
case reads cnt of
[(x,_)] -> return (Just x)
_ -> do hPutStrLn stderr $
"Cannot read session data in file: " ++ f ++
"\nFile contents:\n" ++ cnt
return Nothing
else return Nothing
where
f = sessionDataFile sstore sid
writeSessionDataFile :: Show a => SessionStore a -> SessionId -> a -> IO ()
writeSessionDataFile sstore sid v = do
let sdfile = sessionDataFile sstore sid
exclusiveIO (sdfile ++ ".LOCK") $ writeFile sdfile (show v ++ "\n")
getSessionMaybeData :: (Read a, Show a) =>
SessionStore a -> FormReader (Maybe a)
getSessionMaybeData sessionstore = toFormReader $ do
ensureSessionStoreDir sessionstore
sid <- getSessionId
readSessionDataFile sessionstore sid
getSessionData :: (Read a, Show a) => SessionStore a -> a -> FormReader a
getSessionData sessiondata defaultdata =
fmap (fromMaybe defaultdata) (getSessionMaybeData sessiondata)
putSessionData :: (Read a, Show a) => SessionStore a -> a -> IO ()
putSessionData sessionstore newdata = do
ensureSessionStoreDir sessionstore
sid <- getSessionId
writeSessionDataFile sessionstore sid newdata
cleanUpSessionStore sessionstore
modifySessionData :: (Read a, Show a) =>
SessionStore a -> a -> (a -> a) -> IO ()
modifySessionData sessiondata defaultdata upd = do
sd <- fromFormReader $ getSessionData sessiondata defaultdata
putSessionData sessiondata (upd sd)
removeSessionData :: (Read a, Show a) => SessionStore a -> IO ()
removeSessionData sstore = do
sid <- getSessionId
let sdfile = sessionDataFile sstore sid
exfile <- doesFileExist sdfile
when exfile $ removeFile sdfile
cleanUpSessionStore :: SessionStore a -> IO ()
cleanUpSessionStore sstore@(SessionStore sname) = do
ensureSessionStoreDir sstore
let sdir = inSessionDataDir sname
sdfiles <- fmap (filter (\fn -> head fn /= '.')) $ getDirectoryContents sdir
curtime <- getClockTime
mapM_ (deleteIfOld curtime) (map (sdir </>) sdfiles)
where
deleteIfOld curtime fn = do
ftime <- getModificationTime fn
when (addMinutes sessionLifespan ftime < curtime) $ removeFile fn
|