123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package operator
- import (
- "time"
- "go-common/app/interface/main/app-wall/conf"
- "go-common/app/interface/main/app-wall/model/operator"
- )
- // Service reddot service
- type Service struct {
- c *conf.Config
- cache *operator.Reddot
- }
- // New reddot new
- func New(c *conf.Config) (s *Service) {
- s = &Service{
- c: c,
- cache: &operator.Reddot{},
- }
- s.loadCache(c)
- return
- }
- // Reddot get reddot
- func (s *Service) Reddot(now time.Time) (res *operator.Reddot) {
- res = s.cache
- if res != nil {
- current := now.Unix()
- if current > int64(res.EndTime) || current < int64(res.StartTime) {
- res = &operator.Reddot{}
- }
- }
- return
- }
- func (s *Service) loadCache(c *conf.Config) {
- tmp := &operator.Reddot{}
- tmp.ReddotChange(c.Reddot.StartTime, c.Reddot.EndTime)
- s.cache = tmp
- }
|