git-annex/Backend/URL.hs
2015-01-21 12:50:09 -04:00

39 lines
840 B
Haskell

{- git-annex "URL" backend -- keys whose content is available from urls.
-
- Copyright 2011 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Backend.URL (
backends,
fromUrl
) where
import Common.Annex
import Types.Backend
import Types.Key
import Backend.Utilities
backends :: [Backend]
backends = [backend]
backend :: Backend
backend = Backend
{ name = "URL"
, getKey = const $ return Nothing
, fsckKey = Nothing
, canUpgradeKey = Nothing
, fastMigrate = Nothing
-- The content of an url can change at any time, so URL keys are
-- not stable.
, isStableKey = const False
}
{- Every unique url has a corresponding key. -}
fromUrl :: String -> Maybe Integer -> Annex Key
fromUrl url size = return $ stubKey
{ keyName = genKeyName url
, keyBackendName = "URL"
, keySize = size
}