Compare commits

..

4 Commits

10 changed files with 678 additions and 575 deletions

View File

@ -126,6 +126,7 @@
"taza", "taza",
"teruteru", "teruteru",
"timestamptz", "timestamptz",
"tlyric",
"toolsmp", "toolsmp",
"tsconfigs", "tsconfigs",
"tview", "tview",

932
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -42,26 +42,26 @@
] ]
}, },
"dependencies": { "dependencies": {
"@astrojs/mdx": "^3.1.8", "@astrojs/mdx": "^3.1.9",
"@astrojs/rss": "^4.0.9", "@astrojs/rss": "^4.0.9",
"@zeabur/astro-adapter": "^1.0.6", "@zeabur/astro-adapter": "^1.0.6",
"astro": "^4.16.7", "astro": "^4.16.8",
"drizzle-orm": "^0.35.3", "drizzle-orm": "^0.36.0",
"fuse.js": "^7.0.0", "fuse.js": "^7.0.0",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"luxon": "^3.5.0", "luxon": "^3.5.0",
"marked": "^14.1.3", "marked": "^14.1.3",
"pg": "^8.13.0", "pg": "^8.13.1",
"qrcode-svg": "^1.1.0", "qrcode-svg": "^1.1.0",
"ultrahtml": "^1.5.3" "ultrahtml": "^1.5.3"
}, },
"devDependencies": { "devDependencies": {
"@astrojs/check": "^0.9.4", "@astrojs/check": "^0.9.4",
"@biomejs/biome": "^1.9.4", "@biomejs/biome": "^1.9.4",
"@napi-rs/canvas": "^0.1.58", "@napi-rs/canvas": "^0.1.59",
"@types/lodash": "^4.17.12", "@types/lodash": "^4.17.13",
"@types/luxon": "^3.4.2", "@types/luxon": "^3.4.2",
"@types/node": "^22.7.9", "@types/node": "^22.8.6",
"@types/pg": "^8.11.10", "@types/pg": "^8.11.10",
"@types/qrcode-svg": "^1.1.5", "@types/qrcode-svg": "^1.1.5",
"@types/unist": "^3.0.3", "@types/unist": "^3.0.3",
@ -83,6 +83,6 @@
}, },
"packageManager": "npm@10.9.0", "packageManager": "npm@10.9.0",
"engines": { "engines": {
"node": "22.10.0" "node": "23.1.0"
} }
} }

View File

@ -0,0 +1,4 @@
const net_ease_anonymous_token =
'de91e1f8119d32e01cc73efcb82c0a30c9137e8d4f88dbf5e3d7bf3f28998f21add2bc8204eeee5e56c0bbb8743574b46ca2c10c35dc172199bef9bf4d60ecdeab066bb4dc737d1c3324751bcc9aaf44c3061cd18d77b7a0';
export { net_ease_anonymous_token };

View File

@ -0,0 +1,60 @@
import { Buffer } from 'node:buffer';
import crypto from 'node:crypto';
const iv = Buffer.from('0102030405060708');
const presetKey = Buffer.from('0CoJUm6Qyw8W8jud');
const linuxapiKey = Buffer.from('rFgB&h#%2?^eDg:Q');
const base62 = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
const publicKey =
'-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDgtQn2JZ34ZC28NWYpAUd98iZ37BUrX/aKzmFbt7clFSs6sXqHauqKWqdtLkF2KexO40H1YTX8z2lSgBBOAxLsvaklV8k4cBFK9snQXE9/DDaFt6Rr7iVZMldczhC0JNgTz+SHXT6CBHuX3e9SdB1Ua44oncaTWz7OBGLbCiK45wIDAQAB\n-----END PUBLIC KEY-----';
const eapiKey = 'e82ckenh8dichen8';
const aesEncrypt = (buffer, mode, key, iv) => {
const cipher = crypto.createCipheriv(`aes-128-${mode}`, key, iv);
return Buffer.concat([cipher.update(buffer), cipher.final()]);
};
const rsaEncrypt = (buffer, key) => {
return crypto.publicEncrypt(
{ key: key, padding: crypto.constants.RSA_NO_PADDING },
Buffer.concat([Buffer.alloc(128 - buffer.length), buffer]),
);
};
const weapi = (object) => {
const text = JSON.stringify(object);
const secretKey = crypto.randomBytes(16).map((n) => base62.charAt(n % 62).charCodeAt());
return {
params: aesEncrypt(
Buffer.from(aesEncrypt(Buffer.from(text), 'cbc', presetKey, iv).toString('base64')),
'cbc',
secretKey,
iv,
).toString('base64'),
encSecKey: rsaEncrypt(secretKey.reverse(), publicKey).toString('hex'),
};
};
const linuxapi = (object) => {
const text = JSON.stringify(object);
return {
eparams: aesEncrypt(Buffer.from(text), 'ecb', linuxapiKey, '').toString('hex').toUpperCase(),
};
};
const eapi = (url, object) => {
const text = typeof object === 'object' ? JSON.stringify(object) : object;
const message = `nobody${url}use${text}md5forencrypt`;
const digest = crypto.createHash('md5').update(message).digest('hex');
const data = `${url}-36cd479b6b5-${text}-36cd479b6b5-${digest}`;
return {
params: aesEncrypt(Buffer.from(data), 'ecb', eapiKey, '').toString('hex').toUpperCase(),
};
};
const decrypt = (cipherBuffer) => {
const decipher = crypto.createDecipheriv('aes-128-ecb', eapiKey, '');
return Buffer.concat([decipher.update(cipherBuffer), decipher.final()]);
};
export default { weapi, linuxapi, eapi, decrypt };

View File

@ -0,0 +1,35 @@
import { map_song_list, request } from './util.js';
export const get_song_url = async (id, cookie = '') => {
const data = {
ids: `[${id}]`,
level: 'standard',
encodeType: 'flac',
};
const res = await request('POST', 'https://interface.music.163.com/eapi/song/enhance/player/url/v1', data, {
crypto: 'eapi',
url: '/api/song/enhance/player/url/v1',
cookie: {},
});
const url = res.data[0]?.url?.replace('http://', 'https://');
return url || `https://music.163.com/song/media/outer/url?id=${id}.mp3`;
};
export const get_song_info = async (id, cookie = '') => {
const ids = [id];
const data = {
c: `[${ids.map((id) => `{"id":${id}}`).join(',')}]`,
};
let res = await request('POST', 'https://music.163.com/api/v3/song/detail', data, {
crypto: 'weapi',
});
if (!res.songs) {
throw res;
}
res = map_song_list(res);
return res;
};

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,5 @@
import { get_song_info, get_song_url } from '@/components/player/netease/song';
export type Song = { export type Song = {
name: string; name: string;
artist: string; artist: string;
@ -17,19 +19,11 @@ const song = async (props: MusicPlayerProps): Promise<Song> => {
const { netease, song } = props; const { netease, song } = props;
if (netease) { if (netease) {
// Fix the UNABLE_TO_GET_ISSUER_CERT_LOCALLY issue for the mirror site. const info = await get_song_info(netease);
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'; const url = await get_song_url(netease);
// https://github.com/injahow/meting-api
const data = await fetch(`https://api.injahow.cn/meting/?type=song&id=${netease}`)
.then((response) => response.json())
.catch((e) => {
console.error(e);
return [emptySong];
});
// Check the return result. // Check the return result.
return { name: data[0].name, artist: data[0].artist, url: data[0].url, pic: data[0].pic }; return { name: info[0].title, artist: info[0].author, url: url, pic: info[0].pic };
} }
if (song) { if (song) {

View File

@ -19,7 +19,7 @@ summary: 网易云音乐一直是一个值得吐槽的地方,比如,它常
<MusicPlayer netease={812400} /> <MusicPlayer netease={812400} />
周一时听到一首名为 **[「PLANET」](http://music.163.com/#/song?id=812400)** 的歌曲,前奏就十分抓耳,当时就立刻点击下载,可惜这歌竟然要付费。生在天朝,仗着自己从事 IT 相关的工作,最大的好处便是能免费搞到一些数字出版物。但我在谷歌、百度上查找甚久,竟找不到此曲的 320 Kbps 版本,不禁有些沮丧。 周一时听到一首名为[「PLANET」](http://music.163.com/#/song?id=812400)的歌曲,前奏就十分抓耳,当时就立刻点击下载,可惜这歌竟然要付费。生在天朝,仗着自己从事 IT 相关的工作,最大的好处便是能免费搞到一些数字出版物。但我在谷歌、百度上查找甚久,竟找不到此曲的 320 Kbps 版本,不禁有些沮丧。
在网易的「チーズ牛丼」(沙拉牛肉)上找到一篇关于「PLANET」的创作组合 **「ラムジ」** 的[介绍](http://music.163.com/#/topic?id=17639053)。 22 岁的山下佑树在过生日的时候,只因想要唱点什么东西来到东京,和报复不得施展的井上慎二郎桑如童话般在雨中相遇,并开始了长达 8 年的演艺事业。 在网易的「チーズ牛丼」(沙拉牛肉)上找到一篇关于「PLANET」的创作组合 **「ラムジ」** 的[介绍](http://music.163.com/#/topic?id=17639053)。 22 岁的山下佑树在过生日的时候,只因想要唱点什么东西来到东京,和报复不得施展的井上慎二郎桑如童话般在雨中相遇,并开始了长达 8 年的演艺事业。

View File

@ -23,7 +23,7 @@ if (pageNum < 1) {
<!-- This is the layout for listing all the blogs by using pagination. --> <!-- This is the layout for listing all the blogs by using pagination. -->
<BaseLayout title={pageNum > 1 ? `第 ${pageNum} 页` : undefined}> <BaseLayout title={pageNum > 1 ? `第 ${pageNum} 页` : undefined}>
<div class="px-lg-2 px-xxl-5 py-3 py-md-4 py-xxl-5"> <div class="px-lg-2 px-xxl-5 py-3 py-md-4 py-xxl-5">
<FeaturePosts {posts} /> {pageNum === 1 && <FeaturePosts {posts} />}
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<PostCards {pageNum} {posts} /> <PostCards {pageNum} {posts} />