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
cmd = noCommit $ withGlobalOptions [jsonOptions] $
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) $
giveup "dropkey can cause data loss; use --force if you're sure you want to do this"
withKeys (commandAction . start) (toDrop o)
2016-03-06 16:45:57 +00:00
case batchOption o of
Batch fmt -> batchInput fmt parsekey $ batchCommandAction . start
2016-03-06 16:45:57 +00:00
NoBatch -> noop
where
2019-01-14 17:17:47 +00:00
parsekey = maybe (Left "bad key") Right . deserializeKey
2016-03-06 16:45:57 +00:00
start :: Key -> CommandStart
start key = do
showStartKey "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