Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow pathTo and parse to work with Maybe (Id record) #1691

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
21 changes: 17 additions & 4 deletions IHP/RouterSupport.hs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ import GHC.TypeLits
import Data.Data
import qualified Control.Monad.State.Strict as State
import qualified Data.Text as Text
import qualified Data.UUID as UUID
import Network.HTTP.Types.URI
import qualified Data.List as List
import Unsafe.Coerce
Expand Down Expand Up @@ -286,8 +287,19 @@ parseFuncs parseIdType = [
|> fromASCIIBytes
|> \case
Just uuid -> uuid |> unsafeCoerce |> Right
Nothing -> Left BadType { field = "", value = Just queryValue, expectedType = "UUID" }
Nothing ->
-- We couldn't parse the UUID, so try Maybe (Id record),
-- where we have a @Just@ prefix before the UUID.
queryValue
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mpscholten Is there a way to debug such a function and have it print the value of queryValue ?

Copy link
Collaborator Author

@amitaibu amitaibu Jun 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, I've just fixed it "Just" not "Just ". But still would be nice to know if there's a way to debug

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mpscholten It's indeed a tricky problem. Is there a way to debug/print the values in those functions?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

|> cs
|> Text.replace "Just " ""
|> UUID.fromText
|> \case
Just uuid -> Just uuid |> unsafeCoerce |> Right
Nothing -> Left BadType { field = "", value = Just queryValue, expectedType = "UUID" }

Nothing -> Left NotMatched

]
{-# INLINABLE parseFuncs #-}

Expand Down Expand Up @@ -633,8 +645,9 @@ instance {-# OVERLAPPABLE #-} (Show controller, AutoRoute controller) => HasPath
|> \(kvs :: [(String, String)]) -> zip (showTerms action) kvs
-- If an Id type was present in the action, it will be returned as Nothing by @showTerms@
-- as we are not able to match on the type using reflection.
-- In this case we default back to the @show@ representation.
|> map (\(v1, (k, v2)) -> (k, fromMaybe v2 v1))
-- In this case we default back to the @show@ representation, making sure to remove
-- the "Nothing".
|> map (\(v1, (k, v2)) -> (k, fromMaybe (cs $ Text.replace "Nothing" "" $ cs v2) v1))
|> map (\(k, v) -> if isEmpty v
then ""
else k <> "=" <> URI.encode v)
Expand All @@ -645,7 +658,7 @@ instance {-# OVERLAPPABLE #-} (Show controller, AutoRoute controller) => HasPath
-- | Parses the HTTP Method from the request and returns it.
getMethod :: (?context :: RequestContext) => Parser StdMethod
getMethod =
case parseMethod ?context.request.requestMethod of
case parseMethod ?context.request.requestMethod of
Left error -> fail (ByteString.unpack error)
Right method -> pure method
{-# INLINABLE getMethod #-}
Expand Down
15 changes: 14 additions & 1 deletion Test/RouterSupportSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ data TestController
| TestInteger { p1 :: Integer, p2 :: Maybe Integer, p3 :: [Integer] }
| TestIntegerId { integerId :: Id Band }
| TestUUIDId { uuidId :: Id Performance }
| TestMaybeUUIDId { maybeUuidId :: Maybe (Id Performance) }
| TestUUIDList { uuidList :: [UUID] }
deriving (Eq, Show, Data)

Expand Down Expand Up @@ -105,6 +106,10 @@ instance Controller TestController where
renderPlain (cs $ ClassyPrelude.show integerId)
action TestUUIDId { .. } = do
renderPlain (cs $ ClassyPrelude.show uuidId)
action TestMaybeUUIDId { ..} =
case maybeUuidId of
Just uuidId -> renderPlain ("Just " <> cs (ClassyPrelude.show uuidId))
Nothing -> renderPlain "Nothing"
action TestUUIDList { .. } = do
renderPlain $ cs $ ClassyPrelude.show uuidList

Expand Down Expand Up @@ -193,6 +198,10 @@ tests = beforeAll (mockContextNoDatabase WebApplication config) do
runSession (testGet "test/TestIntegerId?integerId=123") application >>= assertSuccess "123"
it "parses Id with UUID param" $ withContext do
runSession (testGet "test/TestUUIDId?uuidId=8dd57d19-490a-4323-8b94-6081ab93bf34") application >>= assertSuccess "8dd57d19-490a-4323-8b94-6081ab93bf34"
it "parses Maybe Id with UUID param: Nothing" $ withContext do
runSession (testGet "test/TestMaybeUUIDId") application >>= assertSuccess "Nothing"
it "parses Maybe Id with UUID param: Just" $ withContext do
runSession (testGet "test/TestMaybeUUIDId?maybeUuidId=Just8dd57d19-490a-4323-8b94-6081ab93bf34") application >>= assertSuccess "Just 8dd57d19-490a-4323-8b94-6081ab93bf34"
it "parses [UUID] param: empty" $ withContext do
runSession (testGet "test/TestUUIDList") application >>= assertSuccess "[]"
it "parses [UUID] param: one element" $ withContext do
Expand All @@ -218,8 +227,12 @@ tests = beforeAll (mockContextNoDatabase WebApplication config) do
pathTo (TestTextListAction ["hello", "there"]) `shouldBe` "/test/TestTextList?textList=hello%2Cthere"
it "generates correct path for [Int] param" $ withContext do
pathTo (TestIntListAction [1,2,3]) `shouldBe` "/test/TestIntList?intList=1%2C2%2C3"
it "generates correct path for UUID param" $ withContext do
it "generates correct path for Id with UUID param" $ withContext do
pathTo (TestUUIDId "8dd57d19-490a-4323-8b94-6081ab93bf34") `shouldBe` "/test/TestUUIDId?uuidId=8dd57d19-490a-4323-8b94-6081ab93bf34"
it "generates correct path for Maybe ID with UUID param: Nothing" $ withContext do
pathTo (TestMaybeUUIDId Nothing) `shouldBe` "/test/TestMaybeUUIDId"
it "generates correct path for Maybe ID with UUID param: Just" $ withContext do
pathTo (TestMaybeUUIDId (Just "8dd57d19-490a-4323-8b94-6081ab93bf34")) `shouldBe` "/test/TestMaybeUUIDId?maybeUuidId=Just8dd57d19-490a-4323-8b94-6081ab93bf34"
it "generates correct path for [UUID] param" $ withContext do
pathTo (TestUUIDList ["8dd57d19-490a-4323-8b94-6081ab93bf34", "fdb15f8e-2fe9-441a-ae0e-da56956b1722"]) `shouldBe` "/test/TestUUIDList?uuidList=8dd57d19-490a-4323-8b94-6081ab93bf34%2Cfdb15f8e-2fe9-441a-ae0e-da56956b1722"
it "generates correct path when used with Breadcrumbs" $ withContext do
Expand Down
Loading