2013-04-23 15:38:52 +00:00
|
|
|
{- git-annex extra config files
|
2012-08-02 04:42:33 +00:00
|
|
|
-
|
|
|
|
- Copyright 2012 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2013-04-23 15:38:52 +00:00
|
|
|
module Config.Files where
|
2012-08-02 04:42:33 +00:00
|
|
|
|
2012-08-27 17:43:03 +00:00
|
|
|
import Common
|
2013-05-12 23:19:28 +00:00
|
|
|
import Utility.Tmp
|
2012-08-02 04:42:33 +00:00
|
|
|
import Utility.FreeDesktop
|
|
|
|
|
|
|
|
{- ~/.config/git-annex/file -}
|
|
|
|
userConfigFile :: FilePath -> IO FilePath
|
|
|
|
userConfigFile file = do
|
|
|
|
dir <- userConfigDir
|
|
|
|
return $ dir </> "git-annex" </> file
|
|
|
|
|
|
|
|
autoStartFile :: IO FilePath
|
|
|
|
autoStartFile = userConfigFile "autostart"
|
|
|
|
|
2013-03-03 21:07:27 +00:00
|
|
|
{- Returns anything listed in the autostart file (which may not exist). -}
|
|
|
|
readAutoStartFile :: IO [FilePath]
|
|
|
|
readAutoStartFile = do
|
|
|
|
f <- autoStartFile
|
2013-04-23 16:36:37 +00:00
|
|
|
nub . map dropTrailingPathSeparator . lines
|
|
|
|
<$> catchDefaultIO "" (readFile f)
|
2013-03-03 21:07:27 +00:00
|
|
|
|
2013-04-23 16:36:37 +00:00
|
|
|
modifyAutoStartFile :: ([FilePath] -> [FilePath]) -> IO ()
|
|
|
|
modifyAutoStartFile func = do
|
2013-03-03 21:07:27 +00:00
|
|
|
dirs <- readAutoStartFile
|
2013-04-23 16:36:37 +00:00
|
|
|
let dirs' = nubBy equalFilePath $ func dirs
|
|
|
|
when (dirs' /= dirs) $ do
|
2013-03-03 21:07:27 +00:00
|
|
|
f <- autoStartFile
|
|
|
|
createDirectoryIfMissing True (parentDir f)
|
2013-09-25 07:09:06 +00:00
|
|
|
viaTmp writeFile f $ unlines dirs'
|
2013-04-23 16:36:37 +00:00
|
|
|
|
2013-06-11 04:06:06 +00:00
|
|
|
{- Adds a directory to the autostart file. If the directory is already
|
|
|
|
- present, it's moved to the top, so it will be used as the default
|
|
|
|
- when opening the webapp. -}
|
2013-04-23 16:36:37 +00:00
|
|
|
addAutoStartFile :: FilePath -> IO ()
|
|
|
|
addAutoStartFile path = modifyAutoStartFile $ (:) path
|
2013-03-03 21:07:27 +00:00
|
|
|
|
|
|
|
{- Removes a directory from the autostart file. -}
|
|
|
|
removeAutoStartFile :: FilePath -> IO ()
|
2013-04-23 16:36:37 +00:00
|
|
|
removeAutoStartFile path = modifyAutoStartFile $
|
|
|
|
filter (not . equalFilePath path)
|
2013-03-03 21:07:27 +00:00
|
|
|
|
2012-08-02 04:42:33 +00:00
|
|
|
{- The path to git-annex is written here; which is useful when cabal
|
2013-05-20 21:42:40 +00:00
|
|
|
- has installed it to some awful non-PATH location. -}
|
2012-08-02 04:42:33 +00:00
|
|
|
programFile :: IO FilePath
|
|
|
|
programFile = userConfigFile "program"
|
2012-08-27 17:43:03 +00:00
|
|
|
|
|
|
|
{- Returns a command to run for git-annex. -}
|
|
|
|
readProgramFile :: IO FilePath
|
|
|
|
readProgramFile = do
|
|
|
|
programfile <- programFile
|
2013-05-20 21:42:40 +00:00
|
|
|
p <- catchDefaultIO cmd $
|
2013-04-23 15:41:52 +00:00
|
|
|
fromMaybe cmd . headMaybe . lines <$> readFile programfile
|
2013-05-20 21:42:40 +00:00
|
|
|
ifM (inPath p)
|
|
|
|
( return p
|
|
|
|
, ifM (inPath cmd)
|
|
|
|
( return cmd
|
|
|
|
, error $ "cannot find git-annex program in PATH or in the location listed in " ++ programfile
|
|
|
|
)
|
|
|
|
)
|
2013-04-23 15:41:52 +00:00
|
|
|
where
|
|
|
|
cmd = "git-annex"
|