Skip to content

Commit

Permalink
feat: 인증 코드 sms 전송 비즈니스 로직 수정(#28)
Browse files Browse the repository at this point in the history
- 인증 코드 sms 전송 이전 redis에 번호를 키로 코드를 저장하는 로직 추가
- 새 인증 코드 발급 이전 기존 발급 내역 삭제
  • Loading branch information
Minjae-An committed Mar 16, 2024
1 parent c96a456 commit 4f6d001
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions be/src/main/java/yeonba/be/login/service/LoginService.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import yeonba.be.user.entity.User;
import yeonba.be.user.repository.UserQuery;
import yeonba.be.util.EmailService;
import yeonba.be.util.RedisUtil;
import yeonba.be.util.SmsService;
import yeonba.be.util.TemporaryPasswordGenerator;
import yeonba.be.util.VerificationCodeGenerator;
Expand All @@ -18,6 +19,8 @@
@RequiredArgsConstructor
public class LoginService {

private final long VERIFICATION_CODE_TTL = 5;

private final String TEMPORARY_PASSWORD_EMAIL_SUBJECT = "연바(연애는 바로 지금) 임시비밀번호 발급";
private final String TEMPORARY_PASSWORD_EMAIL_TEXT = "임시비밀번호 : %s";
private final String VERIFICATION_CODE_MESSAGE = "연바(연애는 바로 지금) 인증 코드 : %s";
Expand All @@ -27,6 +30,7 @@ public class LoginService {
private final EmailService emailService;
private final SmsService smsService;

private final RedisUtil redisUtil;
/*
임시 비밀번호는 다음 과정을 거친다.
1. 요청 이메일 기반 사용자 조회
Expand Down Expand Up @@ -58,7 +62,12 @@ public void sendVerificationCodeMessage(UserPhoneNumberVerifyRequest request) {
throw new GeneralException(UserException.USER_NOT_FOUND);
}

// 인증 코드 재발급 요청시 기존 발급 내역 삭제
redisUtil.deleteData(phoneNumber);

String code = VerificationCodeGenerator.generateVerificationCode();
redisUtil.putData(phoneNumber, code, VERIFICATION_CODE_TTL);

String message = String.format(VERIFICATION_CODE_MESSAGE, code);
smsService.sendMessage(phoneNumber, message);
}
Expand Down

0 comments on commit 4f6d001

Please sign in to comment.