generated from pricelees/issue-pr-template
<!-- 제목 양식 --> <!-- [이슈번호] 작업 요약 (예시: [#10] Gitea 템플릿 생성) --> ## 📝 관련 이슈 및 PR **PR과 관련된 이슈 번호** - #18 ## ✨ 작업 내용 <!-- 어떤 작업을 했는지 알려주세요! --> - 기존 자바와의 호환성을 위해 사용하던 \@Jvm.. 어노테이션 및 팩토리 메서드 제거 - 기존에 get, find, save 등으로 산재되어 있던 메서드 컨벤션 통일 - 일부 API endpoint 수정 - 테이블 이름 단수 -> 복수 수정 추가적으로 개선이 필요한 점은 있지만, 이는 기능 개선 과정에서 수정할 예정 ## 🧪 테스트 <!-- 어떤 테스트를 생각했고 진행했는지 알려주세요! --> 각 작업 마다 전체 테스트 수행 및 정상 동작 확인 ## 📚 참고 자료 및 기타 <!-- 참고한 자료, 또는 논의할 사항이 있다면 알려주세요! --> Reviewed-on: #19 Co-authored-by: pricelees <priceelees@gmail.com> Co-committed-by: pricelees <priceelees@gmail.com>
51 lines
2.1 KiB
Kotlin
51 lines
2.1 KiB
Kotlin
package roomescape.auth.infrastructure.jwt
|
|
|
|
import io.jsonwebtoken.*
|
|
import org.springframework.beans.factory.annotation.Value
|
|
import org.springframework.http.HttpStatus
|
|
import org.springframework.stereotype.Component
|
|
import roomescape.common.exception.ErrorType
|
|
import roomescape.common.exception.RoomescapeException
|
|
import java.util.*
|
|
|
|
@Component
|
|
class JwtHandler(
|
|
@Value("\${security.jwt.token.secret-key}")
|
|
private val secretKey: String,
|
|
|
|
@Value("\${security.jwt.token.access.expire-length}")
|
|
private val accessTokenExpireTime: Long
|
|
) {
|
|
fun createToken(memberId: Long): String {
|
|
val date = Date()
|
|
val accessTokenExpiredAt = Date(date.time + accessTokenExpireTime)
|
|
|
|
return Jwts.builder()
|
|
.claim("memberId", memberId)
|
|
.setIssuedAt(date)
|
|
.setExpiration(accessTokenExpiredAt)
|
|
.signWith(SignatureAlgorithm.HS256, secretKey.toByteArray())
|
|
.compact()
|
|
}
|
|
|
|
fun getMemberIdFromToken(token: String?): Long {
|
|
try {
|
|
return Jwts.parser()
|
|
.setSigningKey(secretKey.toByteArray())
|
|
.parseClaimsJws(token)
|
|
.getBody()
|
|
.get("memberId", Number::class.java)
|
|
.toLong()
|
|
} catch (e: Exception) {
|
|
when (e) {
|
|
is ExpiredJwtException -> throw RoomescapeException(ErrorType.EXPIRED_TOKEN, HttpStatus.UNAUTHORIZED)
|
|
is UnsupportedJwtException -> throw RoomescapeException(ErrorType.UNSUPPORTED_TOKEN, HttpStatus.UNAUTHORIZED)
|
|
is MalformedJwtException -> throw RoomescapeException(ErrorType.MALFORMED_TOKEN, HttpStatus.UNAUTHORIZED)
|
|
is SignatureException -> throw RoomescapeException(ErrorType.INVALID_SIGNATURE_TOKEN, HttpStatus.UNAUTHORIZED)
|
|
is IllegalArgumentException -> throw RoomescapeException(ErrorType.INVALID_TOKEN, HttpStatus.UNAUTHORIZED)
|
|
else -> throw RoomescapeException(ErrorType.UNEXPECTED_ERROR, HttpStatus.INTERNAL_SERVER_ERROR)
|
|
}
|
|
}
|
|
}
|
|
}
|