aboutsummaryrefslogtreecommitdiff
path: root/src/server/Conf.hs
blob: f66eb5e3bcab4ce3c069675ae0a2b1a9e44fbe4b (plain)
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
{-# LANGUAGE OverloadedStrings #-}

module Conf
  ( getConf
  , Conf(..)
  ) where

import Data.Text (Text)
import qualified Data.ConfigManager as Conf

data Conf = Conf
  { hostname :: Text
  , port :: Int
  , signInExpirationMn :: Int
  , currency :: Text
  } deriving (Read, Eq, Show)

getConf :: FilePath -> IO (Either Text Conf)
getConf path =
  (flip fmap) (Conf.readConfig path) (\configOrError -> do
    conf <- configOrError
    Conf <$>
      Conf.lookup "hostname" conf <*>
      Conf.lookup "port" conf <*>
      Conf.lookup "signInExpirationMn" conf <*>
      Conf.lookup "currency" conf
  )