2011-10-15 20:25:51 +00:00
|
|
|
{- Web url logs.
|
|
|
|
-
|
2013-07-28 19:27:36 +00:00
|
|
|
- Copyright 2011, 2013 Joey Hess <joey@kitenet.net>
|
2011-10-15 20:25:51 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Logs.Web (
|
|
|
|
URLString,
|
|
|
|
webUUID,
|
2012-11-29 21:01:07 +00:00
|
|
|
getUrls,
|
2014-12-08 17:32:27 +00:00
|
|
|
getUrlsWithPrefix,
|
2011-10-15 20:36:56 +00:00
|
|
|
setUrlPresent,
|
2012-11-29 21:01:07 +00:00
|
|
|
setUrlMissing,
|
2013-08-22 22:25:21 +00:00
|
|
|
knownUrls,
|
|
|
|
Downloader(..),
|
|
|
|
getDownloader,
|
|
|
|
setDownloader,
|
2011-10-15 20:25:51 +00:00
|
|
|
) where
|
|
|
|
|
2013-07-28 19:27:36 +00:00
|
|
|
import qualified Data.ByteString.Lazy.Char8 as L
|
2013-09-19 18:48:42 +00:00
|
|
|
import Data.Tuple.Utils
|
2013-07-28 19:27:36 +00:00
|
|
|
|
2011-10-15 20:25:51 +00:00
|
|
|
import Common.Annex
|
2013-08-29 22:51:22 +00:00
|
|
|
import Logs
|
2011-10-15 20:25:51 +00:00
|
|
|
import Logs.Presence
|
|
|
|
import Logs.Location
|
2013-07-28 19:27:36 +00:00
|
|
|
import qualified Annex.Branch
|
|
|
|
import Annex.CatFile
|
|
|
|
import qualified Git
|
|
|
|
import qualified Git.LsFiles
|
2014-12-08 17:40:15 +00:00
|
|
|
import Utility.Url
|
2011-10-15 20:25:51 +00:00
|
|
|
|
|
|
|
-- Dummy uuid for the whole web. Do not alter.
|
|
|
|
webUUID :: UUID
|
2011-11-07 18:46:01 +00:00
|
|
|
webUUID = UUID "00000000-0000-0000-0000-000000000001"
|
2011-10-15 20:25:51 +00:00
|
|
|
|
2011-10-15 20:36:56 +00:00
|
|
|
{- Gets all urls that a key might be available from. -}
|
2011-10-15 20:25:51 +00:00
|
|
|
getUrls :: Key -> Annex [URLString]
|
2013-08-29 22:51:22 +00:00
|
|
|
getUrls key = go $ urlLogFile key : oldurlLogs key
|
2012-11-11 04:51:07 +00:00
|
|
|
where
|
|
|
|
go [] = return []
|
|
|
|
go (l:ls) = do
|
|
|
|
us <- currentLog l
|
|
|
|
if null us
|
|
|
|
then go ls
|
|
|
|
else return us
|
2011-10-15 20:25:51 +00:00
|
|
|
|
2014-12-08 17:32:27 +00:00
|
|
|
getUrlsWithPrefix :: Key -> String -> Annex [URLString]
|
|
|
|
getUrlsWithPrefix key prefix = filter (prefix `isPrefixOf`) <$> getUrls key
|
|
|
|
|
2012-11-29 21:01:07 +00:00
|
|
|
setUrlPresent :: Key -> URLString -> Annex ()
|
|
|
|
setUrlPresent key url = do
|
2011-10-15 20:25:51 +00:00
|
|
|
us <- getUrls key
|
2012-11-29 21:01:07 +00:00
|
|
|
unless (url `elem` us) $ do
|
2013-08-29 22:51:22 +00:00
|
|
|
addLog (urlLogFile key) =<< logNow InfoPresent url
|
2012-11-29 21:01:07 +00:00
|
|
|
-- update location log to indicate that the web has the key
|
|
|
|
logChange key webUUID InfoPresent
|
2011-10-15 20:36:56 +00:00
|
|
|
|
2012-11-29 21:01:07 +00:00
|
|
|
setUrlMissing :: Key -> URLString -> Annex ()
|
2013-04-22 21:18:53 +00:00
|
|
|
setUrlMissing key url = do
|
2013-08-29 22:51:22 +00:00
|
|
|
addLog (urlLogFile key) =<< logNow InfoMissing url
|
2013-04-22 21:18:53 +00:00
|
|
|
whenM (null <$> getUrls key) $
|
|
|
|
logChange key webUUID InfoMissing
|
2013-07-28 19:27:36 +00:00
|
|
|
|
|
|
|
{- Finds all known urls. -}
|
|
|
|
knownUrls :: Annex [URLString]
|
|
|
|
knownUrls = do
|
|
|
|
{- Ensure the git-annex branch's index file is up-to-date and
|
|
|
|
- any journaled changes are reflected in it, since we're going
|
|
|
|
- to query its index directly. -}
|
|
|
|
Annex.Branch.update
|
|
|
|
Annex.Branch.commit "update"
|
|
|
|
Annex.Branch.withIndex $ do
|
|
|
|
top <- fromRepo Git.repoPath
|
|
|
|
(l, cleanup) <- inRepo $ Git.LsFiles.stagedDetails [top]
|
2013-09-19 18:48:42 +00:00
|
|
|
r <- mapM (geturls . snd3) $ filter (isUrlLog . fst3) l
|
2013-07-28 19:27:36 +00:00
|
|
|
void $ liftIO cleanup
|
|
|
|
return $ concat r
|
|
|
|
where
|
|
|
|
geturls Nothing = return []
|
2014-10-09 18:53:13 +00:00
|
|
|
geturls (Just logsha) = getLog . L.unpack <$> catObject logsha
|
2013-08-22 22:25:21 +00:00
|
|
|
|
|
|
|
data Downloader = DefaultDownloader | QuviDownloader
|
|
|
|
|
|
|
|
{- Determines the downloader for an URL.
|
|
|
|
-
|
|
|
|
- Some URLs are not downloaded by normal means, and this is indicated
|
|
|
|
- by prefixing them with downloader: when they are recorded in the url
|
|
|
|
- logs. -}
|
|
|
|
getDownloader :: URLString -> (URLString, Downloader)
|
|
|
|
getDownloader u = case separate (== ':') u of
|
|
|
|
("quvi", u') -> (u', QuviDownloader)
|
|
|
|
_ -> (u, DefaultDownloader)
|
|
|
|
|
|
|
|
setDownloader :: URLString -> Downloader -> URLString
|
|
|
|
setDownloader u DefaultDownloader = u
|
|
|
|
setDownloader u QuviDownloader = "quvi:" ++ u
|