90d3b35069
- swipe/undo:校验 userId 在 data.users 中,非成员返回 403 - reset:要求传 userId,校验为房间成员或创建者 - 客户端 handleReset/handleNarrow 传入 userId
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import { NextResponse } from "next/server";
|
|
import { atomicUpdateRoom } from "@/lib/store";
|
|
import { notify } from "@/lib/roomEvents";
|
|
import { apiHandler, ApiError, requireUserId } from "@/lib/api";
|
|
|
|
export const POST = apiHandler(async (req, { params }) => {
|
|
const { id } = await params;
|
|
|
|
const body = await req.json().catch(() => ({}));
|
|
const userId = body?.userId;
|
|
requireUserId(userId);
|
|
|
|
let restaurantIds: string[] | undefined;
|
|
if (body?.restaurantIds && Array.isArray(body.restaurantIds)) {
|
|
restaurantIds = body.restaurantIds;
|
|
}
|
|
|
|
const updated = await atomicUpdateRoom(id, (data) => {
|
|
if (!data.users.includes(userId) && data.creatorId !== userId) {
|
|
throw new ApiError("只有房间成员可以重置", 403);
|
|
}
|
|
|
|
if (restaurantIds && restaurantIds.length > 0) {
|
|
const idSet = new Set(restaurantIds);
|
|
data.restaurants = data.restaurants.filter((r) => idSet.has(r.id));
|
|
}
|
|
data.likes = {};
|
|
data.swipeCounts = {};
|
|
data.match = null;
|
|
return data;
|
|
});
|
|
|
|
if (!updated) throw new ApiError("房间不存在或已过期", 404);
|
|
|
|
notify(id);
|
|
|
|
return NextResponse.json({ ok: true });
|
|
});
|