2019-04-15 17:05:44 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
|
|
|
- Copyright 2019 Joey Hess <id@joeyh.name>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.RenameRemote where
|
|
|
|
|
|
|
|
import Command
|
2019-04-16 16:23:46 +00:00
|
|
|
import qualified Annex.SpecialRemote
|
2019-04-15 17:05:44 +00:00
|
|
|
import qualified Logs.Remote
|
|
|
|
import qualified Types.Remote as R
|
|
|
|
import qualified Remote
|
|
|
|
|
|
|
|
import qualified Data.Map as M
|
|
|
|
|
|
|
|
cmd :: Command
|
|
|
|
cmd = command "renameremote" SectionSetup
|
|
|
|
"changes name of special remote"
|
|
|
|
(paramPair paramName paramName)
|
|
|
|
(withParams seek)
|
|
|
|
|
|
|
|
seek :: CmdParams -> CommandSeek
|
|
|
|
seek = withWords (commandAction . start)
|
|
|
|
|
|
|
|
start :: [String] -> CommandStart
|
2019-04-16 16:23:46 +00:00
|
|
|
start (oldname:newname:[]) = Annex.SpecialRemote.findExisting oldname >>= \case
|
|
|
|
Just (u, cfg) -> Annex.SpecialRemote.findExisting newname >>= \case
|
|
|
|
Just _ -> giveup $ "The name " ++ newname ++ " is already used by a special remote."
|
|
|
|
Nothing -> go u cfg
|
|
|
|
-- Support lookup by uuid or description as well as remote name,
|
|
|
|
-- as a fallback when there is nothing with the name in the
|
|
|
|
-- special remote log.
|
|
|
|
Nothing -> Remote.nameToUUID' oldname >>= \case
|
2019-04-15 17:05:44 +00:00
|
|
|
Left e -> giveup e
|
2019-04-16 16:23:46 +00:00
|
|
|
Right u -> do
|
|
|
|
m <- Logs.Remote.readRemoteLog
|
|
|
|
case M.lookup u m of
|
|
|
|
Nothing -> giveup "That is not a special remote."
|
|
|
|
Just cfg -> go u cfg
|
|
|
|
where
|
|
|
|
go u cfg = do
|
|
|
|
showStart' "rename" Nothing
|
|
|
|
next $ perform u cfg newname
|
2019-04-15 17:05:44 +00:00
|
|
|
start _ = giveup "Specify an old name (or uuid or description) and a new name."
|
|
|
|
|
|
|
|
perform :: UUID -> R.RemoteConfig -> String -> CommandPerform
|
|
|
|
perform u cfg newname = do
|
|
|
|
Logs.Remote.configSet u (M.insert "name" newname cfg)
|
|
|
|
next $ return True
|