123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651 |
- import axios from "axios";
- import CryptoJs = require("crypto-js");
- const pageSize = 20;
- function formatMusicItem(_) {
- const albumid = _.albumid || _.album?.id;
- const albummid = _.albummid || _.album?.mid;
- const albumname = _.albumname || _.album?.title;
- return {
- id: _.id || _.songid,
- songmid: _.mid || _.songmid,
- title: _.title || _.songname,
- artist: _.singer.map((s) => s.name).join(", "),
- artwork: albummid
- ? `https://y.gtimg.cn/music/photo_new/T002R300x300M000${albummid}.jpg`
- : undefined,
- album: albumname,
- lrc: _.lyric || undefined,
- albumid: albumid,
- albummid: albummid,
- };
- }
- function formatAlbumItem(_) {
- return {
- id: _.albumID || _.albumid,
- albumMID: _.albumMID || _.album_mid,
- title: _.albumName || _.album_name,
- artwork:
- _.albumPic ||
- `https://y.gtimg.cn/music/photo_new/T002R300x300M000${
- _.albumMID || _.album_mid
- }.jpg`,
- date: _.publicTime || _.pub_time,
- singerID: _.singerID || _.singer_id,
- artist: _.singerName || _.singer_name,
- singerMID: _.singerMID || _.singer_mid,
- description: _.desc,
- };
- }
- function formatArtistItem(_) {
- return {
- name: _.singerName,
- id: _.singerID,
- singerMID: _.singerMID,
- avatar: _.singerPic,
- worksNum: _.songNum,
- };
- }
- const searchTypeMap = {
- 0: "song",
- 2: "album",
- 1: "singer",
- 3: "songlist",
- 7: "song", // 实际上是歌词
- 12: "mv",
- };
- const headers = {
- referer: "https://y.qq.com",
- "user-agent":
- "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36",
- Cookie: "uin=",
- };
- const validSongFilter = (item) => {
- return item.pay.pay_play === 0 || item.pay.payplay === 0;
- };
- async function searchBase(query, page, type) {
- const res = (
- await axios({
- url: "https://u.y.qq.com/cgi-bin/musicu.fcg",
- method: "POST",
- data: {
- req_1: {
- method: "DoSearchForQQMusicDesktop",
- module: "music.search.SearchCgiService",
- param: {
- num_per_page: pageSize,
- page_num: page,
- query: query,
- search_type: type,
- },
- },
- },
- headers: headers,
- xsrfCookieName: "XSRF-TOKEN",
- withCredentials: true,
- })
- ).data;
- return {
- isEnd: res.req_1.data.meta.sum <= page * pageSize,
- data: res.req_1.data.body[searchTypeMap[type]].list,
- };
- }
- async function searchMusic(query, page) {
- const songs = await searchBase(query, page, 0);
- return {
- isEnd: songs.isEnd,
- data: songs.data.filter(validSongFilter).map(formatMusicItem),
- };
- }
- async function searchAlbum(query, page) {
- const albums = await searchBase(query, page, 2);
- return {
- isEnd: albums.isEnd,
- data: albums.data.map(formatAlbumItem),
- };
- }
- async function searchArtist(query, page) {
- const artists = await searchBase(query, page, 1);
- return {
- isEnd: artists.isEnd,
- data: artists.data.map(formatArtistItem),
- };
- }
- async function searchMusicSheet(query, page) {
- const musicSheet = await searchBase(query, page, 3);
- return {
- isEnd: musicSheet.isEnd,
- data: musicSheet.data.map((item) => ({
- title: item.dissname,
- createAt: item.createtime,
- description: item.introduction,
- playCount: item.listennum,
- worksNums: item.song_count,
- artwork: item.imgurl,
- id: item.dissid,
- artist: item.creator.name,
- })),
- };
- }
- async function searchLyric(query, page) {
- const songs = await searchBase(query, page, 7);
- return {
- isEnd: songs.isEnd,
- data: songs.data.map((it) => ({
- ...formatMusicItem(it),
- rawLrcTxt: it.content,
- })),
- };
- }
- // searchLyric("玫瑰花", 1).then(console.log);
- function getQueryFromUrl(key, search) {
- try {
- const sArr = search.split("?");
- let s = "";
- if (sArr.length > 1) {
- s = sArr[1];
- } else {
- return key ? undefined : {};
- }
- const querys = s.split("&");
- const result = {};
- querys.forEach((item) => {
- const temp = item.split("=");
- result[temp[0]] = decodeURIComponent(temp[1]);
- });
- return key ? result[key] : result;
- } catch (err) {
- // 除去search为空等异常
- return key ? "" : {};
- }
- }
- // geturl
- function changeUrlQuery(obj, baseUrl) {
- const query = getQueryFromUrl(null, baseUrl);
- let url = baseUrl.split("?")[0];
- const newQuery = { ...query, ...obj };
- let queryArr = [];
- Object.keys(newQuery).forEach((key) => {
- if (newQuery[key] !== undefined && newQuery[key] !== "") {
- queryArr.push(`${key}=${encodeURIComponent(newQuery[key])}`);
- }
- });
- return `${url}?${queryArr.join("&")}`.replace(/\?$/, "");
- }
- const typeMap = {
- m4a: {
- s: "C400",
- e: ".m4a",
- },
- 128: {
- s: "M500",
- e: ".mp3",
- },
- 320: {
- s: "M800",
- e: ".mp3",
- },
- ape: {
- s: "A000",
- e: ".ape",
- },
- flac: {
- s: "F000",
- e: ".flac",
- },
- };
- async function getSourceUrl(id, type = "128") {
- const mediaId = id;
- let uin = "";
- const guid = (Math.random() * 10000000).toFixed(0);
- const typeObj = typeMap[type];
- const file = `${typeObj.s}${id}${mediaId}${typeObj.e}`;
- const url = changeUrlQuery(
- {
- "-": "getplaysongvkey",
- g_tk: 5381,
- loginUin: uin,
- hostUin: 0,
- format: "json",
- inCharset: "utf8",
- outCharset: "utf-8¬ice=0",
- platform: "yqq.json",
- needNewCode: 0,
- data: JSON.stringify({
- req_0: {
- module: "vkey.GetVkeyServer",
- method: "CgiGetVkey",
- param: {
- filename: [file],
- guid: guid,
- songmid: [id],
- songtype: [0],
- uin: uin,
- loginflag: 1,
- platform: "20",
- },
- },
- comm: {
- uin: uin,
- format: "json",
- ct: 19,
- cv: 0,
- authst: "",
- },
- }),
- },
- "https://u.y.qq.com/cgi-bin/musicu.fcg"
- );
- return (
- await axios({
- method: "GET",
- url: url,
- xsrfCookieName: "XSRF-TOKEN",
- withCredentials: true,
- })
- ).data;
- }
- async function getAlbumInfo(albumItem) {
- const url = changeUrlQuery(
- {
- data: JSON.stringify({
- comm: {
- ct: 24,
- cv: 10000,
- },
- albumSonglist: {
- method: "GetAlbumSongList",
- param: {
- albumMid: albumItem.albumMID,
- albumID: 0,
- begin: 0,
- num: 999,
- order: 2,
- },
- module: "music.musichallAlbum.AlbumSongList",
- },
- }),
- },
- "https://u.y.qq.com/cgi-bin/musicu.fcg?g_tk=5381&format=json&inCharset=utf8&outCharset=utf-8"
- );
- const res = (
- await axios({
- url: url,
- headers: headers,
- xsrfCookieName: "XSRF-TOKEN",
- withCredentials: true,
- })
- ).data;
- return {
- musicList: res.albumSonglist.data.songList
- .filter((_) => validSongFilter(_.songInfo))
- .map((item) => {
- const _ = item.songInfo;
- return formatMusicItem(_);
- }),
- };
- }
- async function getArtistSongs(artistItem, page) {
- const url = changeUrlQuery(
- {
- data: JSON.stringify({
- comm: {
- ct: 24,
- cv: 0,
- },
- singer: {
- method: "get_singer_detail_info",
- param: {
- sort: 5,
- singermid: artistItem.singerMID,
- sin: (page - 1) * pageSize,
- num: pageSize,
- },
- module: "music.web_singer_info_svr",
- },
- }),
- },
- "http://u.y.qq.com/cgi-bin/musicu.fcg"
- );
- const res = (
- await axios({
- url: url,
- method: "get",
- headers: headers,
- xsrfCookieName: "XSRF-TOKEN",
- withCredentials: true,
- })
- ).data;
- return {
- isEnd: res.singer.data.total_song <= page * pageSize,
- data: res.singer.data.songlist.filter(validSongFilter).map(formatMusicItem),
- };
- }
- async function getArtistAlbums(artistItem, page) {
- const url = changeUrlQuery(
- {
- data: JSON.stringify({
- comm: {
- ct: 24,
- cv: 0,
- },
- singerAlbum: {
- method: "get_singer_album",
- param: {
- singermid: artistItem.singerMID,
- order: "time",
- begin: (page - 1) * pageSize,
- num: pageSize / 1,
- exstatus: 1,
- },
- module: "music.web_singer_info_svr",
- },
- }),
- },
- "http://u.y.qq.com/cgi-bin/musicu.fcg"
- );
- const res = (
- await axios({
- url,
- method: "get",
- headers: headers,
- xsrfCookieName: "XSRF-TOKEN",
- withCredentials: true,
- })
- ).data;
- return {
- isEnd: res.singerAlbum.data.total <= page * pageSize,
- data: res.singerAlbum.data.list.map(formatAlbumItem),
- };
- }
- async function getArtistWorks(artistItem, page, type) {
- if (type === "music") {
- return getArtistSongs(artistItem, page);
- }
- if (type === "album") {
- return getArtistAlbums(artistItem, page);
- }
- }
- async function getLyric(musicItem) {
- const result = (
- await axios({
- url: `http://c.y.qq.com/lyric/fcgi-bin/fcg_query_lyric_new.fcg?songmid=${
- musicItem.songmid
- }&pcachetime=${new Date().getTime()}&g_tk=5381&loginUin=0&hostUin=0&inCharset=utf8&outCharset=utf-8¬ice=0&platform=yqq&needNewCode=0`,
- headers: { Referer: "https://y.qq.com", Cookie: "uin=" },
- method: "get",
- xsrfCookieName: "XSRF-TOKEN",
- withCredentials: true,
- })
- ).data;
- const res = JSON.parse(
- result.replace(/callback\(|MusicJsonCallback\(|jsonCallback\(|\)$/g, "")
- );
- return {
- rawLrc: CryptoJs.enc.Base64.parse(res.lyric).toString(CryptoJs.enc.Utf8),
- };
- }
- async function importMusicSheet(urlLike) {
- //
- let id;
- if (!id) {
- id = (urlLike.match(
- /https?:\/\/i\.y\.qq\.com\/n2\/m\/share\/details\/taoge\.html\?.*id=([0-9]+)/
- ) || [])[1];
- }
- if (!id) {
- id = (urlLike.match(/https?:\/\/y\.qq\.com\/n\/ryqq\/playlist\/([0-9]+)/) ||
- [])[1];
- }
- if (!id) {
- id = (urlLike.match(/^(\d+)$/) || [])[1];
- }
- if (!id) {
- return;
- }
- const result = (
- await axios({
- url: `http://c.y.qq.com/qzone/fcg-bin/fcg_ucc_getcdinfo_byids_cp.fcg?type=1&utf8=1&disstid=${id}&loginUin=0`,
- headers: { Referer: "https://y.qq.com/n/yqq/playlist", Cookie: "uin=" },
- method: "get",
- xsrfCookieName: "XSRF-TOKEN",
- withCredentials: true,
- })
- ).data;
- const res = JSON.parse(
- result.replace(/callback\(|MusicJsonCallback\(|jsonCallback\(|\)$/g, "")
- );
- return res.cdlist[0].songlist.filter(validSongFilter).map(formatMusicItem);
- }
- /// 榜单
- async function getTopLists() {
- const list = await axios({
- url: "https://u.y.qq.com/cgi-bin/musicu.fcg?_=1577086820633&data=%7B%22comm%22%3A%7B%22g_tk%22%3A5381%2C%22uin%22%3A123456%2C%22format%22%3A%22json%22%2C%22inCharset%22%3A%22utf-8%22%2C%22outCharset%22%3A%22utf-8%22%2C%22notice%22%3A0%2C%22platform%22%3A%22h5%22%2C%22needNewCode%22%3A1%2C%22ct%22%3A23%2C%22cv%22%3A0%7D%2C%22topList%22%3A%7B%22module%22%3A%22musicToplist.ToplistInfoServer%22%2C%22method%22%3A%22GetAll%22%2C%22param%22%3A%7B%7D%7D%7D",
- method: "get",
- headers: {
- Cookie: "uin=",
- },
- xsrfCookieName: "XSRF-TOKEN",
- withCredentials: true,
- });
- return list.data.topList.data.group.map((e) => ({
- title: e.groupName,
- data: e.toplist.map((_) => ({
- id: _.topId,
- description: _.intro,
- title: _.title,
- period: _.period,
- coverImg: _.headPicUrl || _.frontPicUrl,
- })),
- }));
- }
- async function getTopListDetail(topListItem: IMusicSheet.IMusicSheetItem) {
- const res = await axios({
- url: `https://u.y.qq.com/cgi-bin/musicu.fcg?g_tk=5381&data=%7B%22detail%22%3A%7B%22module%22%3A%22musicToplist.ToplistInfoServer%22%2C%22method%22%3A%22GetDetail%22%2C%22param%22%3A%7B%22topId%22%3A${
- topListItem.id
- }%2C%22offset%22%3A0%2C%22num%22%3A100%2C%22period%22%3A%22${
- topListItem.period ?? ""
- }%22%7D%7D%2C%22comm%22%3A%7B%22ct%22%3A24%2C%22cv%22%3A0%7D%7D`,
- method: "get",
- headers: {
- Cookie: "uin=",
- },
- xsrfCookieName: "XSRF-TOKEN",
- withCredentials: true,
- });
- return {
- ...topListItem,
- musicList: res.data.detail.data.songInfoList
- .filter(validSongFilter)
- .map(formatMusicItem),
- };
- }
- async function getRecommendSheetTags() {
- const res = (
- await axios.get(
- "https://c.y.qq.com/splcloud/fcgi-bin/fcg_get_diss_tag_conf.fcg?format=json&inCharset=utf8&outCharset=utf-8",
- {
- headers: {
- referer: "https://y.qq.com/",
- },
- }
- )
- ).data.data.categories;
- const data = res.slice(1).map((_) => ({
- title: _.categoryGroupName,
- data: _.items.map((tag) => ({
- id: tag.categoryId,
- title: tag.categoryName,
- })),
- }));
- const pinned = [];
- for (let d of data) {
- if (d.data.length) {
- pinned.push(d.data[0]);
- }
- }
- return {
- pinned,
- data,
- };
- }
- async function getRecommendSheetsByTag(tag, page) {
- const pageSize = 20;
- const rawRes = (
- await axios.get(
- "https://c.y.qq.com/splcloud/fcgi-bin/fcg_get_diss_by_tag.fcg",
- {
- headers: {
- referer: "https://y.qq.com/",
- },
- params: {
- inCharset: "utf8",
- outCharset: "utf-8",
- sortId: 5,
- categoryId: tag?.id || "10000000",
- sin: pageSize * (page - 1),
- ein: page * pageSize - 1,
- },
- }
- )
- ).data;
- const res = JSON.parse(
- rawRes.replace(/callback\(|MusicJsonCallback\(|jsonCallback\(|\)$/g, "")
- ).data;
- const isEnd = res.sum <= page * pageSize;
- const data = res.list.map((item) => ({
- id: item.dissid,
- createTime: item.createTime,
- title: item.dissname,
- artwork: item.imgurl,
- description: item.introduction,
- playCount: item.listennum,
- artist: item.creator?.name ?? "",
- }));
- return {
- isEnd,
- data,
- };
- }
- async function getMusicSheetInfo(sheet: IMusicSheet.IMusicSheetItem, page) {
- const data = await importMusicSheet(sheet.id);
- return {
- isEnd: true,
- musicList: data,
- };
- }
- // 接口参考:https://jsososo.github.io/QQMusicApi/#/
- module.exports = {
- platform: "QQ音乐",
- version: "0.2.1",
- srcUrl:
- "https://gitee.com/maotoumao/MusicFreePlugins/raw/v0.1/dist/qq/index.js",
- cacheControl: "no-cache",
- hints: {
- importMusicSheet: [
- "QQ音乐APP:自建歌单-分享-分享到微信好友/QQ好友;然后点开并复制链接,直接粘贴即可",
- "H5:复制URL并粘贴,或者直接输入纯数字歌单ID即可",
- "导入过程中会过滤掉所有VIP/试听/收费音乐,导入时间和歌单大小有关,请耐心等待",
- ],
- },
- primaryKey: ['id', 'songmid'],
- supportedSearchType: ["music", "album", "sheet", "artist", "lyric"],
- async search(query, page, type) {
- if (type === "music") {
- return await searchMusic(query, page);
- }
- if (type === "album") {
- return await searchAlbum(query, page);
- }
- if (type === "artist") {
- return await searchArtist(query, page);
- }
- if (type === "sheet") {
- return await searchMusicSheet(query, page);
- }
- if (type === "lyric") {
- return await searchLyric(query, page);
- }
- },
- async getMediaSource(musicItem, quality: IMusic.IQualityKey) {
- let purl = "";
- let domain = "";
- let type = "128";
- if (quality === "standard") {
- type = "320";
- } else if (quality === "high") {
- type = "m4a";
- } else if (quality === "super") {
- type = "flac";
- }
- const result = await getSourceUrl(musicItem.songmid, type);
- if (result.req_0 && result.req_0.data && result.req_0.data.midurlinfo) {
- purl = result.req_0.data.midurlinfo[0].purl;
- }
- if (!purl) {
- return null;
- }
- if (domain === "") {
- domain =
- result.req_0.data.sip.find((i) => !i.startsWith("http://ws")) ||
- result.req_0.data.sip[0];
- }
- return {
- url: `${domain}${purl}`,
- };
- },
- getLyric,
- getAlbumInfo,
- getArtistWorks,
- importMusicSheet,
- getTopLists,
- getTopListDetail,
- getRecommendSheetTags,
- getRecommendSheetsByTag,
- getMusicSheetInfo,
- };
|