1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 18:53:21 +01:00

[nhentai] use API endpoint for gallery data

This commit is contained in:
Mike Fährmann 2021-09-02 17:40:41 +02:00
parent 8cd7759682
commit 656358ea92
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -1,12 +1,12 @@
# -*- coding: utf-8 -*-
# Copyright 2015-2019 Mike Fährmann
# 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.
"""Extract images from https://nhentai.net/"""
"""Extractors for https://nhentai.net/"""
from .common import GalleryExtractor, Extractor, Message
from .. import text, util
@ -23,7 +23,7 @@ class NhentaiBase():
class NhentaiGalleryExtractor(NhentaiBase, GalleryExtractor):
"""Extractor for image galleries from nhentai.net"""
pattern = r"(?:https?://)?nhentai\.net(/g/(\d+))"
pattern = r"(?:https?://)?nhentai\.net/g/(\d+)"
test = ("https://nhentai.net/g/147850/", {
"url": "5179dbf0f96af44005a0ff705a0ad64ac26547d0",
"keyword": {
@ -49,13 +49,11 @@ class NhentaiGalleryExtractor(NhentaiBase, GalleryExtractor):
})
def __init__(self, match):
GalleryExtractor.__init__(self, match)
self.gallery_id = match.group(2)
self.data = None
url = self.root + "/api/gallery/" + match.group(1)
GalleryExtractor.__init__(self, match, url)
def metadata(self, page):
self.data = data = json.loads(text.parse_unicode_escapes(text.extract(
page, 'JSON.parse("', '");')[0]))
self.data = data = json.loads(page)
title_en = data["title"].get("english", "")
title_ja = data["title"].get("japanese", "")