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

8주차 미션 / 서버 2조 이찬양 #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/main/java/com/kuit/kuit4serverauth/config/WebConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ public WebConfig(AuthInterceptor authInterceptor) {

@Override
public void addInterceptors(InterceptorRegistry registry) {
// TODO /profile, /admin 앞에 붙이기
registry.addInterceptor(authInterceptor)
.addPathPatterns("/profile", "/admin")
.excludePathPatterns("/login");
}
}
Original file line number Diff line number Diff line change
@@ -1,23 +1,41 @@
package com.kuit.kuit4serverauth.controller;

import com.kuit.kuit4serverauth.repository.UserRepository;
import com.kuit.kuit4serverauth.service.JwtUtil;
import io.jsonwebtoken.Claims;
import jakarta.servlet.http.HttpServletRequest;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.Objects;

@RestController
public class UserController {
private final UserRepository userRepository;
private final JwtUtil jwtUtil;

public UserController(UserRepository userRepository, JwtUtil jwtUtil) {
this.userRepository = userRepository;
this.jwtUtil = jwtUtil;
}

@GetMapping("/profile")
public ResponseEntity<String> getProfile(HttpServletRequest request) {
// TODO : 로그인 한 사용자면 username 이용해 "Hello, {username}" 반환하기
String username = (String) request.getAttribute("username"); // 인터셉터에서 저장한 username
if (username != null) {
return ResponseEntity.ok("Hello, " + username);
}
return ResponseEntity.status(HttpStatus.UNAUTHORIZED).body("Unauthorized");
}

@GetMapping("/admin")
public ResponseEntity<String> getAdmin(HttpServletRequest request) {
// TODO: role이 admin이면 "Hello, admin" 반환하기
String role = (String) request.getAttribute("role");
if (Objects.equals(role, "ROLE_ADMIN")) {
return ResponseEntity.ok("Hello, admin");
}
return ResponseEntity.status(HttpStatus.FORBIDDEN).body("Forbidden");
}
}
5 changes: 4 additions & 1 deletion src/main/java/com/kuit/kuit4serverauth/service/JwtUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@
import io.jsonwebtoken.Claims;
import io.jsonwebtoken.Jwts;
import io.jsonwebtoken.SignatureAlgorithm;
import io.jsonwebtoken.security.Keys;
import org.springframework.stereotype.Component;

import java.security.Key;
import java.util.Date;

@Component
public class JwtUtil {
private final String secret = "mysecretkey";
// private final String secret = "mysecretkey";
private final Key secret = Keys.secretKeyFor(SignatureAlgorithm.HS256);
private final long expirationMs = 3600000; // 1 hour

public String generateToken(String username, String role) {
Expand Down