feat: 添加fmMonitor定时任务,监控节目更新并发送通知;优化sendZhongNotify逻辑,增强错误处理

This commit is contained in:
zhaoyingbo 2025-01-23 12:39:04 +00:00
parent dacdd812fd
commit feb6b1efaf
4 changed files with 79 additions and 7 deletions

View File

@ -3,7 +3,7 @@ import { RecordModel } from "pocketbase"
import pbClient from "../db/pbClient"
interface ConfigModel extends RecordModel {
export interface ConfigModel extends RecordModel {
key: string
value: string
desc: string

59
schedule/fmMonitor.ts Normal file
View File

@ -0,0 +1,59 @@
import { ConfigModel } from "../constant/config"
import pbClient from "../db/pbClient"
import { genContextManually } from "../utils/genContext"
/**
*
* @returns {Promise<string>}
*/
const getLatestTitle = async (): Promise<string> => {
const response = await fetch("https://www.qingting.fm/channels/387255/").then(
(res) => res.text()
)
const match = response.match(/"title":"([^"]+)"/)
if (match?.[1]) return match[1]
return ""
}
/**
*
* @param {string} title -
* @returns {Promise<boolean>}
*/
const diffPbContent = async (title: string): Promise<boolean> => {
const id = "7364o2nt8iq7j1n"
const current = await pbClient.collection<ConfigModel>("env").getOne(id)
if (current.value === title) return false
await pbClient.collection<ConfigModel>("env").update(id, { value: title })
return true
}
/**
*
* @returns {Promise<void>}
*/
const fmMonitor = async (): Promise<void> => {
const { larkService, logger, appInfo } = await genContextManually()
logger.info("fmMonitor start")
try {
const title = await getLatestTitle()
if (!title) throw new Error("getLatestTitle empty")
const diff = await diffPbContent(title)
if (!diff) {
logger.info("fmMonitor no diff")
return
}
await larkService.message.sendText2Chat(
appInfo.errChatId,
`<b>fmMonitor 节目更新</b>
${title}`
)
logger.info("fmMonitor success")
} catch (error) {
const errorMessage = `fmMonitor error: ${error}`
logger.error(errorMessage)
await larkService.message.sendText2Chat(appInfo.errChatId, errorMessage)
}
}
export default fmMonitor

View File

@ -1,6 +1,7 @@
import schedule from "node-schedule"
import report from "../controller/groupAgent/report"
import fmMonitor from "./fmMonitor"
import sendZhongNotify from "./zhongNotify"
export const initSchedule = async () => {
@ -12,4 +13,7 @@ export const initSchedule = async () => {
// 定时任务,每天早上 6 点 0 分 0 秒执行
schedule.scheduleJob("0 6 * * *", sendZhongNotify)
// 定时任务每5分钟执行一次
schedule.scheduleJob("*/5 * * * *", fmMonitor)
}

View File

@ -17,12 +17,21 @@ const getScheduleStatus = () => {
* @returns {Promise<void>}
*/
const sendZhongNotify = async () => {
const ctx = await genContextManually()
const status = getScheduleStatus()
await ctx.larkService.message.sendText2Chat(
ctx.appInfo.errChatId,
`钟哥今天是${status}哦~`
)
const { larkService, logger, appInfo } = await genContextManually()
logger.info("sendZhongNotify start")
try {
const status = getScheduleStatus()
await larkService.message.sendText2Chat(
appInfo.errChatId,
`<b>zhongNotify 每日提醒</b>
${status}~`
)
logger.info("sendZhongNotify success")
} catch (error) {
const errorMessage = `sendZhongNotify error: ${error}`
logger.error(errorMessage)
await larkService.message.sendText2Chat(appInfo.errChatId, errorMessage)
}
}
export default sendZhongNotify