git-annex/Remote/Web.hs

77 lines
1.8 KiB
Haskell
Raw Normal View History

{- Web remotes.
-
- Copyright 2011 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Remote.Web (remote) where
2011-10-05 20:02:51 +00:00
import Common.Annex
import Types.Remote
import qualified Git
import qualified Git.Construct
import Config
import Logs.Web
2011-08-20 20:11:42 +00:00
import qualified Utility.Url as Url
remote :: RemoteType Annex
remote = RemoteType {
typename = "web",
enumerate = list,
generate = gen,
setup = error "not supported"
}
-- There is only one web remote, and it always exists.
-- (If the web should cease to exist, remove this module and redistribute
-- a new release to the survivors by carrier pigeon.)
list :: Annex [Git.Repo]
list = return [Git.repoRemoteNameSet "web" Git.Construct.fromUnknown]
gen :: Git.Repo -> UUID -> Maybe RemoteConfig -> Annex (Remote Annex)
gen r _ _ =
2011-07-15 16:47:14 +00:00
return Remote {
uuid = webUUID,
cost = expensiveRemoteCost,
name = Git.repoDescribe r,
2011-07-01 21:15:46 +00:00
storeKey = uploadKey,
retrieveKeyFile = downloadKey,
removeKey = dropKey,
hasKey = checkKey,
hasKeyCheap = False,
config = Nothing,
repo = r
}
2011-07-01 21:15:46 +00:00
downloadKey :: Key -> FilePath -> Annex Bool
downloadKey key file = get =<< getUrls key
where
get [] = do
warning "no known url"
return False
2011-10-16 04:04:26 +00:00
get urls = do
showOutput -- make way for download progress bar
liftIO $ anyM (`Url.download` file) urls
2011-07-01 21:15:46 +00:00
uploadKey :: Key -> Annex Bool
uploadKey _ = do
warning "upload to web not supported"
return False
2011-07-01 21:15:46 +00:00
dropKey :: Key -> Annex Bool
dropKey _ = do
warning "removal from web not supported"
return False
checkKey :: Key -> Annex (Either String Bool)
2011-07-01 21:15:46 +00:00
checkKey key = do
us <- getUrls key
if null us
then return $ Right False
2011-07-01 21:15:46 +00:00
else return . Right =<< checkKey' us
checkKey' :: [URLString] -> Annex Bool
2011-12-02 20:10:52 +00:00
checkKey' us = untilTrue us $ \u -> do
showAction $ "checking " ++ u
2011-12-02 20:10:52 +00:00
liftIO $ Url.exists u