slackbuilder/lib/SlackBuilder/Config.hs

40 lines
1.1 KiB
Haskell
Raw Normal View History

2023-08-09 20:59:42 +02:00
module SlackBuilder.Config
( Settings(..)
2023-08-28 21:05:47 +02:00
, MaintainerSettings(..)
2023-08-09 20:59:42 +02:00
, settingsCodec
) where
import Data.Text (Text)
import Toml ((.=))
import qualified Toml
2023-08-15 10:33:19 +02:00
data Settings = Settings
{ ghToken :: !Text
, repository :: !FilePath
, branch :: Text
, downloadURL :: Text
, remotePath :: Text
2023-08-28 21:05:47 +02:00
, maintainer :: MaintainerSettings
} deriving (Eq, Show)
data MaintainerSettings = MaintainerSettings
{ name :: !Text
, email :: !Text
, signature :: !Bool
2023-08-09 20:59:42 +02:00
} deriving (Eq, Show)
settingsCodec :: Toml.TomlCodec Settings
settingsCodec = Settings
<$> Toml.text "gh_token" .= ghToken
2023-08-15 10:33:19 +02:00
<*> Toml.string "repository" .= repository
<*> Toml.text "branch" .= branch
<*> Toml.text "download_url" .= downloadURL
<*> Toml.text "remote_path" .= remotePath
2023-08-28 21:05:47 +02:00
<*> Toml.table maintainerSettingsCodec "maintainer" .= maintainer
maintainerSettingsCodec :: Toml.TomlCodec MaintainerSettings
maintainerSettingsCodec = MaintainerSettings
<$> Toml.text "name" .= name
<*> Toml.text "email" .= email
<*> Toml.bool "signature" .= signature