File size: 14,752 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 | import type { MusicSource, PlatformAuthStatus, MyPlatformAuth } from '@music-together/shared'
import { platformAuthRepo } from '../repositories/platformAuthRepository.js'
import { logger } from '../utils/logger.js'
import { AUTH_PROVIDERS, type GetUserInfoResult } from './authProvider.js'
/**
* Room-scoped cookie pool for music platform authentication.
* Cookies are stored per-room so a user's VIP only benefits the room they're in.
* Cookies are NOT removed when a user disconnects — they stay until the room is destroyed.
* This ensures queued VIP songs can still play after the contributor leaves.
*/
interface CookieEntry {
cookie: string
userId: string
nickname: string
/** Normalized membership tier: 0 = none, 1 = VIP, 2 = SVIP. */
vipType: number
vipLabel?: string
vipLevel?: number
}
export interface MembershipDetails {
vipLabel?: string
vipLevel?: number
}
function normalizeVipType(platform: MusicSource, vipType: number): 0 | 1 | 2 {
if (vipType <= 0) return 0
// Older Netease records stored profile.vipType (usually 10/11). That value
// means vinyl VIP, not SVIP, so only the new normalized value 2 is SVIP.
if (platform === 'netease') return vipType === 2 ? 2 : 1
return vipType >= 2 ? 2 : 1
}
function normalizeMembershipDetails(details?: MembershipDetails): MembershipDetails {
const vipLabel =
details?.vipLabel
?.replace(/[\u0000-\u001f\u007f]/g, '')
.trim()
.slice(0, 32) || undefined
const level = Number(details?.vipLevel)
const vipLevel = Number.isInteger(level) && level > 0 && level <= 100 ? level : undefined
return { vipLabel, vipLevel }
}
function isHigherMembership(candidate: CookieEntry, current: CookieEntry | undefined): boolean {
if (!current) return true
if (candidate.vipType !== current.vipType) return candidate.vipType > current.vipType
return (candidate.vipLevel ?? 0) > (current.vipLevel ?? 0)
}
/** roomId -> (platform -> list of cookie entries) */
const roomCookiePool = new Map<string, Map<MusicSource, CookieEntry[]>>()
const membershipRefreshPool = new Map<string, Promise<boolean>>()
const membershipRefreshHistory = new Map<string, { cookie: string; refreshedAt: number }>()
const MEMBERSHIP_REFRESH_COOLDOWN_MS = 60_000
// ---------------------------------------------------------------------------
// Internal helpers
// ---------------------------------------------------------------------------
function getRoomPool(roomId: string): Map<MusicSource, CookieEntry[]> {
let pool = roomCookiePool.get(roomId)
if (!pool) {
pool = new Map()
roomCookiePool.set(roomId, pool)
}
return pool
}
function getPlatformEntries(roomId: string, platform: MusicSource): CookieEntry[] {
const pool = getRoomPool(roomId)
let entries = pool.get(platform)
if (!entries) {
entries = []
pool.set(platform, entries)
}
return entries
}
// ---------------------------------------------------------------------------
// Pool management
// ---------------------------------------------------------------------------
export function addCookie(
roomId: string,
platform: MusicSource,
userId: string,
cookie: string,
nickname: string,
vipType: number,
persist = true,
membership?: MembershipDetails,
): void {
vipType = normalizeVipType(platform, vipType)
const { vipLabel, vipLevel } = normalizeMembershipDetails(membership)
const entries = getPlatformEntries(roomId, platform)
// Dedup by cookie value (same account) or by userId (same socket)
const idx = entries.findIndex((e) => e.cookie === cookie || e.userId === userId)
const previousCookie = idx === -1 ? null : entries[idx]?.cookie
if (idx !== -1) entries.splice(idx, 1)
entries.push({ cookie, userId, nickname, vipType, vipLabel, vipLevel })
if (persist) {
platformAuthRepo.save(
{ userId, platform, cookie, nickname, vipType, vipLabel, vipLevel },
{ resetCredentialRefreshSchedule: platform === 'tencent' && previousCookie !== cookie },
)
}
logger.info(`用户“${nickname}”已在房间 ${roomId} 登录 ${platform}`, {
event: 'auth.account_added',
roomId,
userId,
nickname,
platform,
vipType,
vipLabel,
vipLevel,
})
}
export function removeCookie(roomId: string, platform: MusicSource, userId: string): boolean {
membershipRefreshHistory.delete(`${roomId}:${platform}:${userId}`)
const removedPersisted = platformAuthRepo.remove(userId, platform)
const pool = roomCookiePool.get(roomId)
if (!pool) return removedPersisted
const entries = pool.get(platform)
if (!entries) return removedPersisted
const idx = entries.findIndex((e) => e.userId === userId)
if (idx === -1) return removedPersisted
const removed = entries.splice(idx, 1)[0]
logger.info(`用户“${removed.nickname}”已在房间 ${roomId} 退出 ${platform}`, {
event: 'auth.account_removed',
roomId,
userId,
nickname: removed.nickname,
platform,
})
return true
}
/** Restore a user's server-persisted platform accounts into a room pool. */
export function restoreUserCookies(roomId: string, userId: string): number {
const entries = platformAuthRepo.loadUser(userId)
for (const entry of entries) {
addCookie(roomId, entry.platform, userId, entry.cookie, entry.nickname, entry.vipType, false, {
vipLabel: entry.vipLabel,
vipLevel: entry.vipLevel,
})
}
return entries.length
}
export type MembershipInfoLoader = (platform: MusicSource, cookie: string) => Promise<GetUserInfoResult>
async function refreshMembershipEntry(
roomId: string,
platform: MusicSource,
userId: string,
cookie: string,
loadInfo: MembershipInfoLoader,
): Promise<boolean> {
const refreshKey = `${roomId}:${platform}:${userId}`
const inFlight = membershipRefreshPool.get(refreshKey)
if (inFlight) return inFlight
const previousRefresh = membershipRefreshHistory.get(refreshKey)
if (previousRefresh?.cookie === cookie && Date.now() - previousRefresh.refreshedAt < MEMBERSHIP_REFRESH_COOLDOWN_MS) {
return false
}
const refresh = (async () => {
try {
let result = await loadInfo(platform, cookie)
if (!result.ok && result.reason === 'error') {
result = await loadInfo(platform, cookie)
}
if (!result.ok) {
logger.warn('恢复平台账号时未能刷新会员详情,保留原有账号信息', {
event: 'auth.membership_refresh_failed',
roomId,
userId,
platform,
reason: result.reason,
})
return false
}
const current = roomCookiePool
.get(roomId)
?.get(platform)
?.find((entry) => entry.userId === userId)
// The user may have logged out or replaced the credential while the
// provider request was in flight. Never restore a stale credential.
if (!current || current.cookie !== cookie) return false
const userInfo = result.data
addCookie(roomId, platform, userId, cookie, userInfo.nickname, userInfo.vipType, true, {
vipLabel: userInfo.vipLabel,
vipLevel: userInfo.vipLevel,
})
membershipRefreshHistory.set(refreshKey, { cookie, refreshedAt: Date.now() })
logger.info('已自动刷新恢复账号的会员详情', {
event: 'auth.membership_refreshed',
roomId,
userId,
platform,
vipType: userInfo.vipType,
vipLabel: userInfo.vipLabel,
vipLevel: userInfo.vipLevel,
})
return true
} catch (error) {
logger.warn('恢复平台账号时刷新会员详情发生异常,保留原有账号信息', {
event: 'auth.membership_refresh_failed',
roomId,
userId,
platform,
error: error instanceof Error ? error.message : String(error),
})
return false
} finally {
membershipRefreshPool.delete(refreshKey)
}
})()
membershipRefreshPool.set(refreshKey, refresh)
return refresh
}
/** Refresh restored accounts against the provider before their tier is used. */
export async function refreshMissingMembershipDetails(
roomId: string,
userId: string,
loadInfo: MembershipInfoLoader = (platform, cookie) => AUTH_PROVIDERS[platform].getUserInfo(cookie),
): Promise<MusicSource[]> {
const candidates = [...(roomCookiePool.get(roomId)?.entries() ?? [])].flatMap(([platform, entries]) =>
entries.filter((entry) => entry.userId === userId).map((entry) => ({ platform, cookie: entry.cookie })),
)
const results = await Promise.all(
candidates.map(async ({ platform, cookie }) => ({
platform,
refreshed: await refreshMembershipEntry(roomId, platform, userId, cookie, loadInfo),
})),
)
return results.filter((result) => result.refreshed).map((result) => result.platform)
}
export function persistUserCookieFromRoom(roomId: string, platform: MusicSource, userId: string): boolean {
const entry = roomCookiePool
.get(roomId)
?.get(platform)
?.find((item) => item.userId === userId)
if (!entry) return false
platformAuthRepo.save({
userId,
platform,
cookie: entry.cookie,
nickname: entry.nickname,
vipType: entry.vipType,
vipLabel: entry.vipLabel,
vipLevel: entry.vipLevel,
})
return true
}
/** Replace a refreshed credential in persistent storage and every active room. */
export function replaceCredentialCookie(
userId: string,
platform: MusicSource,
expectedCookie: string,
refreshedCookie: string,
): boolean {
const persisted = platformAuthRepo.loadUser(userId).find((entry) => entry.platform === platform)
if (!persisted || persisted.cookie !== expectedCookie) return false
platformAuthRepo.save({ ...persisted, cookie: refreshedCookie })
for (const [roomId, pool] of roomCookiePool) {
const entry = pool.get(platform)?.find((item) => item.userId === userId && item.cookie === expectedCookie)
if (!entry) continue
entry.cookie = refreshedCookie
membershipRefreshHistory.delete(`${roomId}:${platform}:${userId}`)
}
return true
}
export function replaceUserId(oldUserId: string, newUserId: string): void {
for (const pool of roomCookiePool.values()) {
for (const entries of pool.values()) {
for (const entry of entries) {
if (entry.userId === oldUserId) entry.userId = newUserId
}
}
}
}
/**
* Clean up all cookies for a room. Called when the room is destroyed.
*/
export function cleanupRoom(roomId: string): void {
if (roomCookiePool.delete(roomId)) {
logger.debug('已清理销毁房间的账号凭据池', { roomId })
}
const prefix = `${roomId}:`
for (const key of membershipRefreshHistory.keys()) {
if (key.startsWith(prefix)) membershipRefreshHistory.delete(key)
}
}
/**
* Check if a specific cookie value already exists for the given room + platform.
* Used to skip redundant validation on auto-resend.
*/
export function hasCookie(roomId: string, platform: MusicSource, cookie: string): boolean {
const pool = roomCookiePool.get(roomId)
if (!pool) return false
const entries = pool.get(platform)
if (!entries) return false
return entries.some((e) => e.cookie === cookie)
}
// ---------------------------------------------------------------------------
// Cookie retrieval
// ---------------------------------------------------------------------------
/**
* Get any available cookie for a platform in a specific room.
* Prefers VIP cookies over non-VIP.
*/
export function getAnyCookie(platform: MusicSource, roomId: string): string | null {
return getBestAuth(platform, roomId)?.cookie ?? null
}
export interface BestPlatformAuth {
cookie: string
vipType: 0 | 1 | 2
}
/** Return the credential with the highest normalized membership tier. */
export function getBestAuth(platform: MusicSource, roomId: string): BestPlatformAuth | null {
const pool = roomCookiePool.get(roomId)
if (!pool) return null
const entries = pool.get(platform)
if (!entries || entries.length === 0) return null
// 单次遍历取最高 vipType 的 cookie(O(n) 替代排序 O(n log n))
let best = entries[0]
for (let i = 1; i < entries.length; i++) {
if (isHigherMembership(entries[i], best)) best = entries[i]
}
return { cookie: best.cookie, vipType: normalizeVipType(platform, best.vipType) }
}
/**
* Get a specific user's cookie for a platform in a specific room.
* Used for user-private operations like fetching personal playlists.
*/
export function getUserCookie(userId: string, platform: MusicSource, roomId: string): string | null {
const pool = roomCookiePool.get(roomId)
if (!pool) return null
const entries = pool.get(platform)
if (!entries) return null
const entry = entries.find((e) => e.userId === userId)
return entry?.cookie ?? null
}
/** Existing VIP records without a detailed label should be revalidated once after upgrades. */
export function needsMembershipRefresh(userId: string, platform: MusicSource, roomId: string): boolean {
const entry = roomCookiePool
.get(roomId)
?.get(platform)
?.find((item) => item.userId === userId)
return Boolean(entry && entry.vipType > 0 && !entry.vipLabel)
}
// ---------------------------------------------------------------------------
// Status for frontend
// ---------------------------------------------------------------------------
/**
* Get aggregated auth status for all platforms in a specific room.
*/
export function getAllPlatformStatus(roomId: string): PlatformAuthStatus[] {
const platforms: MusicSource[] = ['netease', 'tencent', 'kugou', 'kugou_concept', 'bilibili']
const pool = roomCookiePool.get(roomId)
return platforms.map((platform) => {
const entries = pool?.get(platform) ?? []
const best = entries.reduce<CookieEntry | undefined>(
(current, entry) => (isHigherMembership(entry, current) ? entry : current),
undefined,
)
const maxVipType = best?.vipType ?? 0
return {
platform,
loggedInCount: entries.length,
hasVip: maxVipType > 0,
maxVipType,
maxVipLabel: best?.vipLabel,
maxVipLevel: best?.vipLevel,
}
})
}
/**
* Get a specific user's auth status across all platforms in a specific room.
*/
export function getUserAuthStatus(userId: string, roomId: string): MyPlatformAuth[] {
const platforms: MusicSource[] = ['netease', 'tencent', 'kugou', 'kugou_concept', 'bilibili']
const pool = roomCookiePool.get(roomId)
return platforms.map((platform) => {
const entries = pool?.get(platform) ?? []
const entry = entries.find((e) => e.userId === userId)
return {
platform,
loggedIn: !!entry,
nickname: entry?.nickname,
vipType: entry?.vipType,
vipLabel: entry?.vipLabel,
vipLevel: entry?.vipLevel,
}
})
}
|