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
|
|
|
|
|
2011-10-05 20:02:51 +00:00
|
|
|
import Common.Annex
|
2010-11-02 23:04:24 +00:00
|
|
|
import Command
|
2011-10-04 04:40:47 +00:00
|
|
|
import qualified Annex.Queue
|
|
|
|
import Annex.Content
|
2011-06-02 01:56:04 +00:00
|
|
|
import Types.Key
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2010-12-30 19:06:26 +00:00
|
|
|
command :: [Command]
|
2011-10-27 22:56:54 +00:00
|
|
|
command = [Command "fromkey" paramPath defaultChecks seek
|
2010-12-30 19:06:26 +00:00
|
|
|
"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]
|
|
|
|
|
2011-09-15 20:50:49 +00:00
|
|
|
start :: FilePath -> CommandStart
|
2011-03-03 20:40:55 +00:00
|
|
|
start file = notBareRepo $ do
|
2011-01-26 04:17:38 +00:00
|
|
|
key <- cmdlineKey
|
2011-07-05 22:31:46 +00:00
|
|
|
inbackend <- inAnnex key
|
2010-11-22 21:51:55 +00:00
|
|
|
unless inbackend $ error $
|
2011-01-26 04:17:38 +00:00
|
|
|
"key ("++keyName key++") is not present in backend"
|
2010-11-02 23:04:24 +00:00
|
|
|
showStart "fromkey" file
|
2011-05-15 06:02:46 +00:00
|
|
|
next $ perform file
|
2011-01-26 04:17:38 +00:00
|
|
|
|
|
|
|
perform :: FilePath -> CommandPerform
|
|
|
|
perform file = do
|
|
|
|
key <- cmdlineKey
|
2010-11-02 23:04:24 +00:00
|
|
|
link <- calcGitLink file key
|
|
|
|
liftIO $ createDirectoryIfMissing True (parentDir file)
|
|
|
|
liftIO $ createSymbolicLink link file
|
2011-05-15 06:02:46 +00:00
|
|
|
next $ cleanup file
|
2011-01-26 04:17:38 +00:00
|
|
|
|
2010-12-30 18:19:16 +00:00
|
|
|
cleanup :: FilePath -> CommandCleanup
|
2010-11-02 23:04:24 +00:00
|
|
|
cleanup file = do
|
2011-10-04 04:40:47 +00:00
|
|
|
Annex.Queue.add "add" [Param "--"] [file]
|
2010-11-02 23:04:24 +00:00
|
|
|
return True
|