route.js 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. // // src/app/api/cronTask/route.js
  2. // import { CronJob } from "cron";
  3. // import Match from "../../models/Match"; // 确保路径正确
  4. // const timezone = "Asia/Shanghai";
  5. // const now = moment.tz(timezone);
  6. // const currentDate = now.toDate();
  7. // const currentTimeString = now.format("HH:mm");
  8. // // 创建2小时前的时间点
  9. // const twoHoursAgo = moment(now).subtract(2, "hours");
  10. // const twoHoursAgoDate = twoHoursAgo.format("YYYY-MM-DD"); // 使用日期字符串
  11. // const twoHoursAgoTime = twoHoursAgo.format("HH:mm");
  12. // let job;
  13. // export async function GET(req) {
  14. // if (!job) {
  15. // // 设置定时任务,以下示例为每分钟执行一次
  16. // job = new CronJob(
  17. // "*/1 * * * *", // cron 表达式
  18. // async () => {
  19. // // 更新所有开始超过2小时的比赛为已结束
  20. // Match.updateMany(
  21. // {
  22. // $or: [
  23. // // 早于今天的比赛
  24. // { date: { $lt: twoHoursAgoDate } },
  25. // // 今天的比赛且开始时间在2小时前
  26. // {
  27. // date: twoHoursAgoDate,
  28. // time: { $lte: twoHoursAgoTime },
  29. // },
  30. // ],
  31. // status: { $in: ["未开始", "进行中"] },
  32. // ...(type ? { type } : {}),
  33. // },
  34. // { $set: { status: "已结束" } }
  35. // ),
  36. // // 更新其他应该进行中的比赛
  37. // Match.updateMany(
  38. // {
  39. // date: { $lte: currentDate },
  40. // time: { $lte: currentTimeString },
  41. // status: "未开始",
  42. // // 排除已经过去2小时的比赛(因为上面的查询会处理)
  43. // $or: [
  44. // { date: { $gt: twoHoursAgoDate } },
  45. // {
  46. // date: twoHoursAgoDate,
  47. // time: { $gt: twoHoursAgoTime },
  48. // },
  49. // ],
  50. // ...(type ? { type } : {}),
  51. // },
  52. // { $set: { status: "进行中" } }
  53. // )
  54. // },
  55. // null,
  56. // true, // 设置自动启动任务
  57. // "Asia/Shanghai" // 设置时区(可选)
  58. // );
  59. // }
  60. // return new Response(JSON.stringify({ message: "定时任务已启动" }), {
  61. // status: 200,
  62. // headers: { "Content-Type": "application/json" },
  63. // });
  64. // }