2013-07-28 19:27:36 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
|
|
|
- Copyright 2013 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2013-12-29 19:52:20 +00:00
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
2013-07-28 19:27:36 +00:00
|
|
|
module Command.ImportFeed where
|
|
|
|
|
|
|
|
import Text.Feed.Import
|
|
|
|
import Text.Feed.Query
|
|
|
|
import Text.Feed.Types
|
|
|
|
import qualified Data.Set as S
|
|
|
|
import qualified Data.Map as M
|
2013-08-03 05:40:21 +00:00
|
|
|
import Data.Time.Clock
|
2014-04-07 20:55:04 +00:00
|
|
|
import Data.Time.Format
|
|
|
|
import System.Locale
|
2013-07-28 19:27:36 +00:00
|
|
|
|
|
|
|
import Common.Annex
|
2013-07-31 16:19:00 +00:00
|
|
|
import qualified Annex
|
2013-07-28 19:27:36 +00:00
|
|
|
import Command
|
2013-09-28 18:35:21 +00:00
|
|
|
import qualified Annex.Url as Url
|
2013-07-28 19:27:36 +00:00
|
|
|
import Logs.Web
|
|
|
|
import qualified Utility.Format
|
|
|
|
import Utility.Tmp
|
|
|
|
import Command.AddUrl (addUrlFile, relaxedOption)
|
2013-08-03 05:40:21 +00:00
|
|
|
import Annex.Perms
|
|
|
|
import Backend.URL (fromUrl)
|
2013-12-29 19:52:20 +00:00
|
|
|
#ifdef WITH_QUVI
|
|
|
|
import Annex.Quvi
|
|
|
|
import qualified Utility.Quvi as Quvi
|
|
|
|
import Command.AddUrl (addUrlFileQuvi)
|
|
|
|
#endif
|
import metadata from feeds
When annex.genmetadata is set, metadata from the feed is added to files
that are imported from it.
Reused the same feedtitle and itemtitle, feedauthor, itemauthor, etc names
that are used in --template.
Also added title and author, which are the item title/author if available,
falling back to the feed title/author. These are more likely to be common
metadata fields.
(There is a small bit of dupication here, but once git gets
around to packing the object, it will compress it away.)
The itempubdate field is not included in the metadata as a string; instead
it is used to generate year and month fields, same as is done when adding
files with annex.genmetadata set.
This commit was sponsored by Amitai Schlair, who cooincidentially
is responsible for ikiwiki generating nice feed metadata!
2014-07-03 17:46:09 +00:00
|
|
|
import Types.MetaData
|
|
|
|
import Logs.MetaData
|
|
|
|
import Annex.MetaData
|
2013-07-28 19:27:36 +00:00
|
|
|
|
|
|
|
def :: [Command]
|
|
|
|
def = [notBareRepo $ withOptions [templateOption, relaxedOption] $
|
|
|
|
command "importfeed" (paramRepeating paramUrl) seek
|
|
|
|
SectionCommon "import files from podcast feeds"]
|
|
|
|
|
|
|
|
templateOption :: Option
|
2014-01-26 20:25:55 +00:00
|
|
|
templateOption = fieldOption [] "template" paramFormat "template for filenames"
|
2013-07-28 19:27:36 +00:00
|
|
|
|
fix inversion of control in CommandSeek (no behavior changes)
I've been disliking how the command seek actions were written for some
time, with their inversion of control and ugly workarounds.
The last straw to fix it was sync --content, which didn't fit the
Annex [CommandStart] interface well at all. I have not yet made it take
advantage of the changed interface though.
The crucial change, and probably why I didn't do it this way from the
beginning, is to make each CommandStart action be run with exceptions
caught, and if it fails, increment a failure counter in annex state.
So I finally remove the very first code I wrote for git-annex, which
was before I had exception handling in the Annex monad, and so ran outside
that monad, passing state explicitly as it ran each CommandStart action.
This was a real slog from 1 to 5 am.
Test suite passes.
Memory usage is lower than before, sometimes by a couple of megabytes, and
remains constant, even when running in a large repo, and even when
repeatedly failing and incrementing the error counter. So no accidental
laziness space leaks.
Wall clock speed is identical, even in large repos.
This commit was sponsored by an anonymous bitcoiner.
2014-01-20 08:11:42 +00:00
|
|
|
seek :: CommandSeek
|
|
|
|
seek ps = do
|
|
|
|
tmpl <- getOptionField templateOption return
|
|
|
|
relaxed <- getOptionFlag relaxedOption
|
|
|
|
cache <- getCache tmpl
|
|
|
|
withStrings (start relaxed cache) ps
|
2013-07-28 19:27:36 +00:00
|
|
|
|
2013-07-28 22:16:24 +00:00
|
|
|
start :: Bool -> Cache -> URLString -> CommandStart
|
|
|
|
start relaxed cache url = do
|
|
|
|
showStart "importfeed" url
|
|
|
|
next $ perform relaxed cache url
|
|
|
|
|
|
|
|
perform :: Bool -> Cache -> URLString -> CommandPerform
|
|
|
|
perform relaxed cache url = do
|
2013-12-29 19:52:20 +00:00
|
|
|
v <- findDownloads url
|
2013-07-28 22:16:24 +00:00
|
|
|
case v of
|
2013-12-29 19:52:20 +00:00
|
|
|
[] -> do
|
|
|
|
feedProblem url "bad feed content"
|
|
|
|
next $ return True
|
|
|
|
l -> do
|
|
|
|
ok <- and <$> mapM (performDownload relaxed cache) l
|
2013-09-03 18:32:26 +00:00
|
|
|
unless ok $
|
|
|
|
feedProblem url "problem downloading item"
|
2013-09-03 18:39:07 +00:00
|
|
|
next $ cleanup url True
|
2013-08-03 05:40:21 +00:00
|
|
|
|
|
|
|
cleanup :: URLString -> Bool -> CommandCleanup
|
|
|
|
cleanup url ok = do
|
|
|
|
when ok $
|
|
|
|
clearFeedProblem url
|
|
|
|
return ok
|
2013-07-28 22:16:24 +00:00
|
|
|
|
2013-07-28 23:08:50 +00:00
|
|
|
data ToDownload = ToDownload
|
|
|
|
{ feed :: Feed
|
2013-08-03 05:40:21 +00:00
|
|
|
, feedurl :: URLString
|
2013-07-28 23:08:50 +00:00
|
|
|
, item :: Item
|
2013-12-29 19:52:20 +00:00
|
|
|
, location :: DownloadLocation
|
2013-07-28 23:08:50 +00:00
|
|
|
}
|
|
|
|
|
2013-12-29 19:52:20 +00:00
|
|
|
data DownloadLocation = Enclosure URLString | QuviLink URLString
|
2013-07-28 23:08:50 +00:00
|
|
|
|
2013-07-28 22:16:24 +00:00
|
|
|
data Cache = Cache
|
|
|
|
{ knownurls :: S.Set URLString
|
|
|
|
, template :: Utility.Format.Format
|
|
|
|
}
|
|
|
|
|
|
|
|
getCache :: Maybe String -> Annex Cache
|
2013-07-31 16:19:00 +00:00
|
|
|
getCache opttemplate = ifM (Annex.getState Annex.force)
|
|
|
|
( ret S.empty
|
|
|
|
, do
|
|
|
|
showSideAction "checking known urls"
|
|
|
|
ret =<< S.fromList <$> knownUrls
|
|
|
|
)
|
2013-07-28 19:27:36 +00:00
|
|
|
where
|
2013-07-28 22:16:24 +00:00
|
|
|
tmpl = Utility.Format.gen $ fromMaybe defaultTemplate opttemplate
|
2013-07-31 16:19:00 +00:00
|
|
|
ret s = return $ Cache s tmpl
|
2013-07-28 19:27:36 +00:00
|
|
|
|
2013-12-29 19:52:20 +00:00
|
|
|
findDownloads :: URLString -> Annex [ToDownload]
|
|
|
|
findDownloads u = go =<< downloadFeed u
|
2013-07-28 19:27:36 +00:00
|
|
|
where
|
2013-12-29 19:52:20 +00:00
|
|
|
go Nothing = pure []
|
|
|
|
go (Just f) = catMaybes <$> mapM (mk f) (feedItems f)
|
|
|
|
|
|
|
|
mk f i = case getItemEnclosure i of
|
|
|
|
Just (enclosureurl, _, _) -> return $
|
|
|
|
Just $ ToDownload f u i $ Enclosure enclosureurl
|
|
|
|
Nothing -> mkquvi f i
|
|
|
|
#ifdef WITH_QUVI
|
|
|
|
mkquvi f i = case getItemLink i of
|
2014-02-28 18:54:02 +00:00
|
|
|
Just link -> ifM (quviSupported link)
|
2013-12-29 19:52:20 +00:00
|
|
|
( return $ Just $ ToDownload f u i $ QuviLink link
|
|
|
|
, return Nothing
|
|
|
|
)
|
|
|
|
Nothing -> return Nothing
|
|
|
|
#else
|
|
|
|
mkquvi = return Nothing
|
|
|
|
#endif
|
2013-07-28 19:27:36 +00:00
|
|
|
|
|
|
|
{- Feeds change, so a feed download cannot be resumed. -}
|
|
|
|
downloadFeed :: URLString -> Annex (Maybe Feed)
|
|
|
|
downloadFeed url = do
|
|
|
|
showOutput
|
2014-02-25 02:00:25 +00:00
|
|
|
uo <- Url.getUrlOptions
|
2013-07-28 19:27:36 +00:00
|
|
|
liftIO $ withTmpFile "feed" $ \f h -> do
|
2013-07-28 21:24:30 +00:00
|
|
|
fileEncoding h
|
2014-02-25 02:00:25 +00:00
|
|
|
ifM (Url.download url f uo)
|
2013-11-20 17:41:13 +00:00
|
|
|
( parseFeedString <$> hGetContentsStrict h
|
2013-07-28 19:27:36 +00:00
|
|
|
, return Nothing
|
|
|
|
)
|
|
|
|
|
2013-12-29 19:52:20 +00:00
|
|
|
performDownload :: Bool -> Cache -> ToDownload -> Annex Bool
|
|
|
|
performDownload relaxed cache todownload = case location todownload of
|
|
|
|
Enclosure url -> checkknown url $
|
|
|
|
rundownload url (takeExtension url) $
|
|
|
|
addUrlFile relaxed url
|
2014-01-05 17:35:14 +00:00
|
|
|
QuviLink pageurl -> do
|
|
|
|
let quviurl = setDownloader pageurl QuviDownloader
|
|
|
|
checkknown quviurl $ do
|
|
|
|
mp <- withQuviOptions Quvi.query [Quvi.quiet, Quvi.httponly] pageurl
|
|
|
|
case mp of
|
2013-12-29 19:52:20 +00:00
|
|
|
Nothing -> return False
|
2014-01-05 17:35:14 +00:00
|
|
|
Just page -> case headMaybe $ Quvi.pageLinks page of
|
|
|
|
Nothing -> return False
|
|
|
|
Just link -> do
|
|
|
|
let videourl = Quvi.linkUrl link
|
|
|
|
checkknown videourl $
|
|
|
|
rundownload videourl ("." ++ Quvi.linkSuffix link) $
|
|
|
|
addUrlFileQuvi relaxed quviurl videourl
|
2013-07-31 16:19:00 +00:00
|
|
|
where
|
2014-10-09 18:53:13 +00:00
|
|
|
forced = Annex.getState Annex.force
|
2013-12-29 19:52:20 +00:00
|
|
|
|
|
|
|
{- Avoids downloading any urls that are already known to be
|
|
|
|
- associated with a file in the annex, unless forced. -}
|
|
|
|
checkknown url a
|
|
|
|
| S.member url (knownurls cache) = ifM forced (a, return True)
|
|
|
|
| otherwise = a
|
|
|
|
|
|
|
|
rundownload url extension getter = do
|
|
|
|
dest <- makeunique url (1 :: Integer) $
|
|
|
|
feedFile (template cache) todownload extension
|
2013-08-01 15:57:05 +00:00
|
|
|
case dest of
|
2013-08-03 05:40:21 +00:00
|
|
|
Nothing -> return True
|
2013-08-01 15:57:05 +00:00
|
|
|
Just f -> do
|
|
|
|
showStart "addurl" f
|
import metadata from feeds
When annex.genmetadata is set, metadata from the feed is added to files
that are imported from it.
Reused the same feedtitle and itemtitle, feedauthor, itemauthor, etc names
that are used in --template.
Also added title and author, which are the item title/author if available,
falling back to the feed title/author. These are more likely to be common
metadata fields.
(There is a small bit of dupication here, but once git gets
around to packing the object, it will compress it away.)
The itempubdate field is not included in the metadata as a string; instead
it is used to generate year and month fields, same as is done when adding
files with annex.genmetadata set.
This commit was sponsored by Amitai Schlair, who cooincidentially
is responsible for ikiwiki generating nice feed metadata!
2014-07-03 17:46:09 +00:00
|
|
|
mk <- getter f
|
|
|
|
case mk of
|
|
|
|
Just key -> do
|
|
|
|
whenM (annexGenMetaData <$> Annex.getGitConfig) $
|
|
|
|
addMetaData key $ extractMetaData todownload
|
2013-08-03 05:40:21 +00:00
|
|
|
showEndOk
|
|
|
|
return True
|
import metadata from feeds
When annex.genmetadata is set, metadata from the feed is added to files
that are imported from it.
Reused the same feedtitle and itemtitle, feedauthor, itemauthor, etc names
that are used in --template.
Also added title and author, which are the item title/author if available,
falling back to the feed title/author. These are more likely to be common
metadata fields.
(There is a small bit of dupication here, but once git gets
around to packing the object, it will compress it away.)
The itempubdate field is not included in the metadata as a string; instead
it is used to generate year and month fields, same as is done when adding
files with annex.genmetadata set.
This commit was sponsored by Amitai Schlair, who cooincidentially
is responsible for ikiwiki generating nice feed metadata!
2014-07-03 17:46:09 +00:00
|
|
|
Nothing -> do
|
2013-08-03 05:40:21 +00:00
|
|
|
showEndFail
|
2013-12-29 19:52:20 +00:00
|
|
|
checkFeedBroken (feedurl todownload)
|
|
|
|
|
2013-08-01 15:57:05 +00:00
|
|
|
{- Find a unique filename to save the url to.
|
|
|
|
- If the file exists, prefixes it with a number.
|
|
|
|
- When forced, the file may already exist and have the same
|
|
|
|
- url, in which case Nothing is returned as it does not need
|
|
|
|
- to be re-downloaded. -}
|
2013-12-29 19:52:20 +00:00
|
|
|
makeunique url n file = ifM alreadyexists
|
2013-08-01 15:57:05 +00:00
|
|
|
( ifM forced
|
|
|
|
( ifAnnexed f checksameurl tryanother
|
|
|
|
, tryanother
|
|
|
|
)
|
|
|
|
, return $ Just f
|
|
|
|
)
|
|
|
|
where
|
2014-10-09 18:53:13 +00:00
|
|
|
f = if n < 2
|
2013-08-01 15:57:05 +00:00
|
|
|
then file
|
|
|
|
else
|
|
|
|
let (d, base) = splitFileName file
|
|
|
|
in d </> show n ++ "_" ++ base
|
2013-12-29 19:52:20 +00:00
|
|
|
tryanother = makeunique url (n + 1) file
|
2013-08-01 15:57:05 +00:00
|
|
|
alreadyexists = liftIO $ isJust <$> catchMaybeIO (getSymbolicLinkStatus f)
|
2014-04-17 22:03:39 +00:00
|
|
|
checksameurl k = ifM (elem url <$> getUrls k)
|
2013-08-01 15:57:05 +00:00
|
|
|
( return Nothing
|
|
|
|
, tryanother
|
2013-07-28 19:27:36 +00:00
|
|
|
)
|
import metadata from feeds
When annex.genmetadata is set, metadata from the feed is added to files
that are imported from it.
Reused the same feedtitle and itemtitle, feedauthor, itemauthor, etc names
that are used in --template.
Also added title and author, which are the item title/author if available,
falling back to the feed title/author. These are more likely to be common
metadata fields.
(There is a small bit of dupication here, but once git gets
around to packing the object, it will compress it away.)
The itempubdate field is not included in the metadata as a string; instead
it is used to generate year and month fields, same as is done when adding
files with annex.genmetadata set.
This commit was sponsored by Amitai Schlair, who cooincidentially
is responsible for ikiwiki generating nice feed metadata!
2014-07-03 17:46:09 +00:00
|
|
|
|
2013-07-28 22:16:24 +00:00
|
|
|
defaultTemplate :: String
|
2013-07-28 23:08:50 +00:00
|
|
|
defaultTemplate = "${feedtitle}/${itemtitle}${extension}"
|
2013-07-28 19:27:36 +00:00
|
|
|
|
2013-08-01 15:57:05 +00:00
|
|
|
{- Generates a filename to use for a feed item by filling out the template.
|
|
|
|
- The filename may not be unique. -}
|
2013-12-29 19:52:20 +00:00
|
|
|
feedFile :: Utility.Format.Format -> ToDownload -> String -> FilePath
|
import metadata from feeds
When annex.genmetadata is set, metadata from the feed is added to files
that are imported from it.
Reused the same feedtitle and itemtitle, feedauthor, itemauthor, etc names
that are used in --template.
Also added title and author, which are the item title/author if available,
falling back to the feed title/author. These are more likely to be common
metadata fields.
(There is a small bit of dupication here, but once git gets
around to packing the object, it will compress it away.)
The itempubdate field is not included in the metadata as a string; instead
it is used to generate year and month fields, same as is done when adding
files with annex.genmetadata set.
This commit was sponsored by Amitai Schlair, who cooincidentially
is responsible for ikiwiki generating nice feed metadata!
2014-07-03 17:46:09 +00:00
|
|
|
feedFile tmpl i extension = Utility.Format.format tmpl $
|
|
|
|
M.map sanitizeFilePath $ M.fromList $ extractFields i ++
|
|
|
|
[ ("extension", extension)
|
|
|
|
, extractField "itempubdate" [pubdate $ item i]
|
|
|
|
]
|
2013-07-28 19:27:36 +00:00
|
|
|
where
|
2014-04-21 04:37:14 +00:00
|
|
|
#if MIN_VERSION_feed(0,3,9)
|
2014-04-07 20:55:04 +00:00
|
|
|
pubdate itm = case getItemPublishDate itm :: Maybe (Maybe UTCTime) of
|
|
|
|
Just (Just d) -> Just $
|
|
|
|
formatTime defaultTimeLocale "%F" d
|
|
|
|
-- if date cannot be parsed, use the raw string
|
|
|
|
_ -> replace "/" "-" <$> getItemPublishDateString itm
|
2014-04-21 04:37:14 +00:00
|
|
|
#else
|
|
|
|
pubdate _ = Nothing
|
|
|
|
#endif
|
2014-04-07 20:55:04 +00:00
|
|
|
|
import metadata from feeds
When annex.genmetadata is set, metadata from the feed is added to files
that are imported from it.
Reused the same feedtitle and itemtitle, feedauthor, itemauthor, etc names
that are used in --template.
Also added title and author, which are the item title/author if available,
falling back to the feed title/author. These are more likely to be common
metadata fields.
(There is a small bit of dupication here, but once git gets
around to packing the object, it will compress it away.)
The itempubdate field is not included in the metadata as a string; instead
it is used to generate year and month fields, same as is done when adding
files with annex.genmetadata set.
This commit was sponsored by Amitai Schlair, who cooincidentially
is responsible for ikiwiki generating nice feed metadata!
2014-07-03 17:46:09 +00:00
|
|
|
extractMetaData :: ToDownload -> MetaData
|
2014-07-19 22:30:08 +00:00
|
|
|
#if MIN_VERSION_feed(0,3,9)
|
import metadata from feeds
When annex.genmetadata is set, metadata from the feed is added to files
that are imported from it.
Reused the same feedtitle and itemtitle, feedauthor, itemauthor, etc names
that are used in --template.
Also added title and author, which are the item title/author if available,
falling back to the feed title/author. These are more likely to be common
metadata fields.
(There is a small bit of dupication here, but once git gets
around to packing the object, it will compress it away.)
The itempubdate field is not included in the metadata as a string; instead
it is used to generate year and month fields, same as is done when adding
files with annex.genmetadata set.
This commit was sponsored by Amitai Schlair, who cooincidentially
is responsible for ikiwiki generating nice feed metadata!
2014-07-03 17:46:09 +00:00
|
|
|
extractMetaData i = case getItemPublishDate (item i) :: Maybe (Maybe UTCTime) of
|
2014-07-03 18:35:20 +00:00
|
|
|
Just (Just d) -> unionMetaData meta (dateMetaData d meta)
|
import metadata from feeds
When annex.genmetadata is set, metadata from the feed is added to files
that are imported from it.
Reused the same feedtitle and itemtitle, feedauthor, itemauthor, etc names
that are used in --template.
Also added title and author, which are the item title/author if available,
falling back to the feed title/author. These are more likely to be common
metadata fields.
(There is a small bit of dupication here, but once git gets
around to packing the object, it will compress it away.)
The itempubdate field is not included in the metadata as a string; instead
it is used to generate year and month fields, same as is done when adding
files with annex.genmetadata set.
This commit was sponsored by Amitai Schlair, who cooincidentially
is responsible for ikiwiki generating nice feed metadata!
2014-07-03 17:46:09 +00:00
|
|
|
_ -> meta
|
2014-07-19 22:30:08 +00:00
|
|
|
#else
|
|
|
|
extractMetaData i = meta
|
|
|
|
#endif
|
import metadata from feeds
When annex.genmetadata is set, metadata from the feed is added to files
that are imported from it.
Reused the same feedtitle and itemtitle, feedauthor, itemauthor, etc names
that are used in --template.
Also added title and author, which are the item title/author if available,
falling back to the feed title/author. These are more likely to be common
metadata fields.
(There is a small bit of dupication here, but once git gets
around to packing the object, it will compress it away.)
The itempubdate field is not included in the metadata as a string; instead
it is used to generate year and month fields, same as is done when adding
files with annex.genmetadata set.
This commit was sponsored by Amitai Schlair, who cooincidentially
is responsible for ikiwiki generating nice feed metadata!
2014-07-03 17:46:09 +00:00
|
|
|
where
|
|
|
|
tometa (k, v) = (mkMetaFieldUnchecked k, S.singleton (toMetaValue v))
|
|
|
|
meta = MetaData $ M.fromList $ map tometa $ extractFields i
|
|
|
|
|
|
|
|
{- Extract fields from the feed and item, that are both used as metadata,
|
|
|
|
- and to generate the filename. -}
|
|
|
|
extractFields :: ToDownload -> [(String, String)]
|
|
|
|
extractFields i = map (uncurry extractField)
|
|
|
|
[ ("feedtitle", [feedtitle])
|
|
|
|
, ("itemtitle", [itemtitle])
|
|
|
|
, ("feedauthor", [feedauthor])
|
|
|
|
, ("itemauthor", [itemauthor])
|
|
|
|
, ("itemsummary", [getItemSummary $ item i])
|
|
|
|
, ("itemdescription", [getItemDescription $ item i])
|
|
|
|
, ("itemrights", [getItemRights $ item i])
|
|
|
|
, ("itemid", [snd <$> getItemId (item i)])
|
|
|
|
, ("title", [itemtitle, feedtitle])
|
|
|
|
, ("author", [itemauthor, feedauthor])
|
|
|
|
]
|
|
|
|
where
|
|
|
|
feedtitle = Just $ getFeedTitle $ feed i
|
|
|
|
itemtitle = getItemTitle $ item i
|
|
|
|
feedauthor = getFeedAuthor $ feed i
|
|
|
|
itemauthor = getItemAuthor $ item i
|
|
|
|
|
|
|
|
extractField :: String -> [Maybe String] -> (String, String)
|
|
|
|
extractField k [] = (k, "none")
|
|
|
|
extractField k (Just v:_)
|
|
|
|
| not (null v) = (k, v)
|
|
|
|
extractField k (_:rest) = extractField k rest
|
|
|
|
|
2013-08-03 05:40:21 +00:00
|
|
|
{- Called when there is a problem with a feed.
|
|
|
|
- Throws an error if the feed is broken, otherwise shows a warning. -}
|
|
|
|
feedProblem :: URLString -> String -> Annex ()
|
|
|
|
feedProblem url message = ifM (checkFeedBroken url)
|
2014-07-14 17:07:13 +00:00
|
|
|
( error $ message ++ " (having repeated problems with feed: " ++ url ++ ")"
|
2013-08-03 05:40:21 +00:00
|
|
|
, warning $ "warning: " ++ message
|
|
|
|
)
|
|
|
|
|
|
|
|
{- A feed is only broken if problems have occurred repeatedly, for at
|
|
|
|
- least 23 hours. -}
|
|
|
|
checkFeedBroken :: URLString -> Annex Bool
|
|
|
|
checkFeedBroken url = checkFeedBroken' url =<< feedState url
|
|
|
|
checkFeedBroken' :: URLString -> FilePath -> Annex Bool
|
|
|
|
checkFeedBroken' url f = do
|
|
|
|
prev <- maybe Nothing readish <$> liftIO (catchMaybeIO $ readFile f)
|
|
|
|
now <- liftIO getCurrentTime
|
|
|
|
case prev of
|
|
|
|
Nothing -> do
|
|
|
|
createAnnexDirectory (parentDir f)
|
|
|
|
liftIO $ writeFile f $ show now
|
|
|
|
return False
|
|
|
|
Just prevtime -> do
|
|
|
|
let broken = diffUTCTime now prevtime > 60 * 60 * 23
|
|
|
|
when broken $
|
|
|
|
-- Avoid repeatedly complaining about
|
|
|
|
-- broken feed.
|
|
|
|
clearFeedProblem url
|
|
|
|
return broken
|
|
|
|
|
|
|
|
clearFeedProblem :: URLString -> Annex ()
|
|
|
|
clearFeedProblem url = void $ liftIO . tryIO . removeFile =<< feedState url
|
|
|
|
|
|
|
|
feedState :: URLString -> Annex FilePath
|
|
|
|
feedState url = fromRepo . gitAnnexFeedState =<< fromUrl url Nothing
|