-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* AAE-19071 disable CSRF for public URLs, unit test. * AAE-19071 fix other tests * AAE-19071 sonarqube issues
- Loading branch information
Showing
3 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
...n-security/src/main/java/org/activiti/cloud/security/authorization/CsrfIgnoreMatcher.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright 2017-2020 Alfresco Software, Ltd. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.activiti.cloud.security.authorization; | ||
|
||
import jakarta.servlet.http.HttpServletRequest; | ||
import java.util.List; | ||
import org.springframework.security.web.util.matcher.RequestMatcher; | ||
import org.springframework.util.AntPathMatcher; | ||
import org.springframework.util.PathMatcher; | ||
|
||
public class CsrfIgnoreMatcher implements RequestMatcher { | ||
|
||
private final List<String> publicUrls; | ||
|
||
private final PathMatcher matcher; | ||
|
||
public CsrfIgnoreMatcher(List<String> publicUrls) { | ||
this.publicUrls = publicUrls; | ||
this.matcher = new AntPathMatcher(); | ||
} | ||
|
||
@Override | ||
public boolean matches(HttpServletRequest request) { | ||
return publicUrls.stream().anyMatch(url -> matcher.match(url, request.getRequestURI())); | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
...curity/src/test/java/org/activiti/cloud/security/authorization/CsrfIgnoreMatcherTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright 2017-2020 Alfresco Software, Ltd. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.activiti.cloud.security.authorization; | ||
|
||
import static java.util.Arrays.asList; | ||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import java.util.List; | ||
import org.junit.jupiter.api.Test; | ||
import org.springframework.mock.web.MockHttpServletRequest; | ||
|
||
class CsrfIgnoreMatcherTest { | ||
|
||
private final List<String> publicUrlsPatterns = asList("/public", "/public/**"); | ||
private final List<String> nonPublicUrlsPatterns = asList("/non-public", "/non-public/**"); | ||
private final CsrfIgnoreMatcher matcher = new CsrfIgnoreMatcher(publicUrlsPatterns); | ||
|
||
@Test | ||
void should_matchPublicURLsPatterns() { | ||
nonPublicUrlsPatterns.forEach(url -> assertThat(matcher.matches(new MockHttpServletRequest("", url))).isFalse() | ||
); | ||
} | ||
|
||
@Test | ||
void should_not_matchNonPublicURLsPatterns() { | ||
publicUrlsPatterns.forEach(url -> assertThat(matcher.matches(new MockHttpServletRequest("", url))).isTrue()); | ||
} | ||
} |