sys_user.go 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. package system
  2. import (
  3. "errors"
  4. "fmt"
  5. "server/dao"
  6. "time"
  7. "github.com/gofrs/uuid/v5"
  8. "gorm.io/gorm"
  9. "server/global"
  10. "server/model/common/request"
  11. "server/utils"
  12. )
  13. //@author: [piexlmax](https://github.com/piexlmax)
  14. //@function: Register
  15. //@description: 用户注册
  16. //@param: u model.SysUser
  17. //@return: userInter system.SysUser, err error
  18. type UserService struct{}
  19. func (userService *UserService) Register(u dao.SysUser) (userInter dao.SysUser, err error) {
  20. _, err = dao.QueryUserByUserName(u.Username)
  21. if !errors.Is(err, gorm.ErrRecordNotFound) { // 判断用户名是否注册
  22. return userInter, errors.New("用户名已注册")
  23. }
  24. // 否则 附加uuid 密码hash加密 注册
  25. u.Password = utils.BcryptHash(u.Password)
  26. u.UUID = uuid.Must(uuid.NewV4())
  27. err = u.CreateUser()
  28. return u, err
  29. }
  30. //@author: [piexlmax](https://github.com/piexlmax)
  31. //@author: [SliverHorn](https://github.com/SliverHorn)
  32. //@function: Login
  33. //@description: 用户登录
  34. //@param: u *model.SysUser
  35. //@return: err error, userInter *model.SysUser
  36. func (userService *UserService) Login(u *dao.SysUser) (userInter *dao.SysUser, err error) {
  37. if nil == global.GVA_DB {
  38. return nil, fmt.Errorf("db not init")
  39. }
  40. user, err := dao.QueryUserAndAuthorityByUserName(u.Username)
  41. if err == nil {
  42. if ok := utils.BcryptCheck(u.Password, user.Password); !ok {
  43. return nil, errors.New("密码错误")
  44. }
  45. MenuServiceApp.UserAuthorityDefaultRouter(&user)
  46. }
  47. return &user, err
  48. }
  49. //@author: [piexlmax](https://github.com/piexlmax)
  50. //@function: ChangePassword
  51. //@description: 修改用户密码
  52. //@param: u *model.SysUser, newPassword string
  53. //@return: userInter *model.SysUser,err error
  54. func (userService *UserService) ChangePassword(u *dao.SysUser, newPassword string) (userInter *dao.SysUser, err error) {
  55. user, err := dao.QueryUserByUserId(u.ID)
  56. if err != nil {
  57. return nil, err
  58. }
  59. if ok := utils.BcryptCheck(u.Password, user.Password); !ok {
  60. return nil, errors.New("原密码错误")
  61. }
  62. user.Password = utils.BcryptHash(newPassword)
  63. err = u.UpdateUser()
  64. return &user, err
  65. }
  66. //@author: [piexlmax](https://github.com/piexlmax)
  67. //@function: GetUserInfoList
  68. //@description: 分页获取数据
  69. //@param: info request.PageInfo
  70. //@return: err error, list interface{}, total int64
  71. func (userService *UserService) GetUserInfoList(info request.PageInfo) (list interface{}, total int64, err error) {
  72. limit := info.PageSize
  73. offset := info.PageSize * (info.Page - 1)
  74. userList, total, err := dao.QueryUserInfoList(limit, offset)
  75. for i, user := range userList {
  76. for _, tunnel := range user.Tunnels {
  77. userList[i].TunnelIds = append(userList[i].TunnelIds, int(tunnel.ID))
  78. }
  79. }
  80. return userList, total, err
  81. }
  82. func (UserService *UserService) CreateUserTunnels(info request.UserTunnels) error {
  83. fmt.Println(info)
  84. return dao.CreateUserTunnels(info.User, info.TunnelIds)
  85. }
  86. //@author: [piexlmax](https://github.com/piexlmax)
  87. //@function: SetUserAuthority
  88. //@description: 设置一个用户的权限
  89. //@param: uuid uuid.UUID, authorityId string
  90. //@return: err error
  91. func (userService *UserService) SetUserAuthority(id uint, authorityId uint) (err error) {
  92. _, assignErr := dao.QueryUserAuthority(id, authorityId)
  93. if errors.Is(assignErr, gorm.ErrRecordNotFound) {
  94. return errors.New("该用户无此角色")
  95. }
  96. return dao.UpdateUserAuthority(id, authorityId)
  97. }
  98. //@author: [piexlmax](https://github.com/piexlmax)
  99. //@function: SetUserAuthorities
  100. //@description: 设置一个用户的权限
  101. //@param: id uint, authorityIds []string
  102. //@return: err error
  103. func (userService *UserService) SetUserAuthorities(id uint, authorityId uint) (err error) {
  104. return dao.SetUserAuthorities(id, authorityId)
  105. }
  106. //@author: [piexlmax](https://github.com/piexlmax)
  107. //@function: DeleteUser
  108. //@description: 删除用户
  109. //@param: id float64
  110. //@return: err error
  111. func (userService *UserService) DeleteUser(id int) (err error) {
  112. return dao.DeleteUser(id)
  113. }
  114. //@author: [piexlmax](https://github.com/piexlmax)
  115. //@function: SetUserInfo
  116. //@description: 设置用户信息
  117. //@param: reqUser model.SysUser
  118. //@return: err error, user model.SysUser
  119. func (userService *UserService) SetUserInfo(req dao.SysUser) error {
  120. req.UpdatedAt = time.Now()
  121. return req.SetUserInfo()
  122. }
  123. //@author: [piexlmax](https://github.com/piexlmax)
  124. //@function: SetUserInfo
  125. //@description: 设置用户信息
  126. //@param: reqUser model.SysUser
  127. //@return: err error, user model.SysUser
  128. func (userService *UserService) SetSelfInfo(req dao.SysUser) error {
  129. return req.SetUserInfoById()
  130. }
  131. //@author: [piexlmax](https://github.com/piexlmax)
  132. //@author: [SliverHorn](https://github.com/SliverHorn)
  133. //@function: GetUserInfo
  134. //@description: 获取用户信息
  135. //@param: uuid uuid.UUID
  136. //@return: err error, user system.SysUser
  137. func (userService *UserService) GetUserInfo(uuid uuid.UUID) (user dao.SysUser, err error) {
  138. reqUser, err := dao.GetUserInfoByUUID(uuid)
  139. if err != nil {
  140. return reqUser, err
  141. }
  142. MenuServiceApp.UserAuthorityDefaultRouter(&reqUser)
  143. return reqUser, err
  144. }
  145. //@author: [SliverHorn](https://github.com/SliverHorn)
  146. //@function: FindUserById
  147. //@description: 通过id获取用户信息
  148. //@param: id int
  149. //@return: err error, user *model.SysUser
  150. func (userService *UserService) FindUserById(id int) (user *dao.SysUser, err error) {
  151. u, err := dao.QueryUserByUserId(uint(id))
  152. return &u, err
  153. }
  154. //@author: [SliverHorn](https://github.com/SliverHorn)
  155. //@function: FindUserByUuid
  156. //@description: 通过uuid获取用户信息
  157. //@param: uuid string
  158. //@return: err error, user *model.SysUser
  159. func (userService *UserService) FindUserByUuid(uuidStr string) (user *dao.SysUser, err error) {
  160. id, err := uuid.FromString(uuidStr)
  161. if err != nil {
  162. fmt.Println("Error parsing UUID:", err)
  163. return
  164. }
  165. u, err := dao.GetUserInfoByUUID(id)
  166. if err != nil {
  167. return &u, errors.New("用户不存在")
  168. }
  169. return &u, nil
  170. }
  171. //@author: [piexlmax](https://github.com/piexlmax)
  172. //@function: resetPassword
  173. //@description: 修改用户密码
  174. //@param: ID uint
  175. //@return: err error
  176. func (userService *UserService) ResetPassword(ID uint) error {
  177. return dao.SysUser{
  178. GVA_MODEL: global.GVA_MODEL{
  179. ID: ID,
  180. },
  181. Password: utils.BcryptHash("123456"),
  182. }.SetUserInfoById()
  183. }