Esempio n. 1
0
        protected override ValidationResult IsValid(object value, ValidationContext validationContext)
        {
            if (!(value is ICollection coll))
            {
                return(ValidationResult.Success);
            }
            ICollectionPropertyNamingStrategy cpns = validationContext.GetService(typeof(ICollectionPropertyNamingStrategy)) as ICollectionPropertyNamingStrategy;
            string message = "";
            int    idx     = 0;
            var    members = new List <string>();

            foreach (var c in coll)
            {
                RegularExpressionAttribute attr = new RegularExpressionAttribute(_pattern);
                var res     = attr.GetValidationResult(c, validationContext);
                var invalid = !string.IsNullOrWhiteSpace(res?.ErrorMessage);
                if (invalid)
                {
                    message = res.ErrorMessage;
                    if (cpns != null)
                    {
                        members.Add(cpns.CreateName(validationContext.MemberName, idx, ""));
                    }
                    else
                    {
                        members.Add($"{validationContext.MemberName}[{idx}]");
                    }
                }
                idx++;
            }

            if (members.Any())
            {
                return(new ValidationResult(message, members));
            }
            return(ValidationResult.Success);
        }
Esempio n. 2
0
        private bool TryValidateObjectRecursive<T>(T obj, List<ValidationResult> results, ValidationContext context, ISet<object> validatedObjects)
        {
            //short-circuit to avoid infinite loops on cyclical object graphs
            if (validatedObjects.Contains(obj))
            {
                return true;
            }

            validatedObjects.Add(obj);
            bool result = TryValidateObject(obj, results, context);

            var properties = obj.GetType().GetProperties().Where(prop => prop.CanRead
                                                                         && !prop.GetCustomAttributes(typeof(SkipRecursiveValidation), false).Any()
                                                                         && prop.GetIndexParameters().Length == 0).ToList();

            foreach (var property in properties)
            {
                var alwaysPresent = property.GetCustomAttribute<AlwaysPresentAttribute>();
                if (property.PropertyType.IsValueType)
                {
                    continue;
                }

                if (property.PropertyType == typeof(string))
                {
                    if (alwaysPresent == null) continue;
                    string sv = property.GetValue(obj) as string;
                    if (string.IsNullOrWhiteSpace(sv))
                    {
                        string prop = property.Name;
                        result = false;
                        results.Add(new ValidationResult(alwaysPresent.ErrorMessage ?? $"The {prop} field is required", new [] { property.Name }));
                    }
                }

                var value = GetPropertyValue(obj, property.Name);

                if (value == null) continue;

                if (value is IEnumerable asEnumerable)
                {
                    int counter = 0;
                    foreach (var enumObj in asEnumerable)
                    {
                        if (enumObj != null)
                        {
                            var nestedResults = new List<ValidationResult>();
                            if (!TryValidateObjectRecursive(enumObj, nestedResults, context, validatedObjects))
                            {
                                result = false;
                                foreach (var validationResult in nestedResults)
                                {
                                    PropertyInfo property1 = property;
                                    var counter1 = counter;

                                    var memberNames = validationResult.MemberNames.Select(x => _collectionValidationNaming.CreateName(property1.Name, counter1, x));
                                    results.Add(new ValidationResult(validationResult.ErrorMessage, memberNames));
                                }
                            }
                        }
                        counter++;
                    }
                }
                else
                {
                    var nestedResults = new List<ValidationResult>();
                    if (!TryValidateObjectRecursive(value, nestedResults, context, validatedObjects))
                    {
                        result = false;
                        foreach (var validationResult in nestedResults)
                        {
                            PropertyInfo property1 = property;
                            results.Add(new ValidationResult(validationResult.ErrorMessage, validationResult.MemberNames.Select(x => property1.Name + '.' + x)));
                        }
                    };
                }
            }

            return result;
        }