Remove unused orderx endpoint

This commit is contained in:
Rene Vergara 2023-10-16 15:43:26 -05:00
parent a338c65892
commit 1c3dfd2da1
Signed by: pitmutt
GPG Key ID: 65122AD495A7F5B2
2 changed files with 21 additions and 20 deletions

View File

@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
- `api/orderx` endpoint.
- `makeZcashCall` function moved to the generic `zcash-haskell` library.
- `RpcResponse`, `RpcCall` types moved to the generic `zcash-haskell` library.

View File

@ -1400,26 +1400,26 @@ routes pipe config = do
, "order" .= toJSON (pOrder :: ZGoOrder)
])
--Upsert xero order
post "/api/orderx" $ do
newOrder <- jsonData
let q = payload (newOrder :: Payload ZGoOrder)
_ <- liftIO $ run (upsertXeroOrder q)
myOrder <-
liftAndCatchIO $
run (findXeroOrder (qaddress q) (qexternalInvoice q) (qshortCode q))
case myOrder of
Nothing -> status noContent204
Just o -> do
let o' = cast' (Doc o)
case o' of
Nothing -> status internalServerError500
Just pOrder -> do
status created201
Web.Scotty.json
(object
[ "message" .= ("Order found!" :: String)
, "order" .= toJSON (pOrder :: ZGoOrder)
])
{-post "/api/orderx" $ do-}
{-newOrder <- jsonData-}
{-let q = payload (newOrder :: Payload ZGoOrder)-}
{-_ <- liftIO $ run (upsertXeroOrder q)-}
{-myOrder <--}
{-liftAndCatchIO $-}
{-run (findXeroOrder (qaddress q) (qexternalInvoice q) (qshortCode q))-}
{-case myOrder of-}
{-Nothing -> status noContent204-}
{-Just o -> do-}
{-let o' = cast' (Doc o)-}
{-case o' of-}
{-Nothing -> status internalServerError500-}
{-Just pOrder -> do-}
{-status created201-}
{-Web.Scotty.json-}
{-(object-}
{-[ "message" .= ("Order found!" :: String)-}
{-, "order" .= toJSON (pOrder :: ZGoOrder)-}
{-])-}
-- Upsert order
post "/api/order" $ do
newOrder <- jsonData