2020-07-28 19:38:30 +02:00
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
module Trips where
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
import Database.SQLite.Simple
|
2020-07-28 19:46:05 +02:00
|
|
|
import Utils
|
2020-07-28 19:38:30 +02:00
|
|
|
|
|
|
|
import qualified Types as T
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
-- | Create a new `trip` in `dbFile`.
|
|
|
|
create :: FilePath -> T.Trip -> IO ()
|
|
|
|
create dbFile trip = withConnection dbFile $ \conn ->
|
|
|
|
execute conn "INSERT INTO Trips (username,destination,startDate,endDate,comment) VALUES (?,?,?,?,?)"
|
2020-07-28 19:46:05 +02:00
|
|
|
(trip |> T.tripFields)
|
2020-07-28 19:38:30 +02:00
|
|
|
|
2020-07-31 12:25:36 +02:00
|
|
|
-- | Attempt to get the trip record from `dbFile` under `tripKey`.
|
|
|
|
get :: FilePath -> T.TripPK -> IO (Maybe T.Trip)
|
|
|
|
get dbFile tripKey = withConnection dbFile $ \conn -> do
|
|
|
|
res <- query conn "SELECT username,destination,startDate,endDate,comment FROM Trips WHERE username = ? AND destination = ? AND startDate = ? LIMIT 1"
|
|
|
|
(T.tripPKFields tripKey)
|
|
|
|
case res of
|
|
|
|
[x] -> pure (Just x)
|
|
|
|
_ -> pure Nothing
|
|
|
|
|
|
|
|
-- | Delete a trip from `dbFile` using its `tripKey` Primary Key.
|
2020-07-28 19:38:30 +02:00
|
|
|
delete :: FilePath -> T.TripPK -> IO ()
|
2020-07-31 12:25:36 +02:00
|
|
|
delete dbFile tripKey =
|
2020-07-28 19:38:30 +02:00
|
|
|
withConnection dbFile $ \conn -> do
|
|
|
|
execute conn "DELETE FROM Trips WHERE username = ? AND destination = ? and startDate = ?"
|
2020-07-31 12:25:36 +02:00
|
|
|
(T.tripPKFields tripKey)
|
2020-07-28 19:38:30 +02:00
|
|
|
|
|
|
|
-- | Return a list of all of the trips in `dbFile`.
|
2020-07-31 11:55:10 +02:00
|
|
|
listAll :: FilePath -> IO [T.Trip]
|
|
|
|
listAll dbFile = withConnection dbFile $ \conn ->
|
2020-07-30 20:52:04 +02:00
|
|
|
query_ conn "SELECT username,destination,startDate,endDate,comment FROM Trips"
|
2020-07-31 11:55:10 +02:00
|
|
|
|
|
|
|
-- | Return a list of all of the trips in `dbFile`.
|
|
|
|
list :: FilePath -> T.Username -> IO [T.Trip]
|
|
|
|
list dbFile username = withConnection dbFile $ \conn ->
|
|
|
|
query conn "SELECT username,destination,startDate,endDate,comment FROM Trips WHERE username = ?"
|
|
|
|
(Only username)
|