aides-repo-api/internal/services/cronservice/service.go

59 lines
1.1 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package cronservice
import (
"log"
"time"
"github.com/go-co-op/gocron/v2"
"code.alt-gnome.ru/aides-infra/aides-repo-api/internal/logger"
)
type RepoService interface {
ForceUpdate()
}
type Service struct {
repoService RepoService
scheduler gocron.Scheduler
}
func New(repo RepoService) *Service {
scheduler, err := gocron.NewScheduler(gocron.WithLocation(time.UTC))
if err != nil {
log.Fatalf("Не удалось создать планировщик: %v", err)
}
return &Service{
scheduler: scheduler,
repoService: repo,
}
}
func (s *Service) SetupCronJobs() {
_, err := s.scheduler.NewJob(
gocron.CronJob("* * * * *", false),
gocron.NewTask(func() {
log := logger.GetLogger()
log.Info(
"Cron run!",
)
s.repoService.ForceUpdate()
}),
)
if err != nil {
log.Printf("Не удалось создать задание cron: %v", err)
}
}
func (s *Service) Start() {
s.scheduler.Start()
}
func (s *Service) Shutdown() {
err := s.scheduler.Shutdown()
if err != nil {
log.Printf("Не удалось корректно завершить работу планировщика: %v", err)
}
}