1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

Make optional ssoConfig fields nullable (#1752)

This commit is contained in:
Thomas Rittson 2021-12-14 20:02:22 +10:00 committed by GitHub
parent 2ec10cfd2a
commit 3ae573bd8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,7 +51,7 @@ namespace Bit.Core.Models.Api
public string ClientSecret { get; set; } public string ClientSecret { get; set; }
public string MetadataAddress { get; set; } public string MetadataAddress { get; set; }
public OpenIdConnectRedirectBehavior RedirectBehavior { get; set; } public OpenIdConnectRedirectBehavior RedirectBehavior { get; set; }
public bool GetClaimsFromUserInfoEndpoint { get; set; } public bool? GetClaimsFromUserInfoEndpoint { get; set; }
public string AdditionalScopes { get; set; } public string AdditionalScopes { get; set; }
public string AdditionalUserIdClaimTypes { get; set; } public string AdditionalUserIdClaimTypes { get; set; }
public string AdditionalEmailClaimTypes { get; set; } public string AdditionalEmailClaimTypes { get; set; }
@ -63,8 +63,8 @@ namespace Bit.Core.Models.Api
public Saml2NameIdFormat SpNameIdFormat { get; set; } public Saml2NameIdFormat SpNameIdFormat { get; set; }
public string SpOutboundSigningAlgorithm { get; set; } public string SpOutboundSigningAlgorithm { get; set; }
public Saml2SigningBehavior SpSigningBehavior { get; set; } public Saml2SigningBehavior SpSigningBehavior { get; set; }
public bool SpWantAssertionsSigned { get; set; } public bool? SpWantAssertionsSigned { get; set; }
public bool SpValidateCertificates { get; set; } public bool? SpValidateCertificates { get; set; }
public string SpMinIncomingSigningAlgorithm { get; set; } public string SpMinIncomingSigningAlgorithm { get; set; }
// SAML2 IDP // SAML2 IDP
@ -75,9 +75,9 @@ namespace Bit.Core.Models.Api
public string IdpArtifactResolutionServiceUrl { get; set; } public string IdpArtifactResolutionServiceUrl { get; set; }
public string IdpX509PublicCert { get; set; } public string IdpX509PublicCert { get; set; }
public string IdpOutboundSigningAlgorithm { get; set; } public string IdpOutboundSigningAlgorithm { get; set; }
public bool IdpAllowUnsolicitedAuthnResponse { get; set; } public bool? IdpAllowUnsolicitedAuthnResponse { get; set; }
public bool IdpDisableOutboundLogoutRequests { get; set; } public bool? IdpDisableOutboundLogoutRequests { get; set; }
public bool IdpWantAuthnRequestsSigned { get; set; } public bool? IdpWantAuthnRequestsSigned { get; set; }
public IEnumerable<ValidationResult> Validate(ValidationContext context) public IEnumerable<ValidationResult> Validate(ValidationContext context)
{ {
@ -184,7 +184,7 @@ namespace Bit.Core.Models.Api
ClientId = ClientId, ClientId = ClientId,
ClientSecret = ClientSecret, ClientSecret = ClientSecret,
MetadataAddress = MetadataAddress, MetadataAddress = MetadataAddress,
GetClaimsFromUserInfoEndpoint = GetClaimsFromUserInfoEndpoint, GetClaimsFromUserInfoEndpoint = GetClaimsFromUserInfoEndpoint.GetValueOrDefault(),
RedirectBehavior = RedirectBehavior, RedirectBehavior = RedirectBehavior,
IdpEntityId = IdpEntityId, IdpEntityId = IdpEntityId,
IdpBindingType = IdpBindingType, IdpBindingType = IdpBindingType,
@ -193,14 +193,14 @@ namespace Bit.Core.Models.Api
IdpArtifactResolutionServiceUrl = IdpArtifactResolutionServiceUrl, IdpArtifactResolutionServiceUrl = IdpArtifactResolutionServiceUrl,
IdpX509PublicCert = StripPemCertificateElements(IdpX509PublicCert), IdpX509PublicCert = StripPemCertificateElements(IdpX509PublicCert),
IdpOutboundSigningAlgorithm = IdpOutboundSigningAlgorithm, IdpOutboundSigningAlgorithm = IdpOutboundSigningAlgorithm,
IdpAllowUnsolicitedAuthnResponse = IdpAllowUnsolicitedAuthnResponse, IdpAllowUnsolicitedAuthnResponse = IdpAllowUnsolicitedAuthnResponse.GetValueOrDefault(),
IdpDisableOutboundLogoutRequests = IdpDisableOutboundLogoutRequests, IdpDisableOutboundLogoutRequests = IdpDisableOutboundLogoutRequests.GetValueOrDefault(),
IdpWantAuthnRequestsSigned = IdpWantAuthnRequestsSigned, IdpWantAuthnRequestsSigned = IdpWantAuthnRequestsSigned.GetValueOrDefault(),
SpNameIdFormat = SpNameIdFormat, SpNameIdFormat = SpNameIdFormat,
SpOutboundSigningAlgorithm = SpOutboundSigningAlgorithm ?? SamlSigningAlgorithms.Sha256, SpOutboundSigningAlgorithm = SpOutboundSigningAlgorithm ?? SamlSigningAlgorithms.Sha256,
SpSigningBehavior = SpSigningBehavior, SpSigningBehavior = SpSigningBehavior,
SpWantAssertionsSigned = SpWantAssertionsSigned, SpWantAssertionsSigned = SpWantAssertionsSigned.GetValueOrDefault(),
SpValidateCertificates = SpValidateCertificates, SpValidateCertificates = SpValidateCertificates.GetValueOrDefault(),
SpMinIncomingSigningAlgorithm = SpMinIncomingSigningAlgorithm, SpMinIncomingSigningAlgorithm = SpMinIncomingSigningAlgorithm,
AdditionalScopes = AdditionalScopes, AdditionalScopes = AdditionalScopes,
AdditionalUserIdClaimTypes = AdditionalUserIdClaimTypes, AdditionalUserIdClaimTypes = AdditionalUserIdClaimTypes,