You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
126 lines
3.4 KiB
126 lines
3.4 KiB
package db
|
|
|
|
import (
|
|
"Open_IM/pkg/common/constant"
|
|
log2 "Open_IM/pkg/common/log"
|
|
"Open_IM/pkg/utils"
|
|
"github.com/garyburd/redigo/redis"
|
|
)
|
|
|
|
const (
|
|
userIncrSeq = "REDIS_USER_INCR_SEQ:" // user incr seq
|
|
appleDeviceToken = "DEVICE_TOKEN"
|
|
lastGetSeq = "LAST_GET_SEQ"
|
|
userMinSeq = "REDIS_USER_MIN_SEQ:"
|
|
uidPidToken = "UID_PID_TOKEN:"
|
|
)
|
|
|
|
func (d *DataBases) Exec(cmd string, key interface{}, args ...interface{}) (interface{}, error) {
|
|
con := d.redisPool.Get()
|
|
if err := con.Err(); err != nil {
|
|
log2.Error("", "", "redis cmd = %v, err = %v", cmd, err)
|
|
return nil, err
|
|
}
|
|
defer con.Close()
|
|
|
|
params := make([]interface{}, 0)
|
|
params = append(params, key)
|
|
|
|
if len(args) > 0 {
|
|
for _, v := range args {
|
|
params = append(params, v)
|
|
}
|
|
}
|
|
|
|
return con.Do(cmd, params...)
|
|
}
|
|
|
|
//Perform seq auto-increment operation of user messages
|
|
func (d *DataBases) IncrUserSeq(uid string) (int64, error) {
|
|
key := userIncrSeq + uid
|
|
return redis.Int64(d.Exec("INCR", key))
|
|
}
|
|
|
|
//Get the largest Seq
|
|
func (d *DataBases) GetUserMaxSeq(uid string) (int64, error) {
|
|
key := userIncrSeq + uid
|
|
return redis.Int64(d.Exec("GET", key))
|
|
}
|
|
|
|
//Set the user's minimum seq
|
|
func (d *DataBases) SetUserMinSeq(uid string, minSeq int64) (err error) {
|
|
key := userMinSeq + uid
|
|
_, err = d.Exec("SET", key, minSeq)
|
|
return err
|
|
}
|
|
|
|
//Get the smallest Seq
|
|
func (d *DataBases) GetUserMinSeq(uid string) (int64, error) {
|
|
key := userMinSeq + uid
|
|
return redis.Int64(d.Exec("GET", key))
|
|
}
|
|
|
|
//Store Apple's device token to redis
|
|
func (d *DataBases) SetAppleDeviceToken(accountAddress, value string) (err error) {
|
|
key := appleDeviceToken + accountAddress
|
|
_, err = d.Exec("SET", key, value)
|
|
return err
|
|
}
|
|
|
|
//Delete Apple device token
|
|
func (d *DataBases) DelAppleDeviceToken(accountAddress string) (err error) {
|
|
key := appleDeviceToken + accountAddress
|
|
_, err = d.Exec("DEL", key)
|
|
return err
|
|
}
|
|
|
|
//Store userid and platform class to redis
|
|
func (d *DataBases) AddTokenFlag(userID string, platformID int32, token string, flag int) error {
|
|
key := uidPidToken + userID + ":" + constant.PlatformIDToName(platformID)
|
|
var m map[string]int
|
|
m = make(map[string]int)
|
|
ls, err := redis.String(d.Exec("GET", key))
|
|
if err != nil && err != redis.ErrNil {
|
|
return err
|
|
}
|
|
if err == redis.ErrNil {
|
|
} else {
|
|
_ = utils.JsonStringToStruct(ls, &m)
|
|
}
|
|
m[token] = flag
|
|
s := utils.StructToJsonString(m)
|
|
_, err1 := d.Exec("SET", key, s)
|
|
return err1
|
|
}
|
|
|
|
func (d *DataBases) GetTokenMapByUidPid(userID, platformID string) (m map[string]int, e error) {
|
|
key := uidPidToken + userID + ":" + platformID
|
|
log2.NewDebug("", "key is ", key)
|
|
s, e := redis.String(d.Exec("GET", key))
|
|
if e != nil {
|
|
return nil, e
|
|
} else {
|
|
m = make(map[string]int)
|
|
_ = utils.JsonStringToStruct(s, &m)
|
|
return m, nil
|
|
}
|
|
}
|
|
func (d *DataBases) SetTokenMapByUidPid(userID string, platformID int32, m map[string]int) error {
|
|
key := uidPidToken + userID + ":" + constant.PlatformIDToName(platformID)
|
|
s := utils.StructToJsonString(m)
|
|
_, err := d.Exec("SET", key, s)
|
|
return err
|
|
}
|
|
|
|
//Check exists userid and platform class from redis
|
|
func (d *DataBases) ExistsUserIDAndPlatform(userID, platformClass string) (int64, error) {
|
|
key := userID + platformClass
|
|
return redis.Int64(d.Exec("EXISTS", key))
|
|
}
|
|
|
|
//Get platform class Token
|
|
func (d *DataBases) GetPlatformToken(userID, platformClass string) (string, error) {
|
|
key := userID + platformClass
|
|
return redis.String(d.Exec("GET", key))
|
|
}
|