diff --git a/backend/src/handler/songs.js b/backend/src/handler/songs.js
index b168f90..4bb05c9 100644
--- a/backend/src/handler/songs.js
+++ b/backend/src/handler/songs.js
@@ -1,8 +1,51 @@
-const logger = require('consola');
-const { searchSongsWithKeyword, searchSongsWithSongMeta } = require('../service/search_songs');
const { getPlayUrlWithOptions } = require('../service/songs_info');
-const { getMetaWithUrl } = require('../service/media_fetcher');
const { matchUrlFromStr } = require('../utils/regex');
+const { searchSongs, getSongInfo, buildSongUrl } = require('../service/music_platform/tunehub');
+const configManager = require('../service/config_manager');
+
+function buildPageUrl(source, songId) {
+ if (!source || !songId) {
+ return '';
+ }
+ if (source === 'netease') {
+ return `https://music.163.com/song?id=${songId}`;
+ }
+ if (source === 'qq') {
+ return `https://y.qq.com/n/ryqq/songDetail/${songId}`;
+ }
+ return '';
+}
+
+function mapTunehubResult(item) {
+ const playUrl = item.url || buildSongUrl(item.platform, item.id);
+ const pageUrl = buildPageUrl(item.platform, item.id);
+ return {
+ songName: item.name || '',
+ artist: item.artist || '',
+ album: item.album || '',
+ duration: 0,
+ url: pageUrl || playUrl || '',
+ playUrl: playUrl || '',
+ pageUrl: pageUrl || '',
+ coverUrl: item.pic || '',
+ resourceForbidden: false,
+ source: item.platform || '',
+ fromMusicPlatform: true,
+ score: 0,
+ };
+}
+
+function parseNeteaseSongId(url) {
+ const match = url.match(/song\\?id=(\\d+)/);
+ if (match && match[1]) {
+ return match[1];
+ }
+ const altMatch = url.match(/\\bid=(\\d+)/);
+ if (altMatch && altMatch[1]) {
+ return altMatch[1];
+ }
+ return '';
+}
async function search(req, res) {
const query = req.query;
@@ -16,31 +59,50 @@ async function search(req, res) {
});
return;
}
- let songs = [];
+ let keyword = keywordOrUrl;
const url = matchUrlFromStr(keywordOrUrl);
- if (!url) {
- songs = await searchSongsWithKeyword(keywordOrUrl);
- } else {
- const songMeta = await getMetaWithUrl(url);
- if (!songMeta) {
- res.send({
- status: 2,
- message: "can not get song meta with this url",
- });
- return;
+ if (url) {
+ const neteaseId = parseNeteaseSongId(url);
+ if (neteaseId) {
+ const info = await getSongInfo('netease', neteaseId);
+ if (info && info.name && info.artist) {
+ keyword = `${info.name} ${info.artist}`;
+ }
}
- songs = await searchSongsWithSongMeta({
- songName: songMeta.songName,
- artist: songMeta.artist,
- album: songMeta.album,
- duration: songMeta.duration,
- }, {
- expectArtistAkas: [],
- allowSongsJustMatchDuration: true,
- allowSongsNotMatchMeta: true,
- });
}
+ const limit = query.limit ? parseInt(query.limit, 10) : 20;
+ const requestSource = query.source || '';
+ const searchData = await searchSongs(keyword, {
+ source: requestSource,
+ limit: Number.isNaN(limit) ? 20 : limit,
+ aggregate: !requestSource,
+ });
+ if (searchData === false || !searchData.results) {
+ res.send({
+ status: 0,
+ data: {
+ songs: [],
+ }
+ });
+ return;
+ }
+
+ const globalConfig = await configManager.getGlobalConfig();
+ const enabledSources = globalConfig && Array.isArray(globalConfig.sources) ? globalConfig.sources : [];
+ const songs = searchData.results
+ .filter(item => {
+ if (!item.platform) {
+ return false;
+ }
+ if (enabledSources.length === 0) {
+ return true;
+ }
+ return enabledSources.includes(item.platform);
+ })
+ .map(mapTunehubResult)
+ .filter(song => song.songName.length > 0);
+
res.send({
status: 0,
data: {
@@ -73,4 +135,4 @@ async function getPlayUrl(req, res) {
module.exports = {
search: search,
getPlayUrl: getPlayUrl
-}
\ No newline at end of file
+}
diff --git a/backend/src/service/music_platform/tunehub.js b/backend/src/service/music_platform/tunehub.js
index 0c23658..0f4a565 100644
--- a/backend/src/service/music_platform/tunehub.js
+++ b/backend/src/service/music_platform/tunehub.js
@@ -34,6 +34,40 @@ async function getPlaylistDetail(source, playlistId) {
return response.data;
}
+async function getSongInfo(source, songId) {
+ const response = await fetchJson({
+ source,
+ id: songId,
+ type: 'info',
+ });
+ if (!response || response.code !== 200 || !response.data) {
+ return false;
+ }
+ return response.data;
+}
+
+async function searchSongs(keyword, {
+ source = '',
+ limit = 20,
+ aggregate = true,
+} = {}) {
+ const params = {
+ keyword,
+ limit,
+ };
+ if (aggregate) {
+ params.type = 'aggregateSearch';
+ } else {
+ params.type = 'search';
+ params.source = source;
+ }
+ const response = await fetchJson(params);
+ if (!response || response.code !== 200 || !response.data) {
+ return false;
+ }
+ return response.data;
+}
+
function buildSongUrl(source, songId, br) {
const params = {
source,
@@ -48,5 +82,7 @@ function buildSongUrl(source, songId, br) {
module.exports = {
getPlaylistDetail,
+ getSongInfo,
+ searchSongs,
buildSongUrl,
};
diff --git a/frontend/src/Mobile.vue b/frontend/src/Mobile.vue
index 3f60c58..fccfc25 100644
--- a/frontend/src/Mobile.vue
+++ b/frontend/src/Mobile.vue
@@ -187,6 +187,13 @@ export default {
}
playOption.playUrl = playUrlRet.data.playUrl;
}
+ if (playOption.playUrl) {
+ playOption.playUrl = getProperPlayUrl(
+ playOption.source,
+ playOption.playUrl,
+ playOption.pageUrl
+ );
+ }
this.songInfos.push(playOption);
this.currentSongIndex = this.songInfos.length - 1;
this.changedTime = new Date().getTime();
diff --git a/frontend/src/components/SearchResultListForMobile.vue b/frontend/src/components/SearchResultListForMobile.vue
index 016fc16..125bc14 100644
--- a/frontend/src/components/SearchResultListForMobile.vue
+++ b/frontend/src/components/SearchResultListForMobile.vue
@@ -9,7 +9,7 @@