2018-01-15 16:39:05 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-02-04 13:46:02 +01:00
|
|
|
# Copyright 2018-2019 Mike Fährmann
|
2018-01-15 16:39:05 +01:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2018-07-17 21:23:50 +02:00
|
|
|
"""Extract images from https://rule34.paheal.net/"""
|
2018-01-15 16:39:05 +01:00
|
|
|
|
2019-02-04 13:46:02 +01:00
|
|
|
from .common import Extractor, Message, SharedConfigMixin
|
2018-05-10 22:07:55 +02:00
|
|
|
from .. import text
|
2018-01-15 16:39:05 +01:00
|
|
|
|
|
|
|
|
2019-02-04 13:46:02 +01:00
|
|
|
class PahealExtractor(SharedConfigMixin, Extractor):
|
2018-01-15 16:39:05 +01:00
|
|
|
"""Base class for paheal extractors"""
|
|
|
|
basecategory = "booru"
|
|
|
|
category = "paheal"
|
|
|
|
filename_fmt = "{category}_{id}_{md5}.{extension}"
|
2018-01-30 22:49:16 +01:00
|
|
|
archive_fmt = "{id}"
|
2018-07-17 21:23:50 +02:00
|
|
|
root = "https://rule34.paheal.net"
|
2018-01-15 16:39:05 +01:00
|
|
|
|
|
|
|
def items(self):
|
|
|
|
yield Message.Version, 1
|
|
|
|
yield Message.Directory, self.get_metadata()
|
|
|
|
|
|
|
|
for data in self.get_posts():
|
|
|
|
url = data["file_url"]
|
|
|
|
for key in ("id", "width", "height"):
|
2018-04-20 14:53:21 +02:00
|
|
|
data[key] = text.parse_int(data[key])
|
2018-01-15 16:39:05 +01:00
|
|
|
data["tags"] = text.unquote(data["tags"])
|
|
|
|
yield Message.Url, url, text.nameext_from_url(url, data)
|
|
|
|
|
|
|
|
def get_metadata(self):
|
|
|
|
"""Return general metadata"""
|
|
|
|
return {}
|
|
|
|
|
|
|
|
def get_posts(self):
|
|
|
|
"""Return an iterable containing data of all relevant posts"""
|
|
|
|
|
|
|
|
|
|
|
|
class PahealTagExtractor(PahealExtractor):
|
|
|
|
"""Extractor for images from rule34.paheal.net by search-tags"""
|
|
|
|
subcategory = "tag"
|
2019-02-15 16:40:15 +01:00
|
|
|
directory_fmt = ("{category}", "{search_tags}")
|
2019-02-08 13:45:40 +01:00
|
|
|
pattern = (r"(?:https?://)?(?:rule34|rule63|cosplay)\.paheal\.net"
|
|
|
|
r"/post/list/([^/?&#]+)")
|
|
|
|
test = ("https://rule34.paheal.net/post/list/k-on/1", {
|
2019-06-05 11:42:01 +02:00
|
|
|
"pattern": r"https://[^.]+\.paheal\.net/_images/\w+/\d+%20-%20",
|
|
|
|
"count": ">= 15"
|
2019-02-08 13:45:40 +01:00
|
|
|
})
|
2018-01-15 16:39:05 +01:00
|
|
|
per_page = 70
|
|
|
|
|
|
|
|
def __init__(self, match):
|
2019-02-11 13:31:10 +01:00
|
|
|
PahealExtractor.__init__(self, match)
|
2018-01-15 16:39:05 +01:00
|
|
|
self.tags = text.unquote(match.group(1))
|
|
|
|
|
|
|
|
def get_metadata(self):
|
2019-02-15 16:40:15 +01:00
|
|
|
return {"search_tags": self.tags}
|
2018-01-15 16:39:05 +01:00
|
|
|
|
|
|
|
def get_posts(self):
|
|
|
|
pnum = 1
|
|
|
|
while True:
|
|
|
|
url = "{}/post/list/{}/{}".format(self.root, self.tags, pnum)
|
|
|
|
page = self.request(url).text
|
|
|
|
|
|
|
|
for post in text.extract_iter(
|
|
|
|
page, '<img id="thumb_', '>Image Only<'):
|
|
|
|
yield self._extract_data(post)
|
|
|
|
|
|
|
|
if ">Next<" not in page:
|
|
|
|
return
|
|
|
|
pnum += 1
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _extract_data(post):
|
|
|
|
pid , pos = text.extract(post, '', '"')
|
|
|
|
data, pos = text.extract(post, 'title="', '"', pos)
|
|
|
|
md5 , pos = text.extract(post, '/_thumbs/', '/', pos)
|
|
|
|
url , pos = text.extract(post, '<a href="', '"', pos)
|
|
|
|
|
|
|
|
tags, dimensions, size, _ = data.split(" // ")
|
|
|
|
width, _, height = dimensions.partition("x")
|
|
|
|
|
|
|
|
return {
|
|
|
|
"id": pid, "md5": md5, "tags": tags, "file_url": url,
|
|
|
|
"width": width, "height": height,
|
2018-05-10 22:07:55 +02:00
|
|
|
"size": text.parse_bytes(size[:-1]),
|
2018-01-15 16:39:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class PahealPostExtractor(PahealExtractor):
|
|
|
|
"""Extractor for single images from rule34.paheal.net"""
|
|
|
|
subcategory = "post"
|
2019-02-08 13:45:40 +01:00
|
|
|
pattern = (r"(?:https?://)?(?:rule34|rule63|cosplay)\.paheal\.net"
|
|
|
|
r"/post/view/(\d+)")
|
|
|
|
test = ("https://rule34.paheal.net/post/view/481609", {
|
2019-04-11 20:43:08 +02:00
|
|
|
"url": "1142779378f655ec0497d4c301836aa667f788b1",
|
|
|
|
"keyword": "34e9e93d4fa6fa06fac1a56e78c9a52e8cd7b271",
|
2018-01-15 16:39:05 +01:00
|
|
|
"content": "7b924bcf150b352ac75c9d281d061e174c851a11",
|
2019-02-08 13:45:40 +01:00
|
|
|
})
|
2018-01-15 16:39:05 +01:00
|
|
|
|
|
|
|
def __init__(self, match):
|
2019-02-11 13:31:10 +01:00
|
|
|
PahealExtractor.__init__(self, match)
|
2018-01-15 16:39:05 +01:00
|
|
|
self.post_id = match.group(1)
|
|
|
|
|
|
|
|
def get_posts(self):
|
|
|
|
url = "{}/post/view/{}".format(self.root, self.post_id)
|
|
|
|
page = self.request(url).text
|
|
|
|
|
|
|
|
tags , pos = text.extract(page, ": ", "<")
|
|
|
|
md5 , pos = text.extract(page, "/_thumbs/", "/", pos)
|
|
|
|
url , pos = text.extract(page, "id='main_image' src='", "'", pos)
|
|
|
|
width , pos = text.extract(page, "data-width='", "'", pos)
|
|
|
|
height, pos = text.extract(page, "data-height='", "'", pos)
|
|
|
|
|
|
|
|
return ({
|
|
|
|
"id": self.post_id, "md5": md5, "tags": tags, "file_url": url,
|
|
|
|
"width": width, "height": height, "size": 0,
|
|
|
|
},)
|