aboutsummaryrefslogtreecommitdiff
path: root/Remotes.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-12-29 16:58:44 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-12-29 16:58:44 -0400
commite64ffc212e394d814ab73a32f750acbccb43dd1f (patch)
treeae60f1b4d535bca39fd95b2b7a05d175b700b737 /Remotes.hs
parentef85e699babd2aabdc64e048422456ac68244ef2 (diff)
support trusted repositories that are not configured as remotes
Diffstat (limited to 'Remotes.hs')
-rw-r--r--Remotes.hs26
1 files changed, 16 insertions, 10 deletions
diff --git a/Remotes.hs b/Remotes.hs
index 390531550..99c0930ad 100644
--- a/Remotes.hs
+++ b/Remotes.hs
@@ -44,9 +44,15 @@ list :: [Git.Repo] -> String
list remotes = join ", " $ map Git.repoDescribe remotes
{- Cost ordered lists of remotes that the LocationLog indicate may have a key.
- - The first list is of remotes that are trusted to have the key; the
- - second is of untrusted remotes that may have the key. -}
-keyPossibilities :: Key -> Annex ([Git.Repo], [Git.Repo])
+ -
+ - The first list is of remotes that are trusted to have the key.
+ -
+ - The second is of untrusted remotes that may have the key.
+ -
+ - Also returns a list of all UUIDs that are trusted to have the key
+ - (some may not have configured remotes).
+ -}
+keyPossibilities :: Key -> Annex ([Git.Repo], [Git.Repo], [UUID])
keyPossibilities key = do
allremotes <- remotesByCost
-- To determine if a remote has a key, its UUID needs to be known.
@@ -79,19 +85,19 @@ keyPossibilities key = do
cachedUUID r = do
u <- getUUID r
return $ null u
- partition allremotes = do
+ partition remotes = do
g <- Annex.gitRepo
validuuids <- liftIO $ keyLocations g key
- alltrusted <- getTrusted
+ trusted <- getTrusted
-- get uuids trusted to have the key
-- note that validuuids is assumed to not have dups
- let validtrusted = intersect validuuids alltrusted
+ let validtrusteduuids = intersect validuuids trusted
-- remotes that match uuids that have the key
- validremotes <- reposByUUID allremotes validuuids
+ validremotes <- reposByUUID remotes validuuids
-- partition out the trusted and untrusted remotes
- trustedremotes <- reposByUUID validremotes validtrusted
- untrustedremotes <- reposWithoutUUID validremotes alltrusted
- return (trustedremotes, untrustedremotes)
+ trustedremotes <- reposByUUID validremotes validtrusteduuids
+ untrustedremotes <- reposWithoutUUID validremotes trusted
+ return (trustedremotes, untrustedremotes, validtrusteduuids)
{- Checks if a given remote has the content for a key inAnnex.
- If the remote cannot be accessed, returns a Left error.