2015-07-02 21:44:25 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
|
|
|
- Copyright 2010, 2015 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2015-07-02 21:44:25 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.SetKey where
|
|
|
|
|
|
|
|
import Command
|
|
|
|
import Logs.Location
|
|
|
|
import Annex.Content
|
|
|
|
|
2015-07-08 16:33:27 +00:00
|
|
|
cmd :: Command
|
2015-07-08 19:08:02 +00:00
|
|
|
cmd = command "setkey" SectionPlumbing "sets annexed content for a key"
|
|
|
|
(paramPair paramKey paramPath)
|
|
|
|
(withParams seek)
|
2015-07-02 21:44:25 +00:00
|
|
|
|
2015-07-08 19:08:02 +00:00
|
|
|
seek :: CmdParams -> CommandSeek
|
2018-10-01 18:12:06 +00:00
|
|
|
seek = withWords (commandAction . start)
|
2015-07-02 21:44:25 +00:00
|
|
|
|
|
|
|
start :: [String] -> CommandStart
|
|
|
|
start (keyname:file:[]) = do
|
|
|
|
showStart "setkey" file
|
|
|
|
next $ perform file (mkKey keyname)
|
2016-11-16 01:29:54 +00:00
|
|
|
start _ = giveup "specify a key and a content file"
|
2015-07-02 21:44:25 +00:00
|
|
|
|
|
|
|
mkKey :: String -> Key
|
2019-01-14 17:17:47 +00:00
|
|
|
mkKey = fromMaybe (giveup "bad key") . deserializeKey
|
2015-07-02 21:44:25 +00:00
|
|
|
|
|
|
|
perform :: FilePath -> Key -> CommandPerform
|
|
|
|
perform file key = do
|
2015-07-07 18:48:23 +00:00
|
|
|
-- the file might be on a different filesystem, so moveFile is used
|
2015-07-02 21:44:25 +00:00
|
|
|
-- rather than simply calling moveAnnex; disk space is also
|
|
|
|
-- checked this way.
|
2018-06-21 17:34:11 +00:00
|
|
|
ok <- getViaTmp RetrievalAllKeysSecure DefaultVerify key $ \dest -> unVerified $
|
2015-07-02 21:44:25 +00:00
|
|
|
if dest /= file
|
2015-07-07 18:48:23 +00:00
|
|
|
then liftIO $ catchBoolIO $ do
|
|
|
|
moveFile file dest
|
|
|
|
return True
|
2015-07-02 21:44:25 +00:00
|
|
|
else return True
|
|
|
|
if ok
|
|
|
|
then next $ cleanup key
|
|
|
|
else error "mv failed!"
|
|
|
|
|
|
|
|
cleanup :: Key -> CommandCleanup
|
|
|
|
cleanup key = do
|
|
|
|
logStatus key InfoPresent
|
|
|
|
return True
|