summaryrefslogtreecommitdiffstats
path: root/gallery_dl/extractor/hentaicafe.py
diff options
context:
space:
mode:
Diffstat (limited to 'gallery_dl/extractor/hentaicafe.py')
-rw-r--r--gallery_dl/extractor/hentaicafe.py88
1 files changed, 88 insertions, 0 deletions
diff --git a/gallery_dl/extractor/hentaicafe.py b/gallery_dl/extractor/hentaicafe.py
new file mode 100644
index 0000000..e95467b
--- /dev/null
+++ b/gallery_dl/extractor/hentaicafe.py
@@ -0,0 +1,88 @@
+# -*- coding: utf-8 -*-
+
+# Copyright 2018-2019 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://hentai.cafe/"""
+
+from . import foolslide
+from .. import text
+from ..cache import memcache
+import re
+
+
+class HentaicafeChapterExtractor(foolslide.FoolslideChapterExtractor):
+ """Extractor for manga-chapters from hentai.cafe"""
+ category = "hentaicafe"
+ directory_fmt = ("{category}", "{manga}")
+ pattern = (r"(?:https?://)?(?:www\.)?hentai\.cafe"
+ r"(/manga/read/[^/?&#]+/[a-z-]+/\d+/\d+(?:/\d+)?)")
+ test = ("https://hentai.cafe/manga/read/saitom-box/en/0/1/", {
+ "url": "8c6a8c56875ba3ed7ab0a74a64f9960077767fc2",
+ "keyword": "6913608267d883c82b887303b9ced13821188329",
+ })
+ root = "https://hentai.cafe"
+
+ def metadata(self, page):
+ info = text.unescape(text.extract(page, '<title>', '</title>')[0])
+ manga, _, chapter_string = info.partition(" :: ")
+
+ data = self._data(self.chapter_url.split("/")[5])
+ data["manga"] = manga
+ data["chapter_string"] = chapter_string.rstrip(" :")
+ return self.parse_chapter_url(self.chapter_url, data)
+
+ @memcache(keyarg=1)
+ def _data(self, manga):
+ return {"artist": [], "tags": []}
+
+
+class HentaicafeMangaExtractor(foolslide.FoolslideMangaExtractor):
+ """Extractor for manga from hentai.cafe"""
+ category = "hentaicafe"
+ pattern = (r"(?:https?://)?" + r"(?:www\.)?hentai\.cafe"
+ r"((?:/manga/series)?/[^/?&#]+)/?$")
+ test = (
+ # single chapter
+ ("https://hentai.cafe/hazuki-yuuto-summer-blues/", {
+ "url": "f8e24a07d6fbb7c6a6ec5ad8ad8faf2436f8751b",
+ "keyword": "eb9f98544098c961bd8cf5dbe69e6da51c4fb2f6",
+ }),
+ # multi-chapter
+ ("https://hentai.cafe/saitom-saitom-box/", {
+ "url": "ca3e8a91531fd6acd863d93ac3afbd8ead06a076",
+ "keyword": "28271062d7b4a2f99a0e1a894f69af8c5581a6bb",
+ }),
+ # foolslide URL
+ ("https://hentai.cafe/manga/series/saitom-box/", {
+ "url": "ca3e8a91531fd6acd863d93ac3afbd8ead06a076",
+ "keyword": "f0ece32d958f889d8229ed4052716d398a0a875c",
+ }),
+ )
+ root = "https://hentai.cafe"
+ reverse = False
+ chapterclass = HentaicafeChapterExtractor
+
+ def chapters(self, page):
+ if "/manga/series/" in self.manga_url:
+ chapters = foolslide.FoolslideMangaExtractor.chapters(self, page)
+ chapters.reverse()
+ return chapters
+
+ tags , pos = text.extract(page, "<p>Tags: ", "</br>")
+ artist, pos = text.extract(page, "\nArtists: ", "</br>", pos)
+ manga , pos = text.extract(page, "/manga/read/", "/", pos)
+ data = {
+ "tags" : text.split_html(tags)[::2],
+ "artist": text.split_html(artist),
+ }
+ HentaicafeChapterExtractor._data(manga).update(data)
+
+ return [
+ (url, data)
+ for url in re.findall(
+ r'<a +class="x-btn[^"]*" +href="([^"]+)"', page)
+ ]