2010-11-02 23:04:24 +00:00
|
|
|
{- 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
|
2010-11-02 23:04:24 +00:00
|
|
|
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
|
2012-08-08 20:06:01 +00:00
|
|
|
import Types.Key
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2011-10-29 19:19:05 +00:00
|
|
|
def :: [Command]
|
2012-09-16 00:46:38 +00:00
|
|
|
def = [noCommit $ command "dropkey" (paramRepeating paramKey) seek
|
2010-12-30 19:06:26 +00:00
|
|
|
"drops annexed content for specified keys"]
|
|
|
|
|
2010-12-30 18:19:16 +00:00
|
|
|
seek :: [CommandSeek]
|
2010-11-11 22:54:52 +00:00
|
|
|
seek = [withKeys start]
|
|
|
|
|
2011-09-15 20:50:49 +00:00
|
|
|
start :: Key -> CommandStart
|
2011-12-09 17:32:09 +00:00
|
|
|
start key = stopUnless (inAnnex key) $ do
|
2011-12-09 16:23:45 +00:00
|
|
|
unlessM (Annex.getState Annex.force) $
|
|
|
|
error "dropkey can cause data loss; use --force if you're sure you want to do this"
|
2012-08-08 20:06:01 +00:00
|
|
|
showStart "dropkey" (key2file key)
|
2011-12-09 16:23:45 +00:00
|
|
|
next $ perform key
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2010-12-30 18:19:16 +00:00
|
|
|
perform :: Key -> CommandPerform
|
2011-11-09 23:47:04 +00:00
|
|
|
perform key = lockContent key $ do
|
2010-11-08 23:26:37 +00:00
|
|
|
removeAnnex key
|
2011-05-15 06:02:46 +00:00
|
|
|
next $ cleanup key
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2010-12-30 18:19:16 +00:00
|
|
|
cleanup :: Key -> CommandCleanup
|
2010-11-02 23:04:24 +00:00
|
|
|
cleanup key = do
|
2011-07-01 19:24:07 +00:00
|
|
|
logStatus key InfoMissing
|
2010-11-02 23:04:24 +00:00
|
|
|
return True
|