2013-04-23 15:38:52 +00:00
|
|
|
{- git-annex extra config files
|
2012-08-02 04:42:33 +00:00
|
|
|
-
|
2019-02-05 18:43:23 +00:00
|
|
|
- Copyright 2012-2019 Joey Hess <id@joeyh.name>
|
2012-08-02 04:42:33 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2012-08-02 04:42:33 +00:00
|
|
|
-}
|
|
|
|
|
2015-05-10 20:38:49 +00:00
|
|
|
{-# OPTIONS_GHC -fno-warn-tabs #-}
|
|
|
|
|
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
|
2015-12-02 19:57:30 +00:00
|
|
|
filter valid . nub . map dropTrailingPathSeparator . lines
|
2013-04-23 16:36:37 +00:00
|
|
|
<$> catchDefaultIO "" (readFile f)
|
2015-12-02 19:57:30 +00:00
|
|
|
where
|
|
|
|
-- Ignore any relative paths; some old buggy versions added eg "."
|
|
|
|
valid = isAbsolute
|
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
|
2015-01-09 17:11:56 +00:00
|
|
|
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 ()
|
2015-12-02 19:57:30 +00:00
|
|
|
addAutoStartFile path = do
|
|
|
|
path' <- absPath path
|
|
|
|
modifyAutoStartFile $ (:) path'
|
2013-03-03 21:07:27 +00:00
|
|
|
|
|
|
|
{- Removes a directory from the autostart file. -}
|
|
|
|
removeAutoStartFile :: FilePath -> IO ()
|
2015-12-02 19:57:30 +00:00
|
|
|
removeAutoStartFile path = do
|
|
|
|
path' <- absPath path
|
|
|
|
modifyAutoStartFile $
|
|
|
|
filter (not . equalFilePath path')
|
2013-03-03 21:07:27 +00:00
|
|
|
|
2019-03-18 16:33:56 +00:00
|
|
|
{- The path to git-annex is written here; which is useful when something
|
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
|
2015-02-28 20:59:52 +00:00
|
|
|
, cannotFindProgram
|
2013-05-20 21:42:40 +00:00
|
|
|
)
|
|
|
|
)
|
2013-04-23 15:41:52 +00:00
|
|
|
where
|
2014-10-09 18:53:13 +00:00
|
|
|
cmd = "git-annex"
|
2015-02-28 20:59:52 +00:00
|
|
|
|
|
|
|
cannotFindProgram :: IO a
|
|
|
|
cannotFindProgram = do
|
|
|
|
f <- programFile
|
2016-11-16 01:29:54 +00:00
|
|
|
giveup $ "cannot find git-annex program in PATH or in the location listed in " ++ f
|
2019-02-05 18:43:23 +00:00
|
|
|
|
|
|
|
{- A .noannex file in a git repository prevents git-annex from
|
|
|
|
- initializing that repository.. The content of the file is returned. -}
|
2019-02-08 17:16:10 +00:00
|
|
|
noAnnexFileContent :: Maybe FilePath -> IO (Maybe String)
|
|
|
|
noAnnexFileContent repoworktree = case repoworktree of
|
2019-02-05 18:43:23 +00:00
|
|
|
Nothing -> return Nothing
|
|
|
|
Just wt -> catchMaybeIO (readFile (wt </> ".noannex"))
|