Created
March 15, 2017 15:11
-
-
Save mikeplus64/d5cc6ab33edb285f493abe588eae3175 to your computer and use it in GitHub Desktop.
elo db api
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{- stack runghc | |
--package servant-server | |
--package servant-js | |
--package servant | |
--package text | |
--package mtl | |
--package lens | |
--package esqueleto | |
--package persistent | |
--package persistent-template | |
--package persistent-sqlite | |
--package containers | |
--resolver lts-8.5 | |
--install-ghc -} | |
-- elo db api by mmike | |
-- | |
-- generates a javascript API given a specific url prefix | |
-- (maybe useful for putting it behind e.g. nginx) and starts | |
-- the associated server for it | |
-- | |
-- quick & dirty invocation: | |
-- $ stack teamsplit.hs url_prefix > api.js | |
-- $ stack teamsplit.hs http://localhost > api.js | |
-- | |
-- though compiling it is will let it run much faster: | |
-- $ stack ghc -- teamsplit.hs -O2 -threaded | |
-- $ ./teamsplit http://localhost > api.js | |
{-# LANGUAGE DataKinds #-} | |
{-# LANGUAGE DeriveGeneric #-} | |
{-# LANGUAGE ExistentialQuantification #-} | |
{-# LANGUAGE FlexibleInstances #-} | |
{-# LANGUAGE GeneralizedNewtypeDeriving #-} | |
{-# LANGUAGE MultiParamTypeClasses #-} | |
{-# LANGUAGE OverloadedStrings #-} | |
{-# LANGUAGE QuasiQuotes #-} | |
{-# LANGUAGE RecordWildCards #-} | |
{-# LANGUAGE StandaloneDeriving #-} | |
{-# LANGUAGE TemplateHaskell #-} | |
{-# LANGUAGE TypeFamilies #-} | |
{-# LANGUAGE TypeOperators #-} | |
import Control.Monad.IO.Class (liftIO) | |
import Control.Monad.Logger | |
import Control.Monad.Trans.Resource | |
import qualified Data.Aeson as JSON | |
import Data.List (foldl') | |
import Data.Map.Strict (Map) | |
import qualified Data.Map.Strict as Map | |
import Data.Proxy | |
import Data.Text (Text) | |
import qualified Data.Text as T | |
import qualified Data.Text.IO as T | |
import Data.Word | |
import Database.Esqueleto | |
import Database.Persist.Sqlite (ConnectionPool, createSqlitePool, | |
runMigration, runSqlPersistMPool, | |
runSqlPool) | |
import Database.Persist.TH (mkMigrate, mkPersist, | |
persistLowerCase, share, | |
sqlSettings) | |
import GHC.Generics (Generic) | |
import qualified Network.Wai.Handler.Warp as Warp (run) | |
import Servant | |
import Servant.JS | |
import System.Environment | |
type Player = Text | |
type Table = Text | |
type MapType = Text | |
data RatingsTable = RatingsTable | |
{ name :: !Table | |
, table :: Map Player (Map MapType Word) | |
} deriving (Eq, Show, Generic) | |
instance JSON.ToJSON RatingsTable | |
-------------------------------------------------------------------------------- | |
-- db model | |
share [mkPersist sqlSettings, mkMigrate "migrateAll"] [persistLowerCase| | |
Rating json | |
table Table | |
player Player | |
map MapType | |
elo Word | |
UniqueRating table player map | |
|] | |
type SqliteM = SqlPersistT (NoLoggingT (ResourceT IO)) | |
getTables :: SqliteM [Table] | |
getTables = map unValue <$> | |
(select . distinct . from $ \rating -> return (rating ^. RatingTable)) | |
getPlayers :: SqliteM [Player] | |
getPlayers = map unValue <$> | |
(select . distinct . from $ \rating -> return (rating ^. RatingPlayer)) | |
getMapTypes :: SqliteM [MapType] | |
getMapTypes = map unValue <$> | |
(select . distinct . from $ \rating -> return (rating ^. RatingMap)) | |
getTable :: Table -> SqliteM RatingsTable | |
getTable table = RatingsTable table | |
. foldl' (\acc (Entity _ Rating {..}) -> | |
Map.insertWith | |
Map.union | |
ratingPlayer | |
(Map.singleton ratingMap ratingElo) | |
acc) Map.empty | |
<$> (select . from $ \rating -> do | |
where_ (rating^.RatingTable ==. val table) | |
return rating) | |
setRating :: Table -> Player -> MapType -> Word -> SqliteM () | |
setRating table player maptype elo = () <$ upsert Rating | |
{ ratingTable = table | |
, ratingPlayer = player | |
, ratingMap = maptype | |
, ratingElo = elo | |
} [] | |
-------------------------------------------------------------------------------- | |
type Api = | |
"tables" :> Get '[JSON] [Table] | |
:<|> "players" :> Get '[JSON] [Player] | |
:<|> "maps" :> Get '[JSON] [MapType] | |
:<|> "players" | |
:> "rates" | |
:> Capture "table" Table | |
:> Capture "player" Player | |
:> Capture "map" MapType | |
:> Capture "elo" Word | |
:> Post '[JSON] Bool | |
:<|> "players" | |
:> "rates" | |
:> Capture "table" Table | |
:> Get '[JSON] RatingsTable | |
api :: Proxy Api | |
api = Proxy | |
server :: ConnectionPool -> Server Api | |
server pool = | |
sql getTables | |
:<|> sql getPlayers | |
:<|> sql getMapTypes | |
:<|> (\table player maptype elo -> do | |
sql (setRating table player maptype elo) | |
return True) | |
:<|> sql . getTable | |
where | |
sql :: SqlPersistT (NoLoggingT (ResourceT IO)) a -> Handler a | |
sql f = liftIO (runSqlPersistMPool f pool) | |
makeApplication :: IO Application | |
makeApplication = do | |
pool <- runStderrLoggingT (createSqlitePool "teamsplit.sqlite" 10) | |
runSqlPool (runMigration migrateAll) pool | |
return (serve api (server pool)) | |
main :: IO () | |
main = do | |
host:_ <- getArgs | |
T.putStrLn "// generated js API" | |
T.putStrLn (jsForAPI api (vanillaJSWith | |
defCommonGeneratorOptions{urlPrefix = T.pack host})) | |
Warp.run 80 =<< makeApplication |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
generates something like: