summaryrefslogtreecommitdiff
path: root/Remote/Special.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-03-30 14:00:54 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-03-30 14:00:54 -0400
commit619f07ee6a0ad875f365886096b112b6c18b0606 (patch)
tree4b2de6c0657b6d46fff477982d3bc78c2c8ccc4c /Remote/Special.hs
parenta47ed922e1302480d79f54f553532e85eebae872 (diff)
boilerplate reduction
Diffstat (limited to 'Remote/Special.hs')
-rw-r--r--Remote/Special.hs43
1 files changed, 43 insertions, 0 deletions
diff --git a/Remote/Special.hs b/Remote/Special.hs
new file mode 100644
index 000000000..d985eef6f
--- /dev/null
+++ b/Remote/Special.hs
@@ -0,0 +1,43 @@
+{- common functions for special remotes
+ -
+ - Copyright 2011 Joey Hess <joey@kitenet.net>
+ -
+ - Licensed under the GNU GPL version 3 or higher.
+ -}
+
+module Remote.Special where
+
+import qualified Data.Map as M
+import Data.Maybe
+import Data.String.Utils
+import Control.Monad.State (liftIO)
+
+import Types
+import qualified GitRepo as Git
+import qualified Annex
+import UUID
+import Utility
+
+{- Special remotes don't have a configured url, so Git.Repo does not
+ - automatically generate remotes for them. This looks for a different
+ - configuration key instead.
+ -}
+findSpecialRemotes :: String -> Annex [Git.Repo]
+findSpecialRemotes s = do
+ g <- Annex.gitRepo
+ return $ map construct $ remotepairs g
+ where
+ remotepairs r = M.toList $ M.filterWithKey match $ Git.configMap r
+ construct (k,_) = Git.repoRemoteNameSet Git.repoFromUnknown k
+ match k _ = startswith "remote." k && endswith (".annex-"++s) k
+
+{- Sets up configuration for a special remote in .git/config. -}
+gitConfigSpecialRemote :: String -> UUID -> M.Map String String -> Annex ()
+gitConfigSpecialRemote s u c = do
+ g <- Annex.gitRepo
+ liftIO $ do
+ Git.run g "config" [Param (configsetting $ "annex-"++s), Param "true"]
+ Git.run g "config" [Param (configsetting $ "annex-uuid"), Param u]
+ where
+ remotename = fromJust (M.lookup "name" c)
+ configsetting v = "remote." ++ remotename ++ "." ++ v