summaryrefslogtreecommitdiff
path: root/Command/InitRemote.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-03-28 23:22:31 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-03-28 23:22:31 -0400
commitb1db436816b6b70ff0b9891bbc4a5468d9b895b3 (patch)
tree9515513e4143a7797734165d3e351f15366f808b /Command/InitRemote.hs
parent235720d27e5c1044ddd8904d7140c9e8841e5715 (diff)
started on initremote
Diffstat (limited to 'Command/InitRemote.hs')
-rw-r--r--Command/InitRemote.hs48
1 files changed, 48 insertions, 0 deletions
diff --git a/Command/InitRemote.hs b/Command/InitRemote.hs
new file mode 100644
index 000000000..cf6a341c5
--- /dev/null
+++ b/Command/InitRemote.hs
@@ -0,0 +1,48 @@
+{- git-annex command
+ -
+ - Copyright 2011 Joey Hess <joey@kitenet.net>
+ -
+ - Licensed under the GNU GPL version 3 or higher.
+ -}
+
+module Command.InitRemote where
+
+import qualified Data.Map as M
+import Control.Monad (when)
+import Control.Monad.State (liftIO)
+
+import Command
+import qualified Remote
+import UUID
+import Messages
+
+command :: [Command]
+command = [repoCommand "initremote"
+ (paramPair paramName $
+ paramOptional $ paramRepeating $ paramKeyValue) seek
+ "sets up a special (non-git) remote"]
+
+seek :: [CommandSeek]
+seek = [withString start]
+
+start :: CommandStartString
+start params = notBareRepo $ do
+ when (null ws) $ error "Specify a name for the remote"
+ showStart "initremote" name
+ r <- Remote.configGet name
+ (u, c) <- case r of
+ Just t -> return t
+ Nothing -> do
+ uuid <- liftIO $ genUUID
+ return $ (uuid, M.empty)
+ return $ Just $ perform name u $ M.union config c
+
+ where
+ ws = words params
+ name = head ws
+ config = Remote.keyValToMap $ tail ws
+
+perform :: String -> UUID -> M.Map String String -> CommandPerform
+perform name uuid config = do
+ liftIO $ putStrLn $ show $ (uuid, config)
+ return Nothing