associate_limit.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package vip
  2. import (
  3. "time"
  4. "go-common/library/ecode"
  5. "go-common/library/log"
  6. )
  7. // ActivityTimeLimit activity time limit.
  8. func (s *Service) ActivityTimeLimit(mid int64) error {
  9. if len(s.c.Vipproperty.AssociateWhiteMidMap) > 0 && mid != 0 {
  10. for _, v := range s.c.Vipproperty.AssociateWhiteMidMap {
  11. if v == mid {
  12. return nil
  13. }
  14. }
  15. }
  16. now := time.Now().Unix()
  17. if s.c.Vipproperty.ActStartTime > now {
  18. return ecode.VipActivityNotStart
  19. }
  20. if s.c.Vipproperty.ActEndTime < now {
  21. return ecode.VipActivityHadEnd
  22. }
  23. return nil
  24. }
  25. // ActivityWhiteIPLimit act ip limit.
  26. func (s *Service) ActivityWhiteIPLimit(appkey string, ip string) error {
  27. var (
  28. whiteips []string
  29. ok bool
  30. )
  31. if whiteips, ok = s.c.Vipproperty.AssociateWhiteIPMap[appkey]; !ok {
  32. log.Error("act ip limit appkey(%s) ip(%s)", appkey, ip)
  33. return ecode.VipWhiteIPListErr
  34. }
  35. for _, v := range whiteips {
  36. if v == ip {
  37. return nil
  38. }
  39. }
  40. log.Error("act ip limit appkey(%s) ip(%s)", appkey, ip)
  41. return ecode.VipWhiteIPListErr
  42. }
  43. // ActivityWhiteOutOpenIDLimit act out open id limit.
  44. func (s *Service) ActivityWhiteOutOpenIDLimit(openid string) error {
  45. if len(s.c.Vipproperty.AssociateWhiteOutOpenIDMap) > 0 && openid != "" {
  46. for _, v := range s.c.Vipproperty.AssociateWhiteOutOpenIDMap {
  47. if v == openid {
  48. return nil
  49. }
  50. }
  51. }
  52. now := time.Now().Unix()
  53. if s.c.Vipproperty.ActStartTime > now {
  54. return ecode.VipActivityNotStart
  55. }
  56. if s.c.Vipproperty.ActEndTime < now {
  57. return ecode.VipActivityHadEnd
  58. }
  59. return nil
  60. }