A validation library for .NET that delivers an high-performance and memory prudence by using lambda-based and strongly-typed rules.
$ dotnet add package FlatValidatorThe FlatValidator is a validation library for .NET that delivers an high performance and memory prudence by using lambda-based and strongly-typed rules.
In general, there are two simple ways to validate custom data with the FlatValidator.
You can define validation rules in your code to validate object locally.
var someModel = new SomeModel(
Email: "email@email.com",
BirthDate: DateTime.Now,
Rate: -100
);
// validate synchronously
var result = FlatValidator.Validate(someModel, v =>
{
// IsEmail() is one of built-in funcs for typical data formats
// like Phone, Url, CreditCard, Password, etc.
v.ValidIf(m => m.Email.IsEmail(), m => $"Invalid email: {m.Email}", m => m.Email);
v.ErrorIf(m => m.Type == "Adult" && m.Age < 18, "Forbidden", m => m.Type, m => m.Age);
v.WarningIf(m => m.BirthDate >= DateTime.Now, "Looks like incorrect", m => m.BirthDate);
});
if (!result)
{
var ret = result.ToDictionary(); // Dictionary<PropertyName, ErrorMessage[]>
return TypedResults.ValidationProblem(ret); // for Minimal API
}
// or validate asynchronously
var result = await FlatValidator.ValidateAsync(model, v =>
{
v.ErrorIf(m => remoteApi.IsEmailBlockedAsync(m.Email),
m => $"Email {m.Email} is in black list.",
m => m.Email);
// the same with `async/await`
v.ErrorIf(async m => await remoteApi.IsEmailBlockedAsync(m.Email),
"Email is in black list.", m => m.Email);
});
// possibility to inspect occured validation failures:
bool success = result.IsValid;
var errors = result.Errors;
var warnings = result.Warnings;
Another way is to inherit the
FlatValidatorto define custom rules in the constructor. Also you can pass dependencies into constructor to get additional functionality inside of the validation rules.
public record UserModel(string Forename, string Surname, ....);
public class UserValidator: FlatValidator<UserModel>
{
public UserValidator(ILogger logger, IPostalService postalService)
{
logger.LogInfo("Validating...");
ErrorIf(m => m.Forename.IsEmpty() || m.Surname.IsEmpty(),
"Forename and Surname can not be empty.",
m => m.Forename, m => m.Surname);
// use 'When(...)' to control a validation flow
When(m => m.ShipmentAddress.NotEmpty(), @then: m =>
{
ValidIf(async m => await postalService.AddressExistsAsync(m.Address),
"Postal address not found.", m => m.Address);
WarningIf(m => !m.Phone.IsPhone(), "No contact phone.");
},
@else: m => // @else section is optional
{
ValidIf(m => m.Phone.IsPhone(), "Invalid phone number.", m => m.Phone);
});
}
}
Now lets validate some object with it
// create instance of the custom validator
var validator = new UserValidator();
// validate _asynchronously_ and get a result
var result = await validator.ValidateAsync(customer, cancellationToken);
// OR validate _synchronously_ and get a result
var result = validator.Validate(new UserModel(...));
if (!result) // check, is there any errors?
{
// ToDictionary() => Dictionary<PropertyName, ErrorMessage[]>
var dict = result.ToDictionary();
var errors = result.Errors;
var warnings = result.Warnings;
}
TIP - The package
FlatValidator.DependencyInjectionhelps you to register all inherited validators in the ServiceCollection automatically.
Using MetaData can extend functionality and can help to return certain data beyond the validator:
var result = FlatValidator.Validate(model, v =>
{
v.MetaData["ValidationTime"] = DateTime.UtcNow.ToString();
// ....
});
// access to the MetaData value outside of the validation
return result.MetaData["ValidationTime"];
IsEmpty(string) ensure the string is Null or WhiteSpace: ErrorIf(str => str.IsEmpty(), ...).NotEmpty(string) ensure the string is not Null and not WhiteSpace: ValidIf(str => str.NotEmpty(), ...).IsEmpty(GUID) ensure the GUID is empty: ErrorIf(guid => guid.IsEmpty(), ...).NotEmpty(GUID) ensure the GUID is not empty: ValidIf(guid => guid.NotEmpty(), ...).IsEmpty(GUID?) ensure the GUID? is Null or Guid.Empty: ErrorIf(guid => guid.IsEmpty(), ...).NotEmpty(GUID?) ensure the GUID? is not Null and not Guid.Empty: ValidIf(guid => guid.NotEmpty(), ...).ValidIf(eml => eml.IsEmail(), ... - check the string contains an email.ValidIf(phnum => phnum.IsPhoneNumber(), ... - check the string contains a phone number.ValidIf(cardnum => cardnum.IsCreditCardNumber(), ... - check the string contains a credit card number.ValidIf(carddt => carddt.IsCreditCardExpiryDate(), ... - check the string contains an expiration date for credit card in format MM/yy. false.ValidIf(cvv => cvv.IsCreditCardCVV(), ... - check the string contains a CVV.ValidIf(uri => uri.IsAbsoluteUri(), ... - returns false if URI value:
c:\dir\file.file://c:/dir/file.http:\\host/path\file or file:\\\c:\path.ValidIf(str => str.IsPassword(), ... - check password occupancy rate; FlatValidatorFuncs.GetPasswordStrength(string? password) - calculates the cardinality of the minimal character sets necessary to brute force the password (roughly).PasswordStrength as one value of the VeryWeak, Weak, Medium, Strong, VeryStrong enum.FlatValidatorFuncs.GetPasswordStrength(string? password, out int score, out int maxScore) score - score for the password, it is always less than maxScore;maxScore - calculated max score that is possible for this password. PasswordStrength as one value of the VeryWeak, Weak, Medium, Strong, VeryStrong enum.FlatValidatorFuncs.GetShannonEntropy(string password) - this uses the Shannon entropy equation to estimate the average minimum number of bits needed to encode a string of symbols, based on the frequency of the symbols. double value that's Shannon entropy.FlatValidatorFuncs.GetShannonEntropy(string password, out int shannonEntropyInBits) - this uses the Shannon entropy equation to estimate the average minimum number of bits needed to encode a string of symbols, based on the frequency of the symbols. shannonEntropyInBits returns a value of the Shannon entropy in bits.ValidIf(str => str.AllCyrillic(), ... - true, if there are only Cyrillic symbols.ValidIf(str => str.HasCyrillic(), ... - true, if there is at least one Cyrillic symbol.ValidIf(str => str.AllCyrillicSupplement(), ... - true, if there are only Cyrillic symbols from Cyrillic Supplement that's a Unicode block containing Cyrillic letters for writing several minority languages, including Abkhaz, Kurdish, Komi, Mordvin, Aleut, Azerbaijani, and Jakovlev's Chuvash orthography.ValidIf(str => str.AllBasicLatin(), ... - true, if there are only Latin symbols.ValidIf(str => str.HasBasicLatin(), ... - true, if there is at least one Latin symbols.The error message for each validator can be formatted with checked data that may be filled in when the error message is constructed.
The ErrorId() and ValidIf() have two possibilities to return some error message:
ErrorIf(eml => eml.IsEmail(), "Invalid email.")ErrorIf(eml => eml.IsEmail(), eml => "Email {eml} is invalid.")Yes, it is ready for Native AOT.
Repository contains an example with the usage of Minimal API + FlatValidator in Native AOT approach.
Release notes can be found on GitHub.
The FlatValidator is developed and supported by @belset for free in spare time, so that financial help keeps the projects to be going successfully.
You can sponsor the project via Buy me a coffee.