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

Dependency Upgrades and JWT Template Update #10

Merged
merged 2 commits into from
Jul 19, 2019
Merged
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
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
<version>2.1.6.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

Expand All @@ -50,6 +50,7 @@
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
<version>2.3.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand All @@ -67,12 +68,12 @@
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-jwt</artifactId>
<version>1.0.10.RELEASE</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.8.9</version>
</dependency>

<!-- Test -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
@Slf4j
public class JWTAuthorizationFilter extends GenericFilterBean {

private final String REQUIRED_ROLE = "USER";
private final String TYPE_ADMIN = "ADMIN";
private final String TYPE_USER = "USER";
private final String REQUIRED_TYPE = TYPE_ADMIN;
private final String REQUIRED_STATUS = "Approved";

@Override
Expand All @@ -42,7 +44,7 @@ public void doFilter(ServletRequest request, ServletResponse response, FilterCha
val details = (OAuth2AuthenticationDetails) authentication.getDetails();
val user = (JWTUser) details.getDecodedDetails();

boolean hasCorrectRole = user.getRoles().contains(REQUIRED_ROLE);
boolean hasCorrectRole = user.getType().equals(REQUIRED_TYPE);
boolean hasCorrectStatus = user.getStatus().equalsIgnoreCase(REQUIRED_STATUS);

if(!hasCorrectRole || !hasCorrectStatus) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public class JWTUser {
private String createdAt;
private String lastLogin;
private String preferredLanguage;
private List<String> roles;
private String type;
private List<String> permissions;

}