6 Star 11 Fork 1

distill/distill-infra

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
user.go 820 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lyndon Hu 提交于 2020-04-29 10:51 . infra init
package handler
import (
"context"
"gitee.com/banyanhouse/distill-infra/register/micro/proto"
"net/http"
)
type User struct {
}
// 处理用户请求
func (u *User) Signup(ctx context.Context, req *proto.ReqSignup, resp *proto.RespSignup) error {
username := req.Username
passwd := req.Password
// 参数简单校验
if len(username) < 3 || len(passwd) < 5 {
resp.Code = http.StatusBadRequest
resp.Message = "注册参数无效"
return nil
}
// 对密码进行加盐
//encPasswd := util.Sha1([]byte(passwd + cfg.PasswordSalt))
// 将用户信息注册到用户表中
//suc := dblayer.UserSignup(username, encPassword)
suc := true
if suc {
resp.Code = http.StatusOK
resp.Message = "注册成功"
} else {
resp.Code = http.StatusBadRequest
resp.Message = "注册失败"
}
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/banyanhouse/distill-infra.git
git@gitee.com:banyanhouse/distill-infra.git
banyanhouse
distill-infra
distill-infra
v0.0.16-grpc-test

搜索帮助