mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-23 19:22:32 +01:00
188 lines
6.4 KiB
Python
188 lines
6.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2015-2021 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://hitomi.la/"""
|
|
|
|
from .common import GalleryExtractor, Extractor, Message
|
|
from .nozomi import decode_nozomi
|
|
from .. import text, util
|
|
import string
|
|
import json
|
|
|
|
|
|
class HitomiGalleryExtractor(GalleryExtractor):
|
|
"""Extractor for image galleries from hitomi.la"""
|
|
category = "hitomi"
|
|
root = "https://hitomi.la"
|
|
pattern = (r"(?:https?://)?hitomi\.la"
|
|
r"/(?:manga|doujinshi|cg|gamecg|galleries|reader)"
|
|
r"/(?:[^/?#]+-)?(\d+)")
|
|
test = (
|
|
("https://hitomi.la/galleries/867789.html", {
|
|
"pattern": r"https://[a-c]b.hitomi.la/images/./../[0-9a-f]+.jpg",
|
|
"keyword": "4873ef9a523621fc857b114e0b2820ba4066e9ae",
|
|
"count": 16,
|
|
}),
|
|
# download test
|
|
("https://hitomi.la/galleries/1401410.html", {
|
|
"range": "1",
|
|
"content": "b3ca8c6c8cc5826cf8b4ceb7252943abad7b8b4c",
|
|
}),
|
|
# Game CG with scenes (#321)
|
|
("https://hitomi.la/galleries/733697.html", {
|
|
"url": "e057652b40629d3d72b0ef059c6ec7556417139c",
|
|
"count": 210,
|
|
}),
|
|
# fallback for galleries only available through /reader/ URLs
|
|
("https://hitomi.la/galleries/1045954.html", {
|
|
"url": "779b94b47d5f0c2341db03499270d2b5370196f6",
|
|
"count": 1413,
|
|
}),
|
|
# gallery with "broken" redirect
|
|
("https://hitomi.la/cg/scathacha-sama-okuchi-ecchi-1291900.html", {
|
|
"count": 10,
|
|
}),
|
|
# no tags
|
|
("https://hitomi.la/cg/1615823.html", {
|
|
"count": 22,
|
|
}),
|
|
("https://hitomi.la/manga/amazon-no-hiyaku-867789.html"),
|
|
("https://hitomi.la/manga/867789.html"),
|
|
("https://hitomi.la/doujinshi/867789.html"),
|
|
("https://hitomi.la/cg/867789.html"),
|
|
("https://hitomi.la/gamecg/867789.html"),
|
|
("https://hitomi.la/reader/867789.html"),
|
|
)
|
|
|
|
def __init__(self, match):
|
|
gid = match.group(1)
|
|
url = "https://ltn.hitomi.la/galleries/{}.js".format(gid)
|
|
GalleryExtractor.__init__(self, match, url)
|
|
self.info = None
|
|
self.session.headers["Referer"] = "{}/reader/{}.html".format(
|
|
self.root, gid)
|
|
|
|
def metadata(self, page):
|
|
self.info = info = json.loads(page.partition("=")[2])
|
|
|
|
data = self._data_from_gallery_info(info)
|
|
if self.config("metadata", True):
|
|
data.update(self._data_from_gallery_page(info))
|
|
return data
|
|
|
|
def _data_from_gallery_info(self, info):
|
|
language = info.get("language")
|
|
if language:
|
|
language = language.capitalize()
|
|
|
|
date = info.get("date")
|
|
if date:
|
|
date += ":00"
|
|
|
|
tags = []
|
|
for tinfo in info.get("tags") or ():
|
|
tag = string.capwords(tinfo["tag"])
|
|
if tinfo.get("female"):
|
|
tag += " ♀"
|
|
elif tinfo.get("male"):
|
|
tag += " ♂"
|
|
tags.append(tag)
|
|
|
|
return {
|
|
"gallery_id": text.parse_int(info["id"]),
|
|
"title" : info["title"],
|
|
"type" : info["type"].capitalize(),
|
|
"language" : language,
|
|
"lang" : util.language_to_code(language),
|
|
"date" : text.parse_datetime(date, "%Y-%m-%d %H:%M:%S%z"),
|
|
"tags" : tags,
|
|
}
|
|
|
|
def _data_from_gallery_page(self, info):
|
|
url = "{}/galleries/{}.html".format(self.root, info["id"])
|
|
|
|
# follow redirects
|
|
while True:
|
|
response = self.request(url, fatal=False)
|
|
if b"<title>Redirect</title>" not in response.content:
|
|
break
|
|
url = text.extract(
|
|
response.text, 'http-equiv="refresh" content="', '"',
|
|
)[0].partition("=")[2]
|
|
|
|
if response.status_code >= 400:
|
|
return {}
|
|
|
|
def prep(value):
|
|
return [
|
|
text.unescape(string.capwords(v))
|
|
for v in text.extract_iter(value or "", '.html">', '<')
|
|
]
|
|
|
|
extr = text.extract_from(response.text)
|
|
return {
|
|
"artist" : prep(extr('<h2>', '</h2>')),
|
|
"group" : prep(extr('<td>Group</td><td>', '</td>')),
|
|
"parody" : prep(extr('<td>Series</td><td>', '</td>')),
|
|
"characters": prep(extr('<td>Characters</td><td>', '</td>')),
|
|
}
|
|
|
|
def images(self, _):
|
|
result = []
|
|
for image in self.info["files"]:
|
|
ihash = image["hash"]
|
|
idata = text.nameext_from_url(image["name"])
|
|
|
|
# see https://ltn.hitomi.la/common.js
|
|
inum = int(ihash[-3:-1], 16)
|
|
offset = 2 if inum < 0x44 else 1 if inum < 0x88 else 0
|
|
|
|
url = "https://{}b.hitomi.la/images/{}/{}/{}.{}".format(
|
|
chr(97 + offset),
|
|
ihash[-1], ihash[-3:-1], ihash,
|
|
idata["extension"],
|
|
)
|
|
result.append((url, idata))
|
|
return result
|
|
|
|
|
|
class HitomiTagExtractor(Extractor):
|
|
"""Extractor for galleries from tag searches on hitomi.la"""
|
|
category = "hitomi"
|
|
subcategory = "tag"
|
|
pattern = (r"(?:https?://)?hitomi\.la/"
|
|
r"(tag|artist|group|series|type|character)/"
|
|
r"([^/?#]+)\.html")
|
|
test = (
|
|
("https://hitomi.la/tag/screenshots-japanese.html", {
|
|
"pattern": HitomiGalleryExtractor.pattern,
|
|
"count": ">= 35",
|
|
}),
|
|
("https://hitomi.la/artist/a1-all-1.html"),
|
|
("https://hitomi.la/group/initial%2Dg-all-1.html"),
|
|
("https://hitomi.la/series/amnesia-all-1.html"),
|
|
("https://hitomi.la/type/doujinshi-all-1.html"),
|
|
("https://hitomi.la/character/a2-all-1.html"),
|
|
)
|
|
|
|
def __init__(self, match):
|
|
Extractor.__init__(self, match)
|
|
self.type, self.tag = match.groups()
|
|
|
|
tag, _, num = self.tag.rpartition("-")
|
|
if num.isdecimal():
|
|
self.tag = tag
|
|
|
|
def items(self):
|
|
url = "https://ltn.hitomi.la/{}/{}.nozomi".format(self.type, self.tag)
|
|
data = {"_extractor": HitomiGalleryExtractor}
|
|
|
|
for gallery_id in decode_nozomi(self.request(url).content):
|
|
url = "https://hitomi.la/galleries/{}.html".format(gallery_id)
|
|
yield Message.Queue, url, data
|