index.js 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. const axios_1 = require("axios");
  4. const dayjs = require("dayjs");
  5. const he = require("he");
  6. const CryptoJs = require("crypto-js");
  7. const { load } = require('cheerio');
  8. const headers = {
  9. "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 Edg/89.0.774.63",
  10. accept: "*/*",
  11. "accept-encoding": "gzip, deflate, br",
  12. "accept-language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6",
  13. };
  14. let cookie;
  15. async function getCid(bvid, aid) {
  16. const params = bvid
  17. ? {
  18. bvid: bvid,
  19. }
  20. : {
  21. aid: aid,
  22. };
  23. const cidRes = (await axios_1.default.get("https://api.bilibili.com/x/web-interface/view?%s", {
  24. headers: headers,
  25. params: params,
  26. })).data;
  27. return cidRes;
  28. }
  29. function durationToSec(duration) {
  30. if (typeof duration === "number") {
  31. return duration;
  32. }
  33. if (typeof duration === "string") {
  34. var dur = duration.split(":");
  35. return dur.reduce(function (prev, curr) {
  36. return 60 * prev + +curr;
  37. }, 0);
  38. }
  39. return 0;
  40. }
  41. const searchHeaders = {
  42. "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 Edg/89.0.774.63",
  43. accept: "application/json, text/plain, */*",
  44. "accept-encoding": "gzip, deflate, br",
  45. origin: "https://search.bilibili.com",
  46. "sec-fetch-site": "same-site",
  47. "sec-fetch-mode": "cors",
  48. "sec-fetch-dest": "empty",
  49. referer: "https://search.bilibili.com/",
  50. "accept-language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6",
  51. };
  52. async function getCookie() {
  53. if (!cookie) {
  54. cookie = (await axios_1.default.get("https://api.bilibili.com/x/frontend/finger/spi", {
  55. headers: {
  56. "User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1 Edg/114.0.0.0",
  57. },
  58. })).data.data;
  59. }
  60. }
  61. const pageSize = 20;
  62. async function searchBase(keyword, page, searchType) {
  63. await getCookie();
  64. const params = {
  65. context: "",
  66. page: page,
  67. order: "",
  68. page_size: pageSize,
  69. keyword: keyword,
  70. duration: "",
  71. tids_1: "",
  72. tids_2: "",
  73. __refresh__: true,
  74. _extra: "",
  75. highlight: 1,
  76. single_column: 0,
  77. platform: "pc",
  78. from_source: "",
  79. search_type: searchType,
  80. dynamic_offset: 0,
  81. };
  82. const res = (await axios_1.default.get("https://api.bilibili.com/x/web-interface/search/type", {
  83. headers: Object.assign(Object.assign({}, searchHeaders), { cookie: `buvid3=${cookie.b_3};buvid4=${cookie.b_4}` }),
  84. params: params,
  85. })).data;
  86. return res.data;
  87. }
  88. async function getFavoriteList(id) {
  89. const result = [];
  90. const pageSize = 20;
  91. let page = 1;
  92. while (true) {
  93. try {
  94. const { data: { data: { medias, has_more }, }, } = await axios_1.default.get("https://api.bilibili.com/x/v3/fav/resource/list", {
  95. params: {
  96. media_id: id,
  97. platform: "web",
  98. ps: pageSize,
  99. pn: page,
  100. },
  101. });
  102. result.push(...medias);
  103. if (!has_more) {
  104. break;
  105. }
  106. page += 1;
  107. }
  108. catch (error) {
  109. console.warn(error);
  110. break;
  111. }
  112. }
  113. return result;
  114. }
  115. function formatMedia(result) {
  116. var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
  117. const title = he.decode((_b = (_a = result.title) === null || _a === void 0 ? void 0 : _a.replace(/(\<em(.*?)\>)|(\<\/em\>)/g, "")) !== null && _b !== void 0 ? _b : "");
  118. return {
  119. id: (_d = (_c = result.cid) !== null && _c !== void 0 ? _c : result.bvid) !== null && _d !== void 0 ? _d : result.aid,
  120. aid: result.aid,
  121. bvid: result.bvid,
  122. artist: (_e = result.author) !== null && _e !== void 0 ? _e : (_f = result.owner) === null || _f === void 0 ? void 0 : _f.name,
  123. title,
  124. alias: (_g = title.match(/《(.+?)》/)) === null || _g === void 0 ? void 0 : _g[1],
  125. album: (_h = result.bvid) !== null && _h !== void 0 ? _h : result.aid,
  126. artwork: ((_j = result.pic) === null || _j === void 0 ? void 0 : _j.startsWith("//"))
  127. ? "http:".concat(result.pic)
  128. : result.pic,
  129. duration: durationToSec(result.duration),
  130. tags: (_k = result.tag) === null || _k === void 0 ? void 0 : _k.split(","),
  131. date: dayjs.unix(result.pubdate || result.created).format("YYYY-MM-DD"),
  132. };
  133. }
  134. async function searchAlbum(keyword, page) {
  135. const resultData = await searchBase(keyword, page, "video");
  136. const albums = resultData.result.map(formatMedia);
  137. return {
  138. isEnd: resultData.numResults <= page * pageSize,
  139. data: albums,
  140. };
  141. }
  142. async function searchArtist(keyword, page) {
  143. const resultData = await searchBase(keyword, page, "bili_user");
  144. const artists = resultData.result.map((result) => {
  145. var _a;
  146. return ({
  147. name: result.uname,
  148. id: result.mid,
  149. fans: result.fans,
  150. description: result.usign,
  151. avatar: ((_a = result.upic) === null || _a === void 0 ? void 0 : _a.startsWith("//"))
  152. ? `https://${result.upic}`
  153. : result.upic,
  154. worksNum: result.videos,
  155. });
  156. });
  157. return {
  158. isEnd: resultData.numResults <= page * pageSize,
  159. data: artists,
  160. };
  161. }
  162. function getMixinKey(e) {
  163. var t = [];
  164. return ([
  165. 46, 47, 18, 2, 53, 8, 23, 32, 15, 50, 10, 31, 58, 3, 45, 35, 27, 43, 5,
  166. 49, 33, 9, 42, 19, 29, 28, 14, 39, 12, 38, 41, 13, 37, 48, 7, 16, 24, 55,
  167. 40, 61, 26, 17, 0, 1, 60, 51, 30, 4, 22, 25, 54, 21, 56, 59, 6, 63, 57,
  168. 62, 11, 36, 20, 34, 44, 52,
  169. ].forEach(function (r) {
  170. e.charAt(r) && t.push(e.charAt(r));
  171. }),
  172. t.join("").slice(0, 32));
  173. }
  174. function hmacSha256(key, message) {
  175. const hmac = CryptoJs.HmacSHA256(message, key);
  176. return hmac.toString(CryptoJs.enc.Hex);
  177. }
  178. async function getBiliTicket(csrf) {
  179. const ts = Math.floor(Date.now() / 1000);
  180. const hexSign = hmacSha256('XgwSnGZ1p', `ts${ts}`);
  181. const url = 'https://api.bilibili.com/bapis/bilibili.api.ticket.v1.Ticket/GenWebTicket';
  182. try {
  183. const response = await axios_1.default.post(url, null, {
  184. params: {
  185. key_id: 'ec02',
  186. hexsign: hexSign,
  187. 'context[ts]': ts,
  188. csrf: csrf || ''
  189. },
  190. headers: {
  191. 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0'
  192. }
  193. });
  194. const data = await response.data;
  195. return data.data;
  196. }
  197. catch (e) {
  198. throw e;
  199. }
  200. }
  201. let img, sub, syncedTime;
  202. async function getWBIKeys() {
  203. if (img && sub && syncedTime && syncedTime.getDate() === (new Date()).getDate()) {
  204. return {
  205. img,
  206. sub
  207. };
  208. }
  209. else {
  210. const data = await getBiliTicket('');
  211. img = data.nav.img;
  212. img = img.slice(img.lastIndexOf('/') + 1, img.lastIndexOf('.'));
  213. sub = data.nav.sub;
  214. sub = sub.slice(sub.lastIndexOf('/') + 1, sub.lastIndexOf('.'));
  215. syncedTime = new Date();
  216. return {
  217. img,
  218. sub
  219. };
  220. }
  221. }
  222. async function getRid(params) {
  223. const wbiKeys = await getWBIKeys();
  224. const npi = wbiKeys.img + wbiKeys.sub;
  225. const o = getMixinKey(npi);
  226. const l = Object.keys(params).sort();
  227. let c = [];
  228. for (let d = 0, u = /[!'\(\)*]/g; d < l.length; ++d) {
  229. let [h, p] = [l[d], params[l[d]]];
  230. p && "string" == typeof p && (p = p.replace(u, "")),
  231. null != p &&
  232. c.push("".concat(encodeURIComponent(h), "=").concat(encodeURIComponent(p)));
  233. }
  234. const f = c.join("&");
  235. const w_rid = CryptoJs.MD5(f + o).toString();
  236. return w_rid;
  237. }
  238. let w_webid;
  239. let w_webid_date;
  240. async function getWWebId(id) {
  241. if (w_webid && w_webid_date && (Date.now() - w_webid_date.getTime() < 1000 * 60 * 60)) {
  242. return w_webid;
  243. }
  244. const html = (await axios_1.default.get("https://space.bilibili.com/" + id, {
  245. headers: {
  246. "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 Edg/89.0.774.63",
  247. }
  248. })).data;
  249. const $ = load(html);
  250. const content = $("#__RENDER_DATA__").text();
  251. const jsonContent = JSON.parse(decodeURIComponent(content));
  252. w_webid = jsonContent.access_id;
  253. w_webid_date = new Date();
  254. return w_webid;
  255. }
  256. async function getArtistWorks(artistItem, page, type) {
  257. const queryHeaders = {
  258. "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 Edg/89.0.774.63",
  259. accept: "*/*",
  260. "accept-encoding": "gzip, deflate, br, zstd",
  261. origin: "https://space.bilibili.com",
  262. "sec-fetch-site": "same-site",
  263. "sec-fetch-mode": "cors",
  264. "sec-fetch-dest": "empty",
  265. referer: `https://space.bilibili.com/${artistItem.id}/video`,
  266. };
  267. await getCookie();
  268. const w_webid = await getWWebId(artistItem.id);
  269. const now = Math.round(Date.now() / 1e3);
  270. const params = {
  271. mid: artistItem.id,
  272. ps: 30,
  273. tid: 0,
  274. pn: page,
  275. web_location: 1550101,
  276. order_avoided: true,
  277. order: "pubdate",
  278. keyword: "",
  279. platform: "web",
  280. dm_img_list: "[]",
  281. dm_img_str: "V2ViR0wgMS4wIChPcGVuR0wgRVMgMi4wIENocm9taXVtKQ",
  282. dm_cover_img_str: "QU5HTEUgKE5WSURJQSwgTlZJRElBIEdlRm9yY2UgR1RYIDE2NTAgKDB4MDAwMDFGOTEpIERpcmVjdDNEMTEgdnNfNV8wIHBzXzVfMCwgRDNEMTEpR29vZ2xlIEluYy4gKE5WSURJQS",
  283. dm_img_inter: '{"ds":[],"wh":[0,0,0],"of":[0,0,0]}',
  284. w_webid: w_webid,
  285. wts: now.toString(),
  286. };
  287. const w_rid = await getRid(params);
  288. const res = (await axios_1.default.get("https://api.bilibili.com/x/space/wbi/arc/search", {
  289. headers: Object.assign(Object.assign({}, queryHeaders), { cookie: `buvid3=${cookie.b_3};buvid4=${cookie.b_4}` }),
  290. params: Object.assign(Object.assign({}, params), { w_rid }),
  291. })).data;
  292. console.log(res);
  293. const resultData = res.data;
  294. const albums = resultData.list.vlist.map(formatMedia);
  295. return {
  296. isEnd: resultData.page.pn * resultData.page.ps >= resultData.page.count,
  297. data: albums,
  298. };
  299. }
  300. async function getMediaSource(musicItem, quality) {
  301. var _a;
  302. let cid = musicItem.cid;
  303. if (!cid) {
  304. cid = (await getCid(musicItem.bvid, musicItem.aid)).data.cid;
  305. }
  306. const _params = musicItem.bvid
  307. ? {
  308. bvid: musicItem.bvid,
  309. }
  310. : {
  311. aid: musicItem.aid,
  312. };
  313. const res = (await axios_1.default.get("https://api.bilibili.com/x/player/playurl", {
  314. headers: headers,
  315. params: Object.assign(Object.assign({}, _params), { cid: cid, fnval: 16 }),
  316. })).data;
  317. let url;
  318. if (res.data.dash) {
  319. const audios = res.data.dash.audio;
  320. audios.sort((a, b) => a.bandwidth - b.bandwidth);
  321. switch (quality) {
  322. case "low":
  323. url = audios[0].baseUrl;
  324. break;
  325. case "standard":
  326. url = audios[1].baseUrl;
  327. break;
  328. case "high":
  329. url = audios[2].baseUrl;
  330. break;
  331. case "super":
  332. url = audios[3].baseUrl;
  333. break;
  334. }
  335. }
  336. else {
  337. url = res.data.durl[0].url;
  338. }
  339. const hostUrl = url.substring(url.indexOf("/") + 2);
  340. const _headers = {
  341. "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 Edg/89.0.774.63",
  342. accept: "*/*",
  343. host: hostUrl.substring(0, hostUrl.indexOf("/")),
  344. "accept-encoding": "gzip, deflate, br",
  345. connection: "keep-alive",
  346. referer: "https://www.bilibili.com/video/".concat((_a = (musicItem.bvid !== null && musicItem.bvid !== undefined
  347. ? musicItem.bvid
  348. : musicItem.aid)) !== null && _a !== void 0 ? _a : ""),
  349. };
  350. return {
  351. url: url,
  352. headers: _headers,
  353. };
  354. }
  355. async function getTopLists() {
  356. const precious = {
  357. title: "入站必刷",
  358. data: [
  359. {
  360. id: "popular/precious?page_size=100&page=1",
  361. title: "入站必刷",
  362. coverImg: "https://s1.hdslb.com/bfs/static/jinkela/popular/assets/icon_history.png",
  363. },
  364. ],
  365. };
  366. const weekly = {
  367. title: "每周必看",
  368. data: [],
  369. };
  370. const weeklyRes = await axios_1.default.get("https://api.bilibili.com/x/web-interface/popular/series/list", {
  371. headers: {
  372. "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36",
  373. },
  374. });
  375. weekly.data = weeklyRes.data.data.list.slice(0, 8).map((e) => ({
  376. id: `popular/series/one?number=${e.number}`,
  377. title: e.subject,
  378. description: e.name,
  379. coverImg: "https://s1.hdslb.com/bfs/static/jinkela/popular/assets/icon_weekly.png",
  380. }));
  381. const boardKeys = [
  382. {
  383. id: "ranking/v2?rid=0&type=all",
  384. title: "全站",
  385. },
  386. {
  387. id: "ranking/v2?rid=3&type=all",
  388. title: "音乐",
  389. },
  390. {
  391. id: "ranking/v2?rid=1&type=all",
  392. title: "动画",
  393. },
  394. {
  395. id: "ranking/v2?rid=119&type=all",
  396. title: "鬼畜",
  397. },
  398. {
  399. id: "ranking/v2?rid=168&type=all",
  400. title: "国创相关",
  401. },
  402. {
  403. id: "ranking/v2?rid=129&type=all",
  404. title: "舞蹈",
  405. },
  406. {
  407. id: "ranking/v2?rid=4&type=all",
  408. title: "游戏",
  409. },
  410. {
  411. id: "ranking/v2?rid=36&type=all",
  412. title: "知识",
  413. },
  414. {
  415. id: "ranking/v2?rid=188&type=all",
  416. title: "科技",
  417. },
  418. {
  419. id: "ranking/v2?rid=234&type=all",
  420. title: "运动",
  421. },
  422. {
  423. id: "ranking/v2?rid=223&type=all",
  424. title: "汽车",
  425. },
  426. {
  427. id: "ranking/v2?rid=160&type=all",
  428. title: "生活",
  429. },
  430. {
  431. id: "ranking/v2?rid=211&type=all",
  432. title: "美食",
  433. },
  434. {
  435. id: "ranking/v2?rid=217&type=all",
  436. title: "动物圈",
  437. },
  438. {
  439. id: "ranking/v2?rid=155&type=all",
  440. title: "时尚",
  441. },
  442. {
  443. id: "ranking/v2?rid=5&type=all",
  444. title: "娱乐",
  445. },
  446. {
  447. id: "ranking/v2?rid=181&type=all",
  448. title: "影视",
  449. },
  450. {
  451. id: "ranking/v2?rid=0&type=origin",
  452. title: "原创",
  453. },
  454. {
  455. id: "ranking/v2?rid=0&type=rookie",
  456. title: "新人",
  457. },
  458. ];
  459. const board = {
  460. title: "排行榜",
  461. data: boardKeys.map((_) => (Object.assign(Object.assign({}, _), { coverImg: "https://s1.hdslb.com/bfs/static/jinkela/popular/assets/icon_rank.png" }))),
  462. };
  463. return [weekly, precious, board];
  464. }
  465. async function getTopListDetail(topListItem) {
  466. const res = await axios_1.default.get(`https://api.bilibili.com/x/web-interface/${topListItem.id}`, {
  467. headers: Object.assign(Object.assign({}, headers), { referer: "https://www.bilibili.com/" }),
  468. });
  469. return Object.assign(Object.assign({}, topListItem), { musicList: res.data.data.list.map(formatMedia) });
  470. }
  471. async function importMusicSheet(urlLike) {
  472. var _a, _b, _c, _d;
  473. let id;
  474. if (!id) {
  475. id = (_a = urlLike.match(/^\s*(\d+)\s*$/)) === null || _a === void 0 ? void 0 : _a[1];
  476. }
  477. if (!id) {
  478. id = (_b = urlLike.match(/^(?:.*)fid=(\d+).*$/)) === null || _b === void 0 ? void 0 : _b[1];
  479. }
  480. if (!id) {
  481. id = (_c = urlLike.match(/\/playlist\/pl(\d+)/i)) === null || _c === void 0 ? void 0 : _c[1];
  482. }
  483. if (!id) {
  484. id = (_d = urlLike.match(/\/list\/ml(\d+)/i)) === null || _d === void 0 ? void 0 : _d[1];
  485. }
  486. if (!id) {
  487. return;
  488. }
  489. const musicSheet = await getFavoriteList(id);
  490. return musicSheet.map((_) => {
  491. var _a, _b;
  492. return ({
  493. id: _.id,
  494. aid: _.aid,
  495. bvid: _.bvid,
  496. artwork: _.cover,
  497. title: _.title,
  498. artist: (_a = _.upper) === null || _a === void 0 ? void 0 : _a.name,
  499. album: (_b = _.bvid) !== null && _b !== void 0 ? _b : _.aid,
  500. duration: durationToSec(_.duration),
  501. });
  502. });
  503. }
  504. function formatComment(item) {
  505. var _a, _b, _c, _d, _e;
  506. return {
  507. id: item.rpid,
  508. nickName: (_a = item.member) === null || _a === void 0 ? void 0 : _a.uname,
  509. avatar: (_b = item.member) === null || _b === void 0 ? void 0 : _b.avatar,
  510. comment: (_c = item.content) === null || _c === void 0 ? void 0 : _c.message,
  511. like: item.like,
  512. createAt: item.ctime * 1000,
  513. location: ((_e = (_d = item.reply_control) === null || _d === void 0 ? void 0 : _d.location) === null || _e === void 0 ? void 0 : _e.startsWith("IP属地:")) ? item.reply_control.location.slice(5) : undefined
  514. };
  515. }
  516. async function getMusicComments(musicItem) {
  517. var _a, _b;
  518. const params = {
  519. type: 1,
  520. mode: 3,
  521. oid: musicItem.aid,
  522. plat: 1,
  523. web_location: 1315875,
  524. wts: Math.floor(Date.now() / 1000)
  525. };
  526. const w_rid = await getRid(params);
  527. const res = (await (axios_1.default.get("https://api.bilibili.com/x/v2/reply/wbi/main", {
  528. params: Object.assign(Object.assign({}, params), { w_rid })
  529. }))).data;
  530. const data = res.data.replies;
  531. const comments = [];
  532. for (let i = 0; i < data.length; ++i) {
  533. comments[i] = formatComment(data[i]);
  534. if ((_a = data[i].replies) === null || _a === void 0 ? void 0 : _a.length) {
  535. comments[i].replies = (_b = data[i]) === null || _b === void 0 ? void 0 : _b.replies.map(formatComment);
  536. }
  537. }
  538. return {
  539. isEnd: true,
  540. data: comments
  541. };
  542. }
  543. module.exports = {
  544. platform: "bilibili",
  545. appVersion: ">=0.0",
  546. version: "0.2.2",
  547. author: "猫头猫",
  548. cacheControl: "no-cache",
  549. srcUrl: "https://gitee.com/maotoumao/MusicFreePlugins/raw/v0.1/dist/bilibili/index.js",
  550. primaryKey: ["id", "aid", "bvid", "cid"],
  551. hints: {
  552. importMusicSheet: [
  553. "bilibili 移动端:APP点击我的,空间,右上角分享,复制链接,浏览器打开切换桌面版网站,点击播放全部视频,复制链接",
  554. "bilibili H5/PC端:复制收藏夹URL,或者直接输入ID即可",
  555. "非公开收藏夹无法导入,编辑收藏夹改为公开即可",
  556. "导入时间和歌单大小有关,请耐心等待",
  557. ],
  558. },
  559. supportedSearchType: ["music", "album", "artist"],
  560. async search(keyword, page, type) {
  561. if (type === "album" || type === "music") {
  562. return await searchAlbum(keyword, page);
  563. }
  564. if (type === "artist") {
  565. return await searchArtist(keyword, page);
  566. }
  567. },
  568. getMediaSource,
  569. async getAlbumInfo(albumItem) {
  570. var _a;
  571. const cidRes = await getCid(albumItem.bvid, albumItem.aid);
  572. const _ref2 = (_a = cidRes === null || cidRes === void 0 ? void 0 : cidRes.data) !== null && _a !== void 0 ? _a : {};
  573. const cid = _ref2.cid;
  574. const pages = _ref2.pages;
  575. let musicList;
  576. if (pages.length === 1) {
  577. musicList = [Object.assign(Object.assign({}, albumItem), { cid: cid })];
  578. }
  579. else {
  580. musicList = pages.map(function (_) {
  581. return Object.assign(Object.assign({}, albumItem), { cid: _.cid, title: _.part, duration: durationToSec(_.duration), id: _.cid });
  582. });
  583. }
  584. return {
  585. musicList,
  586. };
  587. },
  588. getArtistWorks,
  589. getTopLists,
  590. getTopListDetail,
  591. importMusicSheet,
  592. getMusicComments
  593. };