-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from serverlessworkflow/fix-authentication-res…
…ource-validation Fixed the `ComponentDefinitionCollectionValidator` to validate `AuthenticationPolicyDefinitions`
- Loading branch information
Showing
5 changed files
with
56 additions
and
3 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
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
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
51 changes: 51 additions & 0 deletions
51
src/ServerlessWorkflow.Sdk/Validation/AuthenticationPolicyKeyValuePairValidator.cs
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,51 @@ | ||
// Copyright © 2024-Present The Serverless Workflow Specification Authors | ||
// | ||
// 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. | ||
|
||
using FluentValidation; | ||
using ServerlessWorkflow.Sdk.Models; | ||
|
||
namespace ServerlessWorkflow.Sdk.Validation; | ||
|
||
/// <summary> | ||
/// Represents the <see cref="IValidator"/> used to validate <see cref="AuthenticationPolicyDefinition"/> key/value pairs | ||
/// </summary> | ||
public class AuthenticationPolicyKeyValuePairValidator | ||
: AbstractValidator<KeyValuePair<string, AuthenticationPolicyDefinition>> | ||
{ | ||
|
||
/// <inheritdoc/> | ||
public AuthenticationPolicyKeyValuePairValidator(IServiceProvider serviceProvider, ComponentDefinitionCollection? components) | ||
{ | ||
this.ServiceProvider = serviceProvider; | ||
this.Components = components; | ||
this.RuleFor(t => t.Value) | ||
.Custom((value, context) => | ||
{ | ||
var key = context.InstanceToValidate.Key; | ||
var validator = new AuthenticationPolicyDefinitionValidator(serviceProvider, components); | ||
var validationResult = validator.Validate(value); | ||
foreach (var error in validationResult.Errors) context.AddFailure($"{key}.{error.PropertyName}", error.ErrorMessage); | ||
}); | ||
} | ||
|
||
/// <summary> | ||
/// Gets the current <see cref="IServiceProvider"/> | ||
/// </summary> | ||
protected IServiceProvider ServiceProvider { get; } | ||
|
||
/// <summary> | ||
/// Gets the configured reusable components | ||
/// </summary> | ||
protected ComponentDefinitionCollection? Components { get; } | ||
|
||
} |
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