2011-07-01 19:24:07 +00:00
|
|
|
{- Web remotes.
|
|
|
|
-
|
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Remote.Web (
|
2011-07-01 21:15:46 +00:00
|
|
|
remote,
|
2011-08-17 00:49:04 +00:00
|
|
|
setUrl
|
2011-07-01 19:24:07 +00:00
|
|
|
) where
|
|
|
|
|
2011-10-05 20:02:51 +00:00
|
|
|
import Common.Annex
|
2011-07-01 19:24:07 +00:00
|
|
|
import Types.Remote
|
|
|
|
import qualified Git
|
|
|
|
import Config
|
2011-10-15 20:21:08 +00:00
|
|
|
import Logs.Presence
|
|
|
|
import Logs.Location
|
|
|
|
import Logs.UUID
|
2011-08-20 20:11:42 +00:00
|
|
|
import qualified Utility.Url as Url
|
2011-07-01 19:24:07 +00:00
|
|
|
|
2011-07-04 23:31:45 +00:00
|
|
|
type URLString = String
|
|
|
|
|
2011-07-01 19:24:07 +00:00
|
|
|
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]
|
2011-10-14 22:17:46 +00:00
|
|
|
list = return [Git.repoRemoteNameSet Git.repoFromUnknown "web"]
|
2011-07-01 19:24:07 +00:00
|
|
|
|
|
|
|
-- Dummy uuid for the whole web. Do not alter.
|
|
|
|
webUUID :: UUID
|
|
|
|
webUUID = "00000000-0000-0000-0000-000000000001"
|
|
|
|
|
|
|
|
gen :: Git.Repo -> UUID -> Maybe RemoteConfig -> Annex (Remote Annex)
|
|
|
|
gen r _ _ =
|
2011-07-15 16:47:14 +00:00
|
|
|
return Remote {
|
2011-07-01 19:24:07 +00:00
|
|
|
uuid = webUUID,
|
|
|
|
cost = expensiveRemoteCost,
|
|
|
|
name = Git.repoDescribe r,
|
2011-07-01 21:15:46 +00:00
|
|
|
storeKey = uploadKey,
|
|
|
|
retrieveKeyFile = downloadKey,
|
|
|
|
removeKey = dropKey,
|
|
|
|
hasKey = checkKey,
|
2011-07-01 19:24:07 +00:00
|
|
|
hasKeyCheap = False,
|
2011-09-19 00:11:39 +00:00
|
|
|
config = Nothing,
|
|
|
|
repo = r
|
2011-07-01 19:24:07 +00:00
|
|
|
}
|
|
|
|
|
2011-07-01 21:23:01 +00:00
|
|
|
{- The urls for a key are stored in remote/web/hash/key.log
|
|
|
|
- in the git-annex branch. -}
|
2011-07-01 19:24:07 +00:00
|
|
|
urlLog :: Key -> FilePath
|
2011-08-06 18:45:58 +00:00
|
|
|
urlLog key = "remote/web" </> hashDirLower key </> keyFile key ++ ".log"
|
|
|
|
oldurlLog :: Key -> FilePath
|
|
|
|
{- A bug used to store the urls elsewhere. -}
|
|
|
|
oldurlLog key = "remote/web" </> hashDirLower key </> show key ++ ".log"
|
2011-07-01 19:24:07 +00:00
|
|
|
|
2011-07-01 21:15:46 +00:00
|
|
|
getUrls :: Key -> Annex [URLString]
|
2011-08-06 18:45:58 +00:00
|
|
|
getUrls key = do
|
|
|
|
us <- currentLog (urlLog key)
|
|
|
|
if null us
|
|
|
|
then currentLog (oldurlLog key)
|
|
|
|
else return us
|
2011-07-01 19:24:07 +00:00
|
|
|
|
2011-07-01 21:15:46 +00:00
|
|
|
{- Records a change in an url for a key. -}
|
|
|
|
setUrl :: Key -> URLString -> LogStatus -> Annex ()
|
|
|
|
setUrl key url status = do
|
2011-10-04 02:24:57 +00:00
|
|
|
g <- gitRepo
|
2011-07-01 21:15:46 +00:00
|
|
|
addLog (urlLog key) =<< logNow status url
|
|
|
|
|
|
|
|
-- update location log to indicate that the web has the key, or not
|
|
|
|
us <- getUrls key
|
|
|
|
logChange g key webUUID (if null us then InfoMissing else InfoPresent)
|
|
|
|
|
|
|
|
downloadKey :: Key -> FilePath -> Annex Bool
|
2011-08-27 11:08:15 +00:00
|
|
|
downloadKey key file = get =<< getUrls key
|
2011-08-17 00:49:04 +00:00
|
|
|
where
|
2011-08-27 11:08:15 +00:00
|
|
|
get [] = do
|
|
|
|
warning "no known url"
|
|
|
|
return False
|
2011-08-28 19:46:49 +00:00
|
|
|
get urls = anyM (`Url.download` file) urls
|
2011-07-01 19:24:07 +00:00
|
|
|
|
2011-07-01 21:15:46 +00:00
|
|
|
uploadKey :: Key -> Annex Bool
|
|
|
|
uploadKey _ = do
|
2011-07-01 19:24:07 +00:00
|
|
|
warning "upload to web not supported"
|
|
|
|
return False
|
|
|
|
|
2011-07-01 21:15:46 +00:00
|
|
|
dropKey :: Key -> Annex Bool
|
|
|
|
dropKey _ = do
|
2011-07-01 19:24:07 +00:00
|
|
|
warning "removal from web not supported"
|
|
|
|
return False
|
|
|
|
|
2011-07-01 21:15:46 +00:00
|
|
|
checkKey :: Key -> Annex (Either IOException Bool)
|
|
|
|
checkKey key = do
|
|
|
|
us <- getUrls key
|
2011-07-01 19:24:07 +00:00
|
|
|
if null us
|
|
|
|
then return $ Right False
|
2011-07-01 21:15:46 +00:00
|
|
|
else return . Right =<< checkKey' us
|
|
|
|
checkKey' :: [URLString] -> Annex Bool
|
|
|
|
checkKey' [] = return False
|
|
|
|
checkKey' (u:us) = do
|
2011-07-19 18:07:23 +00:00
|
|
|
showAction $ "checking " ++ u
|
2011-08-17 00:49:04 +00:00
|
|
|
e <- liftIO $ Url.exists u
|
2011-07-01 21:15:46 +00:00
|
|
|
if e then return e else checkKey' us
|