git-annex/Command/AddUrl.hs

87 lines
2.1 KiB
Haskell
Raw Normal View History

2011-07-01 21:15:46 +00:00
{- git-annex command
-
- Copyright 2011 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.AddUrl where
import Control.Monad.State
2011-07-01 21:15:46 +00:00
import Network.URI
import Data.String.Utils
import Data.Maybe
2011-07-01 21:15:46 +00:00
import System.Directory
import Command
import qualified Backend
2011-08-20 20:11:42 +00:00
import qualified Utility.Url as Url
2011-07-01 21:15:46 +00:00
import qualified Remote.Web
import qualified Command.Add
import qualified Annex
import qualified Backend.URL
2011-07-01 21:15:46 +00:00
import Messages
import Content
import PresenceLog
import Locations
import Utility.Path
import Utility.Conditional
2011-07-01 21:15:46 +00:00
command :: [Command]
command = [repoCommand "addurl" paramPath seek "add urls to annex"]
seek :: [CommandSeek]
seek = [withStrings start]
start :: CommandStartString
start s = do
let u = parseURI s
case u of
Nothing -> error $ "bad url " ++ s
Just url -> do
file <- liftIO $ url2file url
showStart "addurl" file
next $ perform s file
perform :: String -> FilePath -> CommandPerform
perform url file = do
fast <- Annex.getState Annex.fast
if fast then nodownload url file else download url file
download :: String -> FilePath -> CommandPerform
download url file = do
g <- Annex.gitRepo
showAction $ "downloading " ++ url ++ " "
let dummykey = Backend.URL.fromUrl url
let tmp = gitAnnexTmpLocation g dummykey
liftIO $ createDirectoryIfMissing True (parentDir tmp)
2011-08-20 20:11:42 +00:00
ok <- Url.download url tmp
2011-07-01 21:15:46 +00:00
if ok
then do
[(_, backend)] <- Backend.chooseBackends [file]
k <- Backend.genKey tmp backend
case k of
2011-07-01 21:15:46 +00:00
Nothing -> stop
Just (key, _) -> do
moveAnnex key tmp
2011-07-01 21:15:46 +00:00
Remote.Web.setUrl key url InfoPresent
next $ Command.Add.cleanup file key True
2011-07-01 21:15:46 +00:00
else stop
nodownload :: String -> FilePath -> CommandPerform
nodownload url file = do
let key = Backend.URL.fromUrl url
Remote.Web.setUrl key url InfoPresent
next $ Command.Add.cleanup file key False
2011-07-01 21:15:46 +00:00
url2file :: URI -> IO FilePath
url2file url = do
whenM (doesFileExist file) $
error $ "already have this url in " ++ file
return file
2011-07-01 21:15:46 +00:00
where
file = escape $ uriRegName auth ++ uriPath url ++ uriQuery url
escape = replace "/?" $ repeat '_'
auth = fromMaybe (error $ "bad url " ++ show url) $ uriAuthority url