2013-04-14 07:02:14 +00:00
|
|
|
# -*- coding: iso-8859-1 -*-
|
2014-01-05 15:50:57 +00:00
|
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
2012-06-20 19:58:13 +00:00
|
|
|
|
2013-04-10 16:19:11 +00:00
|
|
|
from re import compile, escape
|
2015-05-19 07:49:45 +00:00
|
|
|
from ..scraper import _BasicScraper, _ParserScraper
|
2014-07-23 18:53:59 +00:00
|
|
|
from ..util import tagre
|
2013-03-06 19:00:30 +00:00
|
|
|
from ..helpers import bounceStarter
|
|
|
|
|
|
|
|
|
2013-03-26 16:35:10 +00:00
|
|
|
class HagarTheHorrible(_BasicScraper):
|
|
|
|
url = 'http://www.hagarthehorrible.net/'
|
|
|
|
stripUrl = 'http://www.hagardunor.net/comicstrips_us.php?serietype=9&colortype=1&serieno=%s'
|
|
|
|
firstStripUrl = stripUrl % '1'
|
|
|
|
multipleImagesPerStrip = True
|
2013-03-26 19:12:26 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(stripus\d+/(?:Hagar_The_Horrible_?|h)\d+[^ >]+)', quote=""))
|
2013-03-26 16:35:10 +00:00
|
|
|
prevUrl = r'(comicstrips_us\.php\?serietype\=9\&colortype\=1\&serieno\=\d+)'
|
|
|
|
prevSearch = compile(tagre("a", "href", prevUrl, after="Previous"))
|
|
|
|
help = 'Index format: number'
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def starter(cls):
|
|
|
|
"""Return last gallery link."""
|
|
|
|
url = 'http://www.hagardunor.net/comics.php'
|
2014-07-23 18:53:59 +00:00
|
|
|
data = cls.getPage(url)
|
2013-03-26 16:35:10 +00:00
|
|
|
pattern = compile(tagre("a", "href", cls.prevUrl))
|
2014-07-23 18:53:59 +00:00
|
|
|
for starturl in cls.fetchUrls(url, data, pattern):
|
2013-03-26 16:35:10 +00:00
|
|
|
pass
|
|
|
|
return starturl
|
|
|
|
|
|
|
|
|
2013-03-06 19:00:30 +00:00
|
|
|
class HarkAVagrant(_BasicScraper):
|
|
|
|
url = 'http://www.harkavagrant.com/'
|
2013-04-10 16:19:11 +00:00
|
|
|
rurl = escape(url)
|
2013-03-06 19:00:30 +00:00
|
|
|
starter = bounceStarter(url,
|
2013-04-10 16:19:11 +00:00
|
|
|
compile(tagre("a", "href", r'(%sindex\.php\?id=\d+)' % rurl) +
|
2013-03-06 19:00:30 +00:00
|
|
|
tagre("img", "src", "buttonnext.png")))
|
|
|
|
stripUrl = url + 'index.php?id=%s'
|
|
|
|
firstStripUrl = stripUrl % '1'
|
2013-04-10 16:19:11 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(%s[^"]+)' % rurl, after='BORDER'))
|
|
|
|
prevSearch = compile(tagre("a", "href", r'(%sindex\.php\?id=\d+)' % rurl) +
|
2013-03-06 19:00:30 +00:00
|
|
|
tagre("img", "src", "buttonprevious.png"))
|
|
|
|
help = 'Index format: number'
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def namer(cls, imageUrl, pageUrl):
|
|
|
|
filename = imageUrl.rsplit('/', 1)[1]
|
|
|
|
num = pageUrl.rsplit('=', 1)[1]
|
|
|
|
return '%s-%s' % (num, filename)
|
2012-06-20 19:58:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
class HorribleVille(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://horribleville.com/'
|
|
|
|
stripUrl = url + 'd/%s.html'
|
2013-04-10 21:57:09 +00:00
|
|
|
firstStripUrl = stripUrl % '20051220'
|
2012-11-21 20:57:26 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(/comics/[^"]+)'))
|
|
|
|
prevSearch = compile(tagre("a", "href", r'(/d/[^"]+)') + tagre("img", "src", r'/images/previous\.png'))
|
|
|
|
help = 'Index format: yyyymmdd'
|