git-annex/Command/Get.hs

40 lines
890 B
Haskell
Raw Normal View History

{- git-annex command
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.Get where
import Command
import qualified Backend
import Types
import Content
2010-11-08 19:15:21 +00:00
import Messages
command :: [Command]
command = [repoCommand "get" paramPath seek
"make content of annexed files available"]
seek :: [CommandSeek]
2010-11-11 22:54:52 +00:00
seek = [withFilesInGit start]
{- Gets an annexed file from one of the backends. -}
start :: CommandStartString
start file = isAnnexed file $ \(key, backend) -> do
inannex <- inAnnex key
2010-11-22 21:51:55 +00:00
if inannex
then return Nothing
else do
showStart "get" file
return $ Just $ perform key backend
perform :: Key -> Backend Annex -> CommandPerform
perform key backend = do
ok <- getViaTmp key (Backend.retrieveKeyFile backend key)
2010-11-22 21:51:55 +00:00
if ok
then return $ Just $ return True -- no cleanup needed
else return Nothing