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
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2011-10-29 19:19:05 +00:00
|
|
|
def :: [Command]
|
|
|
|
def = [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-03-16 02:42:34 +00:00
|
|
|
start key = do
|
|
|
|
present <- inAnnex key
|
2011-01-26 04:17:38 +00:00
|
|
|
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
|
2010-11-02 23:04:24 +00:00
|
|
|
then error "dropkey is can cause data loss; use --force if you're sure you want to do this"
|
|
|
|
else do
|
2011-03-16 02:42:34 +00:00
|
|
|
showStart "dropkey" (show key)
|
2011-05-15 06:02:46 +00:00
|
|
|
next $ perform key
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2010-12-30 18:19:16 +00:00
|
|
|
perform :: Key -> CommandPerform
|
2010-11-02 23:04:24 +00:00
|
|
|
perform 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
|