2010-10-15 23:33:10 +00:00
|
|
|
{- git-annex "URL" backend
|
2010-10-27 20:53:54 +00:00
|
|
|
-
|
|
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
2010-10-10 17:47:04 +00:00
|
|
|
|
2010-10-15 23:33:10 +00:00
|
|
|
module Backend.URL (backend) where
|
2010-10-10 17:47:04 +00:00
|
|
|
|
2010-10-15 00:05:04 +00:00
|
|
|
import Control.Monad.State (liftIO)
|
|
|
|
import Data.String.Utils
|
2010-10-16 20:20:49 +00:00
|
|
|
|
2010-10-18 06:06:27 +00:00
|
|
|
import TypeInternals
|
2010-10-29 18:07:26 +00:00
|
|
|
import Utility
|
2010-11-08 19:15:21 +00:00
|
|
|
import Messages
|
2010-10-10 17:47:04 +00:00
|
|
|
|
2010-10-31 20:00:32 +00:00
|
|
|
backend :: Backend
|
2010-10-10 17:47:04 +00:00
|
|
|
backend = Backend {
|
2010-10-15 23:33:10 +00:00
|
|
|
name = "URL",
|
2010-10-10 19:04:18 +00:00
|
|
|
getKey = keyValue,
|
|
|
|
storeFileKey = dummyStore,
|
2010-10-10 23:53:31 +00:00
|
|
|
retrieveKeyFile = downloadUrl,
|
2010-11-13 18:59:27 +00:00
|
|
|
-- allow keys to be removed; presumably they can always be
|
|
|
|
-- downloaded again
|
2010-10-14 19:31:44 +00:00
|
|
|
removeKey = dummyOk,
|
2010-11-13 18:59:27 +00:00
|
|
|
-- similarly, keys are always assumed to be out there on the web
|
|
|
|
hasKey = dummyOk,
|
|
|
|
-- and nothing needed to fsck
|
|
|
|
fsckKey = dummyOk
|
2010-10-10 17:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
-- cannot generate url from filename
|
2010-10-14 01:28:47 +00:00
|
|
|
keyValue :: FilePath -> Annex (Maybe Key)
|
2010-10-31 20:00:32 +00:00
|
|
|
keyValue _ = return Nothing
|
2010-10-10 17:47:04 +00:00
|
|
|
|
2010-10-12 21:26:34 +00:00
|
|
|
-- cannot change url contents
|
2010-10-14 01:28:47 +00:00
|
|
|
dummyStore :: FilePath -> Key -> Annex Bool
|
2010-10-31 20:00:32 +00:00
|
|
|
dummyStore _ _ = return False
|
2010-10-14 18:14:19 +00:00
|
|
|
|
2010-10-14 19:31:44 +00:00
|
|
|
dummyOk :: Key -> Annex Bool
|
2010-10-31 20:00:32 +00:00
|
|
|
dummyOk _ = return True
|
2010-10-10 19:04:18 +00:00
|
|
|
|
2010-10-14 01:28:47 +00:00
|
|
|
downloadUrl :: Key -> FilePath -> Annex Bool
|
2010-10-15 00:05:04 +00:00
|
|
|
downloadUrl key file = do
|
2010-10-17 17:17:34 +00:00
|
|
|
showNote "downloading"
|
2010-10-29 18:10:55 +00:00
|
|
|
showProgress -- make way for curl progress bar
|
2010-10-29 18:07:26 +00:00
|
|
|
liftIO $ boolSystem "curl" ["-#", "-o", file, url]
|
2010-10-15 00:05:04 +00:00
|
|
|
where
|
|
|
|
url = join ":" $ drop 1 $ split ":" $ show key
|