git-annex/Backend/URL.hs

56 lines
1.3 KiB
Haskell
Raw Normal View History

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