-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathLoginController.java
36 lines (30 loc) · 1.44 KB
/
LoginController.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package nextstep.app.ui;
import nextstep.app.domain.MemberRepository;
import nextstep.security.authentication.AuthenticationException;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class LoginController {
public static final String SPRING_SECURITY_CONTEXT_KEY = "SPRING_SECURITY_CONTEXT";
private final MemberRepository memberRepository;
public LoginController(MemberRepository memberRepository) {
this.memberRepository = memberRepository;
}
// @PostMapping("/login")
// public ResponseEntity<Void> login(HttpServletRequest request, HttpSession session) {
// Map<String, String[]> parameterMap = request.getParameterMap();
// String username = parameterMap.get("username")[0];
// String password = parameterMap.get("password")[0];
// Member member = memberRepository.findByEmail(username)
// .orElseThrow(AuthenticationException::new);
// member.checkPassword(password);
// session.setAttribute(SPRING_SECURITY_CONTEXT_KEY, member);
// return ResponseEntity.ok().build();
// }
@ExceptionHandler(AuthenticationException.class)
public ResponseEntity<Void> handleAuthenticationException() {
return ResponseEntity.status(HttpStatus.UNAUTHORIZED).build();
}
}