summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-03-05 15:31:46 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-03-05 15:31:46 -0400
commitaad1372880ba32f1161a0d05422008cba38bb412 (patch)
tree3ff855af958b091e9d31f6b94438a3b9c4f52550
parentacde7a1736fdee58be0af0773da6e2d9e0c2d220 (diff)
move repoConfig out of Remotes
-rw-r--r--Annex.hs15
-rw-r--r--Command/Map.hs2
-rw-r--r--Remotes.hs25
3 files changed, 21 insertions, 21 deletions
diff --git a/Annex.hs b/Annex.hs
index 62e7e023d..dd3362b29 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -16,10 +16,12 @@ module Annex (
gitRepo,
queue,
queueRun,
- setConfig
+ setConfig,
+ repoConfig
) where
import Control.Monad.State
+import Data.Maybe
import qualified GitRepo as Git
import qualified GitQueue
@@ -115,3 +117,14 @@ setConfig k value = do
-- re-read git config and update the repo's state
g' <- liftIO $ Git.configRead g
Annex.changeState $ \s -> s { Annex.repo = g' }
+
+{- Looks up a per-remote config option in git config.
+ - Failing that, tries looking for a global config option. -}
+repoConfig :: Git.Repo -> String -> String -> Annex String
+repoConfig r key def = do
+ g <- Annex.gitRepo
+ let def' = Git.configGet g global def
+ return $ Git.configGet g local def'
+ where
+ local = "remote." ++ fromMaybe "" (Git.repoRemoteName r) ++ ".annex-" ++ key
+ global = "annex." ++ key
diff --git a/Command/Map.hs b/Command/Map.hs
index b3005e482..fbc48392a 100644
--- a/Command/Map.hs
+++ b/Command/Map.hs
@@ -204,7 +204,7 @@ tryScan r
configlist =
Remotes.onRemote r (pipedconfig, Nothing) "configlist" []
manualconfiglist = do
- sshoptions <- Remotes.repoConfig r "ssh-options" ""
+ sshoptions <- Annex.repoConfig r "ssh-options" ""
let sshcmd =
"cd " ++ shellEscape(Git.workTree r) ++ " && " ++
"git config --list"
diff --git a/Remotes.hs b/Remotes.hs
index aeaa5874f..faee8ace5 100644
--- a/Remotes.hs
+++ b/Remotes.hs
@@ -15,8 +15,7 @@ module Remotes (
byName,
copyFromRemote,
copyToRemote,
- onRemote,
- repoConfig
+ onRemote
) where
import Control.Exception.Extensible
@@ -26,7 +25,6 @@ import Data.String.Utils
import System.Cmd.Utils
import Data.List (intersect, sortBy)
import Control.Monad (when, unless, filterM)
-import Data.Maybe
import Types
import qualified GitRepo as Git
@@ -182,7 +180,7 @@ reposByCost l = do
-}
repoCost :: Git.Repo -> Annex Int
repoCost r = do
- cost <- repoConfig r "cost" ""
+ cost <- Annex.repoConfig r "cost" ""
if not $ null cost
then return $ read cost
else if Git.repoIsUrl r
@@ -194,7 +192,7 @@ repoCost r = do
- annex-ignore. -}
repoNotIgnored :: Git.Repo -> Annex Bool
repoNotIgnored r = do
- ignored <- repoConfig r "ignore" "false"
+ ignored <- Annex.repoConfig r "ignore" "false"
to <- match Annex.toremote
from <- match Annex.fromremote
if to || from
@@ -282,7 +280,7 @@ rsyncParams r sending key file = do
]
-- Convert the ssh command into rsync command line.
let eparam = rsyncShell (Param shellcmd:shellparams)
- o <- repoConfig r "rsync-options" ""
+ o <- Annex.repoConfig r "rsync-options" ""
let base = options ++ map Param (words o) ++ eparam
if sending
then return $ base ++ [dummy, File file]
@@ -316,9 +314,9 @@ git_annex_shell :: Git.Repo -> String -> [CommandParam] -> Annex (Maybe (FilePat
git_annex_shell r command params
| not $ Git.repoIsUrl r = return $ Just (shellcmd, shellopts)
| Git.repoIsSsh r = do
- sshoptions <- repoConfig r "ssh-options" ""
+ sshoptions <- Annex.repoConfig r "ssh-options" ""
return $ Just ("ssh", map Param (words sshoptions) ++
- [Param (Git.urlAuthority r), Param sshcmd])
+ [Param (Git.urlHostUser r), Param sshcmd])
| otherwise = return Nothing
where
dir = Git.workTree r
@@ -326,14 +324,3 @@ git_annex_shell r command params
shellopts = (Param command):(File dir):params
sshcmd = shellcmd ++ " " ++
unwords (map shellEscape $ toCommand shellopts)
-
-{- Looks up a per-remote config option in git config.
- - Failing that, tries looking for a global config option. -}
-repoConfig :: Git.Repo -> String -> String -> Annex String
-repoConfig r key def = do
- g <- Annex.gitRepo
- let def' = Git.configGet g global def
- return $ Git.configGet g local def'
- where
- local = "remote." ++ fromMaybe "" (Git.repoRemoteName r) ++ ".annex-" ++ key
- global = "annex." ++ key