git-annex/Command/DropKey.hs

45 lines
934 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
import Command
import qualified Annex
import LocationLog
import Types
import Content
2010-11-08 19:15:21 +00:00
import Messages
command :: [Command]
command = [repoCommand "dropkey" (paramRepeating paramKey) seek
"drops annexed content for specified keys"]
seek :: [CommandSeek]
2010-11-11 22:54:52 +00:00
seek = [withKeys start]
start :: CommandStartKey
start key = do
present <- inAnnex key
force <- Annex.getState Annex.force
2010-11-22 21:51:55 +00:00
if not present
2011-05-15 06:02:46 +00:00
then stop
2010-11-22 21:51:55 +00:00
else if not force
then error "dropkey is can cause data loss; use --force if you're sure you want to do this"
else do
showStart "dropkey" (show key)
2011-05-15 06:02:46 +00:00
next $ perform key
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 ValueMissing
return True