Merge pull request #40 from IamTaoChen/resetEmptyPassWD
Reset empty password
This commit is contained in:
@@ -248,11 +248,15 @@ func (ct *User) ChangeCurPwd(c *gin.Context) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
u := service.AllService.UserService.CurUser(c)
|
u := service.AllService.UserService.CurUser(c)
|
||||||
|
// If the password is not empty, the old password is verified
|
||||||
|
// otherwise, the old password is not verified
|
||||||
|
if !service.AllService.UserService.IsPasswordEmptyByUser(u) {
|
||||||
oldPwd := service.AllService.UserService.EncryptPassword(f.OldPassword)
|
oldPwd := service.AllService.UserService.EncryptPassword(f.OldPassword)
|
||||||
if u.Password != oldPwd {
|
if u.Password != oldPwd {
|
||||||
response.Fail(c, 101, response.TranslateMsg(c, "OldPasswordError"))
|
response.Fail(c, 101, response.TranslateMsg(c, "OldPasswordError"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
}
|
||||||
err := service.AllService.UserService.UpdatePassword(u, f.NewPassword)
|
err := service.AllService.UserService.UpdatePassword(u, f.NewPassword)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
response.Fail(c, 101, response.TranslateMsg(c, "OperationFailed")+err.Error())
|
response.Fail(c, 101, response.TranslateMsg(c, "OperationFailed")+err.Error())
|
||||||
|
|||||||
@@ -324,6 +324,29 @@ func (us *UserService) FindLatestUserIdFromLoginLogByUuid(uuid string) uint {
|
|||||||
return llog.UserId
|
return llog.UserId
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsPasswordEmptyById 根据用户id判断密码是否为空,主要用于第三方登录的自动注册
|
||||||
|
func (us *UserService) IsPasswordEmptyById(id uint) bool {
|
||||||
|
u := &model.User{}
|
||||||
|
if global.DB.Where("id = ?", id).First(u).Error != nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return u.Password == ""
|
||||||
|
}
|
||||||
|
|
||||||
|
// IsPasswordEmptyByUsername 根据用户id判断密码是否为空,主要用于第三方登录的自动注册
|
||||||
|
func (us *UserService) IsPasswordEmptyByUsername(username string) bool {
|
||||||
|
u := &model.User{}
|
||||||
|
if global.DB.Where("username = ?", username).First(u).Error != nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return u.Password == ""
|
||||||
|
}
|
||||||
|
|
||||||
|
// IsPasswordEmptyByUser 判断密码是否为空,主要用于第三方登录的自动注册
|
||||||
|
func (us *UserService) IsPasswordEmptyByUser(u *model.User) bool {
|
||||||
|
return us.IsPasswordEmptyById(u.Id)
|
||||||
|
}
|
||||||
|
|
||||||
func (us *UserService) Register(username string, password string) *model.User {
|
func (us *UserService) Register(username string, password string) *model.User {
|
||||||
u := &model.User{
|
u := &model.User{
|
||||||
Username: username,
|
Username: username,
|
||||||
|
|||||||
Reference in New Issue
Block a user