2013-01-03 15:16:40 -04:00
|
|
|
{- git-annex assistant webapp control
|
|
|
|
-
|
2013-11-23 16:21:09 -04:00
|
|
|
- Copyright 2012, 2013 Joey Hess <joey@kitenet.net>
|
2013-01-03 15:16:40 -04:00
|
|
|
-
|
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
{-# LANGUAGE CPP, TypeFamilies, QuasiQuotes, MultiParamTypeClasses, TemplateHaskell, OverloadedStrings, RankNTypes #-}
|
|
|
|
|
|
|
|
module Assistant.WebApp.Control where
|
|
|
|
|
|
|
|
import Assistant.WebApp.Common
|
2013-01-26 17:09:33 +11:00
|
|
|
import Assistant.DaemonStatus
|
2013-04-10 17:52:04 -04:00
|
|
|
import Assistant.Alert
|
2013-10-26 16:54:49 -04:00
|
|
|
import Assistant.TransferSlots
|
2013-11-23 15:50:17 -04:00
|
|
|
import Assistant.Restart
|
2013-11-23 16:21:09 -04:00
|
|
|
import Utility.LogFile
|
|
|
|
import Utility.NotificationBroadcaster
|
2013-01-03 15:16:40 -04:00
|
|
|
|
|
|
|
import Control.Concurrent
|
|
|
|
import System.Posix (getProcessID, signalProcess, sigTERM)
|
2013-01-26 17:09:33 +11:00
|
|
|
import qualified Data.Map as M
|
2013-11-23 16:21:09 -04:00
|
|
|
import qualified Data.Text as T
|
2013-01-03 15:16:40 -04:00
|
|
|
|
2013-06-27 01:15:28 -04:00
|
|
|
getShutdownR :: Handler Html
|
2013-01-03 15:16:40 -04:00
|
|
|
getShutdownR = page "Shutdown" Nothing $
|
|
|
|
$(widgetFile "control/shutdown")
|
|
|
|
|
2013-06-27 01:15:28 -04:00
|
|
|
getShutdownConfirmedR :: Handler Html
|
2013-04-10 17:38:53 -04:00
|
|
|
getShutdownConfirmedR = do
|
2013-04-10 17:52:04 -04:00
|
|
|
liftAssistant $ do
|
2013-10-26 16:54:49 -04:00
|
|
|
{- Remove all alerts for currently running activities. -}
|
2013-04-10 17:52:04 -04:00
|
|
|
updateAlertMap $ M.filter $ \a -> alertClass a /= Activity
|
|
|
|
void $ addAlert shutdownAlert
|
2013-10-26 16:54:49 -04:00
|
|
|
{- Stop transfers the assistant is running,
|
|
|
|
- otherwise they would continue past shutdown.
|
|
|
|
- Pausing transfers prevents more being started up (and stops
|
|
|
|
- the transfer processes). -}
|
|
|
|
ts <- M.keys . currentTransfers <$> getDaemonStatus
|
|
|
|
mapM_ pauseTransfer ts
|
2013-11-25 14:33:14 -04:00
|
|
|
webapp <- getYesod
|
|
|
|
let url = T.unpack $ yesodRender webapp (T.pack "") NotRunningR []
|
|
|
|
{- Signal any other web browsers. -}
|
|
|
|
liftAssistant $ do
|
|
|
|
modifyDaemonStatus_ $ \status -> status { globalRedirUrl = Just url }
|
|
|
|
liftIO . sendNotification . globalRedirNotifier =<< getDaemonStatus
|
|
|
|
{- Wait 2 seconds before shutting down, to give the web
|
|
|
|
- page time to load in the browser. -}
|
|
|
|
void $ liftIO $ forkIO $ do
|
|
|
|
threadDelay 2000000
|
|
|
|
signalProcess sigTERM =<< getProcessID
|
|
|
|
redirect NotRunningR
|
2013-11-23 16:21:09 -04:00
|
|
|
|
|
|
|
{- Use a custom page to avoid putting long polling elements on it that will
|
|
|
|
- fail and cause the web browser to show an error once the webapp is
|
|
|
|
- truely stopped. -}
|
|
|
|
getNotRunningR :: Handler Html
|
|
|
|
getNotRunningR = customPage' False Nothing $
|
|
|
|
$(widgetFile "control/notrunning")
|
2013-01-03 18:50:30 -04:00
|
|
|
|
2013-06-27 01:15:28 -04:00
|
|
|
getRestartR :: Handler Html
|
2013-11-23 15:50:17 -04:00
|
|
|
getRestartR = do
|
|
|
|
liftAssistant prepRestart
|
|
|
|
url <- liftAssistant runRestart
|
|
|
|
liftAssistant $ postRestart url
|
|
|
|
redirect url
|
2013-01-15 13:52:35 -04:00
|
|
|
|
2013-01-26 17:09:33 +11:00
|
|
|
getRestartThreadR :: ThreadName -> Handler ()
|
|
|
|
getRestartThreadR name = do
|
|
|
|
m <- liftAssistant $ startedThreads <$> getDaemonStatus
|
|
|
|
liftIO $ maybe noop snd $ M.lookup name m
|
|
|
|
redirectBack
|
|
|
|
|
2013-06-27 01:15:28 -04:00
|
|
|
getLogR :: Handler Html
|
2013-01-15 13:52:35 -04:00
|
|
|
getLogR = page "Logs" Nothing $ do
|
2013-03-16 00:12:28 -04:00
|
|
|
logfile <- liftAnnex $ fromRepo gitAnnexLogFile
|
2013-01-15 13:52:35 -04:00
|
|
|
logs <- liftIO $ listLogs logfile
|
2013-11-20 13:41:13 -04:00
|
|
|
logcontent <- liftIO $ concat <$> mapM readFileStrictAnyEncoding logs
|
2013-01-15 13:52:35 -04:00
|
|
|
$(widgetFile "control/log")
|