-
Notifications
You must be signed in to change notification settings - Fork 400
feat: Adds opt-in X-User-Id header to responses #22689
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
Open
jason-p-pickering
wants to merge
25
commits into
master
Choose a base branch
from
session-id-header
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
5993fe0
Adds opt-in X-Session-Id header.
jason-p-pickering 64c12de
Linting
jason-p-pickering edba124
Remove unused import
jason-p-pickering a644453
Merge branch 'master' into session-id-header
jason-p-pickering 62fc022
Cleanup
jason-p-pickering 321c9bd
Merge branch 'session-id-header' of github.com:dhis2/dhis2-core into …
jason-p-pickering 507c2bc
Change encoding method
jason-p-pickering 49a2841
Add caching
jason-p-pickering 6eee5ce
Refactor for X-User-ID based on feedback
jason-p-pickering 87dd2cd
Add missing files
jason-p-pickering e93b44c
Fix test
jason-p-pickering efdd13d
Merge branch 'master' of github.com:dhis2/dhis2-core into session-id-…
jason-p-pickering 042eca6
Fix test
jason-p-pickering 10120d4
Merge branch 'master' into session-id-header
jason-p-pickering 34b20f3
Merge branch 'master' into session-id-header
jason-p-pickering cbd44c1
Merge branch 'master' into session-id-header
jason-p-pickering a36c786
Merge branch 'master' into session-id-header
jason-p-pickering fa22dbd
Merge branch 'master' into session-id-header
jason-p-pickering 8cb25d9
Merge branch 'master' into session-id-header
jason-p-pickering 9845d97
Address reviewer comments on session-id-header PR
jason-p-pickering 1b159e2
Merge origin/master into session-id-header
jason-p-pickering 6dfc622
Linting
jason-p-pickering 8e2d0c3
More noise suppression
jason-p-pickering 3b4c45a
Revert "More noise suppression"
jason-p-pickering 6bdc5f2
Merge branch 'master' into session-id-header
jason-p-pickering File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
120 changes: 120 additions & 0 deletions
120
...2/dhis-test-web-api/src/test/java/org/hisp/dhis/webapi/filter/UserIdHeaderFilterTest.java
This file contains hidden or 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,120 @@ | ||
| /* | ||
| * Copyright (c) 2004-2025, University of Oslo | ||
| * All rights reserved. | ||
| * | ||
| * Redistribution and use in source and binary forms, with or without | ||
| * modification, are permitted provided that the following conditions are met: | ||
| * | ||
| * 1. Redistributions of source code must retain the above copyright notice, this | ||
| * list of conditions and the following disclaimer. | ||
| * | ||
| * 2. Redistributions in binary form must reproduce the above copyright notice, | ||
| * this list of conditions and the following disclaimer in the documentation | ||
| * and/or other materials provided with the distribution. | ||
| * | ||
| * 3. Neither the name of the copyright holder nor the names of its contributors | ||
| * may be used to endorse or promote products derived from this software without | ||
| * specific prior written permission. | ||
| * | ||
| * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
| * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
| * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
| * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | ||
| * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
| * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
| * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
| * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
| * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| */ | ||
| package org.hisp.dhis.webapi.filter; | ||
|
|
||
| import static org.junit.jupiter.api.Assertions.assertEquals; | ||
| import static org.junit.jupiter.api.Assertions.assertNotNull; | ||
|
|
||
| import java.nio.charset.StandardCharsets; | ||
| import java.security.GeneralSecurityException; | ||
| import java.util.Arrays; | ||
| import java.util.Base64; | ||
| import java.util.Properties; | ||
| import javax.crypto.Cipher; | ||
| import javax.crypto.spec.GCMParameterSpec; | ||
| import javax.crypto.spec.SecretKeySpec; | ||
| import org.hisp.dhis.external.conf.DhisConfigurationProvider; | ||
| import org.hisp.dhis.test.config.H2DhisConfigurationProvider; | ||
| import org.hisp.dhis.test.webapi.H2ControllerIntegrationTestBase; | ||
| import org.junit.jupiter.api.BeforeEach; | ||
| import org.junit.jupiter.api.Test; | ||
| import org.springframework.beans.factory.annotation.Autowired; | ||
| import org.springframework.context.annotation.Bean; | ||
| import org.springframework.context.annotation.Configuration; | ||
| import org.springframework.context.annotation.Primary; | ||
| import org.springframework.stereotype.Controller; | ||
| import org.springframework.test.context.ContextConfiguration; | ||
| import org.springframework.test.web.servlet.setup.MockMvcBuilders; | ||
| import org.springframework.web.bind.annotation.GetMapping; | ||
| import org.springframework.web.bind.annotation.ResponseBody; | ||
|
|
||
| @ContextConfiguration(classes = UserIdHeaderFilterTest.TestConfig.class) | ||
| class UserIdHeaderFilterTest extends H2ControllerIntegrationTestBase { | ||
| private static final String ENCRYPTION_KEY = "MDEyMzQ1Njc4OWFiY2RlZjAxMjM0NTY3ODlhYmNkZWY="; | ||
| private static final String HEADER_NAME = "X-User-ID"; | ||
|
|
||
| @Autowired private RequestIdFilter requestIdFilter; | ||
| @Autowired private ApiVersionFilter apiVersionFilter; | ||
| @Autowired private UserIdFilter userIdHeaderFilter; | ||
|
|
||
| @BeforeEach | ||
| void setupFilters() { | ||
| mvc = | ||
| MockMvcBuilders.webAppContextSetup(webApplicationContext) | ||
| .addFilter(requestIdFilter) | ||
| .addFilter(apiVersionFilter) | ||
| .addFilter(userIdHeaderFilter) | ||
| .build(); | ||
| } | ||
|
|
||
| @Test | ||
| void shouldEncryptUserUidInHeader() throws Exception { | ||
| HttpResponse response = GET("/test/userHeader"); | ||
| String header = response.header(HEADER_NAME); | ||
| assertNotNull(header); | ||
|
|
||
| String payload = decryptHeader(header, ENCRYPTION_KEY); | ||
| assertEquals(getAdminUid(), payload); | ||
| } | ||
|
|
||
| private static String decryptHeader(String header, String key) throws GeneralSecurityException { | ||
| byte[] combined = Base64.getUrlDecoder().decode(header.substring(3)); | ||
| byte[] iv = Arrays.copyOfRange(combined, 0, 12); | ||
| byte[] cipherText = Arrays.copyOfRange(combined, 12, combined.length); | ||
| byte[] keyBytes = Base64.getDecoder().decode(key); | ||
| Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); | ||
| cipher.init( | ||
| Cipher.DECRYPT_MODE, new SecretKeySpec(keyBytes, "AES"), new GCMParameterSpec(128, iv)); | ||
| return new String(cipher.doFinal(cipherText), StandardCharsets.UTF_8); | ||
| } | ||
|
|
||
| @Configuration | ||
| static class TestConfig { | ||
| @Bean | ||
| @Primary | ||
| DhisConfigurationProvider dhisConfigurationProvider() { | ||
| H2DhisConfigurationProvider provider = new H2DhisConfigurationProvider(); | ||
| Properties properties = new Properties(); | ||
| properties.setProperty("logging.user_id_header.enabled", "on"); | ||
| properties.setProperty("logging.user_id_encryption_key", ENCRYPTION_KEY); | ||
| provider.addProperties(properties); | ||
| return provider; | ||
| } | ||
| } | ||
|
|
||
| @Controller | ||
| static class TestUserHeaderController { | ||
| @GetMapping("/api/test/userHeader") | ||
| @ResponseBody | ||
| public String ok() { | ||
| return "ok"; | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.