diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2022-12-16 20:29:28 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2022-12-16 20:29:28 +0100 |
commit | 6f49d8632e6ceccb0399764e7da86cc4cba9ab04 (patch) | |
tree | 39a1e15181139cc9b9cdbacdc6362c743be4753d /overlays/spm/lib/Spm | |
parent | bbb5a2502ad108186c9257c5fa420a4965059043 (diff) | |
download | nixos-6f49d8632e6ceccb0399764e7da86cc4cba9ab04.tar nixos-6f49d8632e6ceccb0399764e7da86cc4cba9ab04.tar.gz nixos-6f49d8632e6ceccb0399764e7da86cc4cba9ab04.tar.bz2 nixos-6f49d8632e6ceccb0399764e7da86cc4cba9ab04.tar.xz nixos-6f49d8632e6ceccb0399764e7da86cc4cba9ab04.zip |
spm: list/get/patch mailbox mappings
Diffstat (limited to 'overlays/spm/lib/Spm')
-rw-r--r-- | overlays/spm/lib/Spm/Api.hs | 114 |
1 files changed, 82 insertions, 32 deletions
diff --git a/overlays/spm/lib/Spm/Api.hs b/overlays/spm/lib/Spm/Api.hs index c44a7951..af7ae94c 100644 --- a/overlays/spm/lib/Spm/Api.hs +++ b/overlays/spm/lib/Spm/Api.hs | |||
@@ -3,6 +3,9 @@ | |||
3 | module Spm.Api | 3 | module Spm.Api |
4 | ( SpmStyle(..), _SpmWords, _SpmConsonants | 4 | ( SpmStyle(..), _SpmWords, _SpmConsonants |
5 | , SpmMailbox, SpmDomain | 5 | , SpmMailbox, SpmDomain |
6 | , SpmLocal(..), SpmExtension(..) | ||
7 | , SpmMapping(..), SpmMappingState(..), SpmMappingListingItem(..), SpmMappingListing(..) | ||
8 | , _SpmMappingStateReject | ||
6 | , SpmApi, spmApi | 9 | , SpmApi, spmApi |
7 | ) where | 10 | ) where |
8 | 11 | ||
@@ -13,11 +16,12 @@ import Servant.API | |||
13 | import Data.Proxy (Proxy(..)) | 16 | import Data.Proxy (Proxy(..)) |
14 | 17 | ||
15 | import Data.Text (Text) | 18 | import Data.Text (Text) |
19 | import qualified Data.Text as Text | ||
16 | 20 | ||
17 | import GHC.Generics (Generic) | 21 | import GHC.Generics (Generic) |
18 | import Type.Reflection (Typeable) | 22 | import Type.Reflection (Typeable) |
19 | 23 | ||
20 | import Control.Lens.TH | 24 | import Control.Lens |
21 | 25 | ||
22 | import Data.CaseInsensitive (CI) | 26 | import Data.CaseInsensitive (CI) |
23 | import qualified Data.CaseInsensitive as CI | 27 | import qualified Data.CaseInsensitive as CI |
@@ -31,8 +35,13 @@ import Data.UUID (UUID) | |||
31 | import Data.UUID.Instances () | 35 | import Data.UUID.Instances () |
32 | 36 | ||
33 | import qualified Data.Aeson as JSON | 37 | import qualified Data.Aeson as JSON |
38 | import Data.Aeson.TH (deriveJSON) | ||
39 | import Data.Aeson.Casing | ||
34 | 40 | ||
35 | -- import Data.Aeson (ToJSON, FromJSON) | 41 | import Data.Aeson (ToJSON, FromJSON) |
42 | |||
43 | import Control.Monad | ||
44 | import Control.Applicative | ||
36 | 45 | ||
37 | 46 | ||
38 | data SpmStyle = SpmWords | SpmConsonants | 47 | data SpmStyle = SpmWords | SpmConsonants |
@@ -48,7 +57,7 @@ instance FromHttpApiData SpmStyle where | |||
48 | | t' == "words" = Right SpmWords | 57 | | t' == "words" = Right SpmWords |
49 | | t' == "consonants" = Right SpmConsonants | 58 | | t' == "consonants" = Right SpmConsonants |
50 | | otherwise = Left $ "Expected one of ‘words’ or ‘consonants’ but got ‘" <> t <> "’" | 59 | | otherwise = Left $ "Expected one of ‘words’ or ‘consonants’ but got ‘" <> t <> "’" |
51 | 60 | ||
52 | 61 | ||
53 | newtype SpmMailbox = SpmMailbox { unSpmMailbox :: CI Text } | 62 | newtype SpmMailbox = SpmMailbox { unSpmMailbox :: CI Text } |
54 | deriving stock (Eq, Ord, Read, Show, Generic, Typeable) | 63 | deriving stock (Eq, Ord, Read, Show, Generic, Typeable) |
@@ -57,7 +66,7 @@ makeWrapped ''SpmMailbox | |||
57 | 66 | ||
58 | instance MimeRender JSON SpmMailbox where | 67 | instance MimeRender JSON SpmMailbox where |
59 | mimeRender p mbox = mimeRender p $ JSON.object [ "mailbox" JSON..= unSpmMailbox mbox ] | 68 | mimeRender p mbox = mimeRender p $ JSON.object [ "mailbox" JSON..= unSpmMailbox mbox ] |
60 | 69 | ||
61 | newtype SpmDomain = SpmDomain { unSpmDomain :: CI Text } | 70 | newtype SpmDomain = SpmDomain { unSpmDomain :: CI Text } |
62 | deriving stock (Eq, Ord, Read, Show, Generic, Typeable) | 71 | deriving stock (Eq, Ord, Read, Show, Generic, Typeable) |
63 | deriving newtype (MimeRender PlainText) | 72 | deriving newtype (MimeRender PlainText) |
@@ -66,31 +75,72 @@ makeWrapped ''SpmDomain | |||
66 | instance MimeRender JSON SpmDomain where | 75 | instance MimeRender JSON SpmDomain where |
67 | mimeRender p dom = mimeRender p $ JSON.object [ "domain" JSON..= unSpmDomain dom ] | 76 | mimeRender p dom = mimeRender p $ JSON.object [ "domain" JSON..= unSpmDomain dom ] |
68 | 77 | ||
69 | -- newtype SpmLocal = SpmLocal | 78 | newtype SpmLocal = SpmLocal |
70 | -- { unSpmLocal :: CI Text | 79 | { unSpmLocal :: CI Text |
71 | -- } deriving stock (Eq, Ord, Read, Show, Generic, Typeable) | 80 | } deriving stock (Eq, Ord, Read, Show, Generic, Typeable) |
72 | -- deriving newtype (ToJSON, FromJSON) | 81 | deriving newtype (ToJSON, FromJSON) |
73 | -- makeWrapped ''SpmLocal | 82 | makeWrapped ''SpmLocal |
74 | -- newtype SpmExtension = SpmExtension | 83 | newtype SpmExtension = SpmExtension |
75 | -- { unSpmExtension :: CI Text | 84 | { unSpmExtension :: CI Text |
76 | -- } deriving stock (Eq, Ord, Read, Show, Generic, Typeable) | 85 | } deriving stock (Eq, Ord, Read, Show, Generic, Typeable) |
77 | -- deriving newtype (ToJSON, FromJSON) | 86 | deriving newtype (ToJSON, FromJSON) |
78 | -- makeWrapped ''SpmExtension | 87 | makeWrapped ''SpmExtension |
79 | 88 | ||
80 | -- newtype SpmMappingListing = SpmMappingListing { unSpmMappingListing :: Set SpmMapping } | 89 | data SpmMappingState = Valid | Reject |
81 | -- deriving stock (Eq, Ord, Read, Show, Generic, Typeable) | 90 | deriving (Eq, Ord, Read, Show, Enum, Bounded, Generic, Typeable) |
82 | -- instance ToJSON SpmMappingList where | 91 | instance MimeRender PlainText SpmMappingState where |
83 | -- toJSON SpmMappingListing{..} = object [ "mappings" .= unSpmMappingListing ] | 92 | mimeRender p = mimeRender @_ @Text p . \case |
84 | 93 | Valid -> "valid" | |
85 | -- data SpmMapping = SpmMapping | 94 | Reject -> "reject" |
86 | -- { spmMappingLocal :: Maybe SpmLocal | 95 | instance MimeUnrender PlainText SpmMappingState where |
87 | -- , spmMappingExtension :: Maybe SpmExtension | 96 | mimeUnrender p bs = mimeUnrender @_ @Text p bs >>= \(CI.mk . Text.strip -> t) -> if |
88 | -- } deriving stock (Eq, Ord, Read, Show, Generic, Typeable) | 97 | | t == "valid" -> Right Valid |
89 | -- instance ToJSON SpmMapping where | 98 | | t == "reject" -> Right Reject |
90 | -- toJSON SpmMapping{..} = object | 99 | | otherwise -> Left "Could not parse SpmMappingState" |
91 | -- [ "local" .= spmMappingLocal | 100 | _SpmMappingStateReject :: Iso' SpmMappingState Bool |
92 | -- , "extension" .= spmMappingExtension | 101 | _SpmMappingStateReject = iso toReject fromReject |
93 | -- ] | 102 | where toReject Valid = False |
103 | toReject Reject = True | ||
104 | fromReject True = Reject | ||
105 | fromReject False = Valid | ||
106 | |||
107 | data SpmMappingListingItem = SpmMappingListingItem | ||
108 | { smlMapping :: SpmMapping | ||
109 | , smlState :: SpmMappingState | ||
110 | } deriving (Eq, Ord, Read, Show, Generic, Typeable) | ||
111 | |||
112 | newtype SpmMappingListing = SpmMappingListing { unSpmMappingListing :: [SpmMappingListingItem] } | ||
113 | deriving stock (Eq, Ord, Read, Show, Generic, Typeable) | ||
114 | |||
115 | data SpmMapping = SpmMapping | ||
116 | { spmMappingLocal :: Maybe SpmLocal | ||
117 | , spmMappingExtension :: Maybe SpmExtension | ||
118 | } deriving stock (Eq, Ord, Read, Show, Generic, Typeable) | ||
119 | instance FromHttpApiData SpmMapping where | ||
120 | parseUrlPiece t | ||
121 | | [ fmap (SpmLocal . CI.mk) . assertNonEmpty -> spmMappingLocal | ||
122 | , fmap (SpmExtension . CI.mk) . assertNonEmpty -> spmMappingExtension | ||
123 | ] <- Text.splitOn "+" t | ||
124 | , Just () <- void spmMappingLocal <|> void spmMappingExtension | ||
125 | = Right SpmMapping{..} | ||
126 | | otherwise = Left "Could not parse SpmMapping" | ||
127 | where assertNonEmpty :: Text -> Maybe Text | ||
128 | assertNonEmpty t' | Text.null t' = Nothing | ||
129 | | otherwise = Just t' | ||
130 | instance ToHttpApiData SpmMapping where | ||
131 | toUrlPiece SpmMapping{..} = maybe "" (CI.original . unSpmLocal) spmMappingLocal | ||
132 | <> maybe "" (("+" <>) . CI.original . unSpmExtension) spmMappingExtension | ||
133 | |||
134 | deriveJSON (aesonPrefix trainCase) ''SpmMapping | ||
135 | makePrisms ''SpmMappingState | ||
136 | deriveJSON JSON.defaultOptions | ||
137 | { JSON.constructorTagModifier = trainCase | ||
138 | } ''SpmMappingState | ||
139 | deriveJSON (aesonPrefix trainCase) ''SpmMappingListingItem | ||
140 | |||
141 | instance ToJSON SpmMappingListing where | ||
142 | toJSON SpmMappingListing{..} = JSON.object [ "mappings" JSON..= unSpmMappingListing ] | ||
143 | |||
94 | 144 | ||
95 | type SpmApi = "whoami" :> Get '[PlainText, JSON] SpmMailbox | 145 | type SpmApi = "whoami" :> Get '[PlainText, JSON] SpmMailbox |
96 | :<|> "domain" :> Get '[PlainText, JSON] SpmDomain | 146 | :<|> "domain" :> Get '[PlainText, JSON] SpmDomain |
@@ -98,9 +148,9 @@ type SpmApi = "whoami" :> Get '[PlainText, JSON] SpmMailbox | |||
98 | :<|> "instance-id" :> Get '[PlainText, JSON, OctetStream] UUID | 148 | :<|> "instance-id" :> Get '[PlainText, JSON, OctetStream] UUID |
99 | :<|> "spm" :> "generate" :> QueryParam "style" SpmStyle :> Get '[PlainText, JSON, OctetStream] SignedJWT | 149 | :<|> "spm" :> "generate" :> QueryParam "style" SpmStyle :> Get '[PlainText, JSON, OctetStream] SignedJWT |
100 | :<|> "spm" :> "claim" :> ReqBody '[PlainText, JSON, OctetStream] SignedJWT :> PostNoContent | 150 | :<|> "spm" :> "claim" :> ReqBody '[PlainText, JSON, OctetStream] SignedJWT :> PostNoContent |
101 | -- :<|> "mappings" :> Get '[PlainText, JSON] SpmMappingListing | 151 | :<|> "mappings" :> Get '[JSON] SpmMappingListing |
102 | -- :<|> "mappings" :> Capture SpmMapping :> GetNoContent | 152 | :<|> "mappings" :> Capture "mapping" SpmMapping :> Get '[PlainText, JSON] SpmMappingState |
103 | -- :<|> "mappings" :> Capture SpmMapping :> DeleteNoContent | 153 | :<|> "mappings" :> Capture "mapping" SpmMapping :> ReqBody '[PlainText, JSON] SpmMappingState :> PatchNoContent |
104 | 154 | ||
105 | spmApi :: Proxy SpmApi | 155 | spmApi :: Proxy SpmApi |
106 | spmApi = Proxy | 156 | spmApi = Proxy |