git-annex/Command/InitRemote.hs

103 lines
2.8 KiB
Haskell
Raw Normal View History

2011-03-29 03:22:31 +00:00
{- git-annex command
-
- Copyright 2011,2013 Joey Hess <id@joeyh.name>
2011-03-29 03:22:31 +00:00
-
- 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
import qualified Types.Remote as R
import Logs.UUID
import Logs.Trust
import Data.Ord
2011-03-29 03:22:31 +00:00
cmd :: [Command]
cmd = [command "initremote"
(paramPair paramName $ paramOptional $ paramRepeating paramKeyValue)
seek SectionSetup "creates a special (non-git) remote"]
2011-03-29 03:22:31 +00:00
seek :: CommandSeek
seek = withWords start
2011-03-29 03:22:31 +00:00
start :: [String] -> CommandStart
start [] = error "Specify a name for the remote."
start (name:ws) = ifM (isJust <$> findExisting name)
( error $ "There is already a special remote named \"" ++ name ++
"\". (Use enableremote to enable an existing special remote.)"
, do
ifM (isJust <$> Remote.byNameOnly name)
( error $ "There is already a remote named \"" ++ name ++ "\""
, do
let c = newConfig name
t <- findType config
showStart "initremote" name
next $ perform t name $ M.union config c
)
)
2012-11-12 05:05:04 +00:00
where
config = Logs.Remote.keyValToConfig ws
2011-03-29 03:22:31 +00:00
perform :: RemoteType -> String -> R.RemoteConfig -> CommandPerform
perform t name c = do
(c', u) <- R.setup t Nothing Nothing c
next $ cleanup u name c'
2011-03-29 18:55:59 +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
{- See if there's an existing special remote with this name. -}
findExisting :: String -> Annex (Maybe (UUID, R.RemoteConfig))
findExisting name = do
t <- trustMap
matches <- sortBy (comparing $ \(u, _c) -> M.lookup u t )
. findByName name
<$> Logs.Remote.readRemoteLog
return $ headMaybe matches
newConfig :: String -> R.RemoteConfig
2014-10-09 19:35:19 +00:00
newConfig = M.singleton nameKey
2011-03-29 18:55:59 +00:00
findByName :: String -> M.Map UUID R.RemoteConfig -> [(UUID, R.RemoteConfig)]
findByName n = 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
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-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"