File size: 29,850 Bytes
00a912e | 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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 | import type { AudioQuality, MusicSource, PlayMode, PlayState, ScheduledPlayState, Track } from '@music-together/shared'
import { EVENTS, ERROR_CODE, NTP, TIMING } from '@music-together/shared'
import { roomRepo } from '../repositories/roomRepository.js'
import { nanoid } from 'nanoid'
import { musicProvider } from './musicProvider.js'
import * as queueService from './queueService.js'
import * as trackFallbackService from './trackFallbackService.js'
import * as authService from './authService.js'
import { estimateCurrentTime, estimateCurrentTimeAt } from './syncService.js'
import { broadcastRoomList } from './roomLifecycleService.js'
import { toPublicRoomState } from '../utils/roomUtils.js'
import { config } from '../config.js'
import { logger } from '../utils/logger.js'
import type { RoomData } from '../repositories/types.js'
import type { TypedServer, TypedSocket } from '../middleware/types.js'
import { getEffectiveQuality, providerQualityRank, type MembershipTier } from './audioQualityPolicy.js'
// ---------------------------------------------------------------------------
// Per-room mutex for playTrackInRoom (prevents concurrent execution)
// ---------------------------------------------------------------------------
const playMutexes = new Map<string, Promise<unknown>>()
const lastStreamUrlRefreshAt = new Map<string, number>()
/** Persist a recent position snapshot so a process restart can resume close to the last position. */
export function persistPlaybackSnapshots(serverTime = Date.now()): void {
for (const room of roomRepo.getAll().values()) {
if (!room.permanent || !room.currentTrack || !room.playState.isPlaying) continue
room.playState = {
...room.playState,
currentTime: estimateCurrentTimeAt(room.id, serverTime),
serverTimestamp: serverTime,
}
roomRepo.persist(room.id)
}
}
// ---------------------------------------------------------------------------
// Auto fallback cooldown (prevents repeated attempts / ping-pong)
// ---------------------------------------------------------------------------
const autoFallbackCooldown = new Map<string, number>()
function canAutoFallback(roomId: string, trackId: string): boolean {
const key = `${roomId}:${trackId}`
const until = autoFallbackCooldown.get(key)
if (!until) return true
if (Date.now() >= until) {
autoFallbackCooldown.delete(key)
return true
}
return false
}
function markAutoFallback(roomId: string, trackId: string, ms: number): void {
const key = `${roomId}:${trackId}`
autoFallbackCooldown.set(key, Date.now() + ms)
}
function withPlayMutex<T>(roomId: string, fn: () => Promise<T>): Promise<T> {
const prev = playMutexes.get(roomId) ?? Promise.resolve()
const next = prev.then(fn, fn)
playMutexes.set(roomId, next)
// Cleanup entry when chain settles to avoid unbounded growth
next.finally(() => {
if (playMutexes.get(roomId) === next) playMutexes.delete(roomId)
})
return next
}
// ---------------------------------------------------------------------------
// Scheduled execution helpers
// ---------------------------------------------------------------------------
/**
* Compute the future server-time at which all clients should execute an
* action, based on the P90 RTT in the room.
*/
function getScheduleTime(roomId: string): number {
const maxRTT = roomRepo.getP90RTT(roomId)
const delay = Math.min(Math.max(maxRTT * 1.5 + 100, NTP.MIN_SCHEDULE_DELAY_MS), NTP.MAX_SCHEDULE_DELAY_MS)
return Date.now() + delay
}
/** Build a ScheduledPlayState from a plain PlayState.
* Accepts an optional pre-computed scheduleTime to keep room state and
* broadcast payload consistent (same timestamp for both). */
function scheduled(ps: PlayState, roomId: string, scheduleTime?: number): ScheduledPlayState {
return { ...ps, serverTimeToExecute: scheduleTime ?? getScheduleTime(roomId) }
}
// ---------------------------------------------------------------------------
// Audio quality fallback
// ---------------------------------------------------------------------------
interface ResolvedStreamUrl {
url: string
/** Quality tier attempted by our fallback chain. */
attemptedBitrate: AudioQuality
/** Bitrate actually reported/selected by the upstream provider. */
actualBitrate: number | null
actualQuality?: AudioQuality
providerFormat?: string
streamFormat?: Track['streamFormat']
fileSize?: number
requiresServerProxy?: boolean
fromCache: boolean
}
const SOURCE_LABELS: Record<MusicSource, string> = {
netease: '网易云音乐',
tencent: 'QQ 音乐',
kugou: '酷狗音乐',
kugou_concept: '酷狗概念版',
bilibili: 'B站',
}
function formatAudioQuality(bitrate: AudioQuality | number | null): string {
if (bitrate === null) return '未知(上游未返回)'
const labels: Partial<Record<AudioQuality, string>> = {
highest: '尽量高',
netease_dolby: '杜比全景声',
netease_hires: 'Hi-Res',
netease_jyeffect: '高清臻音',
netease_master: '超清母带',
netease_spatial: '沉浸环绕声',
tencent_flac: '无损',
tencent_master: '臻品母带',
kugou_hires: '酷狗 Hi-Res',
kugou_master: '酷狗蝰蛇母带 2.0',
bilibili_64: 'B站 64K',
bilibili_132: 'B站 132K',
bilibili_192: 'B站 192K',
bilibili_hires: 'B站 Hi-Res',
}
if (typeof bitrate === 'string') return labels[bitrate] ?? bitrate
if (bitrate === 999) return '无损'
return `${bitrate} kbps`
}
function formatResolvedAudioQuality(stream: ResolvedStreamUrl): string {
const quality = formatAudioQuality(stream.actualQuality ?? stream.actualBitrate)
const details = [
stream.providerFormat,
stream.actualBitrate !== null ? `平均约 ${stream.actualBitrate} kbps` : null,
].filter(Boolean)
return details.length ? `${quality}(${details.join(',')})` : quality
}
function formatDuration(seconds: number): string {
if (!Number.isFinite(seconds) || seconds <= 0) return '未知'
const minutes = Math.floor(seconds / 60)
const remainingSeconds = Math.floor(seconds % 60)
return `${minutes}:${String(remainingSeconds).padStart(2, '0')}`
}
function isQualityDowngraded(source: MusicSource, requested: AudioQuality, stream: ResolvedStreamUrl): boolean {
if (requested === 'highest') return false
const desired = getEffectiveQuality(source, requested, 2)
if (providerQualityRank(source, stream.attemptedBitrate) < providerQualityRank(source, desired)) return true
if (stream.actualQuality !== undefined) {
return providerQualityRank(source, stream.actualQuality) < providerQualityRank(source, stream.attemptedBitrate)
}
if (typeof stream.attemptedBitrate === 'number' && stream.actualBitrate !== null) {
return stream.actualBitrate < stream.attemptedBitrate
}
return false
}
/**
* Resolve one provider quality after applying the current membership cap.
* Providers select the best track format at or below that quality in one request.
*/
async function resolveStreamUrl(
source: MusicSource,
urlId: string,
bitrate: AudioQuality,
cookie?: string,
forceRefresh = false,
vipType: MembershipTier = 0,
): Promise<ResolvedStreamUrl | null> {
const attemptedBitrate = getEffectiveQuality(source, bitrate, vipType)
if (attemptedBitrate !== bitrate && bitrate !== 'highest') {
logger.info('已根据平台会员等级调整请求音质', {
source,
urlId,
requestedBitrate: bitrate,
attemptedBitrate,
vipType,
})
}
const result = await musicProvider.getStreamInfo(source, urlId, attemptedBitrate, cookie, forceRefresh, vipType)
return result ? { ...result, attemptedBitrate } : null
}
/**
* Resolve stream URL / cover, set current track, and broadcast PLAYER_PLAY.
* Returns true on success, false on failure.
* Serialized per room via mutex to prevent concurrent state corruption.
*/
export function playTrackInRoom(io: TypedServer, roomId: string, track: Track): Promise<boolean> {
return withPlayMutex(roomId, () => _playTrackInRoom(io, roomId, track))
}
/**
* Auto-play when the queue was empty. Re-checks `room.currentTrack` inside
* the mutex so that concurrent QUEUE_ADD handlers don't both trigger playback
* (the second caller sees the track set by the first and bails out).
*/
export function autoPlayIfEmpty(io: TypedServer, roomId: string, track: Track): Promise<boolean> {
return withPlayMutex(roomId, async () => {
const room = roomRepo.get(roomId)
if (!room || room.currentTrack) return false
return _playTrackInRoom(io, roomId, track)
})
}
async function _playTrackInRoom(io: TypedServer, roomId: string, track: Track): Promise<boolean> {
const room = roomRepo.get(roomId)
if (!room) return false
// Never trust/reuse a client-provided URL here. Resolving on the server is
// what lets us record the provider's actual bitrate and refresh expired URLs.
const resolved: Track = {
...track,
streamUrl: undefined,
streamFormat: undefined,
requiresServerProxy: undefined,
}
let streamResolution: ResolvedStreamUrl | null = null
let usedAuthenticatedAccount = false
// Always resolve on the server so the URL is fresh and actual quality is known.
if (!resolved.streamUrl) {
try {
const platformAuth = authService.getBestAuth(resolved.source, roomId)
const cookie = platformAuth?.cookie
const url = await resolveStreamUrl(
resolved.source,
resolved.urlId,
room.audioQuality,
cookie,
false,
platformAuth?.vipType ?? 0,
)
if (url) usedAuthenticatedAccount = Boolean(platformAuth)
if (!url) {
const isVip = resolved.vip
const hint = isVip && !cookie ? '(VIP 歌曲,需要有用户登录 VIP 账号)' : ''
logger.warn('无法获取歌曲播放地址,准备尝试跨平台匹配', {
roomId,
trackId: resolved.id,
title: resolved.title,
source: resolved.source,
requestedBitrate: room.audioQuality,
vip: Boolean(isVip),
authenticated: Boolean(cookie),
})
// -------------------------------------------------------------------
// Auto fallback (netease <-> tencent)
// -------------------------------------------------------------------
if (
config.autoFallback.enabled &&
(resolved.source === 'netease' ||
resolved.source === 'tencent' ||
resolved.source === 'kugou' ||
resolved.source === 'kugou_concept') &&
canAutoFallback(roomId, resolved.id)
) {
// Prevent repeated fallback attempts for this queue item
markAutoFallback(roomId, resolved.id, 60_000)
const fromSource = resolved.source
const trackTitle = resolved.title
const toSource = trackFallbackService.getFallbackTargetSource(fromSource)
if (toSource) {
const attemptId = nanoid()
io.to(roomId).emit(EVENTS.ROOM_AUTO_FALLBACK, {
attemptId,
status: 'trying',
fromSource,
toSource,
trackTitle,
reasonType: isVip && !cookie ? 'VIP_REQUIRED' : 'UNKNOWN',
reasonDetail: isVip && !cookie ? 'VIP 歌曲未登录' : undefined,
})
try {
const best = await trackFallbackService.findBestAlternativeTrack(resolved, toSource)
if (best) {
const fallbackAuth = authService.getBestAuth(best.track.source, roomId)
const url2 = await resolveStreamUrl(
best.track.source,
best.track.urlId,
room.audioQuality,
fallbackAuth?.cookie,
false,
fallbackAuth?.vipType ?? 0,
)
if (url2) {
const replacement: Track = {
...best.track,
id: resolved.id, // keep stable id so queue/current references remain consistent
requestedBy: resolved.requestedBy,
streamUrl: url2.url,
streamFormat: url2.streamFormat,
requiresServerProxy: url2.requiresServerProxy,
}
streamResolution = url2
usedAuthenticatedAccount = Boolean(fallbackAuth)
// Replace in queue (if present) before playing
const roomBefore = roomRepo.get(roomId)
if (roomBefore) {
roomBefore.queue = roomBefore.queue.map((t) => (t.id === resolved.id ? replacement : t))
io.to(roomId).emit(EVENTS.QUEUE_UPDATED, { queue: roomBefore.queue })
}
io.to(roomId).emit(EVENTS.ROOM_AUTO_FALLBACK, {
attemptId,
status: 'success',
fromSource,
toSource,
trackTitle,
})
// Continue playback with replacement
resolved.source = replacement.source
resolved.sourceId = replacement.sourceId
resolved.urlId = replacement.urlId
resolved.lyricId = replacement.lyricId
resolved.picId = replacement.picId
resolved.metadataSource = replacement.metadataSource
resolved.vip = replacement.vip
resolved.album = replacement.album
resolved.artist = replacement.artist
resolved.title = replacement.title
resolved.cover = replacement.cover
resolved.streamUrl = replacement.streamUrl
resolved.streamFormat = replacement.streamFormat
resolved.requiresServerProxy = replacement.requiresServerProxy
}
}
} catch (fallbackErr) {
logger.error('跨平台自动匹配歌曲失败', fallbackErr, { roomId, trackId: resolved.id })
}
if (!resolved.streamUrl) {
io.to(roomId).emit(EVENTS.ROOM_AUTO_FALLBACK, {
attemptId,
status: 'failed',
fromSource,
toSource,
trackTitle,
reasonType: isVip && !cookie ? 'VIP_REQUIRED' : 'UNKNOWN',
})
}
}
}
// If still no streamUrl, follow original failure path
if (!resolved.streamUrl) {
// Auto-remove the invalid track from the queue
queueService.removeTrack(roomId, resolved.id)
const room2 = roomRepo.get(roomId)
if (room2) io.to(roomId).emit(EVENTS.QUEUE_UPDATED, { queue: room2.queue })
io.to(roomId).emit(EVENTS.ROOM_ERROR, {
code: ERROR_CODE.STREAM_FAILED,
message: `无法获取「${resolved.title}」的播放链接${hint},已从列表移除`,
})
return false
}
}
if (url) streamResolution = url
resolved.streamUrl = url?.url ?? resolved.streamUrl
resolved.streamFormat = url?.streamFormat ?? resolved.streamFormat
resolved.requiresServerProxy = url?.requiresServerProxy ?? resolved.requiresServerProxy
} catch (err) {
logger.error('解析歌曲播放地址时发生异常', err, {
roomId,
trackId: resolved.id,
source: resolved.source,
urlId: resolved.urlId,
})
// Auto-remove on unexpected failure too
queueService.removeTrack(roomId, resolved.id)
const room2 = roomRepo.get(roomId)
if (room2) io.to(roomId).emit(EVENTS.QUEUE_UPDATED, { queue: room2.queue })
return false
}
}
if (!resolved.streamUrl || !streamResolution) return false
// Fetch cover if missing
if (!resolved.cover && resolved.picId) {
try {
const cover = await musicProvider.getCover(resolved.metadataSource ?? resolved.source, resolved.picId)
if (cover) resolved.cover = cover
} catch {
// Non-critical, leave cover empty
}
}
// Update room state — align serverTimestamp with the scheduled execution time
// so estimateCurrentTime() is accurate from the first scheduled frame.
room.currentTrack = resolved
lastStreamUrlRefreshAt.set(roomId, Date.now())
const scheduleTime = getScheduleTime(roomId)
room.playState = {
isPlaying: true,
currentTime: 0,
serverTimestamp: scheduleTime,
}
roomRepo.persist(roomId)
io.to(roomId).emit(EVENTS.PLAYER_PLAY, {
track: resolved,
playState: scheduled(room.playState, roomId, scheduleTime),
})
// 通知大厅用户当前播放曲目变化
broadcastRoomList(io)
const artistLabel = resolved.artist.filter(Boolean).join(' / ') || '未知歌手'
const requestedQuality = formatAudioQuality(room.audioQuality)
const actualQuality = formatResolvedAudioQuality(streamResolution)
const qualityDowngraded = isQualityDowngraded(resolved.source, room.audioQuality, streamResolution)
const qualityDetail = qualityDowngraded ? `${actualQuality}(房间期望 ${requestedQuality},已降级)` : actualQuality
logger.info(
`开始播放《${resolved.title}》 - ${artistLabel}|平台:${SOURCE_LABELS[resolved.source]}|实际音质:${qualityDetail}`,
{
event: 'player.track_started',
roomId,
trackId: resolved.id,
source: resolved.source,
urlId: resolved.urlId,
title: resolved.title,
artists: resolved.artist,
album: resolved.album || '未知专辑',
duration: formatDuration(resolved.duration),
requestedBy: resolved.requestedBy ?? '未知',
requestedBitrate: room.audioQuality,
attemptedBitrate: streamResolution.attemptedBitrate,
actualBitrate: streamResolution.actualBitrate,
actualQuality: streamResolution.actualQuality ?? null,
providerFormat: streamResolution.providerFormat ?? null,
streamFileSize: streamResolution.fileSize ?? null,
requiresServerProxy: Boolean(resolved.requiresServerProxy),
qualityDowngraded,
streamUrlFromCache: streamResolution.fromCache,
authenticated: usedAuthenticatedAccount,
scheduledDelayMs: Math.max(0, scheduleTime - Date.now()),
},
)
return true
}
export function resumeTrack(io: TypedServer, roomId: string, _initiatorSocket?: TypedSocket): void {
const room = roomRepo.get(roomId)
if (!room || !room.currentTrack) return
const scheduleTime = getScheduleTime(roomId)
room.playState = { ...room.playState, isPlaying: true, serverTimestamp: scheduleTime }
roomRepo.persist(roomId)
// All clients (including initiator) must execute at the same scheduled moment
io.to(roomId).emit(EVENTS.PLAYER_RESUME, { playState: scheduled(room.playState, roomId, scheduleTime) })
}
export function pauseTrack(io: TypedServer, roomId: string, _initiatorSocket?: TypedSocket): void {
const room = roomRepo.get(roomId)
if (!room) return
// Snapshot estimated position before pausing so resume starts from the correct point
const scheduleTime = getScheduleTime(roomId)
const snapshotTime = estimateCurrentTimeAt(roomId, scheduleTime)
room.playState = { isPlaying: false, currentTime: snapshotTime, serverTimestamp: scheduleTime }
roomRepo.persist(roomId)
// All clients must pause at the same scheduled moment
io.to(roomId).emit(EVENTS.PLAYER_PAUSE, { playState: scheduled(room.playState, roomId, scheduleTime) })
}
export function seekTrack(io: TypedServer, roomId: string, currentTime: number, _initiatorSocket?: TypedSocket): void {
const room = roomRepo.get(roomId)
if (!room) return
const scheduleTime = getScheduleTime(roomId)
// When playing, align serverTimestamp with scheduled time so estimateCurrentTime() is accurate
room.playState = {
...room.playState,
currentTime,
serverTimestamp: room.playState.isPlaying ? scheduleTime : Date.now(),
}
roomRepo.persist(roomId)
// All clients must seek at the same scheduled moment
io.to(roomId).emit(EVENTS.PLAYER_SEEK, { playState: scheduled(room.playState, roomId, scheduleTime) })
}
export function updatePlayState(roomId: string, update: Partial<PlayState>): void {
const room = roomRepo.get(roomId)
if (room) {
room.playState = { ...room.playState, ...update, serverTimestamp: Date.now() }
roomRepo.persist(roomId)
}
}
export function setCurrentTrack(roomId: string, track: Track | null): void {
const room = roomRepo.get(roomId)
if (room) {
room.currentTrack = track
if (!track?.streamUrl) lastStreamUrlRefreshAt.delete(roomId)
room.playState = {
isPlaying: track !== null,
currentTime: 0,
serverTimestamp: Date.now(),
}
roomRepo.persist(roomId)
}
}
/**
* Stop playback: clear current track, emit PLAYER_PAUSE with a stopped state,
* broadcast full ROOM_STATE so clients clear stale track, and notify lobby.
* Used when no next track is available (queue empty, track removed, queue cleared).
*/
export function stopPlayback(io: TypedServer, roomId: string): void {
setCurrentTrack(roomId, null)
io.to(roomId).emit(EVENTS.PLAYER_PAUSE, {
playState: { isPlaying: false, currentTime: 0, serverTimestamp: Date.now(), serverTimeToExecute: Date.now() },
})
const room = roomRepo.get(roomId)
if (room) {
io.to(roomId).emit(EVENTS.ROOM_STATE, toPublicRoomState(room))
}
broadcastRoomList(io)
}
/**
* Mutex-protected variant of `stopPlayback`. Use when the caller is NOT
* already inside the per-room mutex (e.g. QUEUE_CLEAR) to prevent races
* with concurrent `autoPlayIfEmpty` / `_playTrackInRoom` operations.
*/
export function stopPlaybackSafe(io: TypedServer, roomId: string): Promise<void> {
return withPlayMutex(roomId, async () => {
stopPlayback(io, roomId)
})
}
// ---------------------------------------------------------------------------
// Next / Previous track (debounce + queue navigation inside mutex)
// ---------------------------------------------------------------------------
/**
* Advance to the next track in the queue. Debounce check and queue navigation
* run inside the per-room mutex so two rapid NEXT events can never both pass
* the debounce in the same event loop tick.
*/
export function playNextTrackInRoom(
io: TypedServer,
roomId: string,
playMode: PlayMode,
options?: { skipDebounce?: boolean },
): Promise<void> {
return withPlayMutex(roomId, async () => {
if (options?.skipDebounce) {
// Still update the timestamp so a normal NEXT right after is debounced
lastNextTimestamp.set(roomId, Date.now())
} else if (_isNextDebounced(roomId)) {
return
}
const nextTrack = queueService.getNextTrack(roomId, playMode)
if (!nextTrack) {
stopPlayback(io, roomId)
return
}
const success = await _playTrackInRoom(io, roomId, nextTrack)
if (!success) {
const skipTrack = queueService.getNextTrack(roomId, playMode)
if (skipTrack) await _playTrackInRoom(io, roomId, skipTrack)
}
// Refresh debounce timestamp after async work completes.
// Without this, a second PLAYER_NEXT waiting on the mutex could pass
// the debounce check if _playTrackInRoom took longer than 500ms (e.g.
// stream URL resolution), causing a double-skip.
lastNextTimestamp.set(roomId, Date.now())
})
}
/**
* Go to the previous track in the queue. Same mutex serialization as next.
*/
export function playPrevTrackInRoom(
io: TypedServer,
roomId: string,
options?: { skipDebounce?: boolean },
): Promise<void> {
return withPlayMutex(roomId, async () => {
if (options?.skipDebounce) {
lastNextTimestamp.set(roomId, Date.now())
} else if (_isNextDebounced(roomId)) {
return
}
const prevTrack = queueService.getPreviousTrack(roomId)
if (!prevTrack) return
const success = await _playTrackInRoom(io, roomId, prevTrack)
if (!success) {
const skipTrack = queueService.getPreviousTrack(roomId)
if (skipTrack) await _playTrackInRoom(io, roomId, skipTrack)
}
// Refresh debounce timestamp after async work (same rationale as playNextTrackInRoom)
lastNextTimestamp.set(roomId, Date.now())
})
}
// ---------------------------------------------------------------------------
// Playback sync for newly-joined clients
// ---------------------------------------------------------------------------
/** Refresh an old permanent-room URL only when a user joins. */
export function refreshStreamUrlForJoin(roomId: string): Promise<boolean> {
return withPlayMutex(roomId, async () => {
const room = roomRepo.get(roomId)
const track = room?.currentTrack
if (!room?.permanent || !track) return false
const now = Date.now()
const lastRefreshAt = lastStreamUrlRefreshAt.get(roomId) ?? 0
const refreshInterval = track.streamUrl
? TIMING.STREAM_URL_REFRESH_INTERVAL_MS
: TIMING.STREAM_URL_REFRESH_RETRY_INTERVAL_MS
if (now - lastRefreshAt < refreshInterval) return false
// Record the attempt up front so failed upstream requests are also throttled.
lastStreamUrlRefreshAt.set(roomId, now)
try {
const platformAuth = authService.getBestAuth(track.source, roomId)
const refreshed = await resolveStreamUrl(
track.source,
track.urlId,
room.audioQuality,
platformAuth?.cookie,
true,
platformAuth?.vipType ?? 0,
)
if (!refreshed) {
if (room.currentTrack?.id === track.id) {
room.currentTrack = {
...room.currentTrack,
streamUrl: undefined,
streamFormat: undefined,
requiresServerProxy: undefined,
}
}
return false
}
if (room.currentTrack?.id !== track.id) return false
room.currentTrack = {
...room.currentTrack,
streamUrl: refreshed.url,
streamFormat: refreshed.streamFormat,
requiresServerProxy: refreshed.requiresServerProxy,
}
logger.info('Refreshed stale stream URL when user joined permanent room', {
event: 'player.stream_url_refreshed_on_join',
roomId,
trackId: track.id,
})
return true
} catch (err) {
if (room.currentTrack?.id === track.id) {
room.currentTrack = {
...room.currentTrack,
streamUrl: undefined,
streamFormat: undefined,
requiresServerProxy: undefined,
}
}
logger.warn('Failed to refresh stale stream URL when user joined permanent room', {
roomId,
trackId: track.id,
err,
})
return false
}
})
}
/**
* Resume a paused track before the first room state is sent to a user joining
* an empty room. The client uses that initial state to recover playback when
* the following PLAYER_PLAY event arrives before its player listeners mount.
*/
export function preparePlaybackForJoiningRoom(roomId: string, room: RoomData): void {
const isFirstUserInRoom = room.users.length === 1
if (!isFirstUserInRoom || !room.currentTrack?.streamUrl || room.playState.isPlaying) return
room.playState = {
...room.playState,
isPlaying: true,
serverTimestamp: Date.now(),
}
roomRepo.persist(roomId)
}
/**
* Send current playback state to a socket that just joined a room.
* Handles auto-resume when alone, and auto-play from queue.
*/
export async function syncPlaybackToSocket(
io: TypedServer,
socket: TypedSocket,
roomId: string,
room: RoomData,
): Promise<void> {
const isAloneInRoom = room.users.length === 1
if (room.currentTrack?.streamUrl) {
// Keep this idempotent fallback for callers that do not prepare the room
// state before syncing playback.
preparePlaybackForJoiningRoom(roomId, room)
const shouldAutoPlay = isAloneInRoom || room.playState.isPlaying
const snapshotTimestamp = Date.now()
const joinCalibrationDelayMs = NTP.INITIAL_INTERVAL_MS * NTP.MAX_INITIAL_SAMPLES + 100
const scheduleTime = shouldAutoPlay
? Math.max(getScheduleTime(roomId), snapshotTimestamp + joinCalibrationDelayMs)
: snapshotTimestamp
const snapshotCurrentTime = shouldAutoPlay
? estimateCurrentTimeAt(roomId, scheduleTime)
: estimateCurrentTime(roomId)
socket.emit(EVENTS.PLAYER_PLAY, {
track: room.currentTrack,
playState: {
isPlaying: shouldAutoPlay,
currentTime: snapshotCurrentTime,
serverTimestamp: scheduleTime,
serverTimeToExecute: scheduleTime,
},
})
} else if (isAloneInRoom && !room.currentTrack && room.queue.length > 0) {
// No current track but queue has items → start playing from queue
const firstTrack = room.queue[0]
await playTrackInRoom(io, roomId, firstTrack)
}
}
// ---------------------------------------------------------------------------
// Room cleanup and debounce
// ---------------------------------------------------------------------------
/** Debounce tracking for PLAYER_NEXT per room */
const lastNextTimestamp = new Map<string, number>()
/** Remove per-room entries for a deleted room */
export function cleanupRoom(roomId: string): void {
lastNextTimestamp.delete(roomId)
lastStreamUrlRefreshAt.delete(roomId)
playMutexes.delete(roomId)
}
/**
* Check and update the next-track debounce for a room.
* Returns true if the action should be SKIPPED (too soon), false if allowed.
* Internal: called inside mutex to prevent same-tick race conditions.
*/
function _isNextDebounced(roomId: string): boolean {
const now = Date.now()
const lastNext = lastNextTimestamp.get(roomId) ?? 0
if (now - lastNext < config.player.nextDebounceMs) return true
lastNextTimestamp.set(roomId, now)
return false
}
|