fusenapi/server/home-user-auth/internal/logic/usersavebasicinfologic.go

43 lines
1007 B
Go
Raw Normal View History

2023-06-05 09:56:55 +00:00
package logic
import (
"context"
2023-06-15 08:08:43 +00:00
"fusenapi/model/gmodel"
2023-06-07 03:35:04 +00:00
"fusenapi/utils/auth"
2023-06-05 09:56:55 +00:00
2023-06-08 02:51:56 +00:00
"fusenapi/server/home-user-auth/internal/svc"
"fusenapi/server/home-user-auth/internal/types"
2023-06-05 09:56:55 +00:00
"fusenapi/utils/basic"
"github.com/zeromicro/go-zero/core/logx"
)
type UserSaveBasicInfoLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewUserSaveBasicInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UserSaveBasicInfoLogic {
return &UserSaveBasicInfoLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
2023-06-12 10:08:34 +00:00
func (l *UserSaveBasicInfoLogic) UserSaveBasicInfo(req *types.RequestBasicInfoForm, userinfo *auth.UserInfo) (resp *basic.Response) {
2023-06-15 08:08:43 +00:00
if !userinfo.IsUser() {
return resp.SetStatus(basic.CodeUnAuth)
2023-06-07 03:36:29 +00:00
}
2023-06-15 08:08:43 +00:00
m := gmodel.NewFsUserModel(l.svcCtx.MysqlConn)
user, err := m.FindUserById(l.ctx, userinfo.UserId)
if err == gmodel.ErrRecordNotFound {
return resp.SetStatus(basic.CodeUserIdNotFoundErr)
2023-06-05 09:56:55 +00:00
}
2023-06-15 08:08:43 +00:00
return resp.SetStatus(basic.CodeOK)
2023-06-05 09:56:55 +00:00
}