cache.go 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package model
  2. import (
  3. "fmt"
  4. "time"
  5. )
  6. //缓存key
  7. const (
  8. //RedisSalesLimitKey 售卖时间限制,mid:SALESLIMIT:ANTI
  9. RedisSalesLimitKey = "%d:SALESLIMIT:ANTI"
  10. //RedisIPChangeKey 用户ip变更,mid:IPCHANGELIMIT:ANTI
  11. RedisIPChangeKey = "%d:IPCHANGELIMIT:ANTI"
  12. //RedisCreateMIDLimitKey 同一mid下单次数限制,mid:itemId:MID:CREATELIMIT:ANTI
  13. RedisCreateMIDLimitKey = "%d:%d:MID:CREATELIMIT:ANTI"
  14. //RedisCreateIPLimitKey 同一mid下单次数限制,ip:itemId:IP:CREATELIMIT:ANTI
  15. RedisCreateIPLimitKey = "%s|%d:IP:CREATELIMIT:ANTI"
  16. //RedisUserVoucherKey 用户凭证key,mid:voucher:voucherType:VOUCHER:ANTI
  17. RedisUserVoucherKey = "%d:%s:%d:VOUCHER:ANTI"
  18. RedisUserVoucherKeyTimeOut = 600
  19. //RedisGeetestCountKey 拉起极验的总数
  20. RedisGeetestCountKey = "%d:ANTI:GEETEST:COUNT"
  21. RedisGeetestCountKeyTimeOut = 3600
  22. //RedisMIDBlackKey mid黑名单key
  23. RedisMIDBlackKey = "ANTI:MID:BLACK:%d:%d"
  24. //RedisIPBlackKey ip黑名单key
  25. RedisIPBlackKey = "ANTI:IP:BLACK:%d:%s"
  26. )
  27. //GetSalesLimitKey 获取售卖时间限制key
  28. func GetSalesLimitKey(mid int64) (key string) {
  29. return fmt.Sprintf(RedisSalesLimitKey, mid)
  30. }
  31. //GetIPChangeKey 获取用户ip变更key
  32. func GetIPChangeKey(mid int64) (key string) {
  33. return fmt.Sprintf(RedisIPChangeKey, mid)
  34. }
  35. //GetCreateMIDLimitKey 获取mid创单限制key
  36. func GetCreateMIDLimitKey(mid int64, itemID int64) (key string) {
  37. return fmt.Sprintf(RedisCreateMIDLimitKey, mid, itemID)
  38. }
  39. //GetCreateIPLimitKey 获取ip创单限制key
  40. func GetCreateIPLimitKey(ip string, itemID int64) (key string) {
  41. return fmt.Sprintf(RedisCreateIPLimitKey, ip, itemID)
  42. }
  43. //GetUserVoucherKey 获取用户凭证key
  44. func GetUserVoucherKey(mid int64, voucher string, voucherType int64) (key string) {
  45. return fmt.Sprintf(RedisUserVoucherKey, mid, voucher, voucherType)
  46. }
  47. //GetGeetestCountKey 获取极验总数key
  48. func GetGeetestCountKey() (key string) {
  49. current := time.Now().Unix()
  50. return fmt.Sprintf(RedisGeetestCountKey, current/RedisGeetestCountKeyTimeOut)
  51. }
  52. //GetMIDBlackKey 获取mid黑名单key
  53. func GetMIDBlackKey(customerId int64, mid int64) (key string) {
  54. return fmt.Sprintf(RedisMIDBlackKey, customerId, mid)
  55. }
  56. //GetIPBlackKey 获取mid黑名单key
  57. func GetIPBlackKey(customerId int64, clientIP string) (key string) {
  58. return fmt.Sprintf(RedisIPBlackKey, customerId, clientIP)
  59. }