dosage/dosagelib/plugins/p.py

237 lines
8 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
2017-02-12 01:16:38 +00:00
# Copyright (C) 2015-2017 Tobias Gruetzmacher
2012-06-20 19:58:13 +00:00
from __future__ import absolute_import, division, print_function
from re import compile, escape
2015-04-16 23:20:14 +00:00
from ..scraper import _BasicScraper, _ParserScraper
2017-02-13 21:41:17 +00:00
from ..helpers import bounceStarter, queryNamer, indirectStarter, xpath_class
from ..util import tagre
2017-02-13 21:41:17 +00:00
from .common import _ComicControlScraper, _WordPressScraper
class PandyLand(_WordPressScraper):
url = 'http://pandyland.net/'
firstStripUrl = 'http://pandyland.net/1/'
2012-06-20 19:58:13 +00:00
class ParadigmShift(_BasicScraper):
url = 'http://www.paradigmshiftmanga.com/'
starter = indirectStarter
2013-02-18 19:55:54 +00:00
stripUrl = url + 'ps/%s.html'
imageSearch = compile(tagre("img", "src", r'([^"]*comics/ps/[^"]*)'))
prevSearch = compile(tagre("a", "href", r'([^"]+)',
after="previous-comic-link"))
latestSearch = compile(tagre("a", "href", r'([^"]+)',
after="next-comic-link"))
help = 'Index format: custom'
class ParallelUniversum(_BasicScraper):
url = 'http://www.paralleluniversum.net/'
rurl = escape(url)
stripUrl = url + '%s/'
firstStripUrl = stripUrl % '001-der-comic-ist-tot'
imageSearch = compile(tagre("img", "src",
r'(%scomics/\d+-\d+-\d+[^"]+)' % rurl))
prevSearch = compile(tagre("a", "href", r'(%s[^"]+/)' % rurl) +
tagre("span", "class", "prev"))
help = 'Index format: number-stripname'
lang = 'de'
class PartiallyClips(_WordPressScraper):
url = 'http://partiallyclips.com/'
firstStripUrl = url + 'comic/screaming-woman/'
2012-06-20 19:58:13 +00:00
class PastelDefender(_BasicScraper):
2013-04-13 18:58:00 +00:00
baseUrl = 'http://www.pasteldefender.com/'
url = baseUrl + 'coverbackcover.html'
stripUrl = baseUrl + '%s.html'
2013-04-10 21:57:09 +00:00
firstStripUrl = stripUrl % 'cover'
2012-06-20 19:58:13 +00:00
imageSearch = compile(r'<IMG SRC="(images/.+?)" WIDTH="742"')
prevSearch = compile(r'<A HREF="([^"]+)"><IMG SRC="images/back\.gif"')
help = 'Index format: nnn'
2015-05-14 10:33:46 +00:00
class PebbleVersion(_ParserScraper):
url = 'http://www.pebbleversion.com/'
stripUrl = url + 'Archives/Strip%s.html'
2015-05-14 10:33:46 +00:00
imageSearch = "//table/tr[2]//img"
prevSearch = '//a[text()="Previous Comic"]'
2012-06-20 19:58:13 +00:00
help = 'Index format: n (unpadded)'
class PennyAndAggie(_BasicScraper):
2013-04-11 16:27:43 +00:00
url = 'http://pennyandaggie.com/'
rurl = escape(url)
stripUrl = url + 'index.php?p=%s'
2013-04-11 16:27:43 +00:00
imageSearch = compile(tagre("img", "src", r'(http://www\.pennyandaggie\.com/comics/[^"]+)'))
prevSearch = compile(tagre("a", "href", r"(index\.php\?p\=\d+)", quote="'") +
tagre("img", "src", r'%simages/previous_day\.gif' % rurl, quote=""))
2012-06-20 19:58:13 +00:00
help = 'Index format: n (unpadded)'
2016-05-05 18:55:14 +00:00
class PennyArcade(_ParserScraper):
url = 'http://www.penny-arcade.com/comic/'
rurl = escape(url)
stripUrl = url + '%s'
2013-04-10 21:57:09 +00:00
firstStripUrl = stripUrl % '1998/11/18'
2016-05-05 18:55:14 +00:00
imageSearch = '//div[@id="comicFrame"]//img'
prevSearch = '//a[%s]' % xpath_class('btnPrev')
nextSearch = '//a[%s]' % xpath_class('btnNext')
starter = bounceStarter
2016-05-05 18:55:14 +00:00
help = 'Index format: yyyy/mm/dd'
2014-03-26 18:59:42 +00:00
def namer(self, image_url, page_url):
p = page_url.split('/')
return '%04d%02d%02d' % (int(p[4]), int(p[5]), int(p[6]))
2012-06-20 19:58:13 +00:00
class PeppermintSaga(_BasicScraper):
url = 'http://www.pepsaga.com/'
rurl = escape(url)
stripUrl = url + '?p=%s'
2013-04-10 21:57:09 +00:00
firstStripUrl = stripUrl % '3'
imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]+)' % rurl))
prevSearch = compile(tagre("a", "href", r'(%s\?p=\d+)' % rurl,
after="prev"))
2012-11-21 20:57:26 +00:00
help = 'Index format: number'
2013-04-14 07:02:14 +00:00
adult = True
2012-06-20 19:58:13 +00:00
2016-05-05 18:55:14 +00:00
class PHDComics(_ParserScraper):
2017-02-12 15:21:36 +00:00
BROKEN_COMMENT_END = compile(r'--!>')
2013-04-13 18:58:00 +00:00
baseUrl = 'http://phdcomics.com/'
url = baseUrl + 'comics.php'
stripUrl = baseUrl + 'comics/archive.php?comicid=%s'
firstStripUrl = stripUrl % '1'
2017-02-12 01:16:38 +00:00
imageSearch = '//img[@id="comic2"]'
2016-05-05 18:55:14 +00:00
prevSearch = '//a[img[contains(@src, "prev_button")]]'
nextSearch = '//a[img[contains(@src, "next_button")]]'
help = 'Index format: n (unpadded)'
2017-02-12 15:21:36 +00:00
# Ugly hack :(
def _parse_page(self, data):
data = self.BROKEN_COMMENT_END.sub('-->', data)
return super(PHDComics, self)._parse_page(data)
def shouldSkipUrl(self, url, data):
2014-01-06 07:20:58 +00:00
"""Skip pages without images."""
return url in (
2016-05-16 21:16:29 +00:00
# video
self.stripUrl % '1880',
self.stripUrl % '1669',
2014-01-06 07:20:58 +00:00
)
class Picklewhistle(_ComicControlScraper):
url = 'http://www.picklewhistle.com/'
2016-05-16 21:16:29 +00:00
class PicPakDog(_WordPressScraper):
url = 'http://www.picpak.net/'
2016-05-16 21:16:29 +00:00
firstStripUrl = url + 'comic/dogs-cant-spell/'
2012-12-08 20:30:51 +00:00
2016-05-05 18:55:14 +00:00
# Keep, because naming is different to PHDComics...
class PiledHigherAndDeeper(PHDComics):
starter = bounceStarter
namer = queryNamer('comicid', use_page_url=True)
2012-06-20 19:58:13 +00:00
class Pixel(_BasicScraper):
url = 'http://pixelcomic.net/'
rurl = escape(url)
stripUrl = url + '%s'
firstStripUrl = stripUrl % '000.shtml'
imageSearch = compile(tagre("img", "src", r'(\d+\.png)'))
prevSearch = compile(tagre("a", "href", r'(%s\d+\.(?:php|shtml))' % rurl,
before="prev"))
help = 'Index format: nnn'
class PlanescapeSurvival(_BasicScraper):
2013-03-06 19:21:10 +00:00
url = 'http://planescapecomic.com/'
stripUrl = url + '%s.html'
imageSearch = compile(r'src="(comics/.+?)"')
prevSearch = compile(r'<a href="(.+?)"><img alt="Previous" ')
help = 'Index format: nnn'
2015-05-26 10:31:43 +00:00
class PokeyThePenguin(_ParserScraper):
url = 'http://www.yellow5.com/pokey/archive/'
stripUrl = url + 'index%s.html'
firstStripUrl = stripUrl % '1'
2015-05-26 10:31:43 +00:00
imageSearch = '//p/img'
latestSearch = '(//a)[last()]'
multipleImagesPerStrip = True
starter = indirectStarter
help = 'Index format: number'
2015-05-26 10:31:43 +00:00
def getPrevUrl(self, url, data):
"""Decrease index.html number."""
mo = compile(r"index(\d+)\.html").search(url)
num = int(mo.group(1)) - 1
prefix = url.rsplit('/', 1)[0]
return "%s/index%d.html" % (prefix, num)
class PoorlyDrawnLines(_BasicScraper):
url = 'http://poorlydrawnlines.com/comic/'
rurl = escape(url)
stripUrl = url + '%s'
firstStripUrl = stripUrl % 'campus-characters/'
imageSearch = compile(tagre("img", "src", r'(http://poorlydrawnlines\.com/wp-content/uploads/\d+/\d+/[^"]+)'))
prevSearch = compile(tagre("li", "class", r'previous') +
tagre("a", "href", r'(%s[^"]+)' % rurl))
help = 'Index Format: name'
2016-05-16 21:16:29 +00:00
class Precocious(_ParserScraper):
url = 'http://www.precociouscomic.com/'
stripUrl = url + 'archive/comic/%s'
2016-05-16 21:16:29 +00:00
firstStripUrl = stripUrl % '2009/03/09'
imageSearch = '//img[contains(@src, "/comics/")]'
prevSearch = '//a[img[contains(@src, "/back_arrow")]]'
2012-11-21 20:57:26 +00:00
help = 'Index format: yyyy/mm/dd'
2012-06-20 19:58:13 +00:00
2016-10-31 05:57:47 +00:00
2016-08-08 03:30:47 +00:00
class PrinceOfSartar(_WordPressScraper):
url = 'http://www.princeofsartar.com/'
stripUrl = url + 'comic/%s/'
firstStripUrl = stripUrl % 'introduction-chapter-1'
imageSearch = '//div[@id="comic"]//img'
prevSearch = '//a[@class="navi comic-nav-previous navi-prev"]'
nextSearch = '//a[@class="navi comic-nav-next navi-next"]'
starter = bounceStarter
help = 'Index format: name'
def namer(self, image_url, page_url):
"""Use page URL to contruct a unique name."""
title = page_url.rsplit('/', 2)[1]
image_ext = image_url.rsplit('.', 1)[1]
return '%s.%s' % (title, image_ext)
2012-06-20 19:58:13 +00:00
2016-10-31 05:57:47 +00:00
2015-04-16 23:20:14 +00:00
class PS238(_ParserScraper):
url = 'http://ps238.nodwick.com/'
2016-05-05 18:55:14 +00:00
stripUrl = url + 'comic/%s/'
2015-04-16 23:20:14 +00:00
imageSearch = '//div[@id="comic"]//img'
prevSearch = '//a[@class="comic-nav-base comic-nav-previous"]'
help = 'Index format: yyyy-mm-dd'
2013-04-10 16:36:33 +00:00
class PvPonline(_BasicScraper):
url = 'http://pvponline.com/comic'
stripUrl = url + '%s'
imageSearch = compile(tagre("img", "src", r'(http://s3[^"]+\.amazonaws\.com/pvponlinenew/img/comic/\d+/\d+/pvp[^"]+\.jpg)'))
prevSearch = compile(tagre("a", "href", r'(/comic/[^"]+)',
after="left divider"))
2013-04-10 16:36:33 +00:00
help = 'Index format: yyyy/mm/dd/stripname'