author | koda |
Sun, 14 Nov 2010 20:06:47 +0100 | |
branch | 0.9.14.1 |
changeset 4334 | 82cfbbab73da |
parent 4242 | 5e3c5fe2cb14 |
child 4337 | 85e02b1a8e8f |
permissions | -rw-r--r-- |
4242 | 1 |
{-# LANGUAGE CPP, ScopedTypeVariables #-} |
1804 | 2 |
module OfficialServer.DBInteraction |
3 |
( |
|
2869 | 4 |
startDBConnection |
1804 | 5 |
) where |
6 |
||
1979 | 7 |
import Prelude hiding (catch); |
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
1979
diff
changeset
|
8 |
import System.Process |
1804 | 9 |
import System.IO |
10 |
import Control.Concurrent |
|
2296
19f2f76dc346
Patch for compiling with 6.10 (define NEW_EXCEPTIONS to do that)
unc0rr
parents:
2245
diff
changeset
|
11 |
import qualified Control.Exception as Exception |
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
1979
diff
changeset
|
12 |
import Control.Monad |
2117
1ac0e10e546f
Add caching for accounts information (entries are stored in memory forever)
unc0rr
parents:
2116
diff
changeset
|
13 |
import qualified Data.Map as Map |
4334 | 14 |
import Data.Maybe |
1839
5dd4cb7fd7e5
Server now send ASKPASSWORD command to frontend when user has web account
unc0rr
parents:
1834
diff
changeset
|
15 |
import System.Log.Logger |
2126 | 16 |
import Data.Time |
1833 | 17 |
------------------------ |
18 |
import CoreTypes |
|
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
1979
diff
changeset
|
19 |
import Utils |
1804 | 20 |
|
1921 | 21 |
localAddressList = ["127.0.0.1", "0:0:0:0:0:0:0:1", "0:0:0:0:0:ffff:7f00:1"] |
1839
5dd4cb7fd7e5
Server now send ASKPASSWORD command to frontend when user has web account
unc0rr
parents:
1834
diff
changeset
|
22 |
|
4242 | 23 |
fakeDbConnection serverInfo = do |
2869 | 24 |
q <- readChan $ dbQueries serverInfo |
25 |
case q of |
|
26 |
CheckAccount clUid _ clHost -> do |
|
27 |
writeChan (coreChan serverInfo) $ ClientAccountInfo (clUid, |
|
28 |
if clHost `elem` localAddressList then Admin else Guest) |
|
29 |
ClearCache -> return () |
|
30 |
SendStats {} -> return () |
|
1857
b835395659e2
Fake database connection with routine which marks all users as guests, when no database host was specified
unc0rr
parents:
1847
diff
changeset
|
31 |
|
4242 | 32 |
fakeDbConnection serverInfo |
33 |
||
1857
b835395659e2
Fake database connection with routine which marks all users as guests, when no database host was specified
unc0rr
parents:
1847
diff
changeset
|
34 |
|
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
1979
diff
changeset
|
35 |
#if defined(OFFICIAL_SERVER) |
2184 | 36 |
pipeDbConnectionLoop queries coreChan hIn hOut accountsCache = |
2869 | 37 |
Exception.handle (\(e :: Exception.IOException) -> warningM "Database" (show e) >> return accountsCache) $ |
38 |
do |
|
39 |
q <- readChan queries |
|
40 |
updatedCache <- case q of |
|
41 |
CheckAccount clUid clNick _ -> do |
|
42 |
let cacheEntry = clNick `Map.lookup` accountsCache |
|
43 |
currentTime <- getCurrentTime |
|
44 |
if (isNothing cacheEntry) || (currentTime `diffUTCTime` (fst . fromJust) cacheEntry > 2 * 24 * 60 * 60) then |
|
45 |
do |
|
46 |
hPutStrLn hIn $ show q |
|
47 |
hFlush hIn |
|
2117
1ac0e10e546f
Add caching for accounts information (entries are stored in memory forever)
unc0rr
parents:
2116
diff
changeset
|
48 |
|
2869 | 49 |
(clId, accountInfo) <- hGetLine hOut >>= (maybeException . maybeRead) |
2117
1ac0e10e546f
Add caching for accounts information (entries are stored in memory forever)
unc0rr
parents:
2116
diff
changeset
|
50 |
|
2869 | 51 |
writeChan coreChan $ ClientAccountInfo (clId, accountInfo) |
2117
1ac0e10e546f
Add caching for accounts information (entries are stored in memory forever)
unc0rr
parents:
2116
diff
changeset
|
52 |
|
2869 | 53 |
return $ Map.insert clNick (currentTime, accountInfo) accountsCache |
54 |
`Exception.onException` |
|
55 |
(unGetChan queries q) |
|
56 |
else |
|
57 |
do |
|
58 |
writeChan coreChan $ ClientAccountInfo (clUid, snd $ fromJust cacheEntry) |
|
59 |
return accountsCache |
|
2155
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2129
diff
changeset
|
60 |
|
2869 | 61 |
ClearCache -> return Map.empty |
62 |
SendStats {} -> ( |
|
63 |
(hPutStrLn hIn $ show q) >> |
|
64 |
hFlush hIn >> |
|
65 |
return accountsCache) |
|
66 |
`Exception.onException` |
|
67 |
(unGetChan queries q) |
|
2184 | 68 |
|
2869 | 69 |
pipeDbConnectionLoop queries coreChan hIn hOut updatedCache |
70 |
where |
|
71 |
maybeException (Just a) = return a |
|
72 |
maybeException Nothing = ioError (userError "Can't read") |
|
1804 | 73 |
|
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
1979
diff
changeset
|
74 |
|
2117
1ac0e10e546f
Add caching for accounts information (entries are stored in memory forever)
unc0rr
parents:
2116
diff
changeset
|
75 |
pipeDbConnection accountsCache serverInfo = do |
2869 | 76 |
updatedCache <- |
77 |
Exception.handle (\(e :: Exception.IOException) -> warningM "Database" (show e) >> return accountsCache) $ do |
|
78 |
(Just hIn, Just hOut, _, _) <- createProcess (proc "./OfficialServer/extdbinterface" []) |
|
79 |
{std_in = CreatePipe, |
|
80 |
std_out = CreatePipe} |
|
81 |
hSetBuffering hIn LineBuffering |
|
82 |
hSetBuffering hOut LineBuffering |
|
1804 | 83 |
|
2869 | 84 |
hPutStrLn hIn $ dbHost serverInfo |
85 |
hPutStrLn hIn $ dbLogin serverInfo |
|
86 |
hPutStrLn hIn $ dbPassword serverInfo |
|
87 |
pipeDbConnectionLoop (dbQueries serverInfo) (coreChan serverInfo) hIn hOut accountsCache |
|
2184 | 88 |
|
2869 | 89 |
threadDelay (3 * 10^6) |
90 |
pipeDbConnection updatedCache serverInfo |
|
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
1979
diff
changeset
|
91 |
|
2126 | 92 |
dbConnectionLoop serverInfo = |
2869 | 93 |
if (not . null $ dbHost serverInfo) then |
94 |
pipeDbConnection Map.empty serverInfo |
|
95 |
else |
|
96 |
fakeDbConnection serverInfo |
|
1979 | 97 |
#else |
98 |
dbConnectionLoop = fakeDbConnection |
|
99 |
#endif |
|
1804 | 100 |
|
1833 | 101 |
startDBConnection serverInfo = |
2869 | 102 |
forkIO $ dbConnectionLoop serverInfo |