redis.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package cache
  2. import (
  3. "encoding/json"
  4. "github.com/go-redis/redis"
  5. "iot_manager_service/app/user/dao"
  6. "iot_manager_service/app/user/model"
  7. "iot_manager_service/config"
  8. "time"
  9. )
  10. var Redis *redis.Client
  11. func InitRedis() error {
  12. cfg := config.Instance()
  13. addr := cfg.Redis.Host
  14. Redis = redis.NewClient(&redis.Options{
  15. Addr: addr,
  16. DialTimeout: 10 * time.Second,
  17. ReadTimeout: 30 * time.Second,
  18. WriteTimeout: 30 * time.Second,
  19. PoolSize: 10,
  20. PoolTimeout: 30 * time.Second,
  21. Password: cfg.Redis.Password,
  22. DB: 1, //指定 哪个数据库,不然找不到数据
  23. })
  24. _, err := Redis.Ping().Result()
  25. if err != nil {
  26. return err
  27. }
  28. return nil
  29. }
  30. const (
  31. DeviceStateKey = "dev_stat_"
  32. ONLINE = "online"
  33. TLast = "tlast"
  34. DeviceDataKey = "dev_data_"
  35. TIME = "time"
  36. )
  37. // 将当前用户存入到redis中
  38. func SetNowUser(uid string, uuid string, user *dao.User) {
  39. nowuser := model.NowUser{
  40. uuid,
  41. *user,
  42. }
  43. marshal, _ := json.Marshal(nowuser)
  44. Redis.Set("login:"+uid, marshal, time.Hour*24*7)
  45. }
  46. // 从redis中取出当前用户
  47. func GetNowUser(uid string) (*model.NowUser, error) {
  48. result, _ := Redis.Get("login:" + uid).Result()
  49. str := []byte(result)
  50. nowuser := model.NowUser{}
  51. err := json.Unmarshal(str, &nowuser)
  52. return &nowuser, err
  53. }
  54. // 将当前用户从redis中删除(退出登录)
  55. func DeleteToken(uid string) error {
  56. return Redis.Del("login:" + uid).Err()
  57. }
  58. // 刷新redis存储的用户信息过期时间
  59. func RefreshRedisKey(id string) error {
  60. _, err := Redis.Expire("login:"+id, time.Hour*1).Result()
  61. return err
  62. }
  63. // 存储离线用户的消息
  64. func StoreMessages(id, msg string) error {
  65. return Redis.LPush("offline:"+id, msg).Err()
  66. }
  67. // 获取用户的离线信息
  68. func GetStoreMessages(id string) []string {
  69. result, _ := Redis.LRange("offline:"+id, 0, -1).Result()
  70. return result
  71. }