You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gallery-dl/gallery_dl/extractor/luscious.py

94 lines
3.6 KiB

# -*- 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 AsynchronousExtractor, Message
from .. import text, util
class LusciousAlbumExtractor(AsynchronousExtractor):
"""Extractor for image albums from luscious.net"""
category = "luscious"
subcategory = "album"
directory_fmt = ["{category}", "{gallery-id} {title}"]
filename_fmt = "{category}_{gallery-id}_{num:>03}.{extension}"
pattern = [(r"(?:https?://)?(?:www\.)?luscious\.net/"
r"(?:c/[^/]+/)?(?:pictures/album|albums)/([^/]+_(\d+))")]
test = [
(("https://luscious.net/c/hentai_manga/albums/"
"okinami-no-koigokoro_277031/view/"), {
"url": "7e4984a271a1072ac6483e4228a045895aff86f3",
"keyword": "8533c72ff85578240cf7594eb617d907bebf87ab",
"content": "b3a747a6464509440bd0ff6d1267e6959f8d6ff3",
}),
("https://luscious.net/albums/virgin-killer-sweater_282582/", {
"url": "01e2d7dd6eecea0152610f2446a6b1d60519c8bd",
"keyword": "6c8750df7f38ff4e15cabc9a3a2e876b84a328d6",
}),
("https://luscious.net/albums/okinami-no-koigokoro_277031/", None),
]
def __init__(self, match):
AsynchronousExtractor.__init__(self)
self.gpart, self.gid = match.groups()
self.section = "x"
def items(self):
url = "https://luscious.net/albums/" + self.gpart + "/"
page = self.request(url).text
data = self.get_metadata(page)
yield Message.Version, 1
yield Message.Directory, data
for url, image in self.get_images(page):
image.update(data)
yield Message.Url, url, image
def get_metadata(self, page):
"""Collect metadata for extractor-job"""
data = text.extract_all(page, (
("title" , '"og:title" content="', '"'),
("tags" , '<meta name="keywords" content="', '"'),
("com" , "'community': '", "'"),
(None , '<li class="user_info">', ''),
("count" , '<p>', ' '),
(None , '<p>Section:', ''),
("section" , '>', '<'),
("language", '<p>Language:', ' '),
), values={"gallery-id": self.gid})[0]
data["lang"] = util.language_to_code(data["language"] or "", None)
try:
data["artist"] = text.extract(data["tags"], "rtist: ", ",")[0] or None
except AttributeError:
data["artist"] = None
self.section = data["com"]
del data["com"]
return data
def get_images(self, page):
"""Collect image-urls and -metadata"""
extr = text.extract
num = 1
pos = page.find('<div class="album_cover_item">')
url = extr(page, '<a href="', '"', pos)[0]
while not url.endswith("/more_like_this/"):
page = self.request("https://luscious.net" + url).text
imgid, pos = extr(url , '/id/', '/')
url , pos = extr(page, '<link rel="next" href="', '"')
name , pos = extr(page, '<h1 id="picture_title">', '</h1>', pos)
_ , pos = extr(page, '<ul class="image_option_icons">', '', pos)
iurl , pos = extr(page, '<li><a href="', '"', pos+100)
yield iurl, {
"num": num,
"name": name,
"extension": iurl.rpartition(".")[2],
"image-id": imgid,
}
num += 1