mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-25 12:12:34 +01:00
[realbooru] Add Realbooru extractor (#514)
This commit is contained in:
parent
f9e74320de
commit
9a4ce20b8e
@ -96,6 +96,7 @@ Pornreactor http://pornreactor.cc/ Posts, Search Results,
|
||||
PowerManga https://read.powermanga.org/ Chapters, Manga
|
||||
Pururin https://pururin.io/ Galleries
|
||||
Read Comic Online https://readcomiconline.to/ Comic-Issues, Comics
|
||||
Realbooru https://realbooru.com/ Pools, Posts, Tag-Searches
|
||||
RebeccaBlackTech https://rbt.asia/ Threads
|
||||
Reddit https://www.reddit.com/ |reddit-C| Optional (OAuth)
|
||||
rule #34 https://rule34.paheal.net/ Posts, Tag-Searches
|
||||
|
@ -86,6 +86,7 @@ modules = [
|
||||
"pururin",
|
||||
"reactor",
|
||||
"readcomiconline",
|
||||
"realbooru",
|
||||
"reddit",
|
||||
"rule34",
|
||||
"safebooru",
|
||||
|
131
gallery_dl/extractor/realbooru.py
Normal file
131
gallery_dl/extractor/realbooru.py
Normal file
@ -0,0 +1,131 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright 2014-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.
|
||||
|
||||
"""Extract images from https://realbooru.com/"""
|
||||
|
||||
from . import booru
|
||||
from .common import Message
|
||||
from .. import text, util
|
||||
|
||||
|
||||
class RealbooruExtractor(booru.XmlParserMixin,
|
||||
booru.GelbooruPageMixin,
|
||||
booru.BooruExtractor):
|
||||
"""Base class for realbooru extractors"""
|
||||
category = "realbooru"
|
||||
api_url = "https://realbooru.com/index.php"
|
||||
post_url = "https://realbooru.com/index.php?page=post&s=view&id={}"
|
||||
pool_url = "https://realbooru.com/index.php?page=pool&s=show&id={}"
|
||||
|
||||
def __init__(self, match):
|
||||
super().__init__(match)
|
||||
|
||||
self.use_api = self.config("api", True)
|
||||
if self.use_api:
|
||||
self.params.update({"page": "dapi", "s": "post", "q": "index"})
|
||||
else:
|
||||
self.items = self.items_noapi
|
||||
self.session.cookies["fringeBenefits"] = "yup"
|
||||
|
||||
def items_noapi(self):
|
||||
yield Message.Version, 1
|
||||
data = self.get_metadata()
|
||||
|
||||
for post in self.get_posts():
|
||||
post = self.get_post_data(post)
|
||||
url = post["file_url"]
|
||||
post.update(data)
|
||||
text.nameext_from_url(url, post)
|
||||
yield Message.Directory, post
|
||||
yield Message.Url, url, post
|
||||
|
||||
def get_posts(self):
|
||||
"""Return an iterable containing all relevant post objects"""
|
||||
|
||||
def get_post_data(self, post_id):
|
||||
"""Extract metadata of a single post"""
|
||||
page = self.request(self.post_url.format(post_id)).text
|
||||
data = text.extract_all(page, (
|
||||
(None , '<meta name="keywords"', ''),
|
||||
("tags" , ' imageboard, ', '"'),
|
||||
("id" , '<li>Id: ', '<'),
|
||||
("created_at", '<li>Posted: ', '<'),
|
||||
("width" , '<li>Size: ', 'x'),
|
||||
("height" , '', '<'),
|
||||
("source" , '<li>Source: <a href="', '"'),
|
||||
("rating" , '<li>Rating: ', '<'),
|
||||
(None , '<li>Score: ', ''),
|
||||
("score" , '>', '<'),
|
||||
("file_url" , '<li><a href="http', '"'),
|
||||
("change" , ' id="lupdated" value="', '"'),
|
||||
))[0]
|
||||
data["file_url"] = "http" + data["file_url"].replace("m//", "m/", 1)
|
||||
data["md5"] = data["file_url"].rpartition("/")[2].partition(".")[0]
|
||||
data["rating"] = (data["rating"] or "?")[0].lower()
|
||||
data["tags"] = " ".join(
|
||||
[tag.replace(" ", "_") for tag in data["tags"].split(", ")])
|
||||
if self.extags:
|
||||
self.extended_tags(data, page)
|
||||
return data
|
||||
|
||||
|
||||
class RealbooruTagExtractor(booru.TagMixin, RealbooruExtractor):
|
||||
"""Extractor for images from realbooru.com based on search-tags"""
|
||||
pattern = (r"(?:https?://)?(?:www\.)?realbooru\.com/(?:index\.php)?"
|
||||
r"\?page=post&s=list&tags=(?P<tags>[^&#]+)")
|
||||
test = (
|
||||
("https://realbooru.com/index.php?page=post&s=list&tags=bonocho", {
|
||||
"count": 5,
|
||||
}),
|
||||
("https://realbooru.com/index.php?page=post&s=list&tags=bonocho", {
|
||||
"options": (("api", False),),
|
||||
"count": 5,
|
||||
}),
|
||||
)
|
||||
|
||||
def __init__(self, match):
|
||||
super().__init__(match)
|
||||
if not self.use_api:
|
||||
self.per_page = 42
|
||||
|
||||
def get_posts(self):
|
||||
url = "https://realbooru.com/index.php?page=post&s=list"
|
||||
params = {"tags": self.tags, "pid": self.page_start * self.per_page}
|
||||
|
||||
while True:
|
||||
page = self.request(url, params=params).text
|
||||
ids = list(text.extract_iter(page, '<a id="p', '"'))
|
||||
yield from ids
|
||||
if len(ids) < self.per_page:
|
||||
return
|
||||
params["pid"] += self.per_page
|
||||
|
||||
|
||||
class RealbooruPoolExtractor(booru.GelbooruPoolMixin, RealbooruExtractor):
|
||||
"""Extractor for image-pools from realbooru.com"""
|
||||
pattern = (r"(?:https?://)?(?:www\.)?realbooru\.com/(?:index\.php)?"
|
||||
r"\?page=pool&s=show&id=(?P<pool>\d+)")
|
||||
test = ("https://realbooru.com/index.php?page=pool&s=show&id=761", {
|
||||
"count": 6,
|
||||
})
|
||||
|
||||
def get_posts(self):
|
||||
return util.advance(self.posts, self.page_start)
|
||||
|
||||
|
||||
class RealbooruPostExtractor(booru.PostMixin, RealbooruExtractor):
|
||||
"""Extractor for single images from realbooru.com"""
|
||||
pattern = (r"(?:https?://)?(?:www\.)?realbooru\.com/(?:index\.php)?"
|
||||
r"\?page=post&s=view&id=(?P<post>\d+)")
|
||||
test = ("https://realbooru.com/index.php?page=post&s=view&id=313638", {
|
||||
"content": "5e255713cbf0a8e0801dc423563c34d896bb9229",
|
||||
"count": 1,
|
||||
})
|
||||
|
||||
def get_posts(self):
|
||||
return (self.post,)
|
Loading…
Reference in New Issue
Block a user