2016-06-27 01:45:38 +02:00
|
|
|
using System.Globalization;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
|
|
|
|
|
using BS.Shared.Extensions;
|
|
|
|
|
|
|
|
|
|
namespace BeWo.Validation
|
|
|
|
|
{
|
|
|
|
|
public class AttributeValidator : ValidationRule
|
|
|
|
|
{
|
|
|
|
|
public BindingExpression ExpressionToValidate { get; set; }
|
|
|
|
|
|
|
|
|
|
public override ValidationResult Validate(object pValue, CultureInfo pCultureInfo)
|
|
|
|
|
{
|
|
|
|
|
bool lValid = true;
|
|
|
|
|
|
|
|
|
|
if (this.ExpressionToValidate != null)
|
|
|
|
|
{
|
|
|
|
|
PropertyInfo lPropInfo = null;
|
|
|
|
|
object lCurrentObject = this.ExpressionToValidate.DataItem;
|
2018-11-22 14:05:45 +01:00
|
|
|
if (lCurrentObject != null)
|
2016-06-27 01:45:38 +02:00
|
|
|
{
|
2018-11-22 14:05:45 +01:00
|
|
|
foreach (var iPropName in this.ExpressionToValidate.ParentBinding.Path.Path.Split("."))
|
|
|
|
|
{
|
|
|
|
|
lPropInfo = lCurrentObject.GetType().GetProperty(iPropName);
|
|
|
|
|
lCurrentObject = lPropInfo.GetValue(lCurrentObject, null);
|
|
|
|
|
}
|
2016-06-27 01:45:38 +02:00
|
|
|
}
|
|
|
|
|
|
2018-11-22 14:05:45 +01:00
|
|
|
if (lPropInfo != null)
|
2016-06-27 01:45:38 +02:00
|
|
|
{
|
2018-11-22 14:05:45 +01:00
|
|
|
var lAttributes = lPropInfo.GetCustomAttributes(typeof(ValidationAttribute), true);
|
|
|
|
|
if (lAttributes.Length > 0)
|
|
|
|
|
{
|
|
|
|
|
lValid = ((ValidationAttribute) lAttributes[0]).Validate(pValue);
|
|
|
|
|
}
|
2016-06-27 01:45:38 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!lValid)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: Nachricht, am besten als Property im ValidationAttribut
|
|
|
|
|
return new ValidationResult(lValid, null);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|