Skip to content

Commit 00d02b1

Browse files
Rahul VermaandricDu
Rahul Verma
authored andcommitted
🐛fix: Token Verification and Public Endpoints Definition (#104)
* Fix roles conversion and public endpoints definition * Fix typo
1 parent 1099d88 commit 00d02b1

File tree

4 files changed

+35
-4
lines changed

4 files changed

+35
-4
lines changed

src/main/java/org/overture/ego/config/SecureServerConfig.java

+8-1
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,20 @@
3636
@Profile("auth")
3737
public class SecureServerConfig extends WebSecurityConfigurerAdapter {
3838

39+
/*
40+
Constants
41+
*/
42+
private final String[] PUBLIC_ENDPOINTS =
43+
new String[] {"/oauth/token","/oauth/google/token", "/oauth/facebook/token", "/oauth/token/public_key",
44+
"/oauth/token/verify"};
45+
3946
@Autowired
4047
private AuthenticationManager authenticationManager;
4148

4249
@Bean
4350
@SneakyThrows
4451
public JWTAuthorizationFilter authorizationFilter() {
45-
return new JWTAuthorizationFilter(authenticationManager);
52+
return new JWTAuthorizationFilter(authenticationManager,PUBLIC_ENDPOINTS);
4653
}
4754

4855
@Bean

src/main/java/org/overture/ego/model/entity/User.java

+11
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,17 @@ public List<String> getRoles(){
118118
return Arrays.asList(this.getRole());
119119
}
120120

121+
/*
122+
Roles is an array only in JWT but a String in Database.
123+
This is done for future compatibility - at the moment ego only needs one Role but this may change
124+
as project progresses.
125+
Currently, using the only role by extracting first role in the array
126+
*/
127+
public void setRoles(@NonNull List<String> roles){
128+
if(roles.size() > 0)
129+
this.role = roles.get(0);
130+
}
131+
121132
public void addNewApplication(@NonNull Application app){
122133
initApplications();
123134
this.wholeApplications.add(app);

src/main/java/org/overture/ego/security/JWTAuthorizationFilter.java

+15-2
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,23 @@
3434
import javax.servlet.http.HttpServletRequest;
3535
import javax.servlet.http.HttpServletResponse;
3636
import java.util.ArrayList;
37+
import java.util.Arrays;
3738

3839
@Slf4j
3940
public class JWTAuthorizationFilter extends BasicAuthenticationFilter {
4041

42+
private String[] publicEndpoints = null;
43+
4144
@Value("${auth.token.prefix}")
4245
private String TOKEN_PREFIX;
4346

4447
@Autowired
4548
private TokenService tokenService;
4649

47-
public JWTAuthorizationFilter(AuthenticationManager authManager) {
50+
51+
public JWTAuthorizationFilter(AuthenticationManager authManager, String[] publicEndpoints) {
4852
super(authManager);
53+
this.publicEndpoints = publicEndpoints;
4954
}
5055

5156
@Override
@@ -54,7 +59,9 @@ public void doFilterInternal(HttpServletRequest request,
5459
HttpServletResponse response,
5560
FilterChain chain) {
5661
String tokenPayload = "";
57-
if("/oauth/token".equals(request.getServletPath())){
62+
63+
// No need to validate a token even if one is passed for public endpoints
64+
if(isPublicEndpoint(request.getServletPath())){
5865
chain.doFilter(request,response);
5966
return;
6067
} else{
@@ -83,4 +90,10 @@ private String removeTokenPrefix(String token){
8390
return token.replace(TOKEN_PREFIX,"").trim();
8491
}
8592

93+
private boolean isPublicEndpoint(String endpointPath){
94+
if(this.publicEndpoints != null){
95+
return Arrays.stream(this.publicEndpoints).anyMatch(item -> item.equals(endpointPath));
96+
} else return false;
97+
}
98+
8699
}

src/main/java/org/overture/ego/token/TokenService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public boolean validateToken(String token) {
124124
public User getTokenUserInfo(String token) {
125125
try {
126126
Claims body = getTokenClaims(token);
127-
val tokenClaims = TypeUtils.convertToAnotherType(body, UserTokenClaims.class);
127+
val tokenClaims = TypeUtils.convertToAnotherType(body, UserTokenClaims.class, Views.JWTAccessToken.class);
128128
return userService.get(tokenClaims.getSub());
129129
} catch (JwtException | ClassCastException e) {
130130
return null;

0 commit comments

Comments
 (0)