summaryrefslogtreecommitdiff
path: root/Command/DropKey.hs
blob: 8076e6fd3fc56229cb8849a92a94cfdfb5449bfc (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
43
44
45
46
47
48
{- git-annex command
 -
 - Copyright 2010 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module Command.DropKey where

import Control.Monad.State (liftIO)
import System.Directory

import Command
import qualified Annex
import Locations
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
	g <- Annex.gitRepo
	let loc = annexLocation g key
	liftIO $ removeFile loc
	return $ Just $ cleanup key

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