diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2016-06-27 03:51:58 +0800 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2016-06-27 17:15:41 +0800 |
commit | a1617ebaeb256b3d359cc9fe389b8001235100c2 (patch) | |
tree | 4d7bcaf69b2987b333e52b072c08f4cb8230641e /src | |
parent | 54f6dfb100d5ad817898d3f7cb13028b91bdecaf (diff) | |
download | mywatch-a1617ebaeb256b3d359cc9fe389b8001235100c2.tar.gz |
Allow killing queries
Diffstat (limited to 'src')
-rw-r--r-- | src/Application.hs | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/src/Application.hs b/src/Application.hs index 899708e..64f8dab 100644 --- a/src/Application.hs +++ b/src/Application.hs @@ -16,9 +16,9 @@ import Data.Default.Class (def) import Data.List (sort) import Data.Pool (Pool, withResource) import Data.Text.Lazy (Text) -import Database.MySQL.Simple (Connection, query_) +import Database.MySQL.Simple (Connection, Only(..), query_, execute) import GHC.Generics (Generic) -import Network.HTTP.Types (ok200, notFound404, StdMethod(HEAD)) +import Network.HTTP.Types (ok200, notFound404, notImplemented501, StdMethod(HEAD)) import Network.Wai (Application, Middleware) import Network.Wai.Middleware.RequestLogger (Destination(Handle), mkRequestLogger, RequestLoggerSettings(destination, outputFormat), @@ -26,7 +26,7 @@ import Network.Wai.Middleware.RequestLogger (Destination(Handle), import Network.Wai.Middleware.Static (addBase, hasPrefix, staticPolicy, (>->)) import System.IO (stderr) import Web.Scotty (ScottyM, ActionM, middleware, json, file, addroute, get, - status, text, param, scottyApp) + delete, status, text, param, scottyApp) import qualified Data.HashMap.Lazy as HM import LogFormat (logFormat) @@ -52,6 +52,8 @@ myProcess ps logger dataDir = do -- Used by client to see which servers are really allowed by Sproxy addroute HEAD "/server/:server/processlist.json" $ apiCanProcessList ps + delete "/server/:server/process/:id" $ apiKill ps + data Process = Process { id :: Int , user :: Text @@ -71,6 +73,24 @@ apiCanProcessList ps = do Nothing -> status notFound404 >> text server Just _ -> status ok200 +apiKill :: Pools -> ActionM () +apiKill ps = do + server <- param "server" + case HM.lookup server ps of + Nothing -> status notFound404 >> text server + Just p -> do + id <- param "id" + if (id :: Int) == 0 then do + [ Only f ] <- withDB p $ \c -> + query_ c "SELECT COUNT(*) FROM information_schema.routines \ + \WHERE routine_type = 'PROCEDURE' AND routine_schema = 'mysql' \ + \AND routine_name = 'mywatch_kill'" + if (f::Int) > 0 then status ok200 + else status notImplemented501 >> text "mywatch_kill" + else do + _ <- withDB p $ \c -> execute c "CALL mysql.mywatch_kill(?)" [ id ] + status ok200 + apiGetProcessList :: Pools -> ActionM () apiGetProcessList ps = do server <- param "server" |