2010-11-02 19:04:24 -04: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 16:02:51 -04:00
|
|
|
import Common.Annex
|
2010-11-02 19:04:24 -04:00
|
|
|
import Command
|
|
|
|
import qualified Annex
|
2011-10-15 16:21:08 -04:00
|
|
|
import Logs.Location
|
2011-10-04 00:40:47 -04:00
|
|
|
import Annex.Content
|
2012-08-08 16:06:01 -04:00
|
|
|
import Types.Key
|
2010-11-02 19:04:24 -04:00
|
|
|
|
2011-10-29 15:19:05 -04:00
|
|
|
def :: [Command]
|
2012-09-15 20:46:38 -04:00
|
|
|
def = [noCommit $ command "dropkey" (paramRepeating paramKey) seek
|
2013-03-24 18:28:21 -04:00
|
|
|
SectionPlumbing "drops annexed content for specified keys"]
|
2010-12-30 15:06:26 -04:00
|
|
|
|
2010-12-30 14:19:16 -04:00
|
|
|
seek :: [CommandSeek]
|
2010-11-11 18:54:52 -04:00
|
|
|
seek = [withKeys start]
|
|
|
|
|
2011-09-15 16:50:49 -04:00
|
|
|
start :: Key -> CommandStart
|
2011-12-09 13:32:09 -04:00
|
|
|
start key = stopUnless (inAnnex key) $ do
|
2011-12-09 12:23:45 -04: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 16:06:01 -04:00
|
|
|
showStart "dropkey" (key2file key)
|
2011-12-09 12:23:45 -04:00
|
|
|
next $ perform key
|
2010-11-02 19:04:24 -04:00
|
|
|
|
2010-12-30 14:19:16 -04:00
|
|
|
perform :: Key -> CommandPerform
|
2011-11-09 19:47:04 -04:00
|
|
|
perform key = lockContent key $ do
|
2010-11-08 19:26:37 -04:00
|
|
|
removeAnnex key
|
2011-05-15 02:02:46 -04:00
|
|
|
next $ cleanup key
|
2010-11-02 19:04:24 -04:00
|
|
|
|
2010-12-30 14:19:16 -04:00
|
|
|
cleanup :: Key -> CommandCleanup
|
2010-11-02 19:04:24 -04:00
|
|
|
cleanup key = do
|
2011-07-01 15:24:07 -04:00
|
|
|
logStatus key InfoMissing
|
2010-11-02 19:04:24 -04:00
|
|
|
return True
|