2016-08-01 15:36:56 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright 2016 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://luscious.net/"""
|
|
|
|
|
|
|
|
from .common import Extractor, Message
|
|
|
|
from .. import text, iso639_1
|
|
|
|
from urllib.parse import urljoin
|
2016-11-29 17:17:35 +01:00
|
|
|
import re
|
2016-08-01 15:36:56 +02:00
|
|
|
|
2016-09-12 10:20:57 +02:00
|
|
|
class LusciousAlbumExtractor(Extractor):
|
|
|
|
"""Extractor for image albums from luscious.net"""
|
2016-08-01 15:36:56 +02:00
|
|
|
category = "luscious"
|
2016-09-12 10:20:57 +02:00
|
|
|
subcategory = "album"
|
2016-08-01 15:36:56 +02:00
|
|
|
directory_fmt = ["{category}", "{gallery-id} {title}"]
|
|
|
|
filename_fmt = "{category}_{gallery-id}_{num:>03}.{extension}"
|
|
|
|
pattern = [(r"(?:https?://)?(?:www\.)?luscious\.net/c/([^/]+)/"
|
2016-11-29 17:17:35 +01:00
|
|
|
r"(?:pictures/album|albums)/([^/]+_(\d+))")]
|
|
|
|
test = [("https://luscious.net/c/hentai_manga/albums/okinami-no-koigokoro_277031/view/", {
|
2016-12-08 00:24:23 +01:00
|
|
|
"url": "7e4984a271a1072ac6483e4228a045895aff86f3",
|
2016-11-29 17:17:35 +01:00
|
|
|
"keyword": "b9281277ab062d95ed0713ea88ed15569d29bf84",
|
|
|
|
"content": "b3a747a6464509440bd0ff6d1267e6959f8d6ff3",
|
2016-08-01 15:36:56 +02:00
|
|
|
})]
|
|
|
|
|
|
|
|
def __init__(self, match):
|
|
|
|
Extractor.__init__(self)
|
|
|
|
self.section, self.gpart, self.gid = match.groups()
|
|
|
|
|
|
|
|
def items(self):
|
|
|
|
data = self.get_job_metadata()
|
|
|
|
yield Message.Version, 1
|
|
|
|
yield Message.Directory, data
|
|
|
|
for url, image in self.get_images():
|
|
|
|
image.update(data)
|
|
|
|
yield Message.Url, url, image
|
|
|
|
|
|
|
|
def get_job_metadata(self):
|
|
|
|
"""Collect metadata for extractor-job"""
|
|
|
|
url = "https://luscious.net/c/{}/albums/{}/view/".format(
|
|
|
|
self.section, self.gpart)
|
|
|
|
data = text.extract_all(self.request(url).text, (
|
|
|
|
("title" , '"og:title" content="', '"'),
|
|
|
|
(None , '<li class="user_info">', ''),
|
|
|
|
("count" , '<p>', ' '),
|
|
|
|
(None , '<p>Section:', ''),
|
|
|
|
("section" , '>', '<'),
|
|
|
|
(None , '<p>Language:', ''),
|
|
|
|
("language", '\n ', ' '),
|
|
|
|
("artist" , 'rtist: ', '\n'),
|
2016-09-25 14:22:07 +02:00
|
|
|
), values={"gallery-id": self.gid})[0]
|
2016-08-01 15:36:56 +02:00
|
|
|
data["lang"] = iso639_1.language_to_code(data["language"])
|
|
|
|
return data
|
|
|
|
|
|
|
|
def get_images(self):
|
2016-11-29 17:17:35 +01:00
|
|
|
"""Collect image-urls and -metadata"""
|
2016-08-01 15:36:56 +02:00
|
|
|
pnum = 1
|
|
|
|
inum = 1
|
2016-11-29 17:17:35 +01:00
|
|
|
apiurl = ("https://luscious.net/c/{}/pictures/album/{}/"
|
|
|
|
"page/{{}}/.json/").format(self.section, self.gpart)
|
2016-08-01 15:36:56 +02:00
|
|
|
while True:
|
|
|
|
data = self.request(apiurl.format(pnum)).json()
|
|
|
|
for doc in data["documents"]:
|
2016-11-29 17:17:35 +01:00
|
|
|
width, height, size, url = doc["sizes"][-1]
|
|
|
|
if size != "original":
|
|
|
|
url = re.sub(r"\.\d+x\d+(\.[a-z]+)$", r"\1", url)
|
2016-08-01 15:36:56 +02:00
|
|
|
yield urljoin("https:", url), {
|
|
|
|
"width": width,
|
|
|
|
"height": height,
|
|
|
|
"num": inum,
|
|
|
|
"name": doc["title"],
|
|
|
|
"extension": url[url.rfind(".")+1:],
|
|
|
|
}
|
|
|
|
inum += 1
|
|
|
|
if data["paginator_complete"]:
|
|
|
|
return
|
|
|
|
pnum += 1
|