rsshub
Version:
Make RSS Great Again!
77 lines (76 loc) • 3.34 kB
JavaScript
import { t as config } from "./config-CCmw1BNE.mjs";
import { t as got_default } from "./got-BTowW50G.mjs";
import { t as InvalidParameterError } from "./invalid-parameter-CGxhjomn.mjs";
import { t as ConfigNotFoundError } from "./config-not-found-fQ5mxvDU.mjs";
import { t as cache_default } from "./cache-BN4NpNc7.mjs";
//#region lib/routes/bilibili/followings.ts
const route = {
path: "/user/followings/:uid/:loginUid",
categories: ["social-media"],
example: "/bilibili/user/followings/2267573/3",
parameters: {
uid: "用户 id, 可在 UP 主主页中找到",
loginUid: "用于登入的用户id,需要配置对应的 Cookie 值"
},
features: {
requireConfig: [{
name: "BILIBILI_COOKIE_*",
description: `BILIBILI_COOKIE_{uid}: 用于用户关注动态系列路由,对应 uid 的 b 站用户登录后的 Cookie 值,\`{uid}\` 替换为 uid,如 \`BILIBILI_COOKIE_2267573\`,获取方式:
1. 打开 [https://api.vc.bilibili.com/dynamic_svr/v1/dynamic_svr/dynamic_new?uid=0&type=8](https://api.vc.bilibili.com/dynamic_svr/v1/dynamic_svr/dynamic_new?uid=0&type=8)
2. 打开控制台,切换到 Network 面板,刷新
3. 点击 dynamic_new 请求,找到 Cookie
4. 视频和专栏,UP 主粉丝及关注只要求 \`SESSDATA\` 字段,动态需复制整段 Cookie`
}],
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{
source: ["space.bilibili.com/:uid"],
target: "/user/followings/:uid"
}],
name: "UP 主关注用户",
maintainers: ["Qixingchen"],
handler,
description: `::: warning
UP 主关注用户现在需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
:::`
};
async function handler(ctx) {
const loginUid = ctx.req.param("loginUid");
const cookie = config.bilibili.cookies[loginUid];
if (cookie === void 0) throw new ConfigNotFoundError("缺少对应 loginUid 的 Bilibili 用户登录后的 Cookie 值 <a href=\"https://docs.rsshub.app/zh/deploy/config#route-specific-configurations\">bilibili 用户关注动态系列路由</a>");
const uid = ctx.req.param("uid");
const name = await cache_default.getUsernameFromUID(uid);
const count = (await got_default({
method: "get",
url: `https://api.bilibili.com/x/relation/stat?vmid=${uid}`,
headers: { Referer: `https://space.bilibili.com/${uid}/` }
})).data.data.following;
const response = await got_default({
method: "get",
url: `https://api.bilibili.com/x/relation/followings?vmid=${uid}`,
headers: {
Referer: `https://space.bilibili.com/${uid}/`,
Cookie: cookie
}
});
if (response.data.code === -6) throw new ConfigNotFoundError("对应 loginUid 的 Bilibili 用户的 Cookie 已过期");
if (response.data.code === 22115) throw new InvalidParameterError(response.data.message);
const data = response.data.data.list;
return {
title: `${name} 的 bilibili 关注`,
link: `https://space.bilibili.com/${uid}/#/fans/follow`,
description: `${name} 的 bilibili 关注`,
item: data.map((item) => ({
title: `${name} 新关注 ${item.uname}`,
description: `${item.uname}<br>${item.sign}<br>总计${count}`,
pubDate: /* @__PURE__ */ new Date(item.mtime * 1e3),
link: `https://space.bilibili.com/${item.mid}`
}))
};
}
//#endregion
export { route };