91 lines
3.2 KiB
Java
Raw Normal View History

package com.ruoyi.system.service;
import com.ruoyi.common.constant.Constants;
import com.ruoyi.common.constant.UserConstants;
import com.ruoyi.common.core.domain.entity.SysUser;
import com.ruoyi.common.core.domain.model.RegisterBody;
import com.ruoyi.common.core.service.LogininforService;
import com.ruoyi.common.exception.user.CaptchaException;
import com.ruoyi.common.exception.user.CaptchaExpireException;
import com.ruoyi.common.utils.*;
import org.springframework.beans.factory.annotation.Autowired;
2021-09-27 17:58:36 +08:00
import org.springframework.stereotype.Service;
/**
* 注册校验方法
*
* @author Lion Li
*/
2021-09-27 17:58:36 +08:00
@Service
public class SysRegisterService {
@Autowired
private ISysUserService userService;
@Autowired
private ISysConfigService configService;
2021-09-27 17:58:36 +08:00
@Autowired
private LogininforService asyncService;
/**
* 注册
*/
2021-09-27 17:58:36 +08:00
public String register(RegisterBody registerBody) {
String msg = "", username = registerBody.getUsername(), password = registerBody.getPassword();
boolean captchaOnOff = configService.selectCaptchaOnOff();
// 验证码开关
2021-09-27 17:58:36 +08:00
if (captchaOnOff) {
validateCaptcha(username, registerBody.getCode(), registerBody.getUuid());
}
2021-09-27 17:58:36 +08:00
if (StringUtils.isEmpty(username)) {
msg = "用户名不能为空";
2021-09-27 17:58:36 +08:00
} else if (StringUtils.isEmpty(password)) {
msg = "用户密码不能为空";
2021-09-27 17:58:36 +08:00
} else if (username.length() < UserConstants.USERNAME_MIN_LENGTH
|| username.length() > UserConstants.USERNAME_MAX_LENGTH) {
msg = "账户长度必须在2到20个字符之间";
2021-09-27 17:58:36 +08:00
} else if (password.length() < UserConstants.PASSWORD_MIN_LENGTH
|| password.length() > UserConstants.PASSWORD_MAX_LENGTH) {
msg = "密码长度必须在5到20个字符之间";
2021-09-27 17:58:36 +08:00
} else if (UserConstants.NOT_UNIQUE.equals(userService.checkUserNameUnique(username))) {
msg = "保存用户'" + username + "'失败,注册账号已存在";
2021-09-27 17:58:36 +08:00
} else {
SysUser sysUser = new SysUser();
sysUser.setUserName(username);
sysUser.setNickName(username);
sysUser.setPassword(SecurityUtils.encryptPassword(registerBody.getPassword()));
boolean regFlag = userService.registerUser(sysUser);
2021-09-27 17:58:36 +08:00
if (!regFlag) {
msg = "注册失败,请联系系统管理人员";
2021-09-27 17:58:36 +08:00
} else {
asyncService.recordLogininfor(username, Constants.REGISTER,
MessageUtils.message("user.register.success"), ServletUtils.getRequest());
}
}
return msg;
}
/**
* 校验验证码
*
* @param username 用户名
2021-09-27 17:58:36 +08:00
* @param code 验证码
* @param uuid 唯一标识
* @return 结果
*/
2021-09-27 17:58:36 +08:00
public void validateCaptcha(String username, String code, String uuid) {
String verifyKey = Constants.CAPTCHA_CODE_KEY + uuid;
String captcha = RedisUtils.getCacheObject(verifyKey);
RedisUtils.deleteObject(verifyKey);
2021-09-27 17:58:36 +08:00
if (captcha == null) {
throw new CaptchaExpireException();
}
2021-09-27 17:58:36 +08:00
if (!code.equalsIgnoreCase(captcha)) {
throw new CaptchaException();
}
}
}