forked from miao-moe/QZMusic_PC
276 lines
9.0 KiB
TypeScript
276 lines
9.0 KiB
TypeScript
import { defineStore } from 'pinia';
|
||
import { ref } from 'vue';
|
||
import { MessagePlugin } from 'tdesign-vue-next';
|
||
import type { Song } from '../types/song';
|
||
|
||
export enum PlayMode {
|
||
List = 'list',
|
||
Single = 'single',
|
||
Random = 'random'
|
||
}
|
||
|
||
// 静音 WAV Base64
|
||
const SILENT_AUDIO_URL = 'data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA';
|
||
|
||
const dummyAudio = new Audio();
|
||
dummyAudio.src = SILENT_AUDIO_URL;
|
||
dummyAudio.loop = true;
|
||
dummyAudio.volume = 0.01;
|
||
if (typeof document !== 'undefined') {
|
||
document.body.appendChild(dummyAudio);
|
||
}
|
||
|
||
export const usePlayerStore = defineStore('player', () => {
|
||
// State
|
||
const isPlaying = ref(false);
|
||
const currentSong = ref<Song | null>(null);
|
||
const volume = ref(50);
|
||
const duration = ref(0);
|
||
const currentTime = ref(0);
|
||
|
||
// Audio Visualization State
|
||
const loudness = ref(0);
|
||
const spectrum = ref<number[]>([]);
|
||
|
||
// UI State
|
||
const isPlayerFullScreen = ref(false);
|
||
|
||
// Playlist State
|
||
const playlist = ref<Song[]>([]);
|
||
const currentIndex = ref(-1);
|
||
const playMode = ref<PlayMode>(PlayMode.List);
|
||
|
||
// Error Handling
|
||
const playErrorCount = ref(0);
|
||
const MAX_RETRY_COUNT = 3;
|
||
const hasRetriedWithFreshUrl = ref(false);
|
||
|
||
// --- Helpers ---
|
||
|
||
const activateDummyAudio = async () => {
|
||
if (dummyAudio.paused) {
|
||
try {
|
||
await dummyAudio.play().catch(e => console.warn('Dummy play failed:', e));
|
||
} catch (e) {
|
||
// Ignore
|
||
}
|
||
}
|
||
if ('mediaSession' in navigator) {
|
||
navigator.mediaSession.playbackState = 'playing';
|
||
}
|
||
};
|
||
|
||
// 同步浏览器状态
|
||
const syncDummyAudioState = (shouldPlay: boolean) => {
|
||
if (shouldPlay) {
|
||
if (dummyAudio.paused) {
|
||
dummyAudio.play().catch(() => { });
|
||
}
|
||
if ('mediaSession' in navigator) navigator.mediaSession.playbackState = 'playing';
|
||
} else {
|
||
if (!dummyAudio.paused) {
|
||
dummyAudio.pause();
|
||
}
|
||
if ('mediaSession' in navigator) navigator.mediaSession.playbackState = 'paused';
|
||
}
|
||
};
|
||
|
||
// --- Actions ---
|
||
|
||
|
||
|
||
const setPlaylist = async (list: any[], startIndex = 0) => {
|
||
playlist.value = list;
|
||
currentIndex.value = startIndex;
|
||
if (list.length > 0 && startIndex >= 0 && startIndex < list.length) {
|
||
await playSong(list[startIndex]);
|
||
}
|
||
};
|
||
|
||
const playSong = async (song: Song) => {
|
||
if (!song) return;
|
||
|
||
currentSong.value = song;
|
||
const foundIndex = playlist.value.findIndex(s => s.id === song.id);
|
||
if (foundIndex !== -1) {
|
||
currentIndex.value = foundIndex;
|
||
}
|
||
|
||
await activateDummyAudio();
|
||
updateMediaSession(song);
|
||
|
||
// 1. Get URL (Cache -> Network)
|
||
let playUrl = song.url;
|
||
if (song.type === 'Remote' && song.source) {
|
||
// Use Local Proxy
|
||
const quality = 'jymaster';
|
||
playUrl = `http://localhost:5266/music?source=${song.source}&id=${song.id}&quality=${quality}`;
|
||
console.log('[Player] Using Proxy:', playUrl);
|
||
}
|
||
|
||
if (playUrl) {
|
||
console.log('Playing:', song.name);
|
||
// Reset retry flag for new playback attempt
|
||
hasRetriedWithFreshUrl.value = false;
|
||
try {
|
||
await window.electronAPI.qzplayer.load(playUrl);
|
||
await window.electronAPI.qzplayer.play();
|
||
isPlaying.value = true;
|
||
song.url = playUrl;
|
||
} catch (e) {
|
||
// IPC call failed (rare), handle sync error
|
||
console.error("IPC Play request failed:", e);
|
||
handlePlayError();
|
||
}
|
||
} else {
|
||
console.warn("Song has no URL");
|
||
handlePlayError();
|
||
}
|
||
};
|
||
|
||
const updateMediaSession = (song: Song) => {
|
||
if (!('mediaSession' in navigator)) return;
|
||
|
||
navigator.mediaSession.metadata = new MediaMetadata({
|
||
title: song.name,
|
||
artist: song.artist,
|
||
album: song.albumName || '',
|
||
artwork: song.picUrl ? [{ src: song.picUrl, sizes: '512x512', type: 'image/png' }] : []
|
||
});
|
||
|
||
navigator.mediaSession.setActionHandler('play', () => window.electronAPI.qzplayer.play());
|
||
navigator.mediaSession.setActionHandler('pause', () => window.electronAPI.qzplayer.pause());
|
||
navigator.mediaSession.setActionHandler('previoustrack', () => prev());
|
||
navigator.mediaSession.setActionHandler('nexttrack', () => next(true));
|
||
|
||
navigator.mediaSession.setActionHandler('seekto', (details) => {
|
||
if (details.seekTime != null) {
|
||
seek(details.seekTime);
|
||
}
|
||
});
|
||
};
|
||
|
||
const next = async (manual = true) => {
|
||
if (playlist.value.length === 0) return;
|
||
let nextIndex = currentIndex.value;
|
||
if (playMode.value === PlayMode.Single && !manual) {
|
||
nextIndex = currentIndex.value;
|
||
} else if (playMode.value === PlayMode.Random) {
|
||
nextIndex = Math.floor(Math.random() * playlist.value.length);
|
||
} else {
|
||
nextIndex = (currentIndex.value + 1) % playlist.value.length;
|
||
}
|
||
currentIndex.value = nextIndex;
|
||
await playSong(playlist.value[nextIndex]);
|
||
};
|
||
|
||
const prev = async () => {
|
||
if (playlist.value.length === 0) return;
|
||
let prevIndex = currentIndex.value;
|
||
if (playMode.value === PlayMode.Random) {
|
||
prevIndex = Math.floor(Math.random() * playlist.value.length);
|
||
} else {
|
||
prevIndex = (currentIndex.value - 1 + playlist.value.length) % playlist.value.length;
|
||
}
|
||
currentIndex.value = prevIndex;
|
||
await playSong(playlist.value[prevIndex]);
|
||
};
|
||
|
||
const handlePlayError = async () => {
|
||
// Proxy handles refreshing internally, so we rely on qzplayer error/retry for now.
|
||
// Or we could implement a mechanism to tell proxy to invalidate cache if this fails repeatedly (future work).
|
||
|
||
// Normal error handling
|
||
playErrorCount.value++;
|
||
hasRetriedWithFreshUrl.value = false; // Reset for next song
|
||
|
||
if (playlist.value.length === 0) {
|
||
isPlaying.value = false;
|
||
playErrorCount.value = 0;
|
||
syncDummyAudioState(false);
|
||
return;
|
||
}
|
||
if (playErrorCount.value >= MAX_RETRY_COUNT) {
|
||
window.electronAPI.qzplayer.pause();
|
||
isPlaying.value = false;
|
||
MessagePlugin.error('连续多次播放失败,已停止播放');
|
||
playErrorCount.value = 0;
|
||
syncDummyAudioState(false);
|
||
} else {
|
||
MessagePlugin.warning(`播放失败,尝试播放下一首 (${playErrorCount.value}/${MAX_RETRY_COUNT})`);
|
||
setTimeout(() => next(false), 500);
|
||
}
|
||
};
|
||
|
||
// Listeners
|
||
if (window.electronAPI) {
|
||
window.electronAPI.qzplayer.onEvent((_event, data) => {
|
||
if (data.event === 'property-change') {
|
||
if (data.name === 'pause') {
|
||
const isPaused = data.data;
|
||
isPlaying.value = !isPaused;
|
||
// 核心:qzplayer 暂停 -> 同步暂停 Dummy -> 浏览器更新 SMTC 状态
|
||
syncDummyAudioState(!isPaused);
|
||
}
|
||
if (data.name === 'time-pos') currentTime.value = data.data;
|
||
if (data.name === 'duration') duration.value = data.data;
|
||
if (data.name === 'loudness') loudness.value = data.data;
|
||
if (data.name === 'spectrum') spectrum.value = data.data;
|
||
}
|
||
|
||
if (data.event === 'end-file') {
|
||
const reason = data.reason;
|
||
if (reason === 'eof') {
|
||
next(false);
|
||
} else if (reason === 'error') {
|
||
handlePlayError();
|
||
}
|
||
}
|
||
});
|
||
}
|
||
|
||
const togglePlay = async () => {
|
||
await window.electronAPI.qzplayer.togglePause();
|
||
};
|
||
|
||
const setVolume = async (vol: number) => {
|
||
volume.value = vol;
|
||
await window.electronAPI.qzplayer.setVolume(vol);
|
||
};
|
||
|
||
const seek = async (time: number) => {
|
||
await window.electronAPI.qzplayer.seek(time);
|
||
};
|
||
|
||
const toggleMode = () => {
|
||
if (playMode.value === PlayMode.List) playMode.value = PlayMode.Single;
|
||
else if (playMode.value === PlayMode.Single) playMode.value = PlayMode.Random;
|
||
else playMode.value = PlayMode.List;
|
||
};
|
||
|
||
const toggleFullScreen = () => {
|
||
isPlayerFullScreen.value = !isPlayerFullScreen.value;
|
||
};
|
||
|
||
return {
|
||
isPlaying,
|
||
currentSong,
|
||
volume,
|
||
duration,
|
||
currentTime,
|
||
playlist,
|
||
playMode,
|
||
loudness,
|
||
spectrum,
|
||
isPlayerFullScreen,
|
||
setPlaylist,
|
||
playSong,
|
||
next,
|
||
prev,
|
||
togglePlay,
|
||
setVolume,
|
||
seek,
|
||
toggleMode,
|
||
toggleFullScreen
|
||
};
|
||
}); |