Как создать атрибут регулярного выражения с динамическим шаблоном из свойства модели - PullRequest
6 голосов
/ 26 мая 2011
public class City
{
   [DynamicReqularExpressionAttribute(PatternProperty = "RegEx")]
   public string Zip {get; set;}
   public string RegEx { get; set;} 
}

Мне бы хотелось создать этот атрибут, если шаблон получен из другого свойства и не объявляется статическим, как в оригинальном атрибуте RegularExpressionAttribute.

Любые идеи будут оценены - спасибо

Ответы [ 2 ]

7 голосов
/ 26 мая 2011

Что-то между строк должно отвечать всем требованиям:

public class DynamicRegularExpressionAttribute : ValidationAttribute
{
    public string PatternProperty { get; set; }

    protected override ValidationResult IsValid(object value, ValidationContext validationContext)
    {
        PropertyInfo property = validationContext.ObjectType.GetProperty(PatternProperty);
        if (property == null)
        {
            return new ValidationResult(string.Format("{0} is unknown property", PatternProperty));
        }
        var pattern = property.GetValue(validationContext.ObjectInstance, null) as string;
        if (string.IsNullOrEmpty(pattern))
        {
            return new ValidationResult(string.Format("{0} must be a valid string regex", PatternProperty));
        }

        var str = value as string;
        if (string.IsNullOrEmpty(str))
        {
            // We consider that an empty string is valid for this property
            // Decorate with [Required] if this is not the case
            return null;
        }

        var match = Regex.Match(str, pattern);
        if (!match.Success)
        {
            return new ValidationResult(this.FormatErrorMessage(validationContext.DisplayName));
        }

        return null;
    }
}

и затем:

Модель:

public class City
{
    [DynamicRegularExpression(PatternProperty = "RegEx")]
    public string Zip { get; set; }
    public string RegEx { get; set; }
}

Контроллер:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        var city = new City
        {
            RegEx = "[0-9]{5}"
        };
        return View(city);
    }

    [HttpPost]
    public ActionResult Index(City city)
    {
        return View(city);
    }
}

Вид:

@model City
@using (Html.BeginForm())
{
    @Html.HiddenFor(x => x.RegEx)

    @Html.LabelFor(x => x.Zip)
    @Html.EditorFor(x => x.Zip)
    @Html.ValidationMessageFor(x => x.Zip)

    <input type="submit" value="OK" />
}
0 голосов
/ 26 мая 2011

переопределяет метод Validate, который принимает ValidationContext в качестве параметра, использует ValidationContext для получения строки регулярного выражения из связанного свойства и применяет регулярное выражение, возвращая соответствующее значение.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...