dosage/dosagelib/plugins/wlpcomics.py

109 lines
3.3 KiB
Python
Raw Normal View History

2016-04-10 23:07:21 +00:00
# -*- 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
# Copyright (C) 2015-2020 Tobias Gruetzmacher
# Copyright (C) 2019-2020 Daniel Ring
2012-11-26 06:13:32 +00:00
2016-04-10 23:07:21 +00:00
from __future__ import absolute_import, division, print_function
2012-11-26 06:13:32 +00:00
2016-11-01 01:27:29 +00:00
import re
2016-04-10 23:07:21 +00:00
from ..scraper import _ParserScraper
from ..helpers import bounceStarter
2012-11-26 06:13:32 +00:00
2016-04-10 23:07:21 +00:00
class _WLPComics(_ParserScraper):
imageSearch = '//center/*/img[contains(@alt, " Comic")]'
prevSearch = '//a[contains(text(), "Previous ")]'
nextSearch = '//a[contains(text(), "Next ")]'
starter = bounceStarter
2016-04-10 23:07:21 +00:00
help = 'Index format: nnn'
def __init__(self, name):
super(_WLPComics, self).__init__('WLP/' + name)
2016-04-10 23:07:21 +00:00
def namer(self, image_url, page_url):
2016-04-10 23:07:21 +00:00
return (page_url.rsplit('/', 1)[-1].split('.')[0] + '_' +
image_url.rsplit('/', 1)[-1])
def getIndexStripUrl(self, index):
2016-11-01 01:27:29 +00:00
return self.url + '%s.html' % index
2016-04-10 23:07:21 +00:00
class ChichiChan(_WLPComics):
url = 'http://www.wlpcomics.com/adult/chichi/'
adult = True
class ChocolateMilkMaid(_WLPComics):
# Newer pages seem to be broken
2016-11-01 01:27:29 +00:00
baseurl = 'http://www.wlpcomics.com/adult/cm/'
url = baseurl + '264.html'
2016-04-10 23:07:21 +00:00
adult = True
2016-11-01 01:27:29 +00:00
def getIndexStripUrl(self, index):
return self.baseurl + '%s.html' % index
def link_modifier(self, fromurl, tourl):
"""Bugfix for self-referencing pages..."""
if tourl == fromurl:
return re.sub(r'/(\d+)\.ht',
lambda m: '/%03i.ht' % (int(m.group(1)) - 1), tourl)
if '263.html' in fromurl and '265.html' in tourl:
return self.baseurl + '264.html'
return tourl
2016-04-10 23:07:21 +00:00
class MaidAttack(_WLPComics):
url = 'http://www.wlpcomics.com/general/maidattack/'
class PeterIsTheWolfAdult(_WLPComics):
2019-12-17 09:33:48 +00:00
stripUrl = 'http://www.peteristhewolf.com/adult/%s.html'
url = stripUrl % 'home'
firstStripUrl = stripUrl % '001'
multipleImagesPerStrip = True
2016-04-10 23:07:21 +00:00
adult = True
2019-06-27 04:19:24 +00:00
def namer(self, imageUrl, pageUrl):
name = pageUrl.rsplit('/', 1)[-1].split('.')[0] + '_' + imageUrl.rsplit('/', 1)[-1]
if 'adult' in imageUrl:
name = name.split('.')
return name[0] + '_adult.' + name[1]
return name
2019-12-17 09:33:48 +00:00
def getPrevUrl(self, url, data):
# Fix loop in site navigation
if url == self.stripUrl % '194':
return self.stripUrl % '193'
return super(PeterIsTheWolfAdult, self).getPrevUrl(url, data)
2016-04-10 23:07:21 +00:00
class PeterIsTheWolfGeneral(_WLPComics):
url = 'http://www.peteristhewolf.com/general/'
2019-12-17 09:33:48 +00:00
stripUrl = url + '%s.html'
firstStripUrl = stripUrl % '001'
def getPrevUrl(self, url, data):
# Fix loops in site navigation
if url == self.stripUrl % '406':
return self.stripUrl % '405'
if url == self.stripUrl % '230':
return self.stripUrl % '229'
if url == self.stripUrl % '229':
return self.stripUrl % '228'
if url == self.stripUrl % '153':
return self.stripUrl % '152'
return super(PeterIsTheWolfGeneral, self).getPrevUrl(url, data)
2016-04-10 23:07:21 +00:00
class Stellar(_WLPComics):
url = 'http://www.wlpcomics.com/adult/stellar/'
adult = True
2012-11-26 06:13:32 +00:00
def link_modifier(self, fromurl, tourl):
2016-04-10 23:07:21 +00:00
"""Bugfix for empty page..."""
if tourl == self.url + '075.html':
return self.url + '074.html'
return tourl