classlib/ExpenseTracker.Application/Authentication/Commands/RegisterWithEmailAndPassword/RegisterWithEmailAndPasswordCommandValidator.cs
2024-08-07 21:12:02 +03:00

24 lines
1.2 KiB
C#

using FluentValidation;
namespace ExpenseTracker.Application.Authentication.Commands.RegisterWithEmailAndPassword;
public class RegisterWithEmailAndPasswordCommandValidator : AbstractValidator<RegisterWithEmailAndPasswordCommand>
{
public RegisterWithEmailAndPasswordCommandValidator()
{
// https://regexr.com/2ri2c
RuleFor(v => v.Email)
.NotEmpty().WithMessage("Email address is required.")
.Matches(@"\b[\w\.-]+@[\w\.-]+\.\w{2,4}\b").WithMessage("Email address is invalid.");
RuleFor(v => v.Password)
.NotEmpty().WithMessage("Password is required.")
.MinimumLength(8).WithMessage("Password must be at least 8 characters long.")
.MaximumLength(64).WithMessage("Password must be at most 64 characters long.")
.Matches(@"(?=.*[A-Z]).*").WithMessage("Password must contain at least one uppercase letter.")
.Matches(@"(?=.*[a-z]).*").WithMessage("Password must contain at least one lowercase letter.")
.Matches(@"(?=.*[\d]).*").WithMessage("Password must contain at least one digit.")
.Matches(@"(?=.*[!@#$%^&*()]).*").WithMessage("Password must contain at least one of the following special charactters: !@#$%^&*().");
}
}