/* eslint-disable no-console */ import { NextRequest, NextResponse } from 'next/server'; import { getAuthInfoFromCookie } from '@/lib/auth'; import { getConfig } from '@/lib/config'; import { db } from '@/lib/db'; import { PlayRecord } from '@/lib/types'; export const runtime = 'nodejs'; export async function GET(request: NextRequest) { try { // 从 cookie 获取用户信息 const authInfo = getAuthInfoFromCookie(request); if (!authInfo || !authInfo.username) { return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }); } // 检查用户状态和执行迁移 if (authInfo.username !== process.env.USERNAME) { // 非站长,检查用户存在或被封禁 const userInfoV2 = await db.getUserInfoV2(authInfo.username); if (!userInfoV2) { return NextResponse.json({ error: '用户不存在' }, { status: 401 }); } if (userInfoV2.banned) { return NextResponse.json({ error: '用户已被封禁' }, { status: 401 }); } // 检查播放记录迁移标识,没有迁移标识时执行迁移 if (!userInfoV2.playrecord_migrated) { console.log(`用户 ${authInfo.username} 播放记录未迁移,开始执行迁移...`); await db.migratePlayRecords(authInfo.username); } } else { // 站长也需要执行迁移(站长可能不在数据库中,直接尝试迁移) const userInfoV2 = await db.getUserInfoV2(authInfo.username); if (!userInfoV2 || !userInfoV2.playrecord_migrated) { console.log(`站长 ${authInfo.username} 播放记录未迁移,开始执行迁移...`); await db.migratePlayRecords(authInfo.username); } } const records = await db.getAllPlayRecords(authInfo.username); return NextResponse.json(records, { status: 200 }); } catch (err) { console.error('获取播放记录失败', err); return NextResponse.json( { error: 'Internal Server Error' }, { status: 500 } ); } } export async function POST(request: NextRequest) { try { // 从 cookie 获取用户信息 const authInfo = getAuthInfoFromCookie(request); if (!authInfo || !authInfo.username) { return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }); } if (authInfo.username !== process.env.USERNAME) { // 非站长,检查用户存在或被封禁 const userInfoV2 = await db.getUserInfoV2(authInfo.username); if (!userInfoV2) { return NextResponse.json({ error: '用户不存在' }, { status: 401 }); } if (userInfoV2.banned) { return NextResponse.json({ error: '用户已被封禁' }, { status: 401 }); } } const body = await request.json(); const { key, record }: { key: string; record: PlayRecord } = body; if (!key || !record) { return NextResponse.json( { error: 'Missing key or record' }, { status: 400 } ); } // 验证播放记录数据 if (!record.title || !record.source_name || record.index < 1) { return NextResponse.json( { error: 'Invalid record data' }, { status: 400 } ); } // 从key中解析source和id const [source, id] = key.split('+'); if (!source || !id) { return NextResponse.json( { error: 'Invalid key format' }, { status: 400 } ); } const finalRecord = { ...record, save_time: record.save_time ?? Date.now(), } as PlayRecord; await db.savePlayRecord(authInfo.username, source, id, finalRecord); // 异步清理旧的播放记录(不阻塞响应) (db as any).storage.cleanupOldPlayRecords(authInfo.username).catch((err: Error) => { console.error('异步清理播放记录失败:', err); }); return NextResponse.json({ success: true }, { status: 200 }); } catch (err) { console.error('保存播放记录失败', err); return NextResponse.json( { error: 'Internal Server Error' }, { status: 500 } ); } } export async function DELETE(request: NextRequest) { try { // 从 cookie 获取用户信息 const authInfo = getAuthInfoFromCookie(request); if (!authInfo || !authInfo.username) { return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }); } if (authInfo.username !== process.env.USERNAME) { // 非站长,检查用户存在或被封禁 const userInfoV2 = await db.getUserInfoV2(authInfo.username); if (!userInfoV2) { return NextResponse.json({ error: '用户不存在' }, { status: 401 }); } if (userInfoV2.banned) { return NextResponse.json({ error: '用户已被封禁' }, { status: 401 }); } } const username = authInfo.username; const { searchParams } = new URL(request.url); const key = searchParams.get('key'); if (key) { // 如果提供了 key,删除单条播放记录 const [source, id] = key.split('+'); if (!source || !id) { return NextResponse.json( { error: 'Invalid key format' }, { status: 400 } ); } await db.deletePlayRecord(username, source, id); } else { // 未提供 key,则清空全部播放记录 // 目前 DbManager 没有对应方法,这里直接遍历删除 const all = await db.getAllPlayRecords(username); await Promise.all( Object.keys(all).map(async (k) => { const [s, i] = k.split('+'); if (s && i) await db.deletePlayRecord(username, s, i); }) ); } return NextResponse.json({ success: true }, { status: 200 }); } catch (err) { console.error('删除播放记录失败', err); return NextResponse.json( { error: 'Internal Server Error' }, { status: 500 } ); } }