git-annex/Command/DropKey.hs

60 lines
1.4 KiB
Haskell
Raw Normal View History

{- git-annex command
-
2016-03-06 16:45:57 +00:00
- Copyright 2010,2016 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.DropKey where
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
2016-03-06 16:58:36 +00:00
cmd = noCommit $ withGlobalOptions [jsonOption] $
command "dropkey" SectionPlumbing
"drops annexed content for specified keys"
(paramRepeating paramKey)
2016-03-06 16:45:57 +00:00
(seek <$$> optParser)
2016-03-06 16:45:57 +00:00
data DropKeyOptions = DropKeyOptions
{ toDrop :: [String]
, batchOption :: BatchMode
}
2010-11-11 22:54:52 +00:00
2016-03-06 16:45:57 +00:00
optParser :: CmdParamsDesc -> Parser DropKeyOptions
optParser desc = DropKeyOptions
<$> cmdParams desc
<*> parseBatchOption
seek :: DropKeyOptions -> CommandSeek
seek o = do
unlessM (Annex.getState Annex.force) $
error "dropkey can cause data loss; use --force if you're sure you want to do this"
2016-03-06 16:45:57 +00:00
withKeys start (toDrop o)
case batchOption o of
Batch -> batchInput parsekey $ batchCommandAction . start
NoBatch -> noop
where
parsekey = maybe (Left "bad key") Right . file2key
start :: Key -> CommandStart
start key = do
showStart' "dropkey" key (mkActionItem key)
next $ perform key
perform :: Key -> CommandPerform
2016-03-06 16:45:57 +00:00
perform key = ifM (inAnnex key)
( lockContentForRemoval key $ \contentlock -> do
removeAnnex contentlock
next $ cleanup key
, next $ return True
)
cleanup :: Key -> CommandCleanup
cleanup key = do
logStatus key InfoMissing
return True