feat: 添加定时任务,发送钟哥的排班通知;更新相关文件以支持新功能

This commit is contained in:
zhaoyingbo 2025-01-22 15:34:42 +00:00
parent 4990ffb3a4
commit dacdd812fd
3 changed files with 34 additions and 1 deletions

View File

@ -40,7 +40,8 @@
"Xname",
"Yingbo",
"Yoav",
"zhaoyingbo"
"zhaoyingbo",
"Zhong"
],
// The path to the `bun` executable.
"bun.runtime": "/home/node/.bun/bin/bun",

View File

@ -1,6 +1,7 @@
import schedule from "node-schedule"
import report from "../controller/groupAgent/report"
import sendZhongNotify from "./zhongNotify"
export const initSchedule = async () => {
// 定时任务,每周一到周四晚上 8 点 0 分 0 秒执行
@ -8,4 +9,7 @@ export const initSchedule = async () => {
// 定时任务,每周五晚上 8 点 0 分 0 秒执行
schedule.scheduleJob("0 20 * * 5", () => report.genAllReport("weekly"))
// 定时任务,每天早上 6 点 0 分 0 秒执行
schedule.scheduleJob("0 6 * * *", sendZhongNotify)
}

28
schedule/zhongNotify.ts Normal file
View File

@ -0,0 +1,28 @@
import { genContextManually } from "../utils/genContext"
/**
*
* @returns {string}
*/
const getScheduleStatus = () => {
const anchorTime = new Date("2023/03/20")
const now = new Date()
const diffTime = Math.floor(((now as any) - (anchorTime as any)) / 86400000)
const scheduleMap = ["休班", "白班", "白班", "夜班", "夜班", "休班"]
return scheduleMap[diffTime % 6]
}
/**
*
* @returns {Promise<void>}
*/
const sendZhongNotify = async () => {
const ctx = await genContextManually()
const status = getScheduleStatus()
await ctx.larkService.message.sendText2Chat(
ctx.appInfo.errChatId,
`钟哥今天是${status}哦~`
)
}
export default sendZhongNotify