-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathikun-music-source.js
More file actions
198 lines (187 loc) · 5.95 KB
/
ikun-music-source.js
File metadata and controls
198 lines (187 loc) · 5.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/*!
* @name ikun音源
* @description 请不要分享此音源,谢谢 951962664
* @version v513
* @author ikunshare
* @repository https://github.com/lxmusics/lx-music-api-server
*/
// 是否开启开发模式
const DEV_ENABLE = false
// 是否开启更新提醒
const UPDATE_ENABLE = true
// 服务端地址
const API_URL = "https://api.ikunshare.com"
// 服务端配置的请求key
const API_KEY = `public_source`
// 音质配置(key为音源名称,不要乱填.如果你账号为VIP可以填写到hires)
// 全部的支持值: ['128k', '320k', 'flac', 'flac24bit']
const MUSIC_QUALITY = JSON.parse('{"kw":["128k","320k","flac","hires"],"kg":["128k","320k","flac","hires","atmos","master"],"tx":["128k","320k","flac","hires","atmos","atmos_plus","master"],"wy":["128k","320k","flac","hires","atmos","master"],"mg":["128k","320k","flac","hires"]}');
// 音源配置(默认为自动生成,可以修改为手动)
const MUSIC_SOURCE = Object.keys(MUSIC_QUALITY);
/**
* 下面的东西就不要修改了
*/
const { EVENT_NAMES, request, on, send, utils, env, version } = globalThis.lx;
// MD5值,用来检查更新
const SCRIPT_MD5 = "429f8c99902f161fc9cff597dfb2ce17";
/**
* URL请求
*
* @param {string} url - 请求的地址
* @param {object} options - 请求的配置文件
* @return {Promise} 携带响应体的Promise对象
*/
const httpFetch = (url, options = { method: "GET" }) => {
return new Promise((resolve, reject) => {
console.log("--- start --- " + url);
request(url, options, (err, resp) => {
if (err) return reject(err);
console.log("API Response: ", resp);
resolve(resp);
});
});
};
/**
* Encodes the given data to base64.
*
* @param {type} data - the data to be encoded
* @return {string} the base64 encoded string
*/
const handleBase64Encode = (data) => {
var data = utils.buffer.from(data, "utf-8");
return utils.buffer.bufToString(data, "base64");
};
/**
*
* @param {string} source - 音源
* @param {object} musicInfo - 歌曲信息
* @param {string} quality - 音质
* @returns {Promise<string>} 歌曲播放链接
* @throws {Error} - 错误消息
*/
const handleGetMusicUrl = async (source, musicInfo, quality) => {
const songId = musicInfo.hash ?? musicInfo.songmid;
const request = await httpFetch(
`${API_URL}/url?source=${source}&songId=${songId}&quality=${quality}`,
{
method: "GET",
headers: {
"Content-Type": "application/json",
"User-Agent": `${
env ? `lx-music-${env}/${version}` : `lx-music-request/${version}`
}`,
"X-Request-Key": API_KEY,
},
follow_max: 5,
}
);
const { body } = request;
if (!body || isNaN(Number(body.code))) throw new Error("unknow error");
if (env != "mobile") console.groupEnd();
switch (body.code) {
case 0:
console.log(
`handleGetMusicUrl(${source}_${musicInfo.songmid}, ${quality}) success, URL: ${body.data}`
);
return body.data;
case 1:
console.log(
`handleGetMusicUrl(${source}_${musicInfo.songmid}, ${quality}) failed: ip被封禁`
);
throw new Error("block ip");
case 2:
console.log(
`handleGetMusicUrl(${source}_${musicInfo.songmid}, ${quality}) failed, ${body.msg}`
);
throw new Error("get music url failed");
case 4:
console.log(
`handleGetMusicUrl(${source}_${musicInfo.songmid}, ${quality}) failed, 远程服务器错误`
);
throw new Error("internal server error");
case 5:
console.log(
`handleGetMusicUrl(${source}_${musicInfo.songmid}, ${quality}) failed, 请求过于频繁,请休息一下吧`
);
throw new Error("too many requests");
case 6:
console.log(
`handleGetMusicUrl(${source}_${musicInfo.songmid}, ${quality}) failed, 请求参数错误`
);
throw new Error("param error");
default:
console.log(
`handleGetMusicUrl(${source}_${
musicInfo.songmid
}, ${quality}) failed, ${body.msg ? body.msg : "unknow error"}`
);
throw new Error(body.msg ?? "unknow error");
}
};
// 检查源脚本是否有更新
const checkUpdate = async () => {
const request = await httpFetch(
`${API_URL}/script?key=${API_KEY}&checkUpdate=${SCRIPT_MD5}`,
{
method: "GET",
headers: {
"Content-Type": "application/json",
"User-Agent": `${
env ? `lx-music-${env}/${version}` : `lx-music-request/${version}`
}`,
},
}
);
const { body } = request;
if (!body || body.code !== 0) console.log("checkUpdate failed");
else {
console.log("checkUpdate success");
if (body.data != null) {
globalThis.lx.send(lx.EVENT_NAMES.updateAlert, {
log: body.data.updateMsg,
updateUrl: body.data.updateUrl,
});
}
}
};
// 生成歌曲信息
const musicSources = {};
MUSIC_SOURCE.forEach((item) => {
musicSources[item] = {
name: item,
type: "music",
actions: ["musicUrl"],
qualitys: MUSIC_QUALITY[item],
};
});
// 监听 LX Music 请求事件
on(EVENT_NAMES.request, ({ action, source, info }) => {
switch (action) {
case "musicUrl":
if (env != "mobile") {
console.group(`Handle Action(musicUrl)`);
console.log("source", source);
console.log("quality", info.type);
console.log("musicInfo", info.musicInfo);
} else {
console.log(`Handle Action(musicUrl)`);
console.log("source", source);
console.log("quality", info.type);
console.log("musicInfo", info.musicInfo);
}
return handleGetMusicUrl(source, info.musicInfo, info.type)
.then((data) => Promise.resolve(data))
.catch((err) => Promise.reject(err));
default:
console.error(`action(${action}) not support`);
return Promise.reject("action not support");
}
});
// 检查更新
if (UPDATE_ENABLE) checkUpdate();
// 向 LX Music 发送初始化成功事件
send(EVENT_NAMES.inited, {
status: true,
openDevTools: DEV_ENABLE,
sources: musicSources,
});