-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathValidatePatternFriendlyAttribute.cs
32 lines (29 loc) · 1.19 KB
/
ValidatePatternFriendlyAttribute.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Management.Automation;
using System.Text.RegularExpressions;
namespace Meadow.Cli
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class ValidatePatternFriendlyAttribute : ValidateEnumeratedArgumentsAttribute
{
#pragma warning disable CA1307 // Specify StringComparison
private string Name { get; } = nameof(ValidatePatternFriendlyAttribute).Replace("Attribute", "");
#pragma warning restore CA1307 // Specify StringComparison
public RegexOptions Options { get; set; } = RegexOptions.IgnoreCase;
public string Message { get; set; }
public string Pattern { get; set; }
protected override void ValidateElement(object element)
{
if (element == null)
{
throw new ValidationMetadataException(
$"{Message}\n{Name} failure: argument is null");
}
if (!new Regex(Pattern, Options).Match(element.ToString()).Success)
{
throw new ValidationMetadataException(
$"{Message}\n{Name} failure, the value '{element}' does not match the pattern /{Pattern}/");
}
}
}
}