audit.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package audit
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/interface/main/app-resource/conf"
  6. auditdao "go-common/app/interface/main/app-resource/dao/audit"
  7. "go-common/library/ecode"
  8. "go-common/library/log"
  9. )
  10. // Service audit service.
  11. type Service struct {
  12. dao *auditdao.Dao
  13. // tick
  14. tick time.Duration
  15. // cache
  16. auditCache map[string]map[int]struct{}
  17. }
  18. // New new a audit service.
  19. func New(c *conf.Config) (s *Service) {
  20. s = &Service{
  21. dao: auditdao.New(c),
  22. // tick
  23. tick: time.Duration(c.Tick),
  24. // cache
  25. auditCache: map[string]map[int]struct{}{},
  26. }
  27. s.loadAuditCache()
  28. go s.cacheproc()
  29. return
  30. }
  31. // Audit
  32. func (s *Service) Audit(c context.Context, mobiApp string, build int) (err error) {
  33. if plats, ok := s.auditCache[mobiApp]; ok {
  34. if _, ok = plats[build]; ok {
  35. return ecode.OK
  36. }
  37. }
  38. return ecode.NotModified
  39. }
  40. // cacheproc load all cache.
  41. func (s *Service) cacheproc() {
  42. for {
  43. time.Sleep(s.tick)
  44. s.loadAuditCache()
  45. }
  46. }
  47. func (s *Service) loadAuditCache() {
  48. as, err := s.dao.Audits(context.TODO())
  49. if err != nil {
  50. log.Error("s.dao.Audits error(%v)", err)
  51. return
  52. }
  53. s.auditCache = as
  54. }