audit.go 461 B

1234567891011121314151617181920212223242526
  1. package show
  2. import (
  3. "context"
  4. "go-common/library/log"
  5. )
  6. func (s *Service) loadAuditCache() {
  7. as, err := s.adt.Audits(context.TODO())
  8. if err != nil {
  9. log.Error("s.adt.Audits error(%v)", err)
  10. return
  11. }
  12. s.auditCache = as
  13. }
  14. // Audit show tab data list.
  15. func (s *Service) auditTab(mobiApp string, build int, plat int8) (isAudit bool) {
  16. if plats, ok := s.auditCache[mobiApp]; ok {
  17. if _, ok = plats[build]; ok {
  18. return true
  19. }
  20. }
  21. return false
  22. }