2011-03-29 03:22:31 +00:00
|
|
|
{- 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
|
|
|
|
|
2011-10-05 20:02:51 +00:00
|
|
|
import Common.Annex
|
2011-03-29 03:22:31 +00:00
|
|
|
import Command
|
|
|
|
import qualified Remote
|
2011-10-15 20:21:08 +00:00
|
|
|
import qualified Logs.Remote
|
2011-06-02 01:56:04 +00:00
|
|
|
import qualified Types.Remote as R
|
2011-10-15 21:47:03 +00:00
|
|
|
import Annex.UUID
|
2012-06-07 15:16:48 +00:00
|
|
|
import Logs.UUID
|
2011-03-29 03:22:31 +00:00
|
|
|
|
2011-10-29 19:19:05 +00:00
|
|
|
def :: [Command]
|
|
|
|
def = [command "initremote"
|
|
|
|
(paramPair paramName $ paramOptional $ paramRepeating paramKeyValue)
|
|
|
|
seek "sets up a special (non-git) remote"]
|
2011-03-29 03:22:31 +00:00
|
|
|
|
|
|
|
seek :: [CommandSeek]
|
2011-05-16 16:25:54 +00:00
|
|
|
seek = [withWords start]
|
2011-03-29 03:22:31 +00:00
|
|
|
|
2011-09-15 20:50:49 +00:00
|
|
|
start :: [String] -> CommandStart
|
2011-12-15 22:11:42 +00:00
|
|
|
start [] = do
|
|
|
|
names <- remoteNames
|
|
|
|
error $ "Specify a name for the remote. " ++
|
|
|
|
if null names
|
|
|
|
then ""
|
|
|
|
else "Either a new name, or one of these existing special remotes: " ++ join " " names
|
|
|
|
start (name:ws) = do
|
2011-03-29 18:55:59 +00:00
|
|
|
(u, c) <- findByName name
|
2011-09-21 03:24:48 +00:00
|
|
|
let fullconfig = config `M.union` c
|
2011-03-29 18:55:59 +00:00
|
|
|
t <- findType fullconfig
|
2011-05-16 16:25:54 +00:00
|
|
|
|
2011-03-29 03:22:31 +00:00
|
|
|
showStart "initremote" name
|
2012-07-28 01:05:27 +00:00
|
|
|
next $ perform t u name $ M.union config c
|
2011-03-29 03:22:31 +00:00
|
|
|
|
2012-11-12 05:05:04 +00:00
|
|
|
where
|
|
|
|
config = Logs.Remote.keyValToConfig ws
|
2011-03-29 03:22:31 +00:00
|
|
|
|
2012-07-28 01:05:27 +00:00
|
|
|
perform :: RemoteType -> UUID -> String -> R.RemoteConfig -> CommandPerform
|
|
|
|
perform t u name c = do
|
2011-06-02 01:56:04 +00:00
|
|
|
c' <- R.setup t u c
|
2012-07-28 01:05:27 +00:00
|
|
|
next $ cleanup u name c'
|
2011-03-29 18:55:59 +00:00
|
|
|
|
2012-07-28 01:05:27 +00:00
|
|
|
cleanup :: UUID -> String -> R.RemoteConfig -> CommandCleanup
|
|
|
|
cleanup u name c = do
|
|
|
|
describeUUID u name
|
2011-10-15 20:21:08 +00:00
|
|
|
Logs.Remote.configSet u c
|
2012-12-13 04:45:27 +00:00
|
|
|
return True
|
2011-03-29 17:49:54 +00:00
|
|
|
|
2011-03-29 18:55:59 +00:00
|
|
|
{- Look up existing remote's UUID and config by name, or generate a new one -}
|
2011-06-02 01:56:04 +00:00
|
|
|
findByName :: String -> Annex (UUID, R.RemoteConfig)
|
2011-03-29 18:55:59 +00:00
|
|
|
findByName name = do
|
2011-10-15 20:21:08 +00:00
|
|
|
m <- Logs.Remote.readRemoteLog
|
2011-05-15 06:49:43 +00:00
|
|
|
maybe generate return $ findByName' name m
|
2012-11-12 05:05:04 +00:00
|
|
|
where
|
|
|
|
generate = do
|
|
|
|
uuid <- liftIO genUUID
|
|
|
|
return (uuid, M.insert nameKey name M.empty)
|
2011-03-29 18:55:59 +00:00
|
|
|
|
2011-06-02 01:56:04 +00:00
|
|
|
findByName' :: String -> M.Map UUID R.RemoteConfig -> Maybe (UUID, R.RemoteConfig)
|
2011-12-15 22:11:42 +00:00
|
|
|
findByName' n = headMaybe . filter (matching . snd) . M.toList
|
2012-11-12 05:05:04 +00:00
|
|
|
where
|
|
|
|
matching c = case M.lookup nameKey c of
|
|
|
|
Nothing -> False
|
|
|
|
Just n'
|
|
|
|
| n' == n -> True
|
|
|
|
| otherwise -> False
|
2011-03-29 17:49:54 +00:00
|
|
|
|
2011-05-29 01:58:48 +00:00
|
|
|
remoteNames :: Annex [String]
|
|
|
|
remoteNames = do
|
2011-10-15 20:21:08 +00:00
|
|
|
m <- Logs.Remote.readRemoteLog
|
2011-07-15 16:47:14 +00:00
|
|
|
return $ mapMaybe (M.lookup nameKey . snd) $ M.toList m
|
2011-05-29 01:58:48 +00:00
|
|
|
|
2011-03-29 18:55:59 +00:00
|
|
|
{- find the specified remote type -}
|
2011-12-31 08:11:39 +00:00
|
|
|
findType :: R.RemoteConfig -> Annex RemoteType
|
2011-05-15 06:49:43 +00:00
|
|
|
findType config = maybe unspecified specified $ M.lookup typeKey config
|
2012-11-12 05:05:04 +00:00
|
|
|
where
|
|
|
|
unspecified = error "Specify the type of remote with type="
|
|
|
|
specified s = case filter (findtype s) Remote.remoteTypes of
|
|
|
|
[] -> error $ "Unknown remote type " ++ s
|
|
|
|
(t:_) -> return t
|
|
|
|
findtype s i = R.typename i == s
|
2011-03-29 18:55:59 +00:00
|
|
|
|
2011-03-29 17:49:54 +00:00
|
|
|
{- The name of a configured remote is stored in its config using this key. -}
|
|
|
|
nameKey :: String
|
|
|
|
nameKey = "name"
|
2011-03-29 18:55:59 +00:00
|
|
|
|
|
|
|
{- The type of a remote is stored in its config using this key. -}
|
|
|
|
typeKey :: String
|
|
|
|
typeKey = "type"
|