dosage/dosagelib/plugins/i.py

113 lines
3.9 KiB
Python
Raw Normal View History

# SPDX-License-Identifier: MIT
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
2022-05-28 15:52:42 +00:00
# Copyright (C) 2015-2022 Tobias Gruetzmacher
# Copyright (C) 2019-2020 Daniel Ring
from re import compile, escape
from ..scraper import BasicScraper, ParserScraper
from ..util import tagre
from .common import WordPressScraper, WordPressNavi
2012-06-20 19:58:13 +00:00
class IAmArg(BasicScraper):
url = 'http://iamarg.com/'
rurl = escape(url)
stripUrl = url + '%s/'
firstStripUrl = stripUrl % '2011/05/08/05082011'
2015-04-15 18:43:06 +00:00
imageSearch = compile(tagre("img", "src", r'(//iamarg.com/comics/\d+-\d+-\d+[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(%s\d+/\d+/\d+/[^"]+)' % rurl, after="prev"))
help = 'Index format: yyyy/mm/dd/stripname'
class ICanBarelyDraw(BasicScraper):
2013-07-04 10:22:20 +00:00
url = 'http://www.icanbarelydraw.com/comic/'
rurl = escape(url)
stripUrl = url + '%s'
firstStripUrl = stripUrl % '39'
imageSearch = compile(tagre("img", "src", r'(%scomics/\d+-\d+-\d+-[^"]+)' % rurl))
prevSearch = compile(tagre("a", "href", r'(%s\d+)' % rurl))
help = 'Index format: number'
class IDreamOfAJeanieBottle(WordPressScraper):
url = 'http://jeaniebottle.com/'
class InternetWebcomic(WordPressNavi):
url = 'http://www.internet-webcomic.com/'
stripUrl = url + '?p=%s'
firstStripUrl = stripUrl % '30'
help = 'Index format: n'
2022-05-21 06:59:50 +00:00
class Inverloch(ParserScraper):
stripUrl = 'https://www.seraph-inn.com/view.php?story=inverloch&page=%s'
url = stripUrl % '763'
firstStripUrl = stripUrl % '2'
imageSearch = '//img[@class="page"]'
prevSearch = '//p[@class="comic-nav"]/a[text()=" Previous"]'
multipleImagesPerStrip = True
endOfLife = True
2024-01-16 03:57:34 +00:00
class IRovedOut(ParserScraper):
url = 'https://www.irovedout.com/'
stripUrl = url + '%s/'
firstStripUrl = stripUrl % 'iro'
imageSearch = '//div[@id="comic"]//img'
prevSearch = '//a[@class="navi comic-nav-previous navi-prev"]'
def namer(self, imageUrl, pageUrl):
page = self.getPage(pageUrl)
strip = page.xpath('//div[@id="comic-wrap"]/@class')[0].replace('comic-id-', '')
parts = page.xpath('//div[@id="comic"]//img/@src')[0].split('/')
2024-01-16 04:07:05 +00:00
return "{0}-{1}".format(strip.zfill(5), parts[7])
2024-01-16 03:57:34 +00:00
def starter(self):
"""Return last gallery link."""
url = 'https://www.irovedout.com/'
data = self.getPage(url)
link = data.xpath('//a[@class="navi navi-last"]/@href').pop(0)
return link
class IrregularWebcomic(BasicScraper):
2013-03-06 19:21:10 +00:00
url = 'http://www.irregularwebcomic.net/'
stripUrl = url + '%s.html'
2013-04-10 21:57:09 +00:00
firstStripUrl = stripUrl % '1'
2013-03-06 19:21:10 +00:00
imageSearch = compile(r'<img .*src="(.*comics/.*(png|jpg|gif))".*>')
prevSearch = compile(r'<a href="(/\d+\.html|/cgi-bin/comic\.pl\?comic=\d+)">Previous ')
help = 'Index format: nnn'
class IslaAukate(ParserScraper):
2019-06-19 08:27:06 +00:00
url = 'https://overlordcomic.com/archive/default/latest'
stripUrl = 'https://overlordcomic.com/archive/default/pages/%s'
firstStripUrl = stripUrl % '001'
imageSearch = '//div[@id="comicpage"]/img'
prevSearch = '//nav[@class="comicnav"]/a[text()="Prev"]'
2020-04-11 23:51:08 +00:00
def namer(self, imageUrl, pageUrl):
filename = imageUrl.rsplit('/', 1)[-1]
return filename.rsplit('_', 1)[0] + '.' + filename.rsplit('.', 1)[-1]
2019-06-19 08:27:06 +00:00
class IslaAukateColor(ParserScraper):
2019-06-19 08:27:06 +00:00
url = 'https://overlordcomic.com/archive/color/latest'
stripUrl = 'https://overlordcomic.com/archive/color/pages/%s'
firstStripUrl = stripUrl % '001'
imageSearch = '//div[@id="comicpage"]/img'
prevSearch = '//nav[@class="comicnav"]/a[text()="Prev"]'
def namer(self, imageUrl, pageUrl):
# Fix filenames of early comics
filename = imageUrl.rsplit('/', 1)[-1]
if filename[0].isdigit():
filename = 'Aukate' + filename
2020-04-11 23:51:08 +00:00
return filename.rsplit('_', 1)[0] + '.' + filename.rsplit('.', 1)[-1]
2019-06-19 08:27:06 +00:00
class ItsWalky(WordPressScraper):
url = 'http://www.itswalky.com/'