git-annex/Command/DropKey.hs

46 lines
938 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.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
def :: [Command]
def = [command "dropkey" (paramRepeating paramKey) seek
"drops annexed content for specified keys"]
seek :: [CommandSeek]
2010-11-11 22:54:52 +00:00
seek = [withKeys start]
start :: Key -> CommandStart
start key = do
present <- inAnnex key
2010-11-22 21:51:55 +00:00
if not present
2011-05-15 06:02:46 +00:00
then stop
2011-10-31 20:46:51 +00:00
else do
checkforced
showStart "dropkey" (show key)
next $ perform key
where
checkforced =
unlessM (Annex.getState Annex.force) $
error "dropkey can cause data loss; use --force if you're sure you want to do this"
perform :: Key -> CommandPerform
perform key = do
removeAnnex key
2011-05-15 06:02:46 +00:00
next $ cleanup key
cleanup :: Key -> CommandCleanup
cleanup key = do
logStatus key InfoMissing
return True