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/wallhaven.py

285 lines
9.4 KiB

# -*- coding: utf-8 -*-
# Copyright 2018-2023 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://wallhaven.cc/"""
from .common import Extractor, Message
from .. import text, exception
class WallhavenExtractor(Extractor):
"""Base class for wallhaven extractors"""
category = "wallhaven"
root = "https://wallhaven.cc"
filename_fmt = "{category}_{id}_{resolution}.{extension}"
archive_fmt = "{id}"
request_interval = 1.4
def __init__(self, match):
Extractor.__init__(self, match)
self.api = WallhavenAPI(self)
def items(self):
metadata = self.metadata()
for wp in self.wallpapers():
self._transform(wp)
wp.update(metadata)
url = wp["url"]
yield Message.Directory, wp
yield Message.Url, url, text.nameext_from_url(url, wp)
def wallpapers(self):
"""Return relevant 'wallpaper' objects"""
def metadata(self):
"""Return general metadata"""
return ()
@staticmethod
def _transform(wp):
wp["url"] = wp.pop("path")
if "tags" in wp:
wp["tags"] = [t["name"] for t in wp["tags"]]
wp["date"] = text.parse_datetime(
wp.pop("created_at"), "%Y-%m-%d %H:%M:%S")
wp["width"] = wp.pop("dimension_x")
wp["height"] = wp.pop("dimension_y")
wp["wh_category"] = wp["category"]
class WallhavenSearchExtractor(WallhavenExtractor):
"""Extractor for search results on wallhaven.cc"""
subcategory = "search"
directory_fmt = ("{category}", "{search[q]}")
archive_fmt = "s_{search[q]}_{id}"
pattern = r"(?:https?://)?wallhaven\.cc/search(?:/?\?([^#]+))?"
test = (
("https://wallhaven.cc/search?q=touhou"),
(("https://wallhaven.cc/search?q=id%3A87"
"&categories=111&purity=100&sorting=date_added&order=asc&page=3"), {
"pattern": (r"https://w\.wallhaven\.cc"
r"/full/\w\w/wallhaven-\w+\.\w+"),
"count": "<= 30",
}),
)
def __init__(self, match):
WallhavenExtractor.__init__(self, match)
self.params = text.parse_query(match.group(1))
def wallpapers(self):
return self.api.search(self.params.copy())
def metadata(self):
return {"search": self.params}
class WallhavenCollectionExtractor(WallhavenExtractor):
"""Extractor for a collection on wallhaven.cc"""
subcategory = "collection"
directory_fmt = ("{category}", "{username}", "{collection_id}")
pattern = r"(?:https?://)?wallhaven\.cc/user/([^/?#]+)/favorites/(\d+)"
test = ("https://wallhaven.cc/user/AksumkA/favorites/74", {
"count": ">= 50",
})
def __init__(self, match):
WallhavenExtractor.__init__(self, match)
self.username, self.collection_id = match.groups()
def wallpapers(self):
return self.api.collection(self.username, self.collection_id)
def metadata(self):
return {"username": self.username, "collection_id": self.collection_id}
class WallhavenUserExtractor(WallhavenExtractor):
"""Extractor for a wallhaven user"""
subcategory = "user"
pattern = r"(?:https?://)?wallhaven\.cc/user/([^/?#]+)/?$"
test = ("https://wallhaven.cc/user/AksumkA/",)
def __init__(self, match):
WallhavenExtractor.__init__(self, match)
self.username = match.group(1)
def items(self):
base = "{}/user/{}/".format(self.root, self.username)
return self._dispatch_extractors((
(WallhavenUploadsExtractor , base + "uploads"),
(WallhavenCollectionsExtractor, base + "favorites"),
), ("uploads",))
class WallhavenCollectionsExtractor(WallhavenExtractor):
"""Extractor for all collections of a wallhaven user"""
subcategory = "collections"
pattern = r"(?:https?://)?wallhaven\.cc/user/([^/?#]+)/favorites/?$"
test = ("https://wallhaven.cc/user/AksumkA/favorites", {
"pattern": WallhavenCollectionExtractor.pattern,
"count": 4,
})
def __init__(self, match):
WallhavenExtractor.__init__(self, match)
self.username = match.group(1)
def items(self):
for collection in self.api.collections(self.username):
collection["_extractor"] = WallhavenCollectionExtractor
url = "https://wallhaven.cc/user/{}/favorites/{}".format(
self.username, collection["id"])
yield Message.Queue, url, collection
class WallhavenUploadsExtractor(WallhavenExtractor):
"""Extractor for all uploads of a wallhaven user"""
subcategory = "uploads"
directory_fmt = ("{category}", "{username}")
archive_fmt = "u_{username}_{id}"
pattern = r"(?:https?://)?wallhaven\.cc/user/([^/?#]+)/uploads"
test = ("https://wallhaven.cc/user/AksumkA/uploads", {
"pattern": (r"https://[^.]+\.wallhaven\.cc"
r"/full/\w\w/wallhaven-\w+\.\w+"),
"range": "1-100",
"count": 100,
})
def __init__(self, match):
WallhavenExtractor.__init__(self, match)
self.username = match.group(1)
def wallpapers(self):
params = {"q": "@" + self.username}
return self.api.search(params.copy())
def metadata(self):
return {"username": self.username}
class WallhavenImageExtractor(WallhavenExtractor):
"""Extractor for individual wallpaper on wallhaven.cc"""
subcategory = "image"
pattern = (r"(?:https?://)?(?:wallhaven\.cc/w/|whvn\.cc/"
r"|w\.wallhaven\.cc/[a-z]+/\w\w/wallhaven-)(\w+)")
test = (
("https://wallhaven.cc/w/01w334", {
"pattern": (r"https://[^.]+\.wallhaven\.cc"
r"/full/01/wallhaven-01w334\.jpg"),
"content": "497212679383a465da1e35bd75873240435085a2",
"keyword": {
"id" : "01w334",
"width" : 1920,
"height" : 1200,
"resolution" : "1920x1200",
"ratio" : "1.6",
"colors" : list,
"tags" : list,
"file_size" : 278799,
"file_type" : "image/jpeg",
"purity" : "sfw",
"short_url" : "https://whvn.cc/01w334",
"source" : str,
"uploader" : {
"group" : "Owner/Developer",
"username" : "AksumkA",
},
"date" : "dt:2014-08-31 06:17:19",
"wh_category": "anime",
"views" : int,
"favorites" : int,
},
}),
# NSFW
("https://wallhaven.cc/w/dge6v3", {
"url": "e4b802e70483f659d790ad5d0bd316245badf2ec",
}),
("https://whvn.cc/01w334"),
("https://w.wallhaven.cc/full/01/wallhaven-01w334.jpg"),
)
def __init__(self, match):
WallhavenExtractor.__init__(self, match)
self.wallpaper_id = match.group(1)
def wallpapers(self):
return (self.api.info(self.wallpaper_id),)
class WallhavenAPI():
"""Interface for wallhaven's API
Ref: https://wallhaven.cc/help/api
"""
def __init__(self, extractor):
self.extractor = extractor
key = extractor.config("api-key")
if key is None:
key = "25HYZenXTICjzBZXzFSg98uJtcQVrDs2"
extractor.log.debug("Using default API Key")
else:
extractor.log.debug("Using custom API Key")
self.headers = {"X-API-Key": key}
def info(self, wallpaper_id):
endpoint = "/v1/w/" + wallpaper_id
return self._call(endpoint)["data"]
def collection(self, username, collection_id):
endpoint = "/v1/collections/{}/{}".format(username, collection_id)
return self._pagination(endpoint)
def collections(self, username):
endpoint = "/v1/collections/" + username
return self._pagination(endpoint, metadata=False)
def search(self, params):
endpoint = "/v1/search"
return self._pagination(endpoint, params)
def _call(self, endpoint, params=None):
url = "https://wallhaven.cc/api" + endpoint
while True:
response = self.extractor.request(
url, params=params, headers=self.headers, fatal=None)
if response.status_code < 400:
return response.json()
if response.status_code == 429:
self.extractor.wait(seconds=60)
continue
self.extractor.log.debug("Server response: %s", response.text)
raise exception.StopExtraction(
"API request failed (%s: %s)",
response.status_code, response.reason)
def _pagination(self, endpoint, params=None, metadata=None):
if params is None:
params = {}
if metadata is None:
metadata = self.extractor.config("metadata")
while True:
data = self._call(endpoint, params)
if metadata:
for wp in data["data"]:
yield self.info(str(wp["id"]))
else:
yield from data["data"]
meta = data.get("meta")
if not meta or meta["current_page"] >= meta["last_page"]:
return
params["page"] = meta["current_page"] + 1