aboutsummaryrefslogtreecommitdiff
path: root/Command/DropKey.hs
blob: e0b20918cbe42b2439b5bdff7e73ca9d475641f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{- git-annex command
 -
 - Copyright 2010 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module Command.DropKey where

import Command
import qualified Annex
import qualified Backend
import LocationLog
import Types
import Core
import Messages

{- Drops cached content for a key. -}
start :: SubCmdStartString
start keyname = do
	backends <- Backend.list
	let key = genKey (backends !! 0) keyname
	present <- inAnnex key
	force <- Annex.flagIsSet "force"
	if (not present)
		then return Nothing
		else if (not force)
			then error "dropkey is can cause data loss; use --force if you're sure you want to do this"
			else do
				showStart "dropkey" keyname
				return $ Just $ perform key

perform :: Key -> SubCmdPerform
perform key = do
	removeAnnex key
	return $ Just $ cleanup key

cleanup :: Key -> SubCmdCleanup
cleanup key = do
	logStatus key ValueMissing
	return True