mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-21 18:22:30 +01:00
[bilibili] initial support (#2824)
This commit is contained in:
parent
1ddbcda58b
commit
6eef3e3495
@ -30,6 +30,7 @@ modules = [
|
||||
"batoto",
|
||||
"bbc",
|
||||
"behance",
|
||||
"bilibili",
|
||||
"blogger",
|
||||
"bluesky",
|
||||
"boosty",
|
||||
|
102
gallery_dl/extractor/bilibili.py
Normal file
102
gallery_dl/extractor/bilibili.py
Normal file
@ -0,0 +1,102 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright 2024 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://www.bilibili.com/"""
|
||||
|
||||
from .common import Extractor, Message
|
||||
from .. import text, exception
|
||||
|
||||
|
||||
class BilibiliExtractor(Extractor):
|
||||
"""Base class for bilibili extractors"""
|
||||
category = "bilibili"
|
||||
root = "https://www.bilibili.com"
|
||||
|
||||
def __init__(self, match):
|
||||
Extractor.__init__(self, match)
|
||||
self.item = match.group(match.lastindex)
|
||||
|
||||
def _init(self):
|
||||
self.api = BilibiliAPI(self)
|
||||
|
||||
|
||||
class BilibiliUserArticlesExtractor(BilibiliExtractor):
|
||||
"""Extractor for all articles of an user"""
|
||||
subcategory = "user"
|
||||
pattern = r"(?:https?://)?space\.bilibili\.com/(\d+)/article"
|
||||
example = "https://space.bilibili.com/12345/article"
|
||||
|
||||
def items(self):
|
||||
for article in self.api.user_articles(self.item):
|
||||
article["_extractor"] = BilibiliArticleExtractor
|
||||
url = "{}/opus/{}".format(self.root, article["opus_id"])
|
||||
yield Message.Queue, url, article
|
||||
|
||||
|
||||
class BilibiliArticleExtractor(BilibiliExtractor):
|
||||
"""Extractor for images from an article"""
|
||||
subcategory = "article"
|
||||
pattern = (r"(?:https?://)?"
|
||||
r"(?:t\.bilibili\.com|(?:www\.)?bilibili.com/opus)/(\d+)")
|
||||
example = "https://www.bilibili.com/opus/12345"
|
||||
directory_fmt = ("{category}", "{username}")
|
||||
filename_fmt = "{id}_{num}.{extension}"
|
||||
archive_fmt = "{id}_{num}"
|
||||
|
||||
def items(self):
|
||||
article = self.api.article(self.item)
|
||||
article["username"] = article["modules"]["module_author"]["name"]
|
||||
article["id"] = article["id_str"]
|
||||
|
||||
dynamic_major = article["modules"]["module_dynamic"]["major"]
|
||||
if dynamic_major["type"] == "MAJOR_TYPE_OPUS":
|
||||
urls = [pic["url"] for pic in dynamic_major["opus"]["pics"]]
|
||||
else:
|
||||
urls = []
|
||||
self.log.warning("%s: Unsupported article type '%s'",
|
||||
article["id"], dynamic_major["type"])
|
||||
|
||||
yield Message.Directory, article
|
||||
for article["num"], url in enumerate(urls, 1):
|
||||
yield Message.Url, url, text.nameext_from_url(url, article)
|
||||
|
||||
|
||||
class BilibiliAPI():
|
||||
def __init__(self, extractor: BilibiliExtractor):
|
||||
self.extractor = extractor
|
||||
|
||||
def _call(self, endpoint, params):
|
||||
url = "https://api.bilibili.com/x/polymer/web-dynamic/v1" + endpoint
|
||||
response = self.extractor.request(url, params=params).json()
|
||||
|
||||
if response["code"] != 0:
|
||||
raise exception.StopExtraction("API request failed")
|
||||
|
||||
return response
|
||||
|
||||
def user_articles(self, user_id):
|
||||
endpoint = "/opus/feed/space"
|
||||
params = {"host_mid": user_id}
|
||||
|
||||
while True:
|
||||
data = self._call(endpoint, params)
|
||||
|
||||
for item in data["data"]["items"]:
|
||||
params["offset"] = item["opus_id"]
|
||||
yield item
|
||||
|
||||
if not data["data"]["has_more"]:
|
||||
break
|
||||
|
||||
def article(self, article_id):
|
||||
endpoint = "/detail"
|
||||
params = {
|
||||
"id": article_id,
|
||||
"features": "itemOpusStyle",
|
||||
}
|
||||
return self._call(endpoint, params)["data"]["item"]
|
Loading…
Reference in New Issue
Block a user