2011-03-27 19:56:43 +00:00
|
|
|
|
{- git-annex remotes
|
|
|
|
|
-
|
2024-02-05 19:16:25 +00:00
|
|
|
|
- Copyright 2011-2024 Joey Hess <id@joeyh.name>
|
2011-03-27 19:56:43 +00:00
|
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2011-03-27 19:56:43 +00:00
|
|
|
|
-}
|
|
|
|
|
|
2022-03-02 22:24:06 +00:00
|
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
2019-01-01 19:39:45 +00:00
|
|
|
|
|
2011-03-27 19:56:43 +00:00
|
|
|
|
module Remote (
|
2011-03-27 21:12:32 +00:00
|
|
|
|
Remote,
|
|
|
|
|
uuid,
|
|
|
|
|
name,
|
2020-05-14 18:19:28 +00:00
|
|
|
|
action,
|
|
|
|
|
verifiedAction,
|
2011-03-27 21:12:32 +00:00
|
|
|
|
storeKey,
|
|
|
|
|
retrieveKeyFile,
|
2012-01-20 17:23:11 +00:00
|
|
|
|
retrieveKeyFileCheap,
|
2018-06-21 17:34:11 +00:00
|
|
|
|
retrievalSecurityPolicy,
|
2011-03-27 21:12:32 +00:00
|
|
|
|
removeKey,
|
|
|
|
|
hasKey,
|
|
|
|
|
hasKeyCheap,
|
2012-02-14 07:49:48 +00:00
|
|
|
|
whereisKey,
|
2013-10-11 20:03:18 +00:00
|
|
|
|
remoteFsck,
|
2011-07-05 22:31:46 +00:00
|
|
|
|
|
2011-03-29 18:55:59 +00:00
|
|
|
|
remoteTypes,
|
2011-12-30 23:10:54 +00:00
|
|
|
|
remoteList,
|
2015-08-05 17:49:54 +00:00
|
|
|
|
remoteList',
|
2011-11-18 17:22:48 +00:00
|
|
|
|
remoteMap,
|
2014-04-09 18:10:29 +00:00
|
|
|
|
remoteMap',
|
2012-01-07 22:13:12 +00:00
|
|
|
|
uuidDescriptions,
|
2015-10-26 18:55:40 +00:00
|
|
|
|
addName,
|
2011-03-27 20:55:43 +00:00
|
|
|
|
byName,
|
2014-05-19 20:19:33 +00:00
|
|
|
|
byName',
|
2014-12-29 17:41:03 +00:00
|
|
|
|
byNameOrGroup,
|
2013-11-07 22:02:00 +00:00
|
|
|
|
byNameOnly,
|
2013-03-05 19:39:42 +00:00
|
|
|
|
byNameWithUUID,
|
2016-05-23 21:03:20 +00:00
|
|
|
|
byUUID,
|
2012-08-26 18:45:47 +00:00
|
|
|
|
byCost,
|
2011-07-06 20:06:10 +00:00
|
|
|
|
prettyPrintUUIDs,
|
2015-10-26 18:55:40 +00:00
|
|
|
|
prettyPrintUUIDsDescs,
|
2015-06-16 17:50:28 +00:00
|
|
|
|
prettyPrintUUIDsWith,
|
2012-07-30 01:54:23 +00:00
|
|
|
|
prettyListUUIDs,
|
2013-04-03 21:01:40 +00:00
|
|
|
|
prettyUUID,
|
2013-01-01 17:52:47 +00:00
|
|
|
|
remoteFromUUID,
|
2011-03-27 19:56:43 +00:00
|
|
|
|
remotesWithUUID,
|
2011-03-29 03:22:31 +00:00
|
|
|
|
remotesWithoutUUID,
|
2012-01-10 17:11:16 +00:00
|
|
|
|
keyLocations,
|
2023-11-30 19:11:57 +00:00
|
|
|
|
IncludeIgnored(..),
|
2011-07-06 20:06:10 +00:00
|
|
|
|
keyPossibilities,
|
2015-10-09 18:57:32 +00:00
|
|
|
|
remoteLocations,
|
2011-07-06 20:06:10 +00:00
|
|
|
|
nameToUUID,
|
2014-03-13 19:35:59 +00:00
|
|
|
|
nameToUUID',
|
2011-07-05 22:31:46 +00:00
|
|
|
|
showTriedRemotes,
|
2020-06-26 17:00:40 +00:00
|
|
|
|
listRemoteNames,
|
2011-07-05 22:31:46 +00:00
|
|
|
|
showLocations,
|
2011-10-28 21:26:38 +00:00
|
|
|
|
forceTrust,
|
2013-10-27 20:42:13 +00:00
|
|
|
|
logStatus,
|
2014-02-01 14:33:55 +00:00
|
|
|
|
checkAvailable,
|
2014-12-11 18:09:57 +00:00
|
|
|
|
claimingUrl,
|
2024-02-05 19:16:25 +00:00
|
|
|
|
claimingUrl',
|
2017-09-07 17:45:31 +00:00
|
|
|
|
isExportSupported,
|
2024-05-24 18:52:22 +00:00
|
|
|
|
gitSyncableRemote,
|
|
|
|
|
gitSyncableRemoteType,
|
2011-03-27 19:56:43 +00:00
|
|
|
|
) where
|
|
|
|
|
|
2013-03-16 21:43:42 +00:00
|
|
|
|
import Data.Ord
|
2019-01-01 19:39:45 +00:00
|
|
|
|
import Data.String
|
2016-07-26 23:15:34 +00:00
|
|
|
|
import qualified Data.Map as M
|
Fix mangling of --json output of utf-8 characters when not running in a utf-8 locale
As long as all code imports Utility.Aeson rather than Data.Aeson,
and no Strings that may contain utf-8 characters are used for eg, object
keys via T.pack, this is guaranteed to fix the problem everywhere that
git-annex generates json.
It's kind of annoying to need to wrap ToJSON with a ToJSON', especially
since every data type that has a ToJSON instance has to be ported over.
However, that only took 50 lines of code, which is worth it to ensure full
coverage. I initially tried an alternative approach of a newtype FileEncoded,
which had to be used everywhere a String was fed into aeson, and chasing
down all the sites would have been far too hard. Did consider creating an
intentionally overlapping instance ToJSON String, and letting ghc fail
to build anything that passed in a String, but am not sure that wouldn't
pollute some library that git-annex depends on that happens to use ToJSON
String internally.
This commit was supported by the NSF-funded DataLad project.
2018-04-16 19:42:45 +00:00
|
|
|
|
import qualified Data.Vector as V
|
2011-03-27 19:56:43 +00:00
|
|
|
|
|
2016-01-20 20:36:33 +00:00
|
|
|
|
import Annex.Common
|
2011-06-02 01:56:04 +00:00
|
|
|
|
import Types.Remote
|
2011-03-27 19:56:43 +00:00
|
|
|
|
import qualified Annex
|
2011-10-15 21:47:03 +00:00
|
|
|
|
import Annex.UUID
|
2020-12-07 18:44:21 +00:00
|
|
|
|
import Annex.Action
|
2011-10-15 20:21:08 +00:00
|
|
|
|
import Logs.UUID
|
|
|
|
|
import Logs.Trust
|
2012-12-12 23:20:38 +00:00
|
|
|
|
import Logs.Location hiding (logStatus)
|
2020-09-22 18:10:30 +00:00
|
|
|
|
import Logs.Remote
|
2014-12-11 18:09:57 +00:00
|
|
|
|
import Logs.Web
|
2012-01-10 17:11:16 +00:00
|
|
|
|
import Remote.List
|
2020-05-27 15:54:39 +00:00
|
|
|
|
import Remote.List.Util
|
2013-08-22 16:01:53 +00:00
|
|
|
|
import Config
|
2017-08-17 16:26:14 +00:00
|
|
|
|
import Config.DynamicConfig
|
2019-12-05 18:36:43 +00:00
|
|
|
|
import Git.Types (RemoteName, ConfigKey(..), fromConfigValue)
|
Fix mangling of --json output of utf-8 characters when not running in a utf-8 locale
As long as all code imports Utility.Aeson rather than Data.Aeson,
and no Strings that may contain utf-8 characters are used for eg, object
keys via T.pack, this is guaranteed to fix the problem everywhere that
git-annex generates json.
It's kind of annoying to need to wrap ToJSON with a ToJSON', especially
since every data type that has a ToJSON instance has to be ported over.
However, that only took 50 lines of code, which is worth it to ensure full
coverage. I initially tried an alternative approach of a newtype FileEncoded,
which had to be used everywhere a String was fed into aeson, and chasing
down all the sites would have been far too hard. Did consider creating an
intentionally overlapping instance ToJSON String, and letting ghc fail
to build anything that passed in a String, but am not sure that wouldn't
pollute some library that git-annex depends on that happens to use ToJSON
String internally.
This commit was supported by the NSF-funded DataLad project.
2018-04-16 19:42:45 +00:00
|
|
|
|
import Utility.Aeson
|
2011-12-31 05:42:42 +00:00
|
|
|
|
|
2012-02-14 07:49:48 +00:00
|
|
|
|
{- Map from UUIDs of Remotes to a calculated value. -}
|
2014-04-09 18:10:29 +00:00
|
|
|
|
remoteMap :: (Remote -> v) -> Annex (M.Map UUID v)
|
2018-06-04 18:31:55 +00:00
|
|
|
|
remoteMap mkv = remoteMap' mkv (pure . mkk)
|
2014-04-09 18:10:29 +00:00
|
|
|
|
where
|
|
|
|
|
mkk r = case uuid r of
|
|
|
|
|
NoUUID -> Nothing
|
|
|
|
|
u -> Just u
|
|
|
|
|
|
2018-06-04 18:31:55 +00:00
|
|
|
|
remoteMap' :: Ord k => (Remote -> v) -> (Remote -> Annex (Maybe k)) -> Annex (M.Map k v)
|
|
|
|
|
remoteMap' mkv mkk = M.fromList . catMaybes <$> (mapM mk =<< remoteList)
|
2014-04-09 18:10:29 +00:00
|
|
|
|
where
|
2018-06-04 18:31:55 +00:00
|
|
|
|
mk r = mkk r >>= return . \case
|
2014-04-09 18:10:29 +00:00
|
|
|
|
Nothing -> Nothing
|
|
|
|
|
Just k -> Just (k, mkv r)
|
2011-11-18 17:22:48 +00:00
|
|
|
|
|
2015-04-12 16:49:11 +00:00
|
|
|
|
{- Map of UUIDs of repositories and their descriptions.
|
2023-03-14 02:39:16 +00:00
|
|
|
|
- The names of Remotes are added to supplement any description that has
|
2012-06-07 15:16:48 +00:00
|
|
|
|
- been set for a repository. -}
|
2019-01-01 19:39:45 +00:00
|
|
|
|
uuidDescriptions :: Annex UUIDDescMap
|
|
|
|
|
uuidDescriptions = M.unionWith addName
|
|
|
|
|
<$> uuidDescMap
|
|
|
|
|
<*> remoteMap (UUIDDesc . encodeBS . name)
|
2012-01-07 22:13:12 +00:00
|
|
|
|
|
2019-01-01 19:39:45 +00:00
|
|
|
|
{- Add a remote name to its description. -}
|
|
|
|
|
addName :: (IsString t, Monoid t, Eq t) => t -> t -> t
|
2012-01-07 22:13:12 +00:00
|
|
|
|
addName desc n
|
2019-01-01 19:39:45 +00:00
|
|
|
|
| desc == n || desc == mempty = "[" <> n <> "]"
|
|
|
|
|
| otherwise = desc <> " [" <> n <> "]"
|
2012-01-07 22:13:12 +00:00
|
|
|
|
|
2016-05-23 21:03:20 +00:00
|
|
|
|
byUUID :: UUID -> Annex (Maybe Remote)
|
|
|
|
|
byUUID u = headMaybe . filter matching <$> remoteList
|
|
|
|
|
where
|
|
|
|
|
matching r = uuid r == u
|
|
|
|
|
|
2012-01-06 08:02:35 +00:00
|
|
|
|
{- When a name is specified, looks up the remote matching that name.
|
2014-12-29 17:41:03 +00:00
|
|
|
|
- (Or it can be a UUID.)
|
|
|
|
|
-
|
|
|
|
|
- Throws an error if a name is specified and no matching remote can be
|
|
|
|
|
- found.
|
|
|
|
|
-}
|
2013-09-27 03:28:25 +00:00
|
|
|
|
byName :: Maybe RemoteName -> Annex (Maybe Remote)
|
2012-01-06 08:02:35 +00:00
|
|
|
|
byName Nothing = return Nothing
|
2016-11-16 01:29:54 +00:00
|
|
|
|
byName (Just n) = either giveup Just <$> byName' n
|
2013-03-05 19:39:42 +00:00
|
|
|
|
|
|
|
|
|
{- Like byName, but the remote must have a configured UUID. -}
|
2013-09-27 03:28:25 +00:00
|
|
|
|
byNameWithUUID :: Maybe RemoteName -> Annex (Maybe Remote)
|
2013-08-22 16:01:53 +00:00
|
|
|
|
byNameWithUUID = checkuuid <=< byName
|
2013-03-05 19:39:42 +00:00
|
|
|
|
where
|
2014-10-09 18:53:13 +00:00
|
|
|
|
checkuuid Nothing = return Nothing
|
2013-08-22 16:01:53 +00:00
|
|
|
|
checkuuid (Just r)
|
2018-06-04 18:31:55 +00:00
|
|
|
|
| uuid r == NoUUID = do
|
|
|
|
|
repo <- getRepo r
|
2017-08-17 16:26:14 +00:00
|
|
|
|
ifM (liftIO $ getDynamicConfig $ remoteAnnexIgnore (gitconfig r))
|
|
|
|
|
( giveup $ noRemoteUUIDMsg r ++
|
2020-02-19 17:45:11 +00:00
|
|
|
|
" (" ++ show (remoteAnnexConfig repo "ignore") ++
|
2013-11-09 17:37:30 +00:00
|
|
|
|
" is set)"
|
2017-08-17 16:26:14 +00:00
|
|
|
|
, giveup $ noRemoteUUIDMsg r
|
|
|
|
|
)
|
2013-08-22 16:01:53 +00:00
|
|
|
|
| otherwise = return $ Just r
|
2013-03-05 19:39:42 +00:00
|
|
|
|
|
2013-09-27 03:28:25 +00:00
|
|
|
|
byName' :: RemoteName -> Annex (Either String Remote)
|
2022-10-03 17:32:55 +00:00
|
|
|
|
byName' "" = return $ Left "no repository name specified"
|
unify exception handling into Utility.Exception
Removed old extensible-exceptions, only needed for very old ghc.
Made webdav use Utility.Exception, to work after some changes in DAV's
exception handling.
Removed Annex.Exception. Mostly this was trivial, but note that
tryAnnex is replaced with tryNonAsync and catchAnnex replaced with
catchNonAsync. In theory that could be a behavior change, since the former
caught all exceptions, and the latter don't catch async exceptions.
However, in practice, nothing in the Annex monad uses async exceptions.
Grepping for throwTo and killThread only find stuff in the assistant,
which does not seem related.
Command.Add.undo is changed to accept a SomeException, and things
that use it for rollback now catch non-async exceptions, rather than
only IOExceptions.
2014-08-08 01:55:44 +00:00
|
|
|
|
byName' n = go . filter matching <$> remoteList
|
2012-10-29 01:27:15 +00:00
|
|
|
|
where
|
unify exception handling into Utility.Exception
Removed old extensible-exceptions, only needed for very old ghc.
Made webdav use Utility.Exception, to work after some changes in DAV's
exception handling.
Removed Annex.Exception. Mostly this was trivial, but note that
tryAnnex is replaced with tryNonAsync and catchAnnex replaced with
catchNonAsync. In theory that could be a behavior change, since the former
caught all exceptions, and the latter don't catch async exceptions.
However, in practice, nothing in the Annex monad uses async exceptions.
Grepping for throwTo and killThread only find stuff in the assistant,
which does not seem related.
Command.Add.undo is changed to accept a SomeException, and things
that use it for rollback now catch non-async exceptions, rather than
only IOExceptions.
2014-08-08 01:55:44 +00:00
|
|
|
|
go [] = Left $ "there is no available git remote named \"" ++ n ++ "\""
|
|
|
|
|
go (match:_) = Right match
|
2012-10-29 01:27:15 +00:00
|
|
|
|
matching r = n == name r || toUUID n == uuid r
|
2011-03-27 19:56:43 +00:00
|
|
|
|
|
2014-12-29 17:41:03 +00:00
|
|
|
|
{- Finds the remote or remote group matching the name. -}
|
|
|
|
|
byNameOrGroup :: RemoteName -> Annex [Remote]
|
2021-08-11 00:45:02 +00:00
|
|
|
|
byNameOrGroup n = go =<< getConfigMaybe (ConfigKey ("remotes." <> encodeBS n))
|
2014-12-29 17:41:03 +00:00
|
|
|
|
where
|
2019-11-27 20:54:11 +00:00
|
|
|
|
go (Just l) = catMaybes
|
2019-12-05 18:36:43 +00:00
|
|
|
|
<$> mapM (byName . Just) (splitc ' ' (fromConfigValue l))
|
2019-11-27 20:54:11 +00:00
|
|
|
|
go Nothing = maybeToList
|
|
|
|
|
<$> byName (Just n)
|
2014-12-29 17:41:03 +00:00
|
|
|
|
|
2013-11-07 22:02:00 +00:00
|
|
|
|
{- Only matches remote name, not UUID -}
|
|
|
|
|
byNameOnly :: RemoteName -> Annex (Maybe Remote)
|
|
|
|
|
byNameOnly n = headMaybe . filter matching <$> remoteList
|
|
|
|
|
where
|
|
|
|
|
matching r = n == name r
|
|
|
|
|
|
2013-11-09 17:37:30 +00:00
|
|
|
|
noRemoteUUIDMsg :: Remote -> String
|
2015-10-15 19:23:48 +00:00
|
|
|
|
noRemoteUUIDMsg r = "cannot determine uuid for " ++ name r ++ " (perhaps you need to run \"git annex sync\"?)"
|
2013-11-09 17:37:30 +00:00
|
|
|
|
|
2011-06-14 02:19:44 +00:00
|
|
|
|
{- Looks up a remote by name (or by UUID, or even by description),
|
2013-11-09 17:37:30 +00:00
|
|
|
|
- and returns its UUID. Finds even repositories that are not
|
|
|
|
|
- configured in .git/config. -}
|
2013-09-27 03:28:25 +00:00
|
|
|
|
nameToUUID :: RemoteName -> Annex UUID
|
2023-02-13 18:30:54 +00:00
|
|
|
|
nameToUUID n = nameToUUID' n >>= \case
|
|
|
|
|
([u], _) -> return u
|
|
|
|
|
(_, msg) -> giveup msg
|
|
|
|
|
|
|
|
|
|
nameToUUID' :: RemoteName -> Annex ([UUID], String)
|
|
|
|
|
nameToUUID' n
|
|
|
|
|
| n == "." = currentrepo
|
|
|
|
|
| n == "here" = currentrepo
|
|
|
|
|
| otherwise = byName' n >>= go
|
2012-10-29 01:27:15 +00:00
|
|
|
|
where
|
2023-02-13 18:30:54 +00:00
|
|
|
|
currentrepo = mkone <$> getUUID
|
|
|
|
|
|
2014-03-13 19:35:59 +00:00
|
|
|
|
go (Right r) = return $ case uuid r of
|
2023-02-13 18:30:54 +00:00
|
|
|
|
NoUUID -> ([], noRemoteUUIDMsg r)
|
|
|
|
|
u -> mkone u
|
2014-03-13 19:35:59 +00:00
|
|
|
|
go (Left e) = do
|
2019-01-01 19:39:45 +00:00
|
|
|
|
m <- uuidDescMap
|
|
|
|
|
let descn = UUIDDesc (encodeBS n)
|
|
|
|
|
return $ case M.keys (M.filter (== descn) m) of
|
2023-02-13 18:30:54 +00:00
|
|
|
|
[] ->
|
|
|
|
|
let u = toUUID n
|
2014-03-13 19:35:59 +00:00
|
|
|
|
in case M.keys (M.filterWithKey (\k _ -> k == u) m) of
|
2023-02-13 18:30:54 +00:00
|
|
|
|
[] -> ([], e)
|
|
|
|
|
_ -> ([u], e)
|
|
|
|
|
us -> (us, "found multiple repositories with that description (use the uuid instead to disambiguate)")
|
|
|
|
|
|
|
|
|
|
mkone u = ([u], "found a remote")
|
2011-03-27 19:56:43 +00:00
|
|
|
|
|
2015-10-26 18:55:40 +00:00
|
|
|
|
{- Pretty-prints a list of UUIDs of remotes, with their descriptions,
|
|
|
|
|
- for human display.
|
2011-09-01 20:02:01 +00:00
|
|
|
|
-
|
2015-06-16 17:50:28 +00:00
|
|
|
|
- When JSON is enabled, also outputs a machine-readable description
|
2011-09-01 20:02:01 +00:00
|
|
|
|
- of the UUIDs. -}
|
|
|
|
|
prettyPrintUUIDs :: String -> [UUID] -> Annex String
|
2015-10-26 18:55:40 +00:00
|
|
|
|
prettyPrintUUIDs header uuids = do
|
|
|
|
|
descm <- uuidDescriptions
|
|
|
|
|
prettyPrintUUIDsDescs header descm uuids
|
|
|
|
|
|
2019-01-01 19:39:45 +00:00
|
|
|
|
prettyPrintUUIDsDescs :: String -> UUIDDescMap -> [UUID] -> Annex String
|
2015-10-26 18:55:40 +00:00
|
|
|
|
prettyPrintUUIDsDescs header descm uuids =
|
|
|
|
|
prettyPrintUUIDsWith Nothing header descm
|
2016-01-15 18:16:48 +00:00
|
|
|
|
(const Nothing)
|
2015-10-26 18:55:40 +00:00
|
|
|
|
(zip uuids (repeat (Nothing :: Maybe String)))
|
2015-06-16 17:50:28 +00:00
|
|
|
|
|
|
|
|
|
{- An optional field can be included in the list of UUIDs. -}
|
|
|
|
|
prettyPrintUUIDsWith
|
Fix mangling of --json output of utf-8 characters when not running in a utf-8 locale
As long as all code imports Utility.Aeson rather than Data.Aeson,
and no Strings that may contain utf-8 characters are used for eg, object
keys via T.pack, this is guaranteed to fix the problem everywhere that
git-annex generates json.
It's kind of annoying to need to wrap ToJSON with a ToJSON', especially
since every data type that has a ToJSON instance has to be ported over.
However, that only took 50 lines of code, which is worth it to ensure full
coverage. I initially tried an alternative approach of a newtype FileEncoded,
which had to be used everywhere a String was fed into aeson, and chasing
down all the sites would have been far too hard. Did consider creating an
intentionally overlapping instance ToJSON String, and letting ghc fail
to build anything that passed in a String, but am not sure that wouldn't
pollute some library that git-annex depends on that happens to use ToJSON
String internally.
This commit was supported by the NSF-funded DataLad project.
2018-04-16 19:42:45 +00:00
|
|
|
|
:: ToJSON' v
|
2015-06-16 17:50:28 +00:00
|
|
|
|
=> Maybe String
|
|
|
|
|
-> String
|
2019-01-01 19:39:45 +00:00
|
|
|
|
-> UUIDDescMap
|
2016-01-15 18:16:48 +00:00
|
|
|
|
-> (v -> Maybe String)
|
2015-06-16 17:50:28 +00:00
|
|
|
|
-> [(UUID, Maybe v)]
|
|
|
|
|
-> Annex String
|
2016-01-15 18:16:48 +00:00
|
|
|
|
prettyPrintUUIDsWith optfield header descm showval uuidvals = do
|
2011-11-08 19:34:10 +00:00
|
|
|
|
hereu <- getUUID
|
Fix mangling of --json output of utf-8 characters when not running in a utf-8 locale
As long as all code imports Utility.Aeson rather than Data.Aeson,
and no Strings that may contain utf-8 characters are used for eg, object
keys via T.pack, this is guaranteed to fix the problem everywhere that
git-annex generates json.
It's kind of annoying to need to wrap ToJSON with a ToJSON', especially
since every data type that has a ToJSON instance has to be ported over.
However, that only took 50 lines of code, which is worth it to ensure full
coverage. I initially tried an alternative approach of a newtype FileEncoded,
which had to be used everywhere a String was fed into aeson, and chasing
down all the sites would have been far too hard. Did consider creating an
intentionally overlapping instance ToJSON String, and letting ghc fail
to build anything that passed in a String, but am not sure that wouldn't
pollute some library that git-annex depends on that happens to use ToJSON
String internally.
This commit was supported by the NSF-funded DataLad project.
2018-04-16 19:42:45 +00:00
|
|
|
|
maybeShowJSON $ JSONChunk [(header, V.fromList $ map (jsonify hereu) uuidvals)]
|
2015-10-26 18:55:40 +00:00
|
|
|
|
return $ unwords $ map (\u -> "\t" ++ prettify hereu u ++ "\n") uuidvals
|
2012-10-29 01:27:15 +00:00
|
|
|
|
where
|
2019-01-01 19:39:45 +00:00
|
|
|
|
finddescription u = fromUUIDDesc $ M.findWithDefault mempty u descm
|
2015-10-26 18:55:40 +00:00
|
|
|
|
prettify hereu (u, optval)
|
2015-06-16 17:50:28 +00:00
|
|
|
|
| not (null d) = addoptval $ fromUUID u ++ " -- " ++ d
|
|
|
|
|
| otherwise = addoptval $ fromUUID u
|
2012-10-29 01:27:15 +00:00
|
|
|
|
where
|
|
|
|
|
ishere = hereu == u
|
2015-10-26 18:55:40 +00:00
|
|
|
|
n = finddescription u
|
2012-10-29 01:27:15 +00:00
|
|
|
|
d
|
|
|
|
|
| null n && ishere = "here"
|
|
|
|
|
| ishere = addName n "here"
|
|
|
|
|
| otherwise = n
|
2016-01-15 18:16:48 +00:00
|
|
|
|
addoptval s = case showval =<< optval of
|
2015-06-16 17:50:28 +00:00
|
|
|
|
Nothing -> s
|
2016-01-15 18:16:48 +00:00
|
|
|
|
Just val -> val ++ ": " ++ s
|
2016-07-26 23:15:34 +00:00
|
|
|
|
jsonify hereu (u, optval) = object $ catMaybes
|
2022-03-02 20:16:10 +00:00
|
|
|
|
[ Just ("uuid", toJSON' (fromUUID u :: String))
|
|
|
|
|
, Just ("description", toJSON' $ finddescription u)
|
|
|
|
|
, Just ("here", toJSON' $ hereu == u)
|
2015-06-16 17:50:28 +00:00
|
|
|
|
, case (optfield, optval) of
|
2022-03-02 20:16:10 +00:00
|
|
|
|
(Just field, Just val) -> Just
|
2022-03-02 22:24:06 +00:00
|
|
|
|
(textKey (packString field), toJSON' val)
|
2015-06-16 17:50:28 +00:00
|
|
|
|
_ -> Nothing
|
2012-10-29 01:27:15 +00:00
|
|
|
|
]
|
2011-07-01 19:24:07 +00:00
|
|
|
|
|
2012-07-30 02:11:01 +00:00
|
|
|
|
{- List of remote names and/or descriptions, for human display. -}
|
2012-07-30 01:54:23 +00:00
|
|
|
|
prettyListUUIDs :: [UUID] -> Annex [String]
|
|
|
|
|
prettyListUUIDs uuids = do
|
|
|
|
|
hereu <- getUUID
|
|
|
|
|
m <- uuidDescriptions
|
2019-01-01 19:39:45 +00:00
|
|
|
|
return $ map (fromUUIDDesc . prettify m hereu) uuids
|
2012-10-29 01:27:15 +00:00
|
|
|
|
where
|
2019-01-01 19:39:45 +00:00
|
|
|
|
finddescription m u = M.findWithDefault mempty u m
|
2012-10-29 01:27:15 +00:00
|
|
|
|
prettify m hereu u
|
|
|
|
|
| u == hereu = addName n "here"
|
|
|
|
|
| otherwise = n
|
|
|
|
|
where
|
|
|
|
|
n = finddescription m u
|
2012-07-30 01:54:23 +00:00
|
|
|
|
|
2013-04-03 21:01:40 +00:00
|
|
|
|
{- Nice display of a remote's name and/or description. -}
|
|
|
|
|
prettyUUID :: UUID -> Annex String
|
|
|
|
|
prettyUUID u = concat <$> prettyListUUIDs [u]
|
|
|
|
|
|
2013-09-29 18:51:49 +00:00
|
|
|
|
{- Gets the remote associated with a UUID. -}
|
2013-01-01 17:52:47 +00:00
|
|
|
|
remoteFromUUID :: UUID -> Annex (Maybe Remote)
|
|
|
|
|
remoteFromUUID u = ifM ((==) u <$> getUUID)
|
|
|
|
|
( return Nothing
|
2014-02-11 05:35:11 +00:00
|
|
|
|
, maybe tryharder (return . Just) =<< findinmap
|
2012-10-12 16:45:16 +00:00
|
|
|
|
)
|
2013-09-29 18:51:49 +00:00
|
|
|
|
where
|
|
|
|
|
findinmap = M.lookup u <$> remoteMap id
|
|
|
|
|
{- Re-read remote list in case a new remote has popped up. -}
|
|
|
|
|
tryharder = do
|
2020-05-27 15:54:39 +00:00
|
|
|
|
remotesChanged
|
2013-09-29 18:51:49 +00:00
|
|
|
|
findinmap
|
2012-10-12 16:45:16 +00:00
|
|
|
|
|
2011-03-27 20:55:43 +00:00
|
|
|
|
{- Filters a list of remotes to ones that have the listed uuids. -}
|
2011-12-31 08:11:39 +00:00
|
|
|
|
remotesWithUUID :: [Remote] -> [UUID] -> [Remote]
|
2011-03-27 20:55:43 +00:00
|
|
|
|
remotesWithUUID rs us = filter (\r -> uuid r `elem` us) rs
|
|
|
|
|
|
|
|
|
|
{- Filters a list of remotes to ones that do not have the listed uuids. -}
|
2011-12-31 08:11:39 +00:00
|
|
|
|
remotesWithoutUUID :: [Remote] -> [UUID] -> [Remote]
|
2011-03-27 20:55:43 +00:00
|
|
|
|
remotesWithoutUUID rs us = filter (\r -> uuid r `notElem` us) rs
|
|
|
|
|
|
2012-01-10 17:11:16 +00:00
|
|
|
|
{- List of repository UUIDs that the location log indicates may have a key.
|
|
|
|
|
- Dead repositories are excluded. -}
|
|
|
|
|
keyLocations :: Key -> Annex [UUID]
|
2012-11-11 04:26:29 +00:00
|
|
|
|
keyLocations key = trustExclude DeadTrusted =<< loggedLocations key
|
2012-01-10 17:11:16 +00:00
|
|
|
|
|
2023-11-30 19:11:57 +00:00
|
|
|
|
{- Whether to include remotes that have annex-ignore set. -}
|
|
|
|
|
newtype IncludeIgnored = IncludeIgnored Bool
|
|
|
|
|
|
2012-01-10 17:11:16 +00:00
|
|
|
|
{- Cost ordered lists of remotes that the location log indicates
|
|
|
|
|
- may have a key.
|
2018-08-01 18:22:52 +00:00
|
|
|
|
-
|
|
|
|
|
- Also includes remotes with remoteAnnexSpeculatePresent set.
|
2011-06-23 17:39:04 +00:00
|
|
|
|
-}
|
2023-11-30 19:11:57 +00:00
|
|
|
|
keyPossibilities :: IncludeIgnored -> Key -> Annex [Remote]
|
|
|
|
|
keyPossibilities ii key = do
|
2011-10-11 18:43:45 +00:00
|
|
|
|
u <- getUUID
|
2012-01-10 17:11:16 +00:00
|
|
|
|
-- uuids of all remotes that are recorded to have the key
|
2015-10-09 18:57:32 +00:00
|
|
|
|
locations <- filter (/= u) <$> keyLocations key
|
2018-08-01 18:22:52 +00:00
|
|
|
|
speclocations <- map uuid
|
|
|
|
|
. filter (remoteAnnexSpeculatePresent . gitconfig)
|
|
|
|
|
<$> remoteList
|
|
|
|
|
-- there are unlikely to be many speclocations, so building a Set
|
|
|
|
|
-- is not worth the expense
|
|
|
|
|
let locations' = speclocations ++ filter (`notElem` speclocations) locations
|
2023-11-30 19:11:57 +00:00
|
|
|
|
fst <$> remoteLocations ii locations' []
|
2011-06-01 23:10:38 +00:00
|
|
|
|
|
2015-10-09 18:57:32 +00:00
|
|
|
|
{- Given a list of locations of a key, and a list of all
|
|
|
|
|
- trusted repositories, generates a cost-ordered list of
|
|
|
|
|
- remotes that contain the key, and a list of trusted locations of the key.
|
|
|
|
|
-}
|
2023-11-30 19:11:57 +00:00
|
|
|
|
remoteLocations :: IncludeIgnored -> [UUID] -> [UUID] -> Annex ([Remote], [UUID])
|
|
|
|
|
remoteLocations (IncludeIgnored ii) locations trusted = do
|
2015-10-09 18:57:32 +00:00
|
|
|
|
let validtrustedlocations = nub locations `intersect` trusted
|
2011-06-01 23:10:38 +00:00
|
|
|
|
|
|
|
|
|
-- remotes that match uuids that have the key
|
2017-08-17 16:26:14 +00:00
|
|
|
|
allremotes <- remoteList
|
2023-11-30 19:11:57 +00:00
|
|
|
|
>>= if not ii
|
|
|
|
|
then filterM (not <$$> liftIO . getDynamicConfig . remoteAnnexIgnore . gitconfig)
|
|
|
|
|
else return
|
2015-10-09 18:57:32 +00:00
|
|
|
|
let validremotes = remotesWithUUID allremotes locations
|
2011-06-01 23:10:38 +00:00
|
|
|
|
|
2015-10-09 18:57:32 +00:00
|
|
|
|
return (sortBy (comparing cost) validremotes, validtrustedlocations)
|
2011-06-01 23:10:38 +00:00
|
|
|
|
|
2020-09-22 18:10:30 +00:00
|
|
|
|
{- Displays known locations of a key and helps the user take action
|
|
|
|
|
- to make them accessible. -}
|
2024-06-23 13:28:18 +00:00
|
|
|
|
showLocations :: Bool -> Key -> (UUID -> Annex Bool) -> String -> Annex ()
|
|
|
|
|
showLocations separateuntrusted key checkexclude nolocmsg = do
|
2011-10-11 18:43:45 +00:00
|
|
|
|
u <- getUUID
|
2020-09-22 18:10:30 +00:00
|
|
|
|
remotes <- remoteList
|
2011-07-05 22:31:46 +00:00
|
|
|
|
uuids <- keyLocations key
|
2024-06-23 13:28:18 +00:00
|
|
|
|
exclude <- filterM checkexclude uuids
|
2015-01-16 17:29:54 +00:00
|
|
|
|
untrusteduuids <- if separateuntrusted
|
|
|
|
|
then trustGet UnTrusted
|
|
|
|
|
else pure []
|
2020-09-22 18:10:30 +00:00
|
|
|
|
let uuidswanted = filteruuids uuids (u:exclude++untrusteduuids)
|
2011-07-05 22:31:46 +00:00
|
|
|
|
let uuidsskipped = filteruuids uuids (u:exclude++uuidswanted)
|
2020-09-22 18:10:30 +00:00
|
|
|
|
let remoteuuids = map uuid remotes
|
|
|
|
|
let isremoteuuid x = elem x remoteuuids
|
|
|
|
|
let (remotesmakeavailable, uuidsothers) =
|
|
|
|
|
partition isremoteuuid uuidswanted
|
|
|
|
|
isspecialremote <- flip M.member <$> remoteConfigMap
|
|
|
|
|
let (enablespecialremotes, addgitremotes) =
|
|
|
|
|
partition isspecialremote uuidsothers
|
|
|
|
|
|
|
|
|
|
-- Add "wanted" field to the JSON. While it's since been split
|
|
|
|
|
-- up more, this avoids breaking any JSON parsers that expect it.
|
|
|
|
|
ifM jsonOutputEnabled
|
|
|
|
|
( void $ prettyPrintUUIDs "wanted" uuidswanted
|
|
|
|
|
, do
|
|
|
|
|
ppremotesmakeavailable <- pp "remotes" remotesmakeavailable
|
|
|
|
|
"Try making some of these remotes available"
|
|
|
|
|
ppenablespecialremotes <- pp "enableremote" enablespecialremotes
|
2023-07-02 19:01:02 +00:00
|
|
|
|
"Maybe enable some of these special remotes (git annex enableremote ...)"
|
2020-09-22 18:10:30 +00:00
|
|
|
|
ppaddgitremotes <- pp "repos" addgitremotes
|
|
|
|
|
"Maybe add some of these git remotes (git remote add ...)"
|
|
|
|
|
ppuuidsskipped <- pp "skipped" uuidsskipped
|
|
|
|
|
"Also these untrusted repositories may contain the file"
|
2023-04-10 21:03:41 +00:00
|
|
|
|
showLongNote $ UnquotedString $ case ppremotesmakeavailable ++ ppenablespecialremotes ++ ppaddgitremotes ++ ppuuidsskipped of
|
2020-09-22 18:10:30 +00:00
|
|
|
|
[] -> nolocmsg
|
|
|
|
|
s -> s
|
|
|
|
|
)
|
|
|
|
|
ignored <- filterM (liftIO . getDynamicConfig . remoteAnnexIgnore . gitconfig) remotes
|
2013-09-06 20:54:31 +00:00
|
|
|
|
unless (null ignored) $
|
2023-04-10 21:03:41 +00:00
|
|
|
|
showLongNote $ UnquotedString $ "(Note that these git remotes have annex-ignore set: " ++ unwords (map name ignored) ++ ")"
|
2012-10-29 01:27:15 +00:00
|
|
|
|
where
|
|
|
|
|
filteruuids l x = filter (`notElem` x) l
|
2020-09-22 18:10:30 +00:00
|
|
|
|
|
|
|
|
|
pp jh l h = addheader h <$> prettyPrintUUIDs jh l
|
|
|
|
|
|
|
|
|
|
addheader _ [] = []
|
|
|
|
|
addheader h l = h ++ ":\n" ++ l
|
2011-07-05 22:31:46 +00:00
|
|
|
|
|
2011-12-31 08:11:39 +00:00
|
|
|
|
showTriedRemotes :: [Remote] -> Annex ()
|
2012-04-22 03:32:33 +00:00
|
|
|
|
showTriedRemotes [] = noop
|
2011-07-05 22:31:46 +00:00
|
|
|
|
showTriedRemotes remotes =
|
2023-04-10 21:03:41 +00:00
|
|
|
|
showLongNote $ UnquotedString $ "Unable to access these remotes: "
|
2020-06-26 17:00:40 +00:00
|
|
|
|
++ listRemoteNames remotes
|
|
|
|
|
|
|
|
|
|
listRemoteNames :: [Remote] -> String
|
|
|
|
|
listRemoteNames remotes = intercalate ", " (map name remotes)
|
2011-07-05 22:31:46 +00:00
|
|
|
|
|
2011-06-02 06:33:31 +00:00
|
|
|
|
forceTrust :: TrustLevel -> String -> Annex ()
|
2012-01-10 17:11:16 +00:00
|
|
|
|
forceTrust level remotename = do
|
|
|
|
|
u <- nameToUUID remotename
|
2021-01-07 14:12:37 +00:00
|
|
|
|
if level >= Trusted
|
|
|
|
|
then toplevelWarning False "Ignoring request to trust repository, because that can lead to data loss."
|
|
|
|
|
else Annex.changeState $ \s ->
|
|
|
|
|
s { Annex.forcetrust = M.insert u level (Annex.forcetrust s) }
|
2011-10-28 21:26:38 +00:00
|
|
|
|
|
|
|
|
|
{- Used to log a change in a remote's having a key. The change is logged
|
|
|
|
|
- in the local repo, not on the remote. The process of transferring the
|
|
|
|
|
- key to the remote, or removing the key from it *may* log the change
|
|
|
|
|
- on the remote, but this cannot always be relied on. -}
|
2012-01-19 19:24:05 +00:00
|
|
|
|
logStatus :: Remote -> Key -> LogStatus -> Annex ()
|
2012-02-16 04:41:30 +00:00
|
|
|
|
logStatus remote key = logChange key (uuid remote)
|
2012-08-26 18:45:47 +00:00
|
|
|
|
|
|
|
|
|
{- Orders remotes by cost, with ones with the lowest cost grouped together. -}
|
|
|
|
|
byCost :: [Remote] -> [[Remote]]
|
2013-03-16 21:43:42 +00:00
|
|
|
|
byCost = map snd . sortBy (comparing fst) . M.toList . costmap
|
2012-10-29 01:27:15 +00:00
|
|
|
|
where
|
|
|
|
|
costmap = M.fromListWith (++) . map costpair
|
|
|
|
|
costpair r = (cost r, [r])
|
2013-10-27 20:42:13 +00:00
|
|
|
|
|
2023-08-16 19:57:30 +00:00
|
|
|
|
checkAvailable :: Bool -> Remote -> Annex Bool
|
|
|
|
|
checkAvailable assumenetworkavailable r = tryNonAsync (availability r) >>= \case
|
|
|
|
|
Left _e -> return assumenetworkavailable
|
|
|
|
|
Right LocallyAvailable -> return True
|
|
|
|
|
Right GloballyAvailable -> return assumenetworkavailable
|
|
|
|
|
Right Unavailable -> return False
|
2014-02-01 14:33:55 +00:00
|
|
|
|
|
2014-08-06 17:45:19 +00:00
|
|
|
|
hasKey :: Remote -> Key -> Annex (Either String Bool)
|
unify exception handling into Utility.Exception
Removed old extensible-exceptions, only needed for very old ghc.
Made webdav use Utility.Exception, to work after some changes in DAV's
exception handling.
Removed Annex.Exception. Mostly this was trivial, but note that
tryAnnex is replaced with tryNonAsync and catchAnnex replaced with
catchNonAsync. In theory that could be a behavior change, since the former
caught all exceptions, and the latter don't catch async exceptions.
However, in practice, nothing in the Annex monad uses async exceptions.
Grepping for throwTo and killThread only find stuff in the assistant,
which does not seem related.
Command.Add.undo is changed to accept a SomeException, and things
that use it for rollback now catch non-async exceptions, rather than
only IOExceptions.
2014-08-08 01:55:44 +00:00
|
|
|
|
hasKey r k = either (Left . show) Right <$> tryNonAsync (checkPresent r k)
|
2014-08-06 17:45:19 +00:00
|
|
|
|
|
|
|
|
|
hasKeyCheap :: Remote -> Bool
|
|
|
|
|
hasKeyCheap = checkPresentCheap
|
2014-12-11 18:09:57 +00:00
|
|
|
|
|
|
|
|
|
{- The web special remote claims urls by default. -}
|
|
|
|
|
claimingUrl :: URLString -> Annex Remote
|
2024-02-05 19:16:25 +00:00
|
|
|
|
claimingUrl = claimingUrl' (const True)
|
|
|
|
|
|
|
|
|
|
{- The web special remote still claims urls if there is no
|
|
|
|
|
- other remote that does, even when the remotefilter does
|
|
|
|
|
- not include it. -}
|
|
|
|
|
claimingUrl' :: (Remote -> Bool) -> URLString -> Annex Remote
|
|
|
|
|
claimingUrl' remotefilter url = do
|
2014-12-11 18:09:57 +00:00
|
|
|
|
rs <- remoteList
|
|
|
|
|
let web = Prelude.head $ filter (\r -> uuid r == webUUID) rs
|
2024-02-05 19:16:25 +00:00
|
|
|
|
fromMaybe web <$> firstM checkclaim (filter remotefilter rs)
|
2014-12-11 18:09:57 +00:00
|
|
|
|
where
|
2015-04-11 04:10:34 +00:00
|
|
|
|
checkclaim = maybe (pure False) (`id` url) . claimUrl
|
2024-05-24 18:52:22 +00:00
|
|
|
|
|
2024-06-24 13:40:57 +00:00
|
|
|
|
{- Is this a remote of a type that git pull and push work with?
|
2024-06-24 14:13:13 +00:00
|
|
|
|
- That includes special remotes with an annex:: url configured.
|
|
|
|
|
- It does not include proxied remotes. -}
|
2024-05-24 18:52:22 +00:00
|
|
|
|
gitSyncableRemote :: Remote -> Bool
|
|
|
|
|
gitSyncableRemote r
|
2024-06-12 19:10:03 +00:00
|
|
|
|
| gitSyncableRemoteType (remotetype r)
|
2024-06-24 14:13:13 +00:00
|
|
|
|
&& isJust (remoteUrl (gitconfig r)) =
|
2024-06-26 16:56:16 +00:00
|
|
|
|
not (isJust (remoteAnnexProxiedBy (gitconfig r)))
|
2024-05-24 18:52:22 +00:00
|
|
|
|
| otherwise = case remoteUrl (gitconfig r) of
|
|
|
|
|
Just u | "annex::" `isPrefixOf` u -> True
|
|
|
|
|
_ -> False
|