diff options
author | Profpatsch <mail@profpatsch.de> | 2023-01-15T20·20+0100 |
---|---|---|
committer | Profpatsch <mail@profpatsch.de> | 2023-01-15T20·36+0000 |
commit | f627ee84b3a002e8f1fe38d7859860faf7d40be9 (patch) | |
tree | d541adcae274bacaf95f690d8908a34c2e9bfa4d /users/Profpatsch/mailbox-org/MailboxOrg.hs | |
parent | 1a18c25d816298775cafa970c34b7ec41cdf127a (diff) |
feat(users/Profpatsch/mailbox-org): add simple request json example r/5661
Adds a simple json quasiquoter thingy. Json can be sent to the `/mailfilter?action=update` endpoint. Change-Id: Iba80c2ab69178e431519933c4a01cd68aaa9f637 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7839 Tested-by: BuildkiteCI Autosubmit: Profpatsch <mail@profpatsch.de> Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'users/Profpatsch/mailbox-org/MailboxOrg.hs')
-rw-r--r-- | users/Profpatsch/mailbox-org/MailboxOrg.hs | 54 |
1 files changed, 51 insertions, 3 deletions
diff --git a/users/Profpatsch/mailbox-org/MailboxOrg.hs b/users/Profpatsch/mailbox-org/MailboxOrg.hs index f17780c14e28..5e062979543b 100644 --- a/users/Profpatsch/mailbox-org/MailboxOrg.hs +++ b/users/Profpatsch/mailbox-org/MailboxOrg.hs @@ -14,6 +14,7 @@ module Main where import Aeson (parseErrorTree) +import AesonQQ (aesonQQ) import ArglibNetencode import Control.Exception (try) import Control.Monad (replicateM) @@ -21,6 +22,7 @@ import Data.Aeson qualified as Json import Data.Aeson.BetterErrors qualified as Json import Data.Aeson.KeyMap qualified as KeyMap import Data.ByteString qualified as ByteString +import Data.ByteString.Lazy qualified as Lazy import Data.Char qualified as Char import Data.Error.Tree import Data.Functor.Compose @@ -63,8 +65,7 @@ log err = do putStderrLn (errorContext progName.unCurrentProgramName err & prettyError) data Tools = Tools - { sieveTest :: Tool, - pass :: Tool + { pass :: Tool } deriving stock (Show) @@ -75,7 +76,6 @@ parseTools :: Applicative m => (Text -> m (Either Error Tool)) -> m (Either Erro parseTools getTool = do let parser = ( do - sieveTest <- get "sieve-test" pass <- get "pass" pure Tools {..} ) @@ -144,6 +144,54 @@ data MailfilterList = MailfilterList } deriving stock (Show, Eq) +simpleRule :: + ( HasField "rulename" r Text, + HasField "id" r Natural, + HasField "emailContains" r Text, + HasField "subjectStartsWith" r Text + ) => + r -> + Json.Value +simpleRule dat = do + [aesonQQ|{ + "id": |dat.id & enc @Natural|, + "position": 3, + "rulename": |dat.rulename & enc @Text|, + "active": true, + "flags": [], + "test": { + "id": "allof", + "tests": [ + { + "id": "from", + "comparison": "contains", + "values": [ + |dat.emailContains & enc @Text| + ] + }, + { + "id": "subject", + "comparison": "startswith", + "values": [ + |dat.subjectStartsWith & enc @Text| + ] + } + ] + }, + "actioncmds": [ + { + "id": "move", + "into": "default0/Archive" + }, + { + "id": "stop" + } + ] + }|] + where + enc :: forall a. Json.ToJSON a => a -> Lazy.ByteString + enc val = val & Json.toJSON & Json.encode + applyFilters :: Session -> IO () applyFilters session = do filters <- |