-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
"batoto", | ||
"bbc", | ||
"behance", | ||
"bilibili", | ||
"blogger", | ||
"bluesky", | ||
"boosty", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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"] |