mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-23 11:12:40 +01:00
b55e39d1ee
- cache manga API results - add artist, author and date fields to chapter metadata - remove Manga-/ChapterExtractor inheritance - minor code simplifications and improvements
63 lines
2.3 KiB
Python
63 lines
2.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2016-2018 Mike Fährmann
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
|
|
"""Extract images from https://rule34.xxx/"""
|
|
|
|
from . import booru
|
|
|
|
|
|
class Rule34Extractor(booru.XmlParserMixin,
|
|
booru.GelbooruPageMixin,
|
|
booru.BooruExtractor):
|
|
"""Base class for rule34 extractors"""
|
|
category = "rule34"
|
|
api_url = "https://rule34.xxx/index.php"
|
|
post_url = "https://rule34.xxx/index.php?page=post&s=view&id={}"
|
|
pool_url = "https://rule34.xxx/index.php?page=pool&s=show&id={}"
|
|
page_limit = 4000
|
|
|
|
def __init__(self, match):
|
|
super().__init__(match)
|
|
self.params.update({"page": "dapi", "s": "post", "q": "index"})
|
|
|
|
|
|
class Rule34TagExtractor(booru.TagMixin, Rule34Extractor):
|
|
"""Extractor for images from rule34.xxx based on search-tags"""
|
|
pattern = [r"(?:https?://)?(?:www\.)?rule34\.xxx/(?:index\.php)?"
|
|
r"\?page=post&s=list&tags=(?P<tags>[^&#]+)"]
|
|
test = [("https://rule34.xxx/index.php?page=post&s=list&tags=danraku", {
|
|
"content": "a01768c6f86f32eb7ebbdeb87c30b0d9968d7f97",
|
|
"pattern": r"https?://([^.]+\.)?rule34\.xxx/images/\d+/[0-9a-f]+\.jpg",
|
|
"count": 2,
|
|
})]
|
|
|
|
|
|
class Rule34PoolExtractor(booru.GelbooruPoolMixin, Rule34Extractor):
|
|
"""Extractor for image-pools from rule34.xxx"""
|
|
pattern = [r"(?:https?://)?(?:www\.)?rule34\.xxx/(?:index\.php)?"
|
|
r"\?page=pool&s=show&id=(?P<pool>\d+)"]
|
|
test = [("https://rule34.xxx/index.php?page=pool&s=show&id=179", {
|
|
"count": 3,
|
|
})]
|
|
|
|
|
|
class Rule34PostExtractor(booru.PostMixin, Rule34Extractor):
|
|
"""Extractor for single images from rule34.xxx"""
|
|
pattern = [r"(?:https?://)?(?:www\.)?rule34\.xxx/(?:index\.php)?"
|
|
r"\?page=post&s=view&id=(?P<post>\d+)"]
|
|
test = [("https://rule34.xxx/index.php?page=post&s=view&id=1974854", {
|
|
"content": "fd2820df78fb937532da0a46f7af6cefc4dc94be",
|
|
"options": (("tags", True),),
|
|
"keyword": {
|
|
"tags_artist": "danraku",
|
|
"tags_character": "io_(pso2)",
|
|
"tags_copyright": "phantasy_star phantasy_star_online_2",
|
|
"tags_general": str,
|
|
},
|
|
})]
|