mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
24 lines
712 B
Go
24 lines
712 B
Go
package auth
|
|
|
|
import (
|
|
"Open_IM/pkg/common/db/mysql_model/im_mysql_model"
|
|
"Open_IM/pkg/common/log"
|
|
pbAuth "Open_IM/pkg/proto/auth"
|
|
"context"
|
|
)
|
|
|
|
func (rpc *rpcAuth) UserRegister(_ context.Context, pb *pbAuth.UserRegisterReq) (*pbAuth.UserRegisterResp, error) {
|
|
log.Info("", "", "rpc user_register start, [data: %s]", pb.String())
|
|
|
|
//if len(pb.UID) == 0 {
|
|
// pb.UID = utils.GenID()
|
|
//}
|
|
if err := im_mysql_model.UserRegister(pb); err != nil {
|
|
log.Error("", "", "rpc user_register error, [data: %s] [err: %s]", pb.String(), err.Error())
|
|
return &pbAuth.UserRegisterResp{Success: false}, err
|
|
}
|
|
log.Info("", "", "rpc user_register success return")
|
|
|
|
return &pbAuth.UserRegisterResp{Success: true}, nil
|
|
}
|