You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
719 B

using AspNetCoreRateLimit;
using Microsoft.AspNetCore.Builder;
using Serilog;
using Tiobon.Core.Common;
namespace Tiobon.Core.Extensions.Middlewares;
/// <summary>
/// ip 限流
/// </summary>
public static class IpLimitMiddleware
{
public static void UseIpLimitMiddle(this IApplicationBuilder app)
{
if (app == null) throw new ArgumentNullException(nameof(app));
try
{
if (AppSettings.app("Middleware", "IpRateLimit", "Enabled").ObjToBool())
{
app.UseIpRateLimiting();
}
}
catch (Exception e)
{
Log.Error($"Error occured limiting ip rate.\n{e.Message}");
throw;
}
}
}