access modifiers and constructors fix

This commit is contained in:
Filip Izydorczyk 2020-09-25 17:01:38 +02:00
parent 44bcc24110
commit 15a4c526b4
4 changed files with 7 additions and 15 deletions

View File

@ -9,12 +9,11 @@ import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Repository;
//if result could be null, should we wrapped in optional
@Repository
public interface UserRepository extends JpaRepository<User, Long> {
@Query("FROM User WHERE email = ?1")
Optional<User> getByAuthority(@Param("authority") String authority);
@Query("FROM User WHERE token = ?1")
User getByToken(@Param("token") String token);
Optional<User> getByToken(@Param("token") String token);
}

View File

@ -1,5 +1,6 @@
package com.plannaplan.services;
import java.util.Optional;
import java.util.UUID;
import com.plannaplan.entities.User;
@ -38,7 +39,7 @@ public class UserService {
}
public User getByToken(String token) {
public Optional<User> getByToken(String token) {
return this.repo.getByToken(token);
}

View File

@ -24,7 +24,7 @@ public class TokenController {
@GetMapping("/token")
public ResponseEntity<String> getToken(@RequestParam("ticket") final String ticket) {
CasValidator validator = new CasValidator(SERVICE_URL, ticket);
final CasValidator validator = new CasValidator(SERVICE_URL, ticket);
try {
String authority = validator.validate();

View File

@ -31,19 +31,11 @@ public class AuthenticationProvider extends AbstractUserDetailsAuthenticationPro
protected UserDetails retrieveUser(String username, UsernamePasswordAuthenticationToken authentication)
throws AuthenticationException {
String token = authentication.getCredentials().toString();
User user = this.userService.getByToken(token);
if (user == null) {
throw new UsernameNotFoundException("Cannot find user with authentication token=" + token);
}
final String token = authentication.getCredentials().toString();
User user = this.userService.getByToken(token)
.orElseThrow(() -> new UsernameNotFoundException("Cannot find user with given authority"));
UserDetails response = new UserDetails() {
/**
*
*/
private static final long serialVersionUID = 1L;
@Override