Csrf fix and ssoAutoLogin for enterprise users #2653
Merged
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.
This pull request includes several changes to the
SecurityConfiguration
and other related classes to enhance security and configuration management. The most important changes involve adding new beans, modifying logging levels, and updating dependency injections.Enhancements to security configuration:
src/main/java/stirling/software/SPDF/config/security/SecurityConfiguration.java
: Added new dependencies and beans forGrantedAuthoritiesMapper
,RelyingPartyRegistrationRepository
, andOpenSaml4AuthenticationRequestResolver
. Removed unused imports and simplified the class by removing the@Lazy
annotation fromUserService
. [1] [2] [3] [4] [5] [6]Logging improvements:
src/main/java/stirling/software/SPDF/EE/KeygenLicenseVerifier.java
: Changed the logging level frominfo
todebug
for the license validation response body to reduce log verbosity in production.Configuration updates:
src/main/java/stirling/software/SPDF/EE/EEAppConfig.java
: Added a new beanssoAutoLogin
to manage single sign-on auto-login configuration in the enterprise edition.These changes collectively enhance the security configuration and logging management of the application.
Please provide a summary of the changes, including relevant motivation and context.
Closes #(issue_number)
Checklist