Fix FoxDad

This commit is contained in:
Techwolf 2023-06-06 23:40:25 -07:00 committed by Tobias Gruetzmacher
parent 734326106d
commit 63723bc1f9
No known key found for this signature in database

View file

@ -6,7 +6,7 @@
from re import compile, escape from re import compile, escape
from ..util import tagre from ..util import tagre
from ..scraper import _BasicScraper, _ParserScraper from ..scraper import ParserScraper, _BasicScraper, _ParserScraper
from ..helpers import indirectStarter, joinPathPartsNamer from ..helpers import indirectStarter, joinPathPartsNamer
from .common import ComicControlScraper, WordPressNaviIn, WordPressScraper from .common import ComicControlScraper, WordPressNaviIn, WordPressScraper
@ -149,18 +149,19 @@ class ForLackOfABetterComic(_ParserScraper):
endOfLife = True endOfLife = True
class FoxDad(_ParserScraper): class FoxDad(ParserScraper):
url = 'https://foxdad.com/' url = 'https://foxdad.com/'
stripUrl = url + 'post/%s' stripUrl = url + 'post/%s'
firstStripUrl = stripUrl % '149683014997/some-people-are-just-different-support-the-comic' firstStripUrl = stripUrl % '149683014997/some-people-are-just-different-support-the-comic'
imageSearch = ('//figure[@class="photo-hires-item"]//img', '//figure[@class="tmblr-full"]//img') imageSearch = '//figure[@class="photo-hires-item"]//img'
prevSearch = '//a[@class="previous-button"]' prevSearch = '//a[@class="previous-button"]'
def namer(self, imageUrl, pageUrl): def namer(self, imageUrl, pageUrl):
page = self.getPage(pageUrl) page = self.getPage(pageUrl)
post = page.xpath('//link[@type="application/json+oembed"]')[0].get('href') post = page.xpath('//li[@class="timestamp"]/a/@href')[0]
post = post.replace('https://www.tumblr.com/oembed/1.0?url=https://foxdad.com/post', '') post = post.replace('https://foxdad.com/post/', '')
post = post.replace('-support-me-on-patreon', '') if '-consider-support' in post:
post = post.split('-consider-support')[0]
return post.replace('/', '-') return post.replace('/', '-')