// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Globalization; using Microsoft.AspNet.Http; namespace Microsoft.AspNet.Routing.Constraints { /// /// Constrains a route parameter to be a string with a minimum length. /// public class MinLengthRouteConstraint : IRouteConstraint { /// /// Initializes a new instance of the class. /// /// The minimum length allowed for the route parameter. public MinLengthRouteConstraint(int minLength) { if (minLength < 0) { var errorMessage = Resources.FormatArgumentMustBeGreaterThanOrEqualTo(0); throw new ArgumentOutOfRangeException(nameof(minLength), minLength, errorMessage); } MinLength = minLength; } /// /// Gets the minimum length allowed for the route parameter. /// public int MinLength { get; private set; } /// public bool Match( HttpContext httpContext, IRouter route, string routeKey, RouteValueDictionary values, RouteDirection routeDirection) { if (httpContext == null) { throw new ArgumentNullException(nameof(httpContext)); } if (route == null) { throw new ArgumentNullException(nameof(route)); } if (routeKey == null) { throw new ArgumentNullException(nameof(routeKey)); } if (values == null) { throw new ArgumentNullException(nameof(values)); } object value; if (values.TryGetValue(routeKey, out value) && value != null) { var valueString = Convert.ToString(value, CultureInfo.InvariantCulture); return valueString.Length >= MinLength; } return false; } } }