X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fhalcyon.git;a=blobdiff_plain;f=src%2FOptionalConfiguration.hs;h=77b3a06d2c42bef78908bdc09827cad73e91988d;hp=53635439ac354c76bc1f9d96d074fac6ee89254c;hb=dd4abc21674b98bc55a3775291a8667dffec2863;hpb=26718edaad5cd7921d957a1f0972fd9f5cd5b645 diff --git a/src/OptionalConfiguration.hs b/src/OptionalConfiguration.hs index 5363543..77b3a06 100644 --- a/src/OptionalConfiguration.hs +++ b/src/OptionalConfiguration.hs @@ -1,3 +1,5 @@ +{-# LANGUAGE DeriveDataTypeable #-} +{-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE OverloadedStrings #-} -- | The program will parse ~/.twatrc for any available configuration @@ -7,14 +9,27 @@ -- the merged OptionalCfgs. -- -module OptionalConfiguration +module OptionalConfiguration ( + OptionalCfg(..), + from_rc + ) where -import Data.Monoid (Monoid(..)) import qualified Data.Configurator as DC --- The same as Cfg, except everything is optional. It's easy to merge --- two of these by simply dropping the Nothings in favor of the Justs. +import Data.Data (Data) +import Data.Maybe (fromMaybe) +import Data.Monoid (Monoid(..)) +import Data.Typeable (Typeable) + +import Usernames + + +-- | The same as Cfg, except everything is optional. It's easy to +-- merge two of these by simply dropping the Nothings in favor of +-- the Justs. The 'usernames' are left un-maybed so that cmdargs +-- can parse more than one of them. +-- data OptionalCfg = OptionalCfg { consumer_key :: Maybe String, consumer_secret :: Maybe String, @@ -26,7 +41,9 @@ data OptionalCfg = sendmail_path :: Maybe String, from_address :: Maybe String, to_address :: Maybe String, - verbose :: Maybe Bool } + verbose :: Maybe Bool, + usernames :: Usernames } + deriving (Show, Data, Typeable) instance Monoid OptionalCfg where mempty = OptionalCfg @@ -41,6 +58,7 @@ instance Monoid OptionalCfg where Nothing Nothing Nothing + (Usernames []) cfg1 `mappend` cfg2 = OptionalCfg @@ -55,6 +73,7 @@ instance Monoid OptionalCfg where (merge (from_address cfg1) (from_address cfg2)) (merge (to_address cfg1) (to_address cfg2)) (merge (verbose cfg1) (verbose cfg2)) + all_usernames where merge :: (Maybe a) -> (Maybe a) -> (Maybe a) merge Nothing Nothing = Nothing @@ -62,6 +81,12 @@ instance Monoid OptionalCfg where merge Nothing (Just x) = Just x merge (Just _) (Just y) = Just y + -- Use only the latter usernames if there are any. + all_usernames = + usernames $ if (null (get_usernames (usernames cfg2))) + then cfg1 + else cfg2 + from_rc :: IO OptionalCfg from_rc = do cfg <- DC.load [ DC.Optional "$(HOME)/.twatrc" ] @@ -76,6 +101,8 @@ from_rc = do cfg_from_address <- DC.lookup cfg "from" cfg_to_address <- DC.lookup cfg "to" cfg_verbose <- DC.lookup cfg "verbose" + cfg_usernames <- DC.lookup cfg "usernames" + return $ OptionalCfg cfg_consumer_key cfg_consumer_secret @@ -88,4 +115,4 @@ from_rc = do cfg_from_address cfg_to_address cfg_verbose - + (fromMaybe (Usernames []) cfg_usernames)