mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
move and update BooruExtractor classes
This commit is contained in:
parent
28fa7c53b4
commit
8c7da93d19
96
gallery_dl/extractor/booru.py
Normal file
96
gallery_dl/extractor/booru.py
Normal file
@ -0,0 +1,96 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright 2015 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.
|
||||
|
||||
"""Base classes for extractors for danbooru and co"""
|
||||
|
||||
from .common import SequentialExtractor
|
||||
from .common import Message
|
||||
from .common import filename_from_url
|
||||
import xml.etree.ElementTree as ET
|
||||
import json
|
||||
import urllib.parse
|
||||
|
||||
|
||||
class BooruExtractor(SequentialExtractor):
|
||||
|
||||
api_url = ""
|
||||
|
||||
def __init__(self, match, config, info):
|
||||
SequentialExtractor.__init__(self, config)
|
||||
self.info = info
|
||||
self.tags = urllib.parse.unquote(match.group(1))
|
||||
self.page = "page"
|
||||
self.params = {"tags": self.tags}
|
||||
|
||||
def items(self):
|
||||
yield Message.Version, 1
|
||||
yield Message.Directory, self.get_job_metadata()
|
||||
for data in self.items_impl():
|
||||
yield Message.Url, self.get_file_url(data), self.get_file_metadata(data)
|
||||
|
||||
def items_impl(self):
|
||||
pass
|
||||
|
||||
def update_page(self, reset=False):
|
||||
"""Update the value of the 'page' parameter"""
|
||||
# Override this method in derived classes if necessary.
|
||||
# It is usually enough to just adjust the 'page' attribute
|
||||
if reset is False:
|
||||
self.params[self.page] += 1
|
||||
else:
|
||||
self.params[self.page] = 1
|
||||
|
||||
def get_job_metadata(self):
|
||||
"""Collect metadata for extractor-job"""
|
||||
return {
|
||||
"category": self.info["category"],
|
||||
"tags": self.tags.replace("/", "_"),
|
||||
}
|
||||
|
||||
def get_file_metadata(self, data):
|
||||
"""Collect metadata for a downloadable file"""
|
||||
data["category"] = self.info["category"]
|
||||
data["name"] = filename_from_url(self.get_file_url(data))
|
||||
return data
|
||||
|
||||
def get_file_url(self, data):
|
||||
"""Extract download-url from 'data'"""
|
||||
url = data["file_url"]
|
||||
if url.startswith("/"):
|
||||
url = urllib.parse.urljoin(self.api_url, url)
|
||||
return url
|
||||
|
||||
|
||||
class JSONBooruExtractor(BooruExtractor):
|
||||
|
||||
def items_impl(self):
|
||||
self.update_page(reset=True)
|
||||
while True:
|
||||
images = json.loads(
|
||||
self.request(self.api_url, verify=True, params=self.params).text
|
||||
)
|
||||
if len(images) == 0:
|
||||
return
|
||||
for data in images:
|
||||
yield data
|
||||
self.update_page()
|
||||
|
||||
|
||||
class XMLBooruExtractor(BooruExtractor):
|
||||
|
||||
def items_impl(self):
|
||||
self.update_page(reset=True)
|
||||
while True:
|
||||
root = ET.fromstring(
|
||||
self.request(self.api_url, verify=True, params=self.params).text
|
||||
)
|
||||
if len(root) == 0:
|
||||
return
|
||||
for item in root:
|
||||
yield item.attrib
|
||||
self.update_page()
|
Loading…
Reference in New Issue
Block a user