Forráskód Böngészése

增加monodb索引

jax 4 hónapja
szülő
commit
36038a3c4f

+ 7 - 6
src/app/api/point-history/route.js

@@ -113,11 +113,14 @@ export const GET = withAuth(async (request) => {
         case "reason":
         case "reason":
           searchQuery.reason = { $regex: value, $options: "i" };
           searchQuery.reason = { $regex: value, $options: "i" };
           break;
           break;
-        case "dateRange":
-          const [startDate, endDate] = value.split(",");
+        case "startExchangeTime":
           searchQuery.createdAt = {
           searchQuery.createdAt = {
-            $gte: new Date(startDate),
-            $lte: new Date(endDate),
+            $gte: new Date(value),
+          };
+          break;
+        case "endExchangeTime":
+          searchQuery.createdAt = {
+            $lte: new Date(value),
           };
           };
           break;
           break;
         case "id":
         case "id":
@@ -126,8 +129,6 @@ export const GET = withAuth(async (request) => {
       }
       }
     }
     }
 
 
-    console.log("Search Query:", searchQuery);
-
     const total = await PointHistory.countDocuments(searchQuery);
     const total = await PointHistory.countDocuments(searchQuery);
     const history = await PointHistory.find(searchQuery)
     const history = await PointHistory.find(searchQuery)
       .sort({ createdAt: -1 })
       .sort({ createdAt: -1 })

+ 1 - 1
src/app/api/prediction/route.js

@@ -110,7 +110,7 @@ export const GET = withAuth(async (request) => {
           userInfo: 0,
           userInfo: 0,
         },
         },
       },
       },
-      { $sort: { createdAt: -1 } },
+      { $sort: { matchTime: -1 } },
     ];
     ];
 
 
     if (homeTeam) {
     if (homeTeam) {

+ 7 - 6
src/app/api/updateForMatch/route.js

@@ -91,12 +91,13 @@ export const POST = withAuth(async (request) => {
         const spreadPoints = match.basketball.spread.points;
         const spreadPoints = match.basketball.spread.points;
         const spreadFavorite = match.basketball.spread.favorite;
         const spreadFavorite = match.basketball.spread.favorite;
 
 
-        let homeScoreWithSpread =
-          spreadFavorite === "home"
-            ? homeScore - spreadPoints
-            : homeScore + spreadPoints;
-
-        const spreadResult = homeScoreWithSpread > awayScore ? "home" : "away";
+        let spreadResult;
+        //主队让分
+        if (spreadFavorite === "home") {
+          spreadResult = homeScore - spreadPoints > awayScore ? "home" : "away";
+        } else if (spreadFavorite === "away") { //客队让分
+          spreadResult = awayScore - spreadPoints > homeScore ? "away" : "home";
+        }
 
 
         if (prediction.basketball?.spread?.prediction == spreadResult) {
         if (prediction.basketball?.spread?.prediction == spreadResult) {
           prediction.basketball.spread.result = "correct";
           prediction.basketball.spread.result = "correct";

+ 0 - 1
src/app/api/user/route.js

@@ -57,7 +57,6 @@ export const GET = withAuth(async (request) => {
       }
       }
     }
     }
 
 
-    console.log("Search Query:", searchQuery);
 
 
     const skip = (current - 1) * pageSize;
     const skip = (current - 1) * pageSize;
     const totalUsers = await User.countDocuments(searchQuery);
     const totalUsers = await User.countDocuments(searchQuery);

+ 4 - 0
src/app/models/ExchangeHistory.js

@@ -34,5 +34,9 @@ const ExchangeHistorySchema = new mongoose.Schema(
   { timestamps: true }
   { timestamps: true }
 );
 );
 
 
+ExchangeHistorySchema.index({ "userId": 1 }); // userId 索引
+ExchangeHistorySchema.index({ "username": 1 }); // username 索引
+ExchangeHistorySchema.index({ "createdAt": 1 }); // createdAt 索引
+
 export default mongoose.models.ExchangeHistory ||
 export default mongoose.models.ExchangeHistory ||
   mongoose.model("ExchangeHistory", ExchangeHistorySchema);
   mongoose.model("ExchangeHistory", ExchangeHistorySchema);

+ 3 - 0
src/app/models/PointHistory.js

@@ -10,5 +10,8 @@ const PointHistorySchema = new mongoose.Schema(
   { timestamps: true }
   { timestamps: true }
 );
 );
 
 
+PointHistorySchema.index({ "user": 1 }); // user 索引
+PointHistorySchema.index({ "match": 1 }); // match 索引
+
 export default mongoose.models.PointHistory ||
 export default mongoose.models.PointHistory ||
   mongoose.model("PointHistory", PointHistorySchema);
   mongoose.model("PointHistory", PointHistorySchema);

+ 3 - 0
src/app/models/Prediction.js

@@ -88,5 +88,8 @@ const PredictionSchema = new mongoose.Schema(
   { timestamps: true }
   { timestamps: true }
 );
 );
 
 
+PredictionSchema.index({ "user": 1 }); // user 索引
+PredictionSchema.index({ "match": 1 }); // match 索引
+
 export default mongoose.models.Prediction ||
 export default mongoose.models.Prediction ||
   mongoose.model("Prediction", PredictionSchema);
   mongoose.model("Prediction", PredictionSchema);

+ 4 - 4
src/app/ui/BasketballMatch.jsx

@@ -294,8 +294,8 @@ const BasketballMatch = ({ selectedDayMatches, currentUser }) => {
                 >
                 >
                   {match.homeTeam.name}{" "}
                   {match.homeTeam.name}{" "}
                   {match.basketball?.spread?.favorite === "home"
                   {match.basketball?.spread?.favorite === "home"
-                    ? `+${Math.abs(match.basketball?.spread?.points || 0)}`
-                    : `-${Math.abs(match.basketball?.spread?.points || 0)}`}
+                    ? `-${Math.abs(match.basketball?.spread?.points || 0)}`
+                    : `+${Math.abs(match.basketball?.spread?.points || 0)}`}
                 </button>
                 </button>
                 {/* 客队 */}
                 {/* 客队 */}
                 <button
                 <button
@@ -311,8 +311,8 @@ const BasketballMatch = ({ selectedDayMatches, currentUser }) => {
                 >
                 >
                   {match.awayTeam.name}{" "}
                   {match.awayTeam.name}{" "}
                   {match.basketball?.spread?.favorite === "away"
                   {match.basketball?.spread?.favorite === "away"
-                    ? `+${Math.abs(match.basketball?.spread?.points || 0)}`
-                    : `-${Math.abs(match.basketball?.spread?.points || 0)}`}
+                    ? `-${Math.abs(match.basketball?.spread?.points || 0)}`
+                    : `+${Math.abs(match.basketball?.spread?.points || 0)}`}
                 </button>
                 </button>
               </div>
               </div>
             </div>
             </div>