-
Notifications
You must be signed in to change notification settings - Fork 395
chore: Remove confidential values [DHIS2-21518] #23937
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
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
4a69211
chore: Remove confidential values [DHIS2-21518]
muilpp 441a6de
chore: Remove confidential from e2e test [DHIS2-21518]
muilpp 48fa4cf
chore: Add migration script [DHIS2-21518]
muilpp ba9d405
chore: Remove unnecessary test class [DHIS2-21518]
muilpp 73c9fbd
chore: Rename analytics methods [DHIS2-21518]
muilpp 6280e06
chore: Restore encryption configuration [DHIS2-21518]
muilpp b2375be
Merge branch 'master' into DHIS2-21518
muilpp 5dd358c
chore: Restore encryption configuration [DHIS2-21518]
muilpp 875217e
chore: Restore configuration provider [DHIS2-21518]
muilpp 3f12572
chore: Add link to migration notes in flyway migration script [DHIS2-…
muilpp 7807df4
chore: Add safe null check [DHIS2-21518]
muilpp 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
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
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
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 |
|---|---|---|
|
|
@@ -81,7 +81,7 @@ public List<PrefixedDimension> getQueryDimensionsByProgramId(String programId) { | |
| filterByValueType( | ||
| QUERY, | ||
| ofItemsWithProgram( | ||
| program, getTeasIfRegistrationAndNotConfidential(program)))))) | ||
| program, getTeasIfRegistrationAndNotSkipped(program)))))) | ||
| .orElse(List.of()); | ||
| } | ||
|
|
||
|
|
@@ -127,23 +127,17 @@ public List<PrefixedDimension> getAggregateDimensionsByProgramId(String programI | |
| .orElse(List.of()); | ||
| } | ||
|
|
||
| private Collection<TrackedEntityAttribute> getTeasIfRegistrationAndNotConfidential( | ||
| Program program) { | ||
| private Collection<TrackedEntityAttribute> getTeasIfRegistrationAndNotSkipped(Program program) { | ||
| return Optional.of(program) | ||
| .filter(Program::isRegistration) | ||
| .map(Program::getTrackedEntityAttributes) | ||
| .orElse(List.of()) | ||
| .stream() | ||
| .filter(this::isNotConfidential) | ||
| .filter(this::isNotSkipped) | ||
| .collect(Collectors.toList()); | ||
| } | ||
|
|
||
| private boolean isNotConfidential(TrackedEntityAttribute trackedEntityAttribute) { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need a similar primitive safe method? How would the getSkipAnalytics behave if it happened to be null? |
||
| return !trackedEntityAttribute.isConfidentialBool(); | ||
| } | ||
|
|
||
| private boolean isNotSkipped(TrackedEntityAttribute trackedEntityAttribute) { | ||
| return !trackedEntityAttribute.isSkipAnalytics(); | ||
| return !Boolean.TRUE.equals(trackedEntityAttribute.getSkipAnalytics()); | ||
| } | ||
| } | ||
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
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
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
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
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.