forked from lxh/go-wxhelper
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
package tasks
|
|
|
|
import (
|
|
"github.com/go-co-op/gocron"
|
|
"go-wechat/config"
|
|
"go-wechat/tasks/friends"
|
|
"go-wechat/tasks/watergroup"
|
|
"log"
|
|
"time"
|
|
)
|
|
|
|
// InitTasks
|
|
// @description: 初始化定时任务
|
|
func InitTasks() {
|
|
// 没启用直接返回
|
|
if !config.Conf.Task.Enable {
|
|
log.Println("未启用定时任务")
|
|
return
|
|
}
|
|
// 定时任务发送消息
|
|
s := gocron.NewScheduler(time.Local)
|
|
|
|
// 水群排行
|
|
if config.Conf.Task.WaterGroup.Enable {
|
|
log.Printf("水群排行任务已启用,执行表达式: %+v", config.Conf.Task.WaterGroup.Cron)
|
|
if config.Conf.Task.WaterGroup.Cron.Yesterday != "" {
|
|
_, _ = s.Cron(config.Conf.Task.WaterGroup.Cron.Yesterday).Do(watergroup.Yesterday)
|
|
}
|
|
if config.Conf.Task.WaterGroup.Cron.Week != "" {
|
|
_, _ = s.Cron(config.Conf.Task.WaterGroup.Cron.Week).Do(watergroup.Week)
|
|
}
|
|
if config.Conf.Task.WaterGroup.Cron.Month != "" {
|
|
_, _ = s.Cron(config.Conf.Task.WaterGroup.Cron.Month).Do(watergroup.Month)
|
|
}
|
|
}
|
|
|
|
// 更新好友列表
|
|
if config.Conf.Task.SyncFriends.Enable {
|
|
log.Printf("更新好友列表任务已启用,执行表达式: %s", config.Conf.Task.SyncFriends.Cron)
|
|
_, _ = s.Cron(config.Conf.Task.SyncFriends.Cron).Do(friends.Sync)
|
|
}
|
|
|
|
// 开启定时任务
|
|
s.StartAsync()
|
|
log.Println("定时任务初始化成功")
|
|
}
|