2010-11-02 23:04:24 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
|
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.FromKey where
|
|
|
|
|
|
|
|
import Control.Monad.State (liftIO)
|
|
|
|
import System.Posix.Files
|
|
|
|
import System.Directory
|
|
|
|
import Control.Monad (when, unless)
|
|
|
|
|
|
|
|
import Command
|
|
|
|
import qualified Annex
|
|
|
|
import Utility
|
|
|
|
import qualified Backend
|
|
|
|
import Types
|
|
|
|
import Core
|
2010-11-08 19:15:21 +00:00
|
|
|
import Messages
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2010-12-30 19:06:26 +00:00
|
|
|
command :: [Command]
|
|
|
|
command = [Command "fromkey" (paramRepeating paramKey) seek
|
|
|
|
"adds a file using a specific key"]
|
|
|
|
|
2010-12-30 18:19:16 +00:00
|
|
|
seek :: [CommandSeek]
|
2010-11-11 22:54:52 +00:00
|
|
|
seek = [withFilesMissing start]
|
|
|
|
|
2010-11-02 23:04:24 +00:00
|
|
|
{- Adds a file pointing at a manually-specified key -}
|
2010-12-30 18:19:16 +00:00
|
|
|
start :: CommandStartString
|
2010-11-02 23:04:24 +00:00
|
|
|
start file = do
|
|
|
|
keyname <- Annex.flagGet "key"
|
|
|
|
when (null keyname) $ error "please specify the key with --key"
|
|
|
|
backends <- Backend.list
|
2010-11-22 21:51:55 +00:00
|
|
|
let key = genKey (head backends) keyname
|
2010-11-02 23:04:24 +00:00
|
|
|
|
|
|
|
inbackend <- Backend.hasKey key
|
2010-11-22 21:51:55 +00:00
|
|
|
unless inbackend $ error $
|
2010-11-02 23:04:24 +00:00
|
|
|
"key ("++keyname++") is not present in backend"
|
|
|
|
showStart "fromkey" file
|
|
|
|
return $ Just $ perform file key
|
2010-12-30 18:19:16 +00:00
|
|
|
perform :: FilePath -> Key -> CommandPerform
|
2010-11-02 23:04:24 +00:00
|
|
|
perform file key = do
|
|
|
|
link <- calcGitLink file key
|
|
|
|
liftIO $ createDirectoryIfMissing True (parentDir file)
|
|
|
|
liftIO $ createSymbolicLink link file
|
|
|
|
return $ Just $ cleanup file
|
2010-12-30 18:19:16 +00:00
|
|
|
cleanup :: FilePath -> CommandCleanup
|
2010-11-02 23:04:24 +00:00
|
|
|
cleanup file = do
|
2010-11-10 18:15:21 +00:00
|
|
|
Annex.queue "add" ["--"] file
|
2010-11-02 23:04:24 +00:00
|
|
|
return True
|