1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-23 11:12:40 +01:00
gallery-dl/gallery_dl/extractor/hitomi.py

238 lines
7.8 KiB
Python
Raw Normal View History

2015-10-28 16:24:35 +01:00
# -*- coding: utf-8 -*-
2021-09-03 01:01:59 +02:00
# Copyright 2015-2021 Mike Fährmann
2015-10-28 16:24:35 +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.
"""Extractors for https://hitomi.la/"""
2015-10-28 16:24:35 +01:00
from .common import GalleryExtractor, Extractor, Message
from .nozomi import decode_nozomi
2021-12-29 21:09:28 +01:00
from ..cache import memcache
2017-03-28 13:12:44 +02:00
from .. import text, util
import string
2019-10-29 16:23:20 +01:00
import json
2021-12-29 21:09:28 +01:00
import re
2015-10-28 16:24:35 +01:00
2017-02-01 00:53:19 +01:00
class HitomiGalleryExtractor(GalleryExtractor):
"""Extractor for image galleries from hitomi.la"""
2015-11-21 04:26:30 +01:00
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/1641140516/\d+"
2021-12-29 21:09:28 +01:00
r"/[0-9a-f]{64}\.jpg",
2020-09-20 21:54:39 +02:00
"keyword": "4873ef9a523621fc857b114e0b2820ba4066e9ae",
"options": (("metadata", True),),
2019-10-09 17:21:37 +02:00
"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": "d4854175da2b5fa4ae62749266c7be0bf237dc99",
"count": 210,
}),
# fallback for galleries only available through /reader/ URLs
("https://hitomi.la/galleries/1045954.html", {
"url": "eea99c3745719a7a392150335e6ae3f73faa0b85",
"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"),
)
2015-11-21 04:26:30 +01:00
2015-10-28 16:24:35 +01:00
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", False):
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
2020-08-22 23:02:15 +02:00
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>')),
2015-10-28 16:24:35 +01:00
}
def images(self, _):
2021-12-29 21:09:28 +01:00
# see https://ltn.hitomi.la/gg.js
gg_m, gg_b, gg_default = _parse_gg(self)
2021-12-29 21:09:28 +01:00
2020-01-14 12:04:48 +01:00
result = []
for image in self.info["files"]:
2020-01-14 12:04:48 +01:00
ihash = image["hash"]
idata = text.nameext_from_url(image["name"])
# see https://ltn.hitomi.la/common.js
2021-12-29 21:09:28 +01:00
inum = int(ihash[-1] + ihash[-3:-1], 16)
url = "https://{}b.hitomi.la/images/{}/{}/{}.{}".format(
chr(97 + gg_m.get(inum, gg_default)),
2021-12-29 21:09:28 +01:00
gg_b, inum, ihash, idata["extension"],
2020-01-14 12:04:48 +01:00
)
result.append((url, idata))
return result
class HitomiTagExtractor(Extractor):
"""Extractor for galleries from tag searches on hitomi.la"""
category = "hitomi"
subcategory = "tag"
root = "https://hitomi.la"
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):
data = {"_extractor": HitomiGalleryExtractor}
nozomi_url = "https://ltn.hitomi.la/{}/{}.nozomi".format(
self.type, self.tag)
headers = {
"Origin": self.root,
"Cache-Control": "max-age=0",
}
offset = 0
while True:
headers["Referer"] = "{}/{}/{}.html?page={}".format(
self.root, self.type, self.tag, offset // 100 + 1)
headers["Range"] = "bytes={}-{}".format(offset, offset+99)
nozomi = self.request(nozomi_url, headers=headers).content
for gallery_id in decode_nozomi(nozomi):
gallery_url = "{}/galleries/{}.html".format(
self.root, gallery_id)
yield Message.Queue, gallery_url, data
if len(nozomi) < 100:
return
offset += 100
2021-12-29 21:09:28 +01:00
@memcache()
def _parse_gg(extr):
page = extr.request("https://ltn.hitomi.la/gg.js").text
m = {}
keys = []
for match in re.finditer(
r"case\s+(\d+):(?:\s*o\s*=\s*(\d+))?", page):
key, value = match.groups()
keys.append(int(key))
if value:
value = int(value)
for key in keys:
m[key] = value
keys.clear()
for match in re.finditer(
r"if\s+\(g\s*===?\s*(\d+)\)[\s{]*o\s*=\s*(\d+)", page):
m[int(match.group(1))] = int(match.group(2))
d = re.search(r"(?:var\s|default:)\s*o\s*=\s*(\d+)", page)
2021-12-29 21:09:28 +01:00
b = re.search(r"b:\s*[\"'](.+)[\"']", page)
return m, b.group(1).strip("/"), int(d.group(1)) if d else 1