@@ -155,6 +155,12 @@ app conn req respond =
|
|||||||
"You must specify all columns in PUT request"
|
"You must specify all columns in PUT request"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
([table], "PATCH") ->
|
||||||
|
jsonBodyAction req (\row -> do
|
||||||
|
_ <- update ver table row qq conn
|
||||||
|
return $ responseLBS status204 [ jsonContentType ] ""
|
||||||
|
)
|
||||||
|
|
||||||
(_, _) ->
|
(_, _) ->
|
||||||
return $ responseLBS status404 [] ""
|
return $ responseLBS status404 [] ""
|
||||||
|
|
||||||
|
|||||||
+15
-7
@@ -2,6 +2,7 @@
|
|||||||
module PgQuery (
|
module PgQuery (
|
||||||
getRows
|
getRows
|
||||||
, insert
|
, insert
|
||||||
|
, update
|
||||||
, upsert
|
, upsert
|
||||||
, addUser
|
, addUser
|
||||||
, signInRole
|
, signInRole
|
||||||
@@ -187,14 +188,21 @@ signInRole user pass conn = do
|
|||||||
checkPass :: BS.ByteString -> BS.ByteString -> Bool
|
checkPass :: BS.ByteString -> BS.ByteString -> Bool
|
||||||
checkPass = validatePassword
|
checkPass = validatePassword
|
||||||
|
|
||||||
upsert :: Schema -> Text -> SqlRow -> Net.Query -> Connection -> IO (M.Map String SqlValue)
|
upsert :: Schema -> Text -> SqlRow -> Net.Query -> Connection ->
|
||||||
|
IO (M.Map String SqlValue)
|
||||||
upsert schema table row qq conn = do
|
upsert schema table row qq conn = do
|
||||||
stmt <- prepare conn $ cs sql
|
stmt <- prepare conn $ cs $ upsertClause schema table row qq
|
||||||
_ <- execute stmt $ join $ replicate 2 $ sqlRowValues row
|
_ <- execute stmt $ join $ replicate 2 $ sqlRowValues row
|
||||||
m <- fetchRowMap stmt
|
m <- fetchRowMap stmt
|
||||||
return $ fromMaybe M.empty m
|
return $ fromMaybe M.empty m
|
||||||
|
|
||||||
where sql = upsertClause schema table row qq
|
update :: Schema -> Text -> SqlRow -> Net.Query -> Connection ->
|
||||||
|
IO (M.Map String SqlValue)
|
||||||
|
update schema table row qq conn = do
|
||||||
|
stmt <- prepare conn $ cs $ updateClause schema table row qq
|
||||||
|
_ <- execute stmt $ sqlRowValues row
|
||||||
|
m <- fetchRowMap stmt
|
||||||
|
return $ fromMaybe M.empty m
|
||||||
|
|
||||||
placeholders :: Text -> SqlRow -> Text
|
placeholders :: Text -> SqlRow -> Text
|
||||||
placeholders symbol = intercalate ", " . map (const symbol) . getRow
|
placeholders symbol = intercalate ", " . map (const symbol) . getRow
|
||||||
@@ -213,16 +221,16 @@ insertClauseViaSelect schema table row =
|
|||||||
intercalate ", " (map pgFmtIdent (sqlRowColumns row))
|
intercalate ", " (map pgFmtIdent (sqlRowColumns row))
|
||||||
<> ") select " <> placeholders "?" row
|
<> ") select " <> placeholders "?" row
|
||||||
|
|
||||||
updateClause :: Schema -> Text -> SqlRow -> Text
|
updateClause :: Schema -> Text -> SqlRow -> Net.Query -> Text
|
||||||
updateClause schema table row =
|
updateClause schema table row qq =
|
||||||
"update " <> pgFmtIdent schema <> "." <> pgFmtIdent table <> " set (" <>
|
"update " <> pgFmtIdent schema <> "." <> pgFmtIdent table <> " set (" <>
|
||||||
intercalate ", " (map pgFmtIdent (sqlRowColumns row))
|
intercalate ", " (map pgFmtIdent (sqlRowColumns row))
|
||||||
<> ") = (" <> placeholders "?" row <> ")"
|
<> ") = (" <> placeholders "?" row <> ")"
|
||||||
|
<> whereClause qq
|
||||||
|
|
||||||
upsertClause :: Schema -> Text -> SqlRow -> Net.Query -> Text
|
upsertClause :: Schema -> Text -> SqlRow -> Net.Query -> Text
|
||||||
upsertClause schema table row qq =
|
upsertClause schema table row qq =
|
||||||
"with upsert as (" <> updateClause schema table row
|
"with upsert as (" <> updateClause schema table row qq
|
||||||
<> whereClause qq
|
|
||||||
<> " returning *) " <> insertClauseViaSelect schema table row
|
<> " returning *) " <> insertClauseViaSelect schema table row
|
||||||
<> " where not exists (select * from upsert) returning *"
|
<> " where not exists (select * from upsert) returning *"
|
||||||
|
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ import qualified Data.Aeson as JSON
|
|||||||
import Data.Maybe (fromJust)
|
import Data.Maybe (fromJust)
|
||||||
import Network.HTTP.Types.Header
|
import Network.HTTP.Types.Header
|
||||||
import Network.HTTP.Types
|
import Network.HTTP.Types
|
||||||
|
import Control.Monad (replicateM_)
|
||||||
|
|
||||||
import TestTypes(IncPK(..), CompoundPK(..))
|
import TestTypes(IncPK(..), CompoundPK(..))
|
||||||
|
|
||||||
@@ -152,7 +153,7 @@ spec = around appWithFixture $ do
|
|||||||
matchHeaders = []
|
matchHeaders = []
|
||||||
}
|
}
|
||||||
|
|
||||||
describe "Patching record" $
|
describe "Patching record" $ do
|
||||||
|
|
||||||
context "to unkonwn uri" $
|
context "to unkonwn uri" $
|
||||||
it "gives a 404" $
|
it "gives a 404" $
|
||||||
@@ -160,5 +161,32 @@ spec = around appWithFixture $ do
|
|||||||
[json| { "real": false } |]
|
[json| { "real": false } |]
|
||||||
`shouldRespondWith` 404
|
`shouldRespondWith` 404
|
||||||
|
|
||||||
-- context "on an empty table" $
|
context "on an empty table" $
|
||||||
-- it "succeeds
|
it "succeeds with no effect" $
|
||||||
|
request methodPatch "/simple_pk" []
|
||||||
|
[json| { "extra":20 } |]
|
||||||
|
`shouldRespondWith` 204
|
||||||
|
|
||||||
|
context "in a nonempty table" $ do
|
||||||
|
it "can update a single item" $ do
|
||||||
|
g <- get "/items?id=eq.42"
|
||||||
|
liftIO $ simpleHeaders g
|
||||||
|
`shouldSatisfy` matchHeader "Content-Range" "\\*/0"
|
||||||
|
request methodPatch "/items?id=eq.1" []
|
||||||
|
[json| { "id":42 } |]
|
||||||
|
`shouldRespondWith` 204
|
||||||
|
g' <- get "/items?id=eq.42"
|
||||||
|
liftIO $ simpleHeaders g'
|
||||||
|
`shouldSatisfy` matchHeader "Content-Range" "0-0/1"
|
||||||
|
|
||||||
|
it "can update multiple items" $ do
|
||||||
|
replicateM_ 10 $ post "/auto_incrementing_pk"
|
||||||
|
[json| { non_nullable_string: "a" } |]
|
||||||
|
replicateM_ 10 $ post "/auto_incrementing_pk"
|
||||||
|
[json| { non_nullable_string: "b" } |]
|
||||||
|
_ <- request methodPatch
|
||||||
|
"/auto_incrementing_pk?non_nullable_string=eq.a" []
|
||||||
|
[json| { non_nullable_string: "c" } |]
|
||||||
|
g <- get "/auto_incrementing_pk?non_nullable_string=eq.c"
|
||||||
|
liftIO $ simpleHeaders g
|
||||||
|
`shouldSatisfy` matchHeader "Content-Range" "0-9/10"
|
||||||
|
|||||||
@@ -15,7 +15,6 @@ import Network.HTTP.Types.Status (ok200)
|
|||||||
spec :: Spec
|
spec :: Spec
|
||||||
spec = let
|
spec = let
|
||||||
dbErrApp conn _ res = do
|
dbErrApp conn _ res = do
|
||||||
putStrLn "In fake app"
|
|
||||||
_ <- insert "1" "items" (SqlRow []) conn
|
_ <- insert "1" "items" (SqlRow []) conn
|
||||||
runRaw conn "select 1/0"
|
runRaw conn "select 1/0"
|
||||||
_ <- insert "1" "items" (SqlRow []) conn
|
_ <- insert "1" "items" (SqlRow []) conn
|
||||||
|
|||||||
Reference in New Issue
Block a user