get_user_info_logic.go 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package User
  2. import (
  3. "context"
  4. "github.com/suyuan32/simple-admin-common/msg/errormsg"
  5. "github.com/suyuan32/simple-admin-core/rpc/types/core"
  6. "wechat-api/internal/svc"
  7. "wechat-api/internal/types"
  8. "github.com/zeromicro/go-zero/core/logx"
  9. )
  10. type GetUserInfoLogic struct {
  11. logx.Logger
  12. ctx context.Context
  13. svcCtx *svc.ServiceContext
  14. }
  15. func NewGetUserInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetUserInfoLogic {
  16. return &GetUserInfoLogic{
  17. Logger: logx.WithContext(ctx),
  18. ctx: ctx,
  19. svcCtx: svcCtx}
  20. }
  21. func (l *GetUserInfoLogic) GetUserInfo() (resp *types.UserBaseIDInfoResp, err error) {
  22. l.Logger.Errorf("------------------------GetUserInfo---------------------------")
  23. l.Logger.Errorf("------------------------userId--------------------------- %+v", l.ctx.Value("userId").(string))
  24. user, err := l.svcCtx.CoreRpc.GetUserById(l.ctx,
  25. &core.UUIDReq{Id: l.ctx.Value("userId").(string)})
  26. if err != nil {
  27. return nil, err
  28. }
  29. l.Logger.Errorf("------------------------user--------------------------- %+v", user)
  30. departmentInfo, err := l.svcCtx.CoreRpc.GetDepartmentById(l.ctx, &core.IDReq{Id: user.GetDepartmentId()})
  31. l.Logger.Errorf("------------------------departmentInfo--------------------------- %+v", departmentInfo)
  32. if err != nil {
  33. return nil, err
  34. }
  35. departmentName := *departmentInfo.Name
  36. if departmentName == "department.managementDepartment" {
  37. departmentName = "冠客数字员工管理系统"
  38. }
  39. roleNameMap := map[string]string{
  40. "role.admin": "管理员",
  41. "role.stuff": "员工",
  42. "role.seller": "销售",
  43. "role.member": "会员",
  44. "role.changeStatusSuccess": "已成功修改角色状态",
  45. "role.changeStatusFailed": "修改角色状态失败",
  46. "role.duplicateRoleValue": "角色值重复",
  47. "role.userExists": "请先删除该角色下的用户",
  48. "role.roleForbidden": "您的角色已停用",
  49. }
  50. var roleNames []string
  51. for _, roleName := range user.GetRoleName() {
  52. roleNames = append(roleNames, roleNameMap[roleName])
  53. }
  54. return &types.UserBaseIDInfoResp{
  55. BaseDataInfo: types.BaseDataInfo{Msg: errormsg.Success},
  56. Data: types.UserBaseIDInfo{
  57. UUID: user.Id,
  58. Username: user.Username,
  59. Nickname: user.Nickname,
  60. Avatar: user.Avatar,
  61. HomePath: user.HomePath,
  62. Description: user.Description,
  63. DepartmentName: departmentName,
  64. DepartmentRemark: *departmentInfo.Remark,
  65. RoleName: roleNames,
  66. },
  67. }, nil
  68. }