git-annex/Command/FromKey.hs

84 lines
2.3 KiB
Haskell
Raw Normal View History

{- git-annex command
-
- Copyright 2010, 2015 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU GPL version 3 or higher.
-}
2015-03-15 18:07:43 +00:00
{-# LANGUAGE BangPatterns #-}
module Command.FromKey where
2011-10-05 20:02:51 +00:00
import Common.Annex
import Command
2011-10-04 04:40:47 +00:00
import qualified Annex.Queue
import Annex.Content
import Types.Key
import qualified Annex
import qualified Backend.URL
import Network.URI
cmd :: Command
cmd = notDirect $ notBareRepo $
command "fromkey" (paramPair paramKey paramPath) seek
SectionPlumbing "adds a file using a specific key"
seek :: CommandSeek
seek ps = do
force <- Annex.getState Annex.force
withWords (start force) ps
2010-11-11 22:54:52 +00:00
start :: Bool -> [String] -> CommandStart
start force (keyname:file:[]) = do
let key = mkKey keyname
unless force $ do
inbackend <- inAnnex key
unless inbackend $ error $
"key ("++ keyname ++") is not present in backend (use --force to override this sanity check)"
showStart "fromkey" file
next $ perform key file
2015-03-15 18:07:43 +00:00
start _ [] = do
showStart "fromkey" "stdin"
next massAdd
start _ _ = error "specify a key and a dest file"
2015-03-15 18:07:43 +00:00
massAdd :: CommandPerform
massAdd = go True =<< map (separate (== ' ')) . lines <$> liftIO getContents
2015-03-15 18:07:43 +00:00
where
go status [] = next $ return status
go status ((keyname,f):rest) | not (null keyname) && not (null f) = do
let key = mkKey keyname
2015-03-15 18:07:43 +00:00
ok <- perform' key f
let !status' = status && ok
go status' rest
go _ _ = error "Expected pairs of key and file on stdin, but got something else."
2015-03-15 18:07:43 +00:00
-- From user input to a Key.
-- User can input either a serialized key, or an url.
--
-- In some cases, an input can be parsed as both a key and as an uri.
-- For example, "WORM--a:a" parses as an uri. To disambiguate, check
-- the uri scheme, to see if it looks like the prefix of a key. This relies
-- on key backend names never containing a ':'.
mkKey :: String -> Key
mkKey s = case parseURI s of
Just u | not (isKeyPrefix (uriScheme u)) ->
Backend.URL.fromUrl s Nothing
_ -> case file2key s of
Just k -> k
Nothing -> error $ "bad key/url " ++ s
perform :: Key -> FilePath -> CommandPerform
perform key file = do
2015-03-15 18:07:43 +00:00
ok <- perform' key file
next $ return ok
perform' :: Key -> FilePath -> Annex Bool
perform' key file = do
link <- calcRepo $ gitAnnexLink file key
liftIO $ createDirectoryIfMissing True (parentDir file)
liftIO $ createSymbolicLink link file
Annex.Queue.addCommand "add" [Param "--"] [file]
return True