slackbuilder/lib/SlackBuilder/Config.hs

67 lines
2.2 KiB
Haskell
Raw Normal View History

2023-12-23 22:15:10 +01:00
{- This Source Code Form is subject to the terms of the Mozilla Public License,
v. 2.0. If a copy of the MPL was not distributed with this file, You can
obtain one at https://mozilla.org/MPL/2.0/. -}
2023-12-12 18:51:44 +01:00
-- | Configuration file.
2023-08-09 20:59:42 +02:00
module SlackBuilder.Config
( Settings(..)
2023-08-28 21:05:47 +02:00
, MaintainerSettings(..)
, PackageSettings(..)
2023-08-09 20:59:42 +02:00
, settingsCodec
) where
2024-05-11 19:01:41 +02:00
import Data.List.NonEmpty (NonEmpty(..))
2023-08-09 20:59:42 +02:00
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
2024-05-11 19:01:41 +02:00
, uploadCommand :: NonEmpty Text
2023-08-28 21:05:47 +02:00
, maintainer :: MaintainerSettings
, packages :: [PackageSettings]
2023-08-28 21:05:47 +02:00
} deriving (Eq, Show)
2023-10-08 12:28:46 +02:00
newtype MaintainerSettings = MaintainerSettings
{ signature :: Bool
2023-08-09 20:59:42 +02:00
} deriving (Eq, Show)
data PackageSettings = PackageSettings
{ name :: Text
, template :: Text
, is64 :: Bool
, github :: Maybe (Text, Text)
, packagist :: Maybe (Text, Text)
2024-09-27 12:20:34 +02:00
, text :: Maybe (Text, [String])
} deriving (Eq, Show)
2023-08-09 20:59:42 +02:00
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
2024-05-11 19:01:41 +02:00
<*> Toml.arrayNonEmptyOf Toml._Text "upload_command" .= uploadCommand
2023-08-28 21:05:47 +02:00
<*> Toml.table maintainerSettingsCodec "maintainer" .= maintainer
<*> Toml.list packageSettingsCodec "package" .= packages
2023-08-28 21:05:47 +02:00
maintainerSettingsCodec :: Toml.TomlCodec MaintainerSettings
maintainerSettingsCodec = MaintainerSettings
2023-10-08 12:28:46 +02:00
<$> Toml.bool "signature" .= signature
packageSettingsCodec :: Toml.TomlCodec PackageSettings
packageSettingsCodec = PackageSettings
<$> Toml.text "name" .= name
<*> Toml.text "template" .= template
<*> Toml.bool "is64" .= is64
2024-09-27 12:20:34 +02:00
<*> Toml.dioptional (Toml.table githubCodec "github") .= github
<*> Toml.dioptional (Toml.table packagistCodec "packagist") .= packagist
<*> Toml.dioptional (Toml.table textCodec "text") .= text
where
githubCodec = Toml.pair (Toml.text "owner") (Toml.text "name")
packagistCodec = Toml.pair (Toml.text "owner") (Toml.text "name")
textCodec = Toml.pair (Toml.text "url") (Toml.arrayOf Toml._String "picker")