1 | package com.example.fooddeliverysystem.configuration;
|
---|
2 |
|
---|
3 | import com.example.fooddeliverysystem.service.UserService;
|
---|
4 | import org.springframework.security.authentication.AuthenticationProvider;
|
---|
5 | import org.springframework.security.authentication.BadCredentialsException;
|
---|
6 | import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
|
---|
7 | import org.springframework.security.core.Authentication;
|
---|
8 | import org.springframework.security.core.AuthenticationException;
|
---|
9 | import org.springframework.security.core.userdetails.UserDetails;
|
---|
10 | import org.springframework.security.crypto.password.PasswordEncoder;
|
---|
11 | import org.springframework.stereotype.Component;
|
---|
12 |
|
---|
13 | @Component
|
---|
14 | public class UsernameAndPasswordAuthProvider implements AuthenticationProvider {
|
---|
15 |
|
---|
16 |
|
---|
17 | private final UserService userService;
|
---|
18 | private final PasswordEncoder passwordEncoder;
|
---|
19 |
|
---|
20 | public UsernameAndPasswordAuthProvider(UserService userService, PasswordEncoder passwordEncoder) {
|
---|
21 | this.userService = userService;
|
---|
22 | this.passwordEncoder = passwordEncoder;
|
---|
23 | }
|
---|
24 |
|
---|
25 | @Override
|
---|
26 | public Authentication authenticate(Authentication authentication) throws AuthenticationException {
|
---|
27 | String username = authentication.getName();
|
---|
28 | String password = authentication.getCredentials().toString();
|
---|
29 |
|
---|
30 | UserDetails userDetails = this.userService.loadUserByUsername(username);
|
---|
31 | if (!passwordEncoder.matches(password, userDetails.getPassword())) {
|
---|
32 | throw new BadCredentialsException("Password is incorrect!");
|
---|
33 | }
|
---|
34 |
|
---|
35 | return new UsernamePasswordAuthenticationToken(userDetails, userDetails.getPassword(), userDetails.getAuthorities());
|
---|
36 | }
|
---|
37 |
|
---|
38 | @Override
|
---|
39 | public boolean supports(Class<?> authentication) {
|
---|
40 | return authentication.equals(UsernamePasswordAuthenticationToken.class);
|
---|
41 | }
|
---|
42 | }
|
---|