|
@@ -1,6 +1,8 @@
|
|
|
import dbConnect from "../../lib/dbConnect";
|
|
|
import ExchangeHistory from "../../models/ExchangeHistory";
|
|
|
import ExchangeItem from "../../models/ExchangeItem";
|
|
|
+import User from "../../models/User";
|
|
|
+import PointHistory from "../../models/PointHistory";
|
|
|
import { NextResponse } from "next/server";
|
|
|
import { setCORSHeaders, handleError } from "../../lib/apiUtils";
|
|
|
|
|
@@ -128,6 +130,24 @@ export async function PUT(request) {
|
|
|
try {
|
|
|
const { id, ...updateData } = await request.json();
|
|
|
console.log(id, updateData);
|
|
|
+
|
|
|
+ // 获取原始的兑换历史记录
|
|
|
+ const originalExchangeHistory = await ExchangeHistory.findById(id).populate(
|
|
|
+ "item"
|
|
|
+ );
|
|
|
+ if (!originalExchangeHistory) {
|
|
|
+ return NextResponse.json(
|
|
|
+ { success: false, error: "未找到兑换历史" },
|
|
|
+ { status: 404 }
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ // 保存原始状态
|
|
|
+ const originalStatus = originalExchangeHistory.status;
|
|
|
+
|
|
|
+ console.log("originalExchangeHistory", originalExchangeHistory);
|
|
|
+
|
|
|
+ // 更新兑换历史
|
|
|
const updatedExchangeHistory = await ExchangeHistory.findByIdAndUpdate(
|
|
|
id,
|
|
|
updateData,
|
|
@@ -135,12 +155,37 @@ export async function PUT(request) {
|
|
|
new: true,
|
|
|
runValidators: true,
|
|
|
}
|
|
|
- );
|
|
|
- if (!updatedExchangeHistory) {
|
|
|
- return NextResponse.json(
|
|
|
- { success: false, error: "未找到兑换历史" },
|
|
|
- { status: 404 }
|
|
|
+ ).populate("item");
|
|
|
+
|
|
|
+ // 检查状态是否变更为"已兑换"
|
|
|
+ if (updateData.status === "已兑换" && originalStatus !== "已兑换") {
|
|
|
+ const pointsToDeduct = updatedExchangeHistory.item.points;
|
|
|
+
|
|
|
+ // 更新用户积分
|
|
|
+ const updatedUser = await User.findByIdAndUpdate(
|
|
|
+ updatedExchangeHistory.userId,
|
|
|
+ { $inc: { points: -pointsToDeduct } }, // 减少用户积分
|
|
|
+ { new: true, runValidators: true }
|
|
|
);
|
|
|
+
|
|
|
+ if (!updatedUser) {
|
|
|
+ throw new Error("更新用户积分失败");
|
|
|
+ }
|
|
|
+
|
|
|
+ console.log(
|
|
|
+ `用户 ${updatedUser.username} 的积分已扣除 ${pointsToDeduct} 点`
|
|
|
+ );
|
|
|
+
|
|
|
+ // 创建积分历史记录
|
|
|
+ const reason = `兑换: ${updatedExchangeHistory.item.title
|
|
|
+ .replace(/<[^>]*>/g, "")
|
|
|
+ .trim()}`;
|
|
|
+ const pointHistory = new PointHistory({
|
|
|
+ user: updatedUser._id,
|
|
|
+ points: -pointsToDeduct,
|
|
|
+ reason: reason,
|
|
|
+ });
|
|
|
+ await pointHistory.save();
|
|
|
}
|
|
|
const response = NextResponse.json(
|
|
|
{ success: true, data: updatedExchangeHistory },
|