feat: 抽象定时任务
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 31s
CI Monitor CI/CD / deploy (push) Successful in 35s

This commit is contained in:
zhaoyingbo 2024-06-28 10:15:29 +08:00
parent 7d90bd368e
commit 4c109a006f
4 changed files with 39 additions and 24 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -1,30 +1,10 @@
import { scheduleJob } from "node-schedule";
import managePipeline from "./controllers/managePipeLine";
import manageProject from "./controllers/manageProject";
import manageUser from "./controllers/manageUser";
import manageRobot from "./controllers/manageRobot";
import initSchedule from "./schedule";
const main = async () => {
const fullProjList = await manageProject.getFullProjList();
const fullPipelineList = await Promise.all(
fullProjList.map((v) => managePipeline.getFullPipelineList(v))
);
const fullUserMap = await manageUser.getFullUserMap(fullPipelineList);
const fullProjectMap = await manageProject.getFullProjectMap(fullProjList);
await managePipeline.insertFullPipelineList(
fullPipelineList,
fullUserMap,
fullProjectMap
);
};
// 启动定时任务
initSchedule();
main();
scheduleJob("*/15 * * * *", main);
scheduleJob("0 10 * * 5", manageRobot.sendCIReportByCron);
Bun.serve({
const server = Bun.serve({
async fetch(req) {
const url = new URL(req.url);
if (url.pathname === "/ci") {
@ -43,3 +23,5 @@ Bun.serve({
},
port: 3000,
});
console.log(`Listening on ${server.hostname}:${server.port}`);

14
schedule/index.ts Normal file
View File

@ -0,0 +1,14 @@
import { scheduleJob } from "node-schedule";
import manageRobot from "../controllers/manageRobot";
import syncPipLine from "./syncPipLine";
const initSchedule = async () => {
// 每天十点钟发送CI报告
scheduleJob("0 10 * * *", manageRobot.sendCIReportByCron);
// 每15分钟同步一次CI数据
scheduleJob("*/15 * * * *", syncPipLine);
// 立即同步一次
syncPipLine();
}
export default initSchedule;

19
schedule/syncPipLine.ts Normal file
View File

@ -0,0 +1,19 @@
import managePipeline from "../controllers/managePipeLine";
import manageProject from "../controllers/manageProject";
import manageUser from "../controllers/manageUser";
const syncPipLine = async () => {
const fullProjList = await manageProject.getFullProjList();
const fullPipelineList = await Promise.all(
fullProjList.map((v) => managePipeline.getFullPipelineList(v))
);
const fullUserMap = await manageUser.getFullUserMap(fullPipelineList);
const fullProjectMap = await manageProject.getFullProjectMap(fullProjList);
await managePipeline.insertFullPipelineList(
fullPipelineList,
fullUserMap,
fullProjectMap
);
};
export default syncPipLine;