浏览代码

signIn 进行限频

master
DengBiao 1年前
父节点
当前提交
03c5f6df18
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. +2
    -0
      internal/logic/domain/device/device_service.go

+ 2
- 0
internal/logic/domain/device/device_service.go 查看文件

@@ -42,11 +42,13 @@ func (*deviceService) SignIn(ctx context.Context, userId, deviceId int64, token
cacheKey := fmt.Sprintf(SignInKey, masterId, utils.Int64ToStr(userId))
if db.RedisUtil.Exists(cacheKey) {
utils.FilePutContents("sign_in", utils.SerializeStr(map[string]interface{}{
"master_id": masterId,
"user_id": userId,
"device_id": deviceId,
"token": token,
"conn_addr": connAddr,
"client_addr": clientAddr,
"cache_key": cacheKey,
}))
return errors.New("限频!!!")
} else {


正在加载...
取消
保存