mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-23 19:22:32 +01:00
149 lines
5.6 KiB
Python
149 lines
5.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2015 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 http://www.hentai-foundry.com/"""
|
|
|
|
from .common import Extractor, Message
|
|
from .. import text, exception
|
|
|
|
class HentaifoundryUserExtractor(Extractor):
|
|
"""Extractor for all images of a hentai-foundry-user"""
|
|
category = "hentaifoundry"
|
|
subcategory = "user"
|
|
directory_fmt = ["{category}", "{artist}"]
|
|
filename_fmt = "{category}_{index}_{title}.{extension}"
|
|
pattern = [
|
|
r"(?:https?://)?(?:www\.)?hentai-foundry\.com/pictures/user/([^/]+)/?$",
|
|
r"(?:https?://)?(?:www\.)?hentai-foundry\.com/user/([^/]+)/profile",
|
|
]
|
|
test = [("http://www.hentai-foundry.com/pictures/user/Tenpura", {
|
|
"url": "95d44a26498ae4a73963e6fd03ea5e0e624f14a0",
|
|
"keyword": "6937c20b3afe5a0af741cc1c419994dd041c8395",
|
|
})]
|
|
url_base = "http://www.hentai-foundry.com/pictures/user/"
|
|
|
|
def __init__(self, match):
|
|
Extractor.__init__(self)
|
|
self.artist = match.group(1)
|
|
|
|
def items(self):
|
|
data, token = self.get_job_metadata()
|
|
self.set_filters(token)
|
|
yield Message.Version, 1
|
|
yield Message.Directory, data
|
|
for url, image in self.get_images():
|
|
image.update(data)
|
|
yield Message.Url, url, image
|
|
|
|
def get_images(self):
|
|
"""Yield url and keywords for all images of one artist"""
|
|
num = 1
|
|
needle = 'thumbTitle"><a href="/pictures/user/'
|
|
while True:
|
|
pos = 0
|
|
url = self.url_base + self.artist + "/page/" + str(num)
|
|
page = self.request(url).text
|
|
for _ in range(25):
|
|
part, pos = text.extract(page, needle, '"', pos)
|
|
if not part:
|
|
return
|
|
yield self.get_image_metadata(self.url_base + part)
|
|
num += 1
|
|
|
|
def get_job_metadata(self):
|
|
"""Collect metadata for extractor-job"""
|
|
response = self.session.get(self.url_base + self.artist + "?enterAgree=1")
|
|
if response.status_code == 404:
|
|
raise exception.NotFoundError("user")
|
|
page = response.text
|
|
token, pos = text.extract(page, 'hidden" value="', '"')
|
|
count, pos = text.extract(page, 'class="active" >Pictures (', ')', pos)
|
|
return {"artist": self.artist, "count": count}, token
|
|
|
|
def get_image_metadata(self, url):
|
|
"""Collect metadata for an image"""
|
|
page = self.request(url).text
|
|
index = text.extract(url, '/', '/', len(self.url_base) + len(self.artist))[0]
|
|
title, pos = text.extract(page, 'Pictures</a> » <span>', '<')
|
|
url , pos = text.extract(page, '//pictures.hentai-foundry.com', '"', pos)
|
|
data = {"index": index, "title": text.unescape(title)}
|
|
text.nameext_from_url(url, data)
|
|
return "http://pictures.hentai-foundry.com" + url, data
|
|
|
|
def set_filters(self, token):
|
|
"""Set site-internal filters to show all images"""
|
|
formdata = {
|
|
"YII_CSRF_TOKEN": token,
|
|
"rating_nudity": 3,
|
|
"rating_violence": 3,
|
|
"rating_profanity": 3,
|
|
"rating_racism": 3,
|
|
"rating_sex": 3,
|
|
"rating_spoilers": 3,
|
|
"rating_yaoi": 1,
|
|
"rating_yuri": 1,
|
|
"rating_teen": 1,
|
|
"rating_guro": 1,
|
|
"rating_furry": 1,
|
|
"rating_beast": 1,
|
|
"rating_male": 1,
|
|
"rating_female": 1,
|
|
"rating_futa": 1,
|
|
"rating_other": 1,
|
|
"filter_media": "A",
|
|
"filter_order": "date_new",
|
|
"filter_type": 0,
|
|
}
|
|
self.request("http://www.hentai-foundry.com/site/filters",
|
|
method="post", data=formdata)
|
|
|
|
|
|
class HentaifoundryImageExtractor(Extractor):
|
|
"""Extractor for a single image from hentaifoundry.com"""
|
|
category = "hentaifoundry"
|
|
subcategory = "image"
|
|
directory_fmt = ["{category}", "{artist}"]
|
|
filename_fmt = "{category}_{index}_{title}.{extension}"
|
|
pattern = [(r"(?:https?://)?(?:www\.|pictures\.)?hentai-foundry\.com/"
|
|
r"(?:pictures/user/([^/]+)/(\d+)"
|
|
r"|[^/]/([^/]+)/(\d+))")]
|
|
test = [("http://www.hentai-foundry.com/pictures/user/Tenpura/340854/notitle", {
|
|
"url": "f3c0739bf86543697deabbed4bf99eb95a04582b",
|
|
"keyword": "96217c5becc1369c36dafa201c3c208518de8f1f",
|
|
"content": "5c14cd10deaad79a5152f9de45c9203cf76165a0",
|
|
})]
|
|
|
|
def __init__(self, match):
|
|
Extractor.__init__(self)
|
|
self.artist = match.group(1) or match.group(3)
|
|
self.index = match.group(2) or match.group(4)
|
|
|
|
def items(self):
|
|
url, data = self.get_image_metadata()
|
|
yield Message.Version, 1
|
|
yield Message.Directory, data
|
|
yield Message.Url, url, data
|
|
|
|
def get_image_metadata(self):
|
|
"""Collect metadata for an image"""
|
|
url = "http://www.hentai-foundry.com/pictures/user/{}/{}".format(
|
|
self.artist, self.index)
|
|
response = self.session.get(url + "?enterAgree=1")
|
|
if response.status_code == 404:
|
|
raise exception.NotFoundError("image")
|
|
page = response.text
|
|
title, pos = text.extract(page, 'Pictures</a> » <span>', '<')
|
|
url , pos = text.extract(page, '//pictures.hentai-foundry.com', '"', pos)
|
|
data = {
|
|
"artist": self.artist,
|
|
"index": self.index,
|
|
"title": text.unescape(title),
|
|
}
|
|
text.nameext_from_url(url, data)
|
|
return "http://pictures.hentai-foundry.com" + url, data
|