mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-23 11:12:40 +01:00
161 lines
5.4 KiB
Python
161 lines
5.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2015-2023 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.
|
|
|
|
"""Extractors for https://nhentai.net/"""
|
|
|
|
from .common import GalleryExtractor, Extractor, Message
|
|
from .. import text, util
|
|
import collections
|
|
|
|
|
|
class NhentaiGalleryExtractor(GalleryExtractor):
|
|
"""Extractor for image galleries from nhentai.net"""
|
|
category = "nhentai"
|
|
root = "https://nhentai.net"
|
|
pattern = r"(?:https?://)?nhentai\.net/g/(\d+)"
|
|
test = ("https://nhentai.net/g/147850/", {
|
|
"url": "5179dbf0f96af44005a0ff705a0ad64ac26547d0",
|
|
"keyword": {
|
|
"title" : r"re:\[Morris\] Amazon no Hiyaku \| Amazon Elixir",
|
|
"title_en" : str,
|
|
"title_ja" : str,
|
|
"gallery_id": 147850,
|
|
"media_id" : 867789,
|
|
"count" : 16,
|
|
"date" : 1446050915,
|
|
"scanlator" : "",
|
|
"artist" : ["morris"],
|
|
"group" : list,
|
|
"parody" : list,
|
|
"characters": list,
|
|
"tags" : list,
|
|
"type" : "manga",
|
|
"lang" : "en",
|
|
"language" : "English",
|
|
"width" : int,
|
|
"height" : int,
|
|
},
|
|
})
|
|
|
|
def __init__(self, match):
|
|
url = self.root + "/api/gallery/" + match.group(1)
|
|
GalleryExtractor.__init__(self, match, url)
|
|
|
|
def metadata(self, page):
|
|
self.data = data = util.json_loads(page)
|
|
|
|
title_en = data["title"].get("english", "")
|
|
title_ja = data["title"].get("japanese", "")
|
|
|
|
info = collections.defaultdict(list)
|
|
for tag in data["tags"]:
|
|
info[tag["type"]].append(tag["name"])
|
|
|
|
language = ""
|
|
for language in info["language"]:
|
|
if language != "translated":
|
|
language = language.capitalize()
|
|
break
|
|
|
|
return {
|
|
"title" : title_en or title_ja,
|
|
"title_en" : title_en,
|
|
"title_ja" : title_ja,
|
|
"gallery_id": data["id"],
|
|
"media_id" : text.parse_int(data["media_id"]),
|
|
"date" : data["upload_date"],
|
|
"scanlator" : data["scanlator"],
|
|
"artist" : info["artist"],
|
|
"group" : info["group"],
|
|
"parody" : info["parody"],
|
|
"characters": info["character"],
|
|
"tags" : info["tag"],
|
|
"type" : info["category"][0] if info["category"] else "",
|
|
"lang" : util.language_to_code(language),
|
|
"language" : language,
|
|
}
|
|
|
|
def images(self, _):
|
|
ufmt = ("https://i.nhentai.net/galleries/" +
|
|
self.data["media_id"] + "/{}.{}")
|
|
extdict = {"j": "jpg", "p": "png", "g": "gif"}
|
|
|
|
return [
|
|
(ufmt.format(num, extdict.get(img["t"], "jpg")), {
|
|
"width": img["w"], "height": img["h"],
|
|
})
|
|
for num, img in enumerate(self.data["images"]["pages"], 1)
|
|
]
|
|
|
|
|
|
class NhentaiExtractor(Extractor):
|
|
"""Base class for nhentai extractors"""
|
|
category = "nhentai"
|
|
root = "https://nhentai.net"
|
|
|
|
def __init__(self, match):
|
|
Extractor.__init__(self, match)
|
|
self.path, self.query = match.groups()
|
|
|
|
def items(self):
|
|
data = {"_extractor": NhentaiGalleryExtractor}
|
|
for gallery_id in self._pagination():
|
|
url = "{}/g/{}/".format(self.root, gallery_id)
|
|
yield Message.Queue, url, data
|
|
|
|
def _pagination(self):
|
|
url = self.root + self.path
|
|
params = text.parse_query(self.query)
|
|
params["page"] = text.parse_int(params.get("page"), 1)
|
|
|
|
while True:
|
|
page = self.request(url, params=params).text
|
|
yield from text.extract_iter(page, 'href="/g/', '/')
|
|
if 'class="next"' not in page:
|
|
return
|
|
params["page"] += 1
|
|
|
|
|
|
class NhentaiTagExtractor(NhentaiExtractor):
|
|
"""Extractor for nhentai tag searches"""
|
|
subcategory = "tag"
|
|
pattern = (r"(?:https?://)?nhentai\.net("
|
|
r"/(?:artist|category|character|group|language|parody|tag)"
|
|
r"/[^/?#]+(?:/popular[^/?#]*)?/?)(?:\?([^#]+))?")
|
|
test = (
|
|
("https://nhentai.net/tag/sole-female/", {
|
|
"pattern": NhentaiGalleryExtractor.pattern,
|
|
"count": 30,
|
|
"range": "1-30",
|
|
}),
|
|
("https://nhentai.net/artist/itou-life/"),
|
|
("https://nhentai.net/group/itou-life/"),
|
|
("https://nhentai.net/parody/touhou-project/"),
|
|
("https://nhentai.net/character/patchouli-knowledge/popular"),
|
|
("https://nhentai.net/category/doujinshi/popular-today"),
|
|
("https://nhentai.net/language/english/popular-week"),
|
|
)
|
|
|
|
|
|
class NhentaiSearchExtractor(NhentaiExtractor):
|
|
"""Extractor for nhentai search results"""
|
|
subcategory = "search"
|
|
pattern = r"(?:https?://)?nhentai\.net(/search/?)\?([^#]+)"
|
|
test = ("https://nhentai.net/search/?q=touhou", {
|
|
"pattern": NhentaiGalleryExtractor.pattern,
|
|
"count": 30,
|
|
"range": "1-30",
|
|
})
|
|
|
|
|
|
class NhentaiFavoriteExtractor(NhentaiExtractor):
|
|
"""Extractor for nhentai favorites"""
|
|
subcategory = "favorite"
|
|
pattern = r"(?:https?://)?nhentai\.net(/favorites/?)(?:\?([^#]+))?"
|
|
test = ("https://nhentai.net/favorites/",)
|