2011-10-15 20:25:51 +00:00
|
|
|
{- Web url logs.
|
|
|
|
-
|
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Logs.Web (
|
|
|
|
URLString,
|
|
|
|
webUUID,
|
2012-11-29 21:01:07 +00:00
|
|
|
getUrls,
|
2011-10-15 20:36:56 +00:00
|
|
|
setUrlPresent,
|
2012-11-29 21:01:07 +00:00
|
|
|
setUrlMissing,
|
2011-10-15 20:25:51 +00:00
|
|
|
) where
|
|
|
|
|
|
|
|
import Common.Annex
|
|
|
|
import Logs.Presence
|
|
|
|
import Logs.Location
|
2012-08-08 20:06:01 +00:00
|
|
|
import Types.Key
|
2011-10-15 20:25:51 +00:00
|
|
|
|
|
|
|
type URLString = String
|
|
|
|
|
|
|
|
-- 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
|
|
|
|
|
|
|
urlLog :: Key -> FilePath
|
2012-02-18 03:15:29 +00:00
|
|
|
urlLog key = hashDirLower key </> keyFile key ++ ".log.web"
|
|
|
|
|
|
|
|
{- Used to store the urls elsewhere. -}
|
|
|
|
oldurlLogs :: Key -> [FilePath]
|
|
|
|
oldurlLogs key =
|
2012-08-08 20:06:01 +00:00
|
|
|
[ "remote/web" </> hashDirLower key </> key2file key ++ ".log"
|
2012-02-18 03:15:29 +00:00
|
|
|
, "remote/web" </> hashDirLower key </> keyFile key ++ ".log"
|
|
|
|
]
|
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]
|
2012-02-18 03:15:29 +00:00
|
|
|
getUrls key = go $ urlLog 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
|
|
|
|
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
|
|
|
|
addLog (urlLog key) =<< logNow InfoPresent url
|
|
|
|
-- 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 ()
|
|
|
|
setUrlMissing key url = addLog (urlLog key) =<< logNow InfoMissing url
|