2013-04-22 21:18:53 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
2016-12-05 16:10:07 +00:00
|
|
|
- Copyright 2013-2016 Joey Hess <id@joeyh.name>
|
2013-04-22 21:18:53 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.RmUrl where
|
|
|
|
|
|
|
|
import Command
|
|
|
|
import Logs.Web
|
2014-12-08 23:14:24 +00:00
|
|
|
import qualified Remote
|
2013-04-22 21:18:53 +00:00
|
|
|
|
2015-07-08 16:33:27 +00:00
|
|
|
cmd :: Command
|
|
|
|
cmd = notBareRepo $
|
2015-07-08 19:08:02 +00:00
|
|
|
command "rmurl" SectionCommon
|
|
|
|
"record file is not available at url"
|
2016-12-05 16:10:07 +00:00
|
|
|
(paramRepeating (paramPair paramFile paramUrl))
|
|
|
|
(seek <$$> optParser)
|
2013-04-22 21:18:53 +00:00
|
|
|
|
2016-12-05 16:10:07 +00:00
|
|
|
data RmUrlOptions = RmUrlOptions
|
|
|
|
{ rmThese :: CmdParams
|
|
|
|
, batchOption :: BatchMode
|
|
|
|
}
|
2013-04-22 21:18:53 +00:00
|
|
|
|
2016-12-05 16:10:07 +00:00
|
|
|
optParser :: CmdParamsDesc -> Parser RmUrlOptions
|
|
|
|
optParser desc = RmUrlOptions
|
|
|
|
<$> cmdParams desc
|
|
|
|
<*> parseBatchOption
|
|
|
|
|
|
|
|
seek :: RmUrlOptions -> CommandSeek
|
|
|
|
seek o = case batchOption o of
|
|
|
|
Batch -> batchInput batchParser (batchCommandAction . start)
|
|
|
|
NoBatch -> withPairs start (rmThese o)
|
|
|
|
|
|
|
|
-- Split on the last space, since a FilePath can contain whitespace,
|
|
|
|
-- but a url should not.
|
|
|
|
batchParser :: String -> Either String (FilePath, URLString)
|
|
|
|
batchParser s = case separate (== ' ') (reverse s) of
|
|
|
|
(ru, rf)
|
|
|
|
| null ru || null rf -> Left "Expected: \"file url\""
|
|
|
|
| otherwise -> Right (reverse rf, reverse ru)
|
|
|
|
|
|
|
|
start :: (FilePath, URLString) -> CommandStart
|
2014-04-17 22:03:39 +00:00
|
|
|
start (file, url) = flip whenAnnexed file $ \_ key -> do
|
2013-04-22 21:18:53 +00:00
|
|
|
showStart "rmurl" file
|
|
|
|
next $ next $ cleanup url key
|
|
|
|
|
|
|
|
cleanup :: String -> Key -> CommandCleanup
|
|
|
|
cleanup url key = do
|
2014-12-11 18:09:57 +00:00
|
|
|
r <- Remote.claimingUrl url
|
2016-01-19 19:55:32 +00:00
|
|
|
setUrlMissing (Remote.uuid r) key (setDownloader' url r)
|
2013-04-22 21:18:53 +00:00
|
|
|
return True
|