git-annex/Command/DropKey.hs

42 lines
958 B
Haskell
Raw Normal View History

{- git-annex command
-
- Copyright 2010 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.DropKey where
2011-10-05 20:02:51 +00:00
import Common.Annex
import Command
import qualified Annex
2011-10-15 20:21:08 +00:00
import Logs.Location
2011-10-04 04:40:47 +00:00
import Annex.Content
cmd :: Command
cmd = noCommit $
command "dropkey" SectionPlumbing
"drops annexed content for specified keys"
(paramRepeating paramKey)
(withParams seek)
seek :: CmdParams -> CommandSeek
seek = withKeys start
2010-11-11 22:54:52 +00:00
start :: Key -> CommandStart
2011-12-09 17:32:09 +00:00
start key = stopUnless (inAnnex key) $ do
unlessM (Annex.getState Annex.force) $
error "dropkey can cause data loss; use --force if you're sure you want to do this"
2014-01-26 19:53:01 +00:00
showStart' "dropkey" key Nothing
next $ perform key
perform :: Key -> CommandPerform
perform key = lockContentForRemoval key $ \contentlock -> do
removeAnnex contentlock
2011-05-15 06:02:46 +00:00
next $ cleanup key
cleanup :: Key -> CommandCleanup
cleanup key = do
logStatus key InfoMissing
return True