diff options
Diffstat (limited to 'src/server/Model/Job.hs')
-rw-r--r-- | src/server/Model/Job.hs | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/server/Model/Job.hs b/src/server/Model/Job.hs deleted file mode 100644 index 5b0d89d..0000000 --- a/src/server/Model/Job.hs +++ /dev/null @@ -1,33 +0,0 @@ -module Model.Job - ( getLastExecution - , actualizeLastExecution - , actualizeLastCheck - ) where - -import Control.Monad.IO.Class (liftIO) - -import Data.Time.Clock (UTCTime, getCurrentTime) -import Data.Maybe (isJust) - -import Database.Persist - -import Model.Database -import Model.JobKind - -getLastExecution :: JobKind -> Persist (Maybe UTCTime) -getLastExecution kind = do - mbJob <- fmap entityVal <$> selectFirst [JobKind ==. kind] [] - return (mbJob >>= jobLastExecution) - -actualizeLastExecution :: JobKind -> Persist () -actualizeLastExecution kind = do - now <- liftIO getCurrentTime - jobKindDefined <- isJust <$> selectFirst [JobKind ==. kind] [] - if jobKindDefined - then updateWhere [JobKind ==. kind] [JobLastExecution =. Just now] - else insert (Job kind (Just now) (Just now)) >> return () - -actualizeLastCheck :: JobKind -> Persist () -actualizeLastCheck kind = do - now <- liftIO getCurrentTime - updateWhere [JobKind ==. kind] [JobLastCheck =. Just now] |