"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const router_1 = __importDefault(require("@koa/router")); const FavoritesService = __importStar(require("./favorites.service")); const errorHandler_1 = require("../../middleware/errorHandler"); const auth_1 = require("../../middleware/auth"); // 测试用户ID(开发环境使用) const TEST_USER_ID = '1'; const router = new router_1.default(); // 获取收藏列表 router.get('/', auth_1.optionalAuth, async (ctx) => { // 开发环境使用测试用户ID const userId = ctx.state.user?.userId || TEST_USER_ID; const favorites = await FavoritesService.getFavorites(userId); ctx.body = { code: 0, message: 'success', data: favorites, }; }); // 添加收藏 router.post('/', auth_1.optionalAuth, async (ctx) => { // 开发环境使用测试用户ID const userId = ctx.state.user?.userId || TEST_USER_ID; const body = ctx.request.body; const { audioId } = body; if (!audioId) { throw new errorHandler_1.BadRequestError('音频ID不能为空'); } const favorite = await FavoritesService.addFavorite(userId, audioId); ctx.body = { code: 0, message: '收藏成功', data: favorite, }; }); // 取消收藏 router.delete('/:audioId', auth_1.optionalAuth, async (ctx) => { // 开发环境使用测试用户ID const userId = ctx.state.user?.userId || TEST_USER_ID; const audioId = parseInt(ctx.params.audioId); await FavoritesService.removeFavorite(userId, audioId); ctx.body = { code: 0, message: '已取消收藏', }; }); // 检查是否已收藏 router.get('/check/:audioId', auth_1.optionalAuth, async (ctx) => { // 开发环境使用测试用户ID const userId = ctx.state.user?.userId || TEST_USER_ID; const audioId = parseInt(ctx.params.audioId); const isFavorited = await FavoritesService.isFavorited(userId, audioId); ctx.body = { code: 0, message: 'success', data: { isFavorited }, }; }); exports.default = router;