dosage/dosagelib/plugins/a.py

295 lines
10 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2016-10-28 22:21:41 +00:00
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
2014-01-05 15:50:57 +00:00
# Copyright (C) 2012-2014 Bastian Kleineidam
2018-05-22 22:54:40 +00:00
# Copyright (C) 2015-2018 Tobias Gruetzmacher
2012-11-21 20:57:26 +00:00
from __future__ import absolute_import, division, print_function
from re import compile, escape, MULTILINE
2012-09-26 12:42:28 +00:00
from ..util import tagre
2015-04-16 23:35:21 +00:00
from ..scraper import _BasicScraper, _ParserScraper
2017-05-21 23:17:05 +00:00
from ..helpers import regexNamer, bounceStarter, indirectStarter
from .common import _WordPressScraper, _WPNavi, WP_LATEST_SEARCH
2012-06-20 19:58:13 +00:00
class AbstruseGoose(_BasicScraper):
2014-01-24 22:17:21 +00:00
url = 'http://abstrusegoose.com/'
rurl = escape(url)
starter = bounceStarter
stripUrl = url + '%s'
firstStripUrl = stripUrl % '1'
imageSearch = compile(tagre('img', 'src',
r'(http://abstrusegoose\.com/strips/[^<>"]+)'))
prevSearch = compile(tagre('a', 'href', r'(%s\d+)' % rurl) +
r'&laquo; Previous')
nextSearch = compile(tagre('a', 'href', r'(%s\d+)' % rurl) +
r'Next &raquo;')
2012-06-20 19:58:13 +00:00
help = 'Index format: n (unpadded)'
2013-12-04 02:56:54 +00:00
textSearch = compile(tagre("img", "title", r'([^"]+)'))
2012-06-20 19:58:13 +00:00
def namer(self, image_url, page_url):
2016-04-07 21:21:31 +00:00
index = int(page_url.rstrip('/').split('/')[-1])
name = image_url.split('/')[-1].split('.')[0]
2012-06-20 19:58:13 +00:00
return 'c%03d-%s' % (index, name)
class AbsurdNotions(_BasicScraper):
baseUrl = 'http://www.absurdnotions.org/'
url = baseUrl + 'page129.html'
stripUrl = baseUrl + 'page%s.html'
firstStripUrl = stripUrl % '1'
imageSearch = compile(tagre('img', 'src', r'(an[^"]+)'))
multipleImagesPerStrip = True
prevSearch = compile(tagre('a', 'href', r'([^"]+)') +
2018-05-22 22:54:40 +00:00
tagre('img', 'src', r'nprev\.gif'))
help = 'Index format: n (unpadded)'
2012-06-20 19:58:13 +00:00
class AcademyVale(_BasicScraper):
url = 'http://www.imagerie.com/vale/'
stripUrl = url + 'avarch.cgi?%s'
firstStripUrl = stripUrl % '001'
2012-11-13 05:51:54 +00:00
imageSearch = compile(tagre('img', 'src', r'(avale\d{4}-\d{2}\.gif)'))
prevSearch = compile(tagre('a', 'href', r'(avarch[^">]+)', quote="") +
2018-05-22 22:54:40 +00:00
tagre('img', 'src', r'AVNavBack\.gif'))
2012-06-20 19:58:13 +00:00
help = 'Index format: nnn'
2013-04-10 16:36:33 +00:00
class Achewood(_BasicScraper):
url = 'http://www.achewood.com/'
stripUrl = url + 'index.php?date=%s'
firstStripUrl = stripUrl % '00000000'
imageSearch = compile(tagre("img", "src", r'(/comic\.php\?date=\d+)'))
prevSearch = compile(tagre("a", "href", r'(index\.php\?date=\d+)',
after="Previous"))
2013-04-10 16:36:33 +00:00
help = 'Index format: mmddyyyy'
namer = regexNamer(compile(r'date=(\d+)'))
2017-05-21 23:17:05 +00:00
class AfterStrife(_WPNavi):
2013-04-13 18:58:00 +00:00
baseUrl = 'http://afterstrife.com/'
stripUrl = baseUrl + '?p=%s'
2013-04-10 21:57:09 +00:00
url = stripUrl % '262'
firstStripUrl = stripUrl % '1'
2013-04-10 16:36:33 +00:00
help = 'Index format: nnn'
endOfLife = True
2013-04-10 16:36:33 +00:00
class AGirlAndHerFed(_ParserScraper):
url = 'https://agirlandherfed.com/'
2013-04-10 16:36:33 +00:00
stripUrl = url + '1.%s.html'
firstStripUrl = stripUrl % '1'
imageSearch = '//div[@id="comic-image"]/img'
prevSearch = '//div[@id="comic-nav"]/a[.//img[contains(@src, "back")]]'
2013-04-10 16:36:33 +00:00
help = 'Index format: nnn'
class AhoiPolloi(_ParserScraper):
2016-04-07 21:21:31 +00:00
url = 'https://ahoipolloi.blogger.de/'
2013-03-07 22:51:55 +00:00
stripUrl = url + '?day=%s'
firstStripUrl = stripUrl % '20060306'
2013-03-07 22:51:55 +00:00
multipleImagesPerStrip = True
2013-03-08 21:33:05 +00:00
lang = 'de'
imageSearch = '//img[contains(@src, "/static/antville/ahoipolloi/")]'
prevSearch = '//a[contains(@href, "/?day=")]'
2013-03-07 22:51:55 +00:00
help = 'Index format: yyyymmdd'
2017-05-21 23:17:05 +00:00
class AhoyEarth(_WPNavi):
url = 'http://www.ahoyearth.com/'
2016-04-07 21:21:31 +00:00
class AirForceBlues(_WordPressScraper):
url = 'http://farvatoons.com/'
firstStripUrl = url + 'comic/in-texas-there-are-texans/'
2013-04-10 16:36:33 +00:00
2013-03-06 19:21:10 +00:00
class ALessonIsLearned(_BasicScraper):
url = 'http://www.alessonislearned.com/'
prevSearch = compile(tagre("a", "href", r"(index\.php\?comic=\d+)",
quote="'") + r"[^>]+previous")
2013-03-06 19:21:10 +00:00
stripUrl = url + 'index.php?comic=%s'
firstStripUrl = stripUrl % '1'
2013-03-06 19:21:10 +00:00
imageSearch = compile(tagre("img", "src", r"(cmx/lesson\d+\.[a-z]+)"))
help = 'Index format: nnn'
2016-09-28 23:29:01 +00:00
class Alice(_WordPressScraper):
url = 'http://www.alicecomics.com/'
latestSearch = '//a[text()="Latest Alice!"]'
starter = indirectStarter
2012-06-20 19:58:13 +00:00
class AlienLovesPredator(_BasicScraper):
url = 'http://alienlovespredator.com/'
stripUrl = url + '%s/'
firstStripUrl = stripUrl % '2004/10/12/unavoidable-delay'
imageSearch = compile(tagre("img", "src", r'([^"]+)',
after='border="1" alt="" width="750"'))
prevSearch = compile(tagre("a", "href", r'([^"]+)', after="prev"))
help = 'Index format: yyyy/mm/dd/name'
2012-06-20 19:58:13 +00:00
2016-04-07 21:21:31 +00:00
class AlienShores(_WordPressScraper):
url = 'http://alienshores.com/alienshores_band/'
firstStripUrl = url + 'AScomic/updated-cover/'
2013-04-10 16:36:33 +00:00
class AllTheGrowingThings(_BasicScraper):
url = 'http://growingthings.typodmary.com/'
rurl = escape(url)
stripUrl = url + '%s/'
firstStripUrl = stripUrl % '2009/04/21/all-the-growing-things'
2013-11-12 17:33:14 +00:00
imageSearch = compile(tagre("img", "src", r'(%sfiles/[^"]+)' % rurl))
2013-04-10 16:36:33 +00:00
prevSearch = compile(tagre("a", "href", r'(%s[^"]+)' % rurl, after="prev"))
help = 'Index format: yyyy/mm/dd/strip-name'
2013-02-20 22:34:55 +00:00
class AlphaLuna(_BasicScraper):
url = 'http://www.alphaluna.net/'
stripUrl = url + 'issue-%s/'
firstStripUrl = stripUrl % '1/cover'
2016-09-28 23:29:01 +00:00
imageSearch = compile(tagre("a", "href",
r'[^"]*/(?:issue-|support/upcoming)[^"]+') +
tagre("img", "src", r'([^"]*/PAGINAS/[^"]+)'))
prevSearch = compile(tagre("a", "href", r'([^"]+)') +
tagre("img", "alt", "Prev"))
2013-02-20 22:34:55 +00:00
help = 'Index format: issue/page (e.g. 4/05)'
class AlphaLunaSpanish(AlphaLuna):
name = 'AlphaLuna/Spanish'
2013-03-08 21:33:05 +00:00
lang = 'es'
2013-02-20 22:34:55 +00:00
url = 'http://alphaluna.net/spanish/'
stripUrl = url + 'issue-%s/'
firstStripUrl = stripUrl % '1/portada'
2013-02-20 22:34:55 +00:00
2012-06-20 19:58:13 +00:00
class Altermeta(_BasicScraper):
url = 'http://altermeta.net/'
2013-04-10 21:57:09 +00:00
rurl = escape(url)
stripUrl = url + 'archive.php?comic=%s'
firstStripUrl = stripUrl % '0'
2012-06-20 19:58:13 +00:00
imageSearch = compile(r'<img src="(comics/[^"]+)" />')
2013-04-10 21:57:09 +00:00
prevSearch = compile(r'<a href="([^"]+)"><img src="%stemplate/default/images/sasha/back\.png' % rurl)
2012-06-20 19:58:13 +00:00
help = 'Index format: n (unpadded)'
class AltermetaOld(Altermeta):
2013-04-10 21:57:09 +00:00
url = Altermeta.url + 'oldarchive/index.php'
stripUrl = Altermeta.url + 'oldarchive/archive.php?comic=%s'
firstStripUrl = stripUrl % '0'
2012-06-20 19:58:13 +00:00
prevSearch = compile(r'<a href="([^"]+)">Back')
2012-12-28 04:41:26 +00:00
class AmazingSuperPowers(_BasicScraper):
url = 'http://www.amazingsuperpowers.com/'
rurl = escape(url)
stripUrl = url + '%s/'
firstStripUrl = stripUrl % '2007/09/heredity'
imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]+)' % rurl))
prevSearch = compile(tagre("a", "href", r'(%s[^"]+)' % rurl, after="prev"))
2012-12-28 04:41:26 +00:00
help = 'Index format: yyyy/mm/name'
def shouldSkipUrl(self, url, data):
2013-05-25 21:24:33 +00:00
"""Skip pages without images."""
return url in (
# video
self.stripUrl % '2013/05/orbital-deathray-kickstarter',
)
2012-12-28 04:41:26 +00:00
class Amya(_WordPressScraper):
url = 'http://www.amyachronicles.com/'
2013-04-10 16:36:33 +00:00
class Angband(_BasicScraper):
url = 'http://angband.calamarain.net/'
stripUrl = url + 'view.php?date=%s'
firstStripUrl = stripUrl % '2005-12-30'
imageSearch = compile(tagre("img", "src", r'(comics/Scroll[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(view\.php\?date\=[^"]+)') +
"Previous")
2013-04-10 16:36:33 +00:00
help = 'Index format: yyyy-mm-dd'
2012-06-20 19:58:13 +00:00
class Angels2200(_BasicScraper):
url = 'http://www.janahoffmann.com/angels/'
stripUrl = url + '%s'
2012-12-02 17:35:06 +00:00
imageSearch = compile(tagre("img", "src", r"(http://www\.janahoffmann\.com/angels/comics/[^']+)", quote="'"))
prevSearch = compile(tagre("a", "href", r'([^"]+)') + "&laquo; Previous")
2012-11-14 05:22:08 +00:00
help = 'Index format: yyyy/mm/dd/part-<n>-comic-<n>'
2012-06-20 19:58:13 +00:00
2016-04-07 21:21:31 +00:00
class Annyseed(_ParserScraper):
baseUrl = 'http://www.mirrorwoodcomics.com/'
url = baseUrl + 'AnnyseedLatest.htm'
stripUrl = baseUrl + 'Annyseed%s.htm'
imageSearch = '//div/img[contains(@src, "Annyseed")]'
prevSearch = '//a[img[@name="Previousbtn"]]'
2013-04-10 16:36:33 +00:00
help = 'Index format: nnn'
2017-02-05 23:05:05 +00:00
FIX_RE = compile(r'Annyseed/Finished%20For%20Print/')
def imageUrlModifier(self, image_url, data):
return self.FIX_RE.sub('', image_url)
2013-04-10 16:36:33 +00:00
def link_modifier(self, fromurl, tourl):
"""Fix circular link."""
if 'Annyseed150' in fromurl and 'Annyseed150' in tourl:
return self.stripUrl % '149'
return tourl
2013-04-10 16:36:33 +00:00
2018-05-22 22:54:40 +00:00
2012-06-20 19:58:13 +00:00
class AppleGeeks(_BasicScraper):
url = 'http://www.applegeeks.com/'
stripUrl = url + 'comics/viewcomic.php?issue=%s'
firstStripUrl = stripUrl % '1'
2012-12-02 17:35:06 +00:00
imageSearch = compile(tagre("img", "src", r'((?:/comics/)?issue\d+\.jpg)'))
2012-06-20 19:58:13 +00:00
prevSearch = compile(r'<div class="caption">Previous Comic</div>\s*<p><a href="([^"]+)">', MULTILINE)
allow_errors = (404,)
2012-06-20 19:58:13 +00:00
help = 'Index format: n (unpadded)'
2013-04-25 18:37:27 +00:00
class ARedTailsDream(_BasicScraper):
baseUrl = 'http://www.minnasundberg.fi/'
stripUrl = baseUrl + 'comic/page%s.php'
firstStripUrl = stripUrl % '00'
url = baseUrl + 'comic/recent.php'
imageSearch = compile(tagre('img', 'src', r'(chapter.+?/eng[^"]*)'))
prevSearch = compile(tagre('a', 'href', r'(page\d+\.php)') +
tagre("img", "src", r'.*?aprev.*?'))
2013-04-25 18:37:27 +00:00
help = 'Index format: nn'
class Ashes(_WordPressScraper):
url = 'http://www.flowerlarkstudios.com/comicpage/prologue/10232009/'
firstStripUrl = url
latestSearch = WP_LATEST_SEARCH
starter = indirectStarter
2016-04-07 21:21:31 +00:00
class AstronomyPOTD(_ParserScraper):
baseUrl = 'http://apod.nasa.gov/apod/'
2013-04-13 18:58:00 +00:00
url = baseUrl + 'astropix.html'
starter = bounceStarter
2013-04-13 18:58:00 +00:00
stripUrl = baseUrl + 'ap%s.html'
firstStripUrl = stripUrl % '061012'
2016-04-07 21:21:31 +00:00
imageSearch = '//a/img'
2012-12-07 23:45:18 +00:00
multipleImagesPerStrip = True
2016-04-07 21:21:31 +00:00
prevSearch = '//a[text()="<"]'
nextSearch = '//a[text()=">"]'
2012-06-20 19:58:13 +00:00
help = 'Index format: yymmdd'
def shouldSkipUrl(self, url, data):
"""Skip pages without images."""
2016-04-07 21:21:31 +00:00
return data.xpath('//iframe') # videos
def namer(self, image_url, page_url):
2016-04-07 21:21:31 +00:00
return '%s-%s' % (page_url.split('/')[-1].split('.')[0][2:],
image_url.split('/')[-1].split('.')[0])
class AxeCop(_WordPressScraper):
url = 'http://axecop.com/comic/season-two/'