author | unc0rr |
Sat, 24 Aug 2013 00:13:15 +0400 | |
branch | 0.9.19 |
changeset 9138 | 9e94a9bc8c7e |
parent 8924 | 13ac59499066 |
permissions | -rw-r--r-- |
4906 | 1 |
{-# LANGUAGE ScopedTypeVariables, OverloadedStrings #-} |
2348 | 2 |
|
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
3 |
module Main where |
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
4 |
|
2117
1ac0e10e546f
Add caching for accounts information (entries are stored in memory forever)
unc0rr
parents:
2116
diff
changeset
|
5 |
import Prelude hiding (catch) |
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
6 |
import Control.Monad |
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
7 |
import Control.Exception |
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
8 |
import System.IO |
4932 | 9 |
import Data.Maybe |
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
10 |
import Database.HDBC |
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
11 |
import Database.HDBC.MySQL |
9138 | 12 |
import Data.List (lookup) |
13 |
import qualified Data.ByteString.Char8 as B |
|
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
14 |
-------------------------- |
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
15 |
import CoreTypes |
9138 | 16 |
import Utils |
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
17 |
|
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
18 |
|
2172 | 19 |
dbQueryAccount = |
8909 | 20 |
"SELECT users.pass, users_roles.rid FROM users LEFT JOIN users_roles ON (users.uid = users_roles.uid AND users_roles.rid = 3) WHERE users.name = ?" |
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
21 |
|
2172 | 22 |
dbQueryStats = |
6040 | 23 |
"INSERT INTO gameserver_stats (players, rooms, last_update) VALUES (?, ?, UNIX_TIMESTAMP())" |
2172 | 24 |
|
9138 | 25 |
dbQueryAchievement = |
26 |
"INSERT INTO achievements (typeid, userid, value, filename, location) \ |
|
27 |
\ VALUES ((SELECT id FROM achievement_types WHERE name = ?), (SELECT uid FROM users WHERE name = ?), \ |
|
28 |
\ ?, ?, ?)" |
|
29 |
||
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
30 |
dbInteractionLoop dbConn = forever $ do |
4932 | 31 |
q <- liftM read getLine |
2869 | 32 |
hPutStrLn stderr $ show q |
4921 | 33 |
|
2869 | 34 |
case q of |
4921 | 35 |
CheckAccount clId clUid clNick _ -> do |
2869 | 36 |
statement <- prepare dbConn dbQueryAccount |
4932 | 37 |
execute statement [SqlByteString clNick] |
2869 | 38 |
passAndRole <- fetchRow statement |
39 |
finish statement |
|
8924 | 40 |
let response = |
2919 | 41 |
if isJust passAndRole then |
2869 | 42 |
( |
4921 | 43 |
clId, |
2869 | 44 |
clUid, |
45 |
HasAccount |
|
4932 | 46 |
(fromSql . head . fromJust $ passAndRole) |
47 |
(fromSql (last . fromJust $ passAndRole) == Just (3 :: Int)) |
|
2869 | 48 |
) |
2919 | 49 |
else |
4921 | 50 |
(clId, clUid, Guest) |
4932 | 51 |
print response |
2869 | 52 |
hFlush stdout |
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
53 |
|
2869 | 54 |
SendStats clients rooms -> |
55 |
run dbConn dbQueryStats [SqlInt32 $ fromIntegral clients, SqlInt32 $ fromIntegral rooms] >> return () |
|
9138 | 56 |
--StoreAchievements (B.pack fileName) (map toPair teams) info |
57 |
StoreAchievements fileName teams info -> |
|
58 |
mapM_ (run dbConn dbQueryAchievement) $ (parseStats fileName teams) info |
|
2172 | 59 |
|
9138 | 60 |
<<<<<<< local |
61 |
StoreAchievements {} -> return () |
|
62 |
||
63 |
======= |
|
64 |
parseStats :: B.ByteString -> [(B.ByteString, B.ByteString)] -> [B.ByteString] -> [[SqlValue]] |
|
65 |
parseStats fileName teams = ps |
|
66 |
where |
|
67 |
ps ("DRAW" : bs) = ps bs |
|
68 |
ps ("WINNERS" : n : bs) = ps $ drop (readInt_ n) bs |
|
69 |
ps ("ACHIEVEMENT" : typ : teamname : location : value : bs) = |
|
70 |
[SqlByteString typ |
|
71 |
, SqlByteString $ fromMaybe "" (lookup teamname teams) |
|
72 |
, SqlInt32 (readInt_ value) |
|
73 |
, SqlByteString fileName |
|
74 |
, SqlByteString location |
|
75 |
] : ps bs |
|
76 |
>>>>>>> other |
|
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
77 |
|
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
78 |
dbConnectionLoop mySQLConnectionInfo = |
4906 | 79 |
Control.Exception.handle (\(e :: IOException) -> hPutStrLn stderr $ show e) $ handleSqlError $ |
2869 | 80 |
bracket |
81 |
(connectMySQL mySQLConnectionInfo) |
|
4932 | 82 |
disconnect |
83 |
dbInteractionLoop |
|
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
84 |
|
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
85 |
|
4921 | 86 |
--processRequest :: DBQuery -> IO String |
87 |
--processRequest (CheckAccount clId clUid clNick clHost) = return $ show (clclId, clUid, Guest) |
|
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
88 |
|
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
89 |
main = do |
2869 | 90 |
dbHost <- getLine |
4982
3572eaf14340
Add dbName parameter to .ini file, fix some warnings
unc0rr
parents:
4932
diff
changeset
|
91 |
dbName <- getLine |
2869 | 92 |
dbLogin <- getLine |
93 |
dbPassword <- getLine |
|
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
94 |
|
4982
3572eaf14340
Add dbName parameter to .ini file, fix some warnings
unc0rr
parents:
4932
diff
changeset
|
95 |
let mySQLConnectInfo = defaultMySQLConnectInfo {mysqlHost = dbHost, mysqlDatabase = dbName, mysqlUser = dbLogin, mysqlPassword = dbPassword} |
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
diff
changeset
|
96 |
|
2869 | 97 |
dbConnectionLoop mySQLConnectInfo |