dosage/dosagelib/scraper.py

173 lines
5.7 KiB
Python
Raw Normal View History

# -*- coding: iso-8859-1 -*-
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
# Copyright (C) 2012 Bastian Kleineidam
2012-10-11 10:03:12 +00:00
from . import loader
from .util import fetchUrls
from .comic import ComicStrip
2012-10-11 17:53:37 +00:00
from .output import out
2012-06-20 19:58:13 +00:00
2012-10-11 10:03:12 +00:00
class _BasicScraper(object):
'''Base class with scrape functions for comics.
@type latestUrl: C{string}
@cvar latestUrl: The URL for the latest comic strip.
2012-11-13 18:10:19 +00:00
@type stripUrl: C{string}
@cvar stripUrl: A string that is interpolated with the strip index
2012-10-11 10:03:12 +00:00
to yield the URL for a particular strip.
@type imageSearch: C{regex}
@cvar imageSearch: A compiled regex that will locate the strip image URL
when applied to the strip page.
@type prevSearch: C{regex}
@cvar prevSearch: A compiled regex that will locate the URL for the
previous strip when applied to a strip page.
'''
# if more than one image per URL is expected
multipleImagesPerStrip = False
# usually the index format help
2012-10-11 10:03:12 +00:00
help = 'Sorry, no help for this comic yet.'
2012-10-11 17:53:37 +00:00
def __init__(self, indexes=None):
2012-10-11 10:03:12 +00:00
"""Initialize internal variables."""
self.urls = set()
2012-10-11 17:53:37 +00:00
self.indexes = indexes
2012-10-11 10:03:12 +00:00
2012-10-11 17:53:37 +00:00
def getCurrentStrips(self):
2012-10-11 10:03:12 +00:00
"""Get current comic strip."""
2012-10-11 17:53:37 +00:00
msg = 'Retrieving the current strip'
if self.indexes:
msg += " for indexes %s" % self.indexes
out.write(msg+"...")
if self.indexes:
for index in self.indexes:
2012-11-13 18:10:19 +00:00
url = self.stripUrl % index
2012-10-11 17:53:37 +00:00
yield self.getStrip(url)
else:
yield self.getStrip(self.getLatestUrl())
2012-10-11 10:03:12 +00:00
def getStrip(self, url):
"""Get comic strip for given URL."""
imageUrls = fetchUrls(url, self.imageSearch)[0]
if len(imageUrls) > 1 and not self.multipleImagesPerStrip:
raise ValueError("found %d images with %s" % (len(imageUrls), self.imageSearch.pattern))
2012-10-11 10:03:12 +00:00
return self.getComicStrip(url, imageUrls)
def getComicStrip(self, url, imageUrls):
"""Get comic strip downloader for given URL and images."""
return ComicStrip(self.get_name(), url, imageUrls, self.namer)
def getAllStrips(self):
"""Get all comic strips."""
2012-10-11 17:53:37 +00:00
msg = 'Retrieving all strips'
if self.indexes:
msg += " for indexes %s" % self.indexes
out.write(msg+"...")
if self.indexes:
for index in self.indexes:
2012-11-13 18:10:19 +00:00
url = self.stripUrl % index
2012-10-11 17:53:37 +00:00
for strip in self.getAllStripsFor(url):
yield strip
else:
url = self.getLatestUrl()
for strip in self.getAllStripsFor(url):
yield strip
def getAllStripsFor(self, url):
"""Get all comic strips for an URL."""
2012-10-11 10:03:12 +00:00
seen_urls = set()
while url:
imageUrls, prevUrl = fetchUrls(url, self.imageSearch, self.prevSearch)
seen_urls.add(url)
yield self.getComicStrip(url, imageUrls)
# avoid recursive URL loops
url = prevUrl if prevUrl not in seen_urls else None
def setStrip(self, index):
"""Set current comic strip URL."""
2012-11-13 18:10:19 +00:00
self.currentUrl = self.stripUrl % index
2012-10-11 10:03:12 +00:00
def getHelp(self):
"""Return help text for this scraper."""
return self.help
@classmethod
def get_name(cls):
"""Get scraper name."""
if hasattr(cls, 'name'):
return cls.name
return cls.__name__
@classmethod
def starter(cls):
"""Get starter URL from where to scrape comic strips."""
return cls.latestUrl
@classmethod
def namer(cls, imageUrl, pageUrl):
"""Return filename for given image and page URL."""
return None
def getFilename(self, imageUrl, pageUrl):
"""Return filename for given image and page URL."""
return self.namer(imageUrl, pageUrl)
def getLatestUrl(self):
"""Get starter URL from where to scrape comic strips."""
return self.starter()
def get_scraper(comic):
2012-06-20 19:58:13 +00:00
"""Returns a comic module object."""
candidates = []
2012-10-11 10:03:12 +00:00
cname = comic.lower()
for scraperclass in get_scrapers():
lname = scraperclass.get_name().lower()
2012-06-20 19:58:13 +00:00
if lname == cname:
# perfect match
2012-10-11 10:03:12 +00:00
return scraperclass
2012-06-20 19:58:13 +00:00
if cname in lname:
2012-10-11 10:03:12 +00:00
candidates.append(scraperclass)
2012-06-20 19:58:13 +00:00
if len(candidates) == 1:
return candidates[0]
elif candidates:
comics = ", ".join(x.get_name() for x in candidates)
2012-10-12 20:10:26 +00:00
raise ValueError('Multiple comics found: %s' % comics)
2012-06-20 19:58:13 +00:00
else:
2012-10-12 20:10:26 +00:00
raise ValueError('Comic %r not found' % comic)
2012-06-20 19:58:13 +00:00
_scrapers = None
def get_scrapers():
"""Find all comic scraper classes in the plugins directory.
The result is cached.
@return: list of _BasicScraper classes
@rtype: list of _BasicScraper
"""
global _scrapers
if _scrapers is None:
out.write("Loading comic modules...", 2)
2012-11-19 20:20:50 +00:00
modules = loader.get_modules()
2012-10-11 10:03:12 +00:00
plugins = loader.get_plugins(modules, _BasicScraper)
_scrapers = list(plugins)
2012-06-20 19:58:13 +00:00
_scrapers.sort(key=lambda s: s.get_name())
check_scrapers()
out.write("... %d modules loaded." % len(_scrapers), 2)
2012-06-20 19:58:13 +00:00
return _scrapers
def check_scrapers():
2012-10-11 10:03:12 +00:00
"""Check for duplicate scraper class names."""
2012-06-20 19:58:13 +00:00
d = {}
2012-10-11 10:03:12 +00:00
for scraperclass in _scrapers:
name = scraperclass.get_name().lower()
2012-06-20 19:58:13 +00:00
if name in d:
2012-10-11 10:03:12 +00:00
name1 = scraperclass.get_name()
2012-06-20 19:58:13 +00:00
name2 = d[name].get_name()
raise ValueError('Duplicate scrapers %s and %s found' % (name1, name2))
2012-10-11 10:03:12 +00:00
d[name] = scraperclass
2012-11-26 06:14:02 +00:00
def make_scraper(classname, **attributes):
"""Make a new scraper class with given name and attributes."""
return type(classname, (_BasicScraper,), attributes)