2013-11-05 19:29:56 +00:00
|
|
|
{- git hooks
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2013-2015 Joey Hess <id@joeyh.name>
|
2013-11-05 19:29:56 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2015-01-20 17:39:07 +00:00
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
2013-11-05 19:29:56 +00:00
|
|
|
module Git.Hook where
|
|
|
|
|
|
|
|
import Common
|
|
|
|
import Git
|
|
|
|
import Utility.Tmp
|
2016-09-05 16:09:23 +00:00
|
|
|
import Utility.Shell
|
2015-01-20 17:39:07 +00:00
|
|
|
#ifndef mingw32_HOST_OS
|
|
|
|
import Utility.FileMode
|
|
|
|
#endif
|
2013-11-05 19:29:56 +00:00
|
|
|
|
|
|
|
data Hook = Hook
|
|
|
|
{ hookName :: FilePath
|
|
|
|
, hookScript :: String
|
|
|
|
}
|
2014-03-02 22:01:07 +00:00
|
|
|
deriving (Ord)
|
|
|
|
|
|
|
|
instance Eq Hook where
|
|
|
|
a == b = hookName a == hookName b
|
2013-11-05 19:29:56 +00:00
|
|
|
|
|
|
|
hookFile :: Hook -> Repo -> FilePath
|
|
|
|
hookFile h r = localGitDir r </> "hooks" </> hookName h
|
|
|
|
|
|
|
|
{- Writes a hook. Returns False if the hook already exists with a different
|
|
|
|
- content. -}
|
|
|
|
hookWrite :: Hook -> Repo -> IO Bool
|
|
|
|
hookWrite h r = do
|
|
|
|
let f = hookFile h r
|
|
|
|
ifM (doesFileExist f)
|
|
|
|
( expectedContent h r
|
|
|
|
, do
|
|
|
|
viaTmp writeFile f (hookScript h)
|
|
|
|
p <- getPermissions f
|
|
|
|
setPermissions f $ p {executable = True}
|
|
|
|
return True
|
|
|
|
)
|
|
|
|
|
|
|
|
{- Removes a hook. Returns False if the hook contained something else, and
|
|
|
|
- could not be removed. -}
|
|
|
|
hookUnWrite :: Hook -> Repo -> IO Bool
|
|
|
|
hookUnWrite h r = do
|
|
|
|
let f = hookFile h r
|
|
|
|
ifM (doesFileExist f)
|
|
|
|
( ifM (expectedContent h r)
|
|
|
|
( do
|
|
|
|
removeFile f
|
|
|
|
return True
|
|
|
|
, return False
|
|
|
|
)
|
|
|
|
, return True
|
|
|
|
)
|
|
|
|
|
|
|
|
expectedContent :: Hook -> Repo -> IO Bool
|
|
|
|
expectedContent h r = do
|
|
|
|
content <- readFile $ hookFile h r
|
|
|
|
return $ content == hookScript h
|
2015-01-20 17:39:07 +00:00
|
|
|
|
|
|
|
hookExists :: Hook -> Repo -> IO Bool
|
|
|
|
hookExists h r = do
|
|
|
|
let f = hookFile h r
|
|
|
|
catchBoolIO $
|
|
|
|
#ifndef mingw32_HOST_OS
|
|
|
|
isExecutable . fileMode <$> getFileStatus f
|
|
|
|
#else
|
|
|
|
doesFileExist f
|
|
|
|
#endif
|
|
|
|
|
|
|
|
runHook :: Hook -> Repo -> IO Bool
|
|
|
|
runHook h r = do
|
|
|
|
let f = hookFile h r
|
2016-09-05 16:09:23 +00:00
|
|
|
(c, ps) <- findShellCommand f
|
2015-01-20 17:39:07 +00:00
|
|
|
boolSystem c ps
|