Try your search with a different keyword or use * as a wildcard.
using System.Globalization;
using System.Numerics;
using Microsoft.AspNetCore.Mvc.ModelBinding;
namespace Nop.Web.Framework.Mvc.ModelBinding.Binders;
/// <summary>
/// Represents model binder for numeric types
/// </summary>
public partial class InvariantNumberModelBinder : IModelBinder
{
#region Fields
protected delegate bool TryParseNumber<T>(string value, NumberStyles styles, IFormatProvider provider, out T result) where T : struct;
protected readonly IModelBinder _globalizedBinder;
protected readonly NumberStyles _supportedStyles;
#endregion
#region Ctor
public InvariantNumberModelBinder(NumberStyles supportedStyles, IModelBinder globalizedBinder)
{
ArgumentNullException.ThrowIfNull(globalizedBinder);
_globalizedBinder = globalizedBinder;
_supportedStyles = supportedStyles;
}
#endregion
#region Utilities
protected virtual T? TryParse<T>(string value, TryParseNumber<T> handler) where T : struct
{
if (!string.IsNullOrWhiteSpace(value) && handler(value, _supportedStyles, CultureInfo.InvariantCulture, out var parseResult))
return parseResult;
return null;
}
#endregion
#region Methods
/// <summary>
/// Attempts to bind a model
/// </summary>
/// <param name="bindingContext">Model binding context</param>
public virtual Task BindModelAsync(ModelBindingContext bindingContext)
{
ArgumentNullException.ThrowIfNull(bindingContext);
var modelName = bindingContext.ModelName;
var valueProviderResult = bindingContext.ValueProvider.GetValue(modelName);
if (valueProviderResult == ValueProviderResult.None)
return Task.CompletedTask;
bindingContext.ModelState.SetModelValue(modelName, valueProviderResult);
var value = valueProviderResult.FirstValue;
if (string.IsNullOrEmpty(value))
return Task.CompletedTask;
value = value.Replace('/', '.'); //workaround for a kendonumeric input
object model = bindingContext.ModelMetadata.UnderlyingOrModelType switch
{
Type t when t == typeof(float) => TryParse<float>(value, float.TryParse),
Type t when t == typeof(decimal) => TryParse<decimal>(value, decimal.TryParse),
Type t when t == typeof(double) => TryParse<double>(value, double.TryParse),
Type t when t == typeof(int) => TryParse<int>(value, int.TryParse),
Type t when t == typeof(long) => TryParse<long>(value, long.TryParse),
Type t when t == typeof(short) => TryParse<short>(value, short.TryParse),
Type t when t == typeof(sbyte) => TryParse<sbyte>(value, sbyte.TryParse),
Type t when t == typeof(byte) => TryParse<byte>(value, byte.TryParse),
Type t when t == typeof(ulong) => TryParse<ulong>(value, ulong.TryParse),
Type t when t == typeof(ushort) => TryParse<ushort>(value, ushort.TryParse),
Type t when t == typeof(uint) => TryParse<uint>(value, uint.TryParse),
Type t when t == typeof(BigInteger) => TryParse<BigInteger>(value, BigInteger.TryParse),
_ => null
};
if (model is null)
return _globalizedBinder.BindModelAsync(bindingContext); //attempt to bind a model depending on the current culture
bindingContext.Result = ModelBindingResult.Success(model);
return Task.CompletedTask;
}
#endregion
}