Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/backoffice auth #40

Merged
merged 47 commits into from
Mar 31, 2025
Merged

Feat/backoffice auth #40

merged 47 commits into from
Mar 31, 2025

Conversation

W-llama
Copy link
Contributor

@W-llama W-llama commented Mar 26, 2025

back office 로그인 구현

  • 5번 실패시 로그인 1시간동안 벤
  • 벡오피스 로그인 구현 (디비에 암호화 된 패스워드로 저장해야됨)
  • 백오피스 로그인 페이지 구현

@W-llama W-llama linked an issue Mar 26, 2025 that may be closed by this pull request
@W-llama W-llama closed this Mar 27, 2025
@W-llama W-llama reopened this Mar 27, 2025
@W-llama W-llama added feature 새로운 기능 개발 승범 labels Mar 28, 2025
@W-llama W-llama closed this Mar 30, 2025
@W-llama W-llama reopened this Mar 30, 2025
@W-llama W-llama changed the title Feat/backoffice auth 1차 Feat/backoffice auth Mar 30, 2025
return;
}
} else {
System.out.println("필터에서 username 파라미터를 가져올 수 없습니다.");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

log로 남기는게 좋지 않을까요~?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

앗 로그로 남기겠습니다 ^^


private final RedisConnectionFactory redisConnectionFactory;

@Bean
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

기본 StringRedisTemplate 써도 되지 않을까요?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

오 그렇네요 ㅎㅎ 체크 감사합니다


@Override
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
AdminUser admin = adminUserService.findOptAdminUser(username)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

예외 반환을 data 모듈의 service에서 하지 않고 여기서 하신 이유가 있을까요~!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

앗! 깜박했습니다 감사합니다office-data 에서 처리하도록 하겠습니다

private final AdminUserService adminUserService;

@Override
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

메서드 시그니처에는 UsernameNotFoundException을 던진다고 선언되어 있는데, 실제로는 NotFoundAdminUserException을 던지고 있어 인터페이스 계약과 일치하지 않는 것 같습니다! 커스텀 예외가 UsernameNotFoundException을 상속하도록 수정하거나 data service layer에서 에러 반환하는 방식으로 한뒤, 여기서 UsernameNotFoundException로 명시적으로 변환하는게 좋을 것 같아요

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

아하 usernameNotFoundException을 상속하도록 수정하겠습니다 체크 감사합니다.

@@ -0,0 +1,7 @@
package com.clip.global.exception;

public class NotExistAdminUserException extends RuntimeException {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

요거 global/exception 하위에 두신 이유가 있을까요?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

해당 예외처리를global 의 LoginAttemptFilter에서 사용해서 해당 디렉토리에 넣엇습니다. 생각해보니 admin의 존재 유무를 체크하는 예외처리니 admin으로 리팩토링하겟습니다.

@isprogrammingfun isprogrammingfun merged commit f926776 into develop Mar 31, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature 새로운 기능 개발 승범
Projects
None yet
Development

Successfully merging this pull request may close these issues.

백오피스 Auth 개발
3 participants