Partially support DELETE /trips

Allow a user to delete a trip entry from the Trips table using the Primary
Key. While this type-checks and compiles, it doesn't appear to be working as
intended. Perhaps I should use an auto-incrementing integer as the Primary
Key. I'm not sure how I want to handle this, so I'm punting for now.
This commit is contained in:
William Carroll 2020-07-28 10:14:33 +01:00
parent 0637da36cc
commit 6d9e76313d
3 changed files with 39 additions and 5 deletions

View file

@ -21,11 +21,13 @@ server dbFile = userAddH
:<|> userGetH
:<|> createTripH
:<|> listTripsH
:<|> deleteTripH
where
userAddH newUser = liftIO $ userAdd newUser
userGetH name = liftIO $ userGet name
createTripH trip = liftIO $ createTrip trip
userAddH newUser = liftIO $ userAdd newUser
userGetH name = liftIO $ userGet name
createTripH trip = liftIO $ createTrip trip
listTripsH = liftIO $ listTrips
deleteTripH tripPK = liftIO $ deleteTrip tripPK
-- TODO(wpcarro): Handle failed CONSTRAINTs instead of sending 500s
userAdd :: T.Account -> IO (Maybe T.Session)
@ -53,6 +55,15 @@ server dbFile = userAddH
listTrips :: IO [T.Trip]
listTrips = withConnection dbFile $ \conn -> do
query_ conn "SELECT * FROM Trips"
-- TODO(wpcarro): Validate incoming data like startDate.
deleteTrip :: T.TripPK -> IO NoContent
deleteTrip tripPK =
withConnection dbFile $ \conn -> do
execute conn "DELETE FROM Trips WHERE username = ? AND destination = ? and startDate = ?"
(tripPK & T.tripPKFields)
pure NoContent
mkApp :: FilePath -> IO Application
mkApp dbFile = do
pure $ serve (Proxy @ API) $ server dbFile