support ssh urls containing "~", and relative user:path
This commit is contained in:
parent
ed593f1f3f
commit
14fe13dc2b
4 changed files with 42 additions and 6 deletions
36
GitRepo.hs
36
GitRepo.hs
|
@ -43,6 +43,7 @@ module GitRepo (
|
||||||
encodeGitFile,
|
encodeGitFile,
|
||||||
typeChangedFiles,
|
typeChangedFiles,
|
||||||
typeChangedStagedFiles,
|
typeChangedStagedFiles,
|
||||||
|
absDir,
|
||||||
|
|
||||||
prop_idempotent_deencode
|
prop_idempotent_deencode
|
||||||
) where
|
) where
|
||||||
|
@ -50,6 +51,7 @@ module GitRepo (
|
||||||
import Control.Monad (unless)
|
import Control.Monad (unless)
|
||||||
import System.Directory
|
import System.Directory
|
||||||
import System.Posix.Directory
|
import System.Posix.Directory
|
||||||
|
import System.Posix.User
|
||||||
import System.Path
|
import System.Path
|
||||||
import System.Cmd.Utils
|
import System.Cmd.Utils
|
||||||
import IO (bracket_)
|
import IO (bracket_)
|
||||||
|
@ -62,7 +64,7 @@ import Data.Char
|
||||||
import Data.Word (Word8)
|
import Data.Word (Word8)
|
||||||
import Codec.Binary.UTF8.String (encode)
|
import Codec.Binary.UTF8.String (encode)
|
||||||
import Text.Printf
|
import Text.Printf
|
||||||
import Data.List (isInfixOf)
|
import Data.List (isInfixOf, isPrefixOf)
|
||||||
|
|
||||||
import Utility
|
import Utility
|
||||||
|
|
||||||
|
@ -444,6 +446,38 @@ encodeGitFile s = foldl (++) "\"" (map echar s) ++ "\""
|
||||||
prop_idempotent_deencode :: String -> Bool
|
prop_idempotent_deencode :: String -> Bool
|
||||||
prop_idempotent_deencode s = s == decodeGitFile (encodeGitFile s)
|
prop_idempotent_deencode s = s == decodeGitFile (encodeGitFile s)
|
||||||
|
|
||||||
|
{- Git ssh remotes can have a directory that is specified relative
|
||||||
|
- to a home directory. This converts such a directory to an absolute path.
|
||||||
|
- Note that it has to run on the remote system.
|
||||||
|
-}
|
||||||
|
absDir :: String -> IO String
|
||||||
|
absDir d
|
||||||
|
| isPrefixOf "/" d = expandt d
|
||||||
|
| otherwise = do
|
||||||
|
h <- myhomedir
|
||||||
|
return $ h ++ d
|
||||||
|
where
|
||||||
|
homedir u = (homeDirectory u) ++ "/"
|
||||||
|
myhomedir = do
|
||||||
|
uid <- getEffectiveUserID
|
||||||
|
u <- getUserEntryForID uid
|
||||||
|
return $ homedir u
|
||||||
|
expandt [] = return ""
|
||||||
|
expandt ('/':'~':'/':cs) = do
|
||||||
|
h <- myhomedir
|
||||||
|
return $ h ++ cs
|
||||||
|
expandt ('/':'~':cs) = do
|
||||||
|
let (name, rest) = findname "" cs
|
||||||
|
u <- getUserEntryForName name
|
||||||
|
return $ homedir u ++ rest
|
||||||
|
expandt (c:cs) = do
|
||||||
|
v <- expandt cs
|
||||||
|
return (c:v)
|
||||||
|
findname n [] = (n, "")
|
||||||
|
findname n (c:cs)
|
||||||
|
| c == '/' = (n, cs)
|
||||||
|
| otherwise = findname (n++[c]) cs
|
||||||
|
|
||||||
{- Finds the current git repository, which may be in a parent directory. -}
|
{- Finds the current git repository, which may be in a parent directory. -}
|
||||||
repoFromCwd :: IO Repo
|
repoFromCwd :: IO Repo
|
||||||
repoFromCwd = do
|
repoFromCwd = do
|
||||||
|
|
5
debian/changelog
vendored
5
debian/changelog
vendored
|
@ -1,8 +1,7 @@
|
||||||
git-annex (0.15) UNRELEASED; urgency=low
|
git-annex (0.15) UNRELEASED; urgency=low
|
||||||
|
|
||||||
* Support scp-style urls for remotes (host:path). Note that
|
* Support scp-style urls for remotes (host:path).
|
||||||
paths relative to the user's home directory, or containing "~" are
|
* Support ssh urls containing "~".
|
||||||
not yet supported.
|
|
||||||
* Add trust and untrust subcommands, to allow configuring repositories
|
* Add trust and untrust subcommands, to allow configuring repositories
|
||||||
that are trusted to retain files without explicit checking.
|
that are trusted to retain files without explicit checking.
|
||||||
* Fix bug in numcopies handling when multiple remotes pointed to the
|
* Fix bug in numcopies handling when multiple remotes pointed to the
|
||||||
|
|
|
@ -17,4 +17,6 @@ Specifically, if I have ~/bar set up on host foo:
|
||||||
> code on the remote to lookup homedirs. If git-annex grows a
|
> code on the remote to lookup homedirs. If git-annex grows a
|
||||||
> `git annex shell` that is run on the remote side
|
> `git annex shell` that is run on the remote side
|
||||||
> (something I am [[considering|todo/git-annex-shell]] for other reasons), it
|
> (something I am [[considering|todo/git-annex-shell]] for other reasons), it
|
||||||
> could handle the expansions there. --[[Joey]]
|
> could handle the expansions there. --[[Joey]]
|
||||||
|
|
||||||
|
> Update: Now `~` expansions are supported. [[done]]
|
||||||
|
|
|
@ -60,7 +60,8 @@ builtins = map cmdname cmds
|
||||||
|
|
||||||
builtin :: String -> String -> [String] -> IO ()
|
builtin :: String -> String -> [String] -> IO ()
|
||||||
builtin cmd dir params = do
|
builtin cmd dir params = do
|
||||||
let gitrepo = Git.repoFromPath dir
|
dir' <- Git.absDir dir
|
||||||
|
let gitrepo = Git.repoFromPath dir'
|
||||||
dispatch gitrepo (cmd:(filterparams params)) cmds commonOptions header
|
dispatch gitrepo (cmd:(filterparams params)) cmds commonOptions header
|
||||||
|
|
||||||
external :: [String] -> IO ()
|
external :: [String] -> IO ()
|
||||||
|
|
Loading…
Reference in a new issue