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
|
|
|
|
|
|
|
-- | Delete a trip from `dbFile` using its `tripPK` Primary Key.
|
|
|
|
delete :: FilePath -> T.TripPK -> IO ()
|
|
|
|
delete dbFile tripPK =
|
|
|
|
withConnection dbFile $ \conn -> do
|
|
|
|
execute conn "DELETE FROM Trips WHERE username = ? AND destination = ? and startDate = ?"
|
2020-07-28 19:46:05 +02:00
|
|
|
(tripPK |> T.tripPKFields)
|
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)
|