-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: merge * feat: 토큰 생성할 때 grantType 부여 * Todo: jwt 토큰을 추출하는 공통 로직 추가 예정 * 게시글 작성 시 이미지 업로드 기능 구현 (#132) * chore: config 업데이트 * refactor: 다중 업로드 기능 불필요하다고 결정됨으로써 해당 코드 제거 * chore: 기존에 작성된 FileService 클래스 제거 * refactor: 클래스 이름 수정 및 메서드 추출 * style: 불필요한 코드 제거 * refactor: FileDto 클래스에서 불필요한 코드 제거 및 필드 주입 수정 * refactor: JPEG의 확장자를 jpg에서 jpeg로 변경 * feat: 게시글 작성 시 이미지 엔티티와 매핑 * 발송된 숫자코드 검증 기능 구현 (#107) * feat: 30분 유효시간 설정 * refactor: dto 이름 수정 * feat: 발송 코드가 일치하는지 검증 기능 구현 * feat: 이메일 검증에 필요한 dto 클래스 추가 * feat: 에러 코드 추가 * refactor: validator 분리 및 에러코드 추가 * feat: swagger 코드 추가 * refactor: 리뷰 내용 리팩토링 * fix: yml 파일 config 폴더 내부로 이동 * refactor: mail패키지를 global에서 module로 이동 및 의미를 더 명확하게 하기 위해 authmail로 이름 변경 * refactor: 메서드 camel case 형식에 맞게 수정 * refactor: 회원 정보에서 ip 제거 (#138) * 엑세스 토큰 만료 시 리프레시 토큰으로 액세스 토큰 재발급 하는 기능 추가 (#124) * feat: 유효한 자격증명을 제공하지 않을 때 401 에러 리턴하는 기능 구현 * feat: 유효한 권한이 존재하지 않는 경우 403 에러 리턴하는 기능 구현 * feat: 401, 403에러 exception handling * refactor: 토큰 필드를 TokenDto를 생성하여 따로 분리 * feat: accessToken 만료시 refreshToken 재발급 하는 기능 구현 * feat: 에러 코드 추가 * refactor: yml 파일 config로 이동 * refactor: JwtTokenProvider 에서 AuthenticationManager 삭제하여 순환 참조 에러 해결 * JwtTokenProvider 테스트 코드 작성 및 예외 테스트 코드 작성 (#128) * fix: 오류 나는 코드 주석 처리 및 수정 * feat: payload 조회 기능 구현 및 authentication null 체크하는 메서드 추가 * fix: file 테스트 수정 * test: 토큰 테스트 코드 작성 * refacotor: 불필요한 코드 제거 * todo 주석 추가 * refactor:불필요한 코드 삭제 * fix: IllegalArgumentException 다른 amazon.awssdk import문 제거!!!!! * refactor: merge * Todo: jwt 토큰을 추출하는 공통 로직 추가 예정 --------- Co-authored-by: Hanjaemo <[email protected]>
- Loading branch information
Showing
7 changed files
with
33 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package balancetalk.global.jwt; | ||
|
||
public class JwtUtils { | ||
|
||
// TODO: static으로 메서드 선언 & member 조회 까지 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters