C# 站点IP访问频率限制 针对单个站点的实现方法

作者:jingxian 时间:2023-09-23 18:35:30 

 站点IP访问频率限制 针对单个站点


using System;
using System.Collections.Generic;
using System.IO;
//using System.Linq;
using System.Web;

// <summary>
// IP访问频率控制
// </summary>
public static class IPCacheManager
{

/// <summary>
 /// IP缓存集合
 /// </summary>
 private static List<IPCacheInfo> dataList = new List<IPCacheInfo>();
 private static object lockObj = new object();

/// <summary>
 /// 一段时间内,最大请求次数,必须大于等于1
 /// </summary>
 private static int maxTimes = 3;

/// <summary>
 /// 一段时间长度(单位秒),必须大于等于1
 /// </summary>
 private static int partSecond = 30;

/// <summary>
 /// 请求被拒绝是否加入请求次数
 /// </summary>
 private static bool isFailAddIn = false;

static IPCacheManager()
 {
 }

/// <summary>
 /// 设置时间,默认maxTimes=3, partSecond=30
 /// </summary>
 /// <param name="_maxTimes">最大请求次数</param>
 /// <param name="_partSecond">请求单位时间</param>
 public static void SetTime(int _maxTimes, int _partSecond)
 {
   maxTimes = _maxTimes;
   partSecond = _partSecond;
 }

/// <summary>
 /// 检测一段时间内,IP的请求次数是否可以继续请求
 /// 和使用
 /// </summary>
 /// <param name="ip"></param>
 /// <returns></returns>
 public static bool CheckIsAble(string ip)
 {
   lock (lockObj)
   {
     var item = dataList.Find(p => p.IP == ip);
     if (item == null)
     {
       item = new IPCacheInfo();
       item.IP = ip;
       item.ReqTime.Add(DateTime.Now);
       dataList.Add(item);

return true;
     }
     else
     {
       if (item.ReqTime.Count > maxTimes)
       {
         item.ReqTime.RemoveAt(0);
       }

var nowTime = DateTime.Now;
       if (isFailAddIn)
       {
         #region 请求被拒绝也需要加入当次请求
         item.ReqTime.Add(nowTime);
         if (item.ReqTime.Count >= maxTimes)
         {
           if (item.ReqTime[0].AddSeconds(partSecond) > nowTime)
           {
             return false;
           }
           else
           {
             return true;
           }
         }
         else
         {
           return true;
         }
         #endregion
       }
       else
       {
         #region 请求被拒绝就不需要加入当次请求了
         if (item.ReqTime.Count >= maxTimes)
         {
           if (item.ReqTime[0].AddSeconds(partSecond) > nowTime)
           {
             return false;
           }
           else
           {
             item.ReqTime.Add(nowTime);
             return true;
           }
         }
         else
         {
           item.ReqTime.Add(nowTime);
           return true;
         }
         #endregion
       }
     }
   }
 }
}

public class IPCacheInfo
{
 public string IP { get; set; }

private List<DateTime> reqTime = new List<DateTime>();
 public List<DateTime> ReqTime
 {
   get { return this.reqTime; }
   set { this.reqTime = value; }
 }
}
标签:限制ip,访问,频率,C#
0
投稿

猜你喜欢

  • Android中Retrofit 2.0直接使用JSON进行数据交互

    2022-01-08 07:22:46
  • Unity UI或3D场景实现跟随手机陀螺仪的晃动效果

    2021-12-09 01:09:32
  • Java编程探索之泛型擦除实例解析

    2022-08-30 02:13:35
  • SpringBoot配置Profile实现多环境支持

    2023-07-29 21:53:20
  • Android实现朋友圈评论回复列表

    2022-12-16 03:40:36
  • Android 自定义View之边缘凹凸的优惠券效果的开发过程

    2021-12-30 07:25:10
  • 详解Spring Cloud Gateway基于服务发现的默认路由规则

    2022-10-27 06:10:53
  • java gui详解贪吃蛇小游戏实现流程

    2023-10-08 07:12:24
  • Android 使用flow实现倒计时的方式

    2023-04-13 10:36:29
  • Java获取环境变量(System.getenv)的方法

    2021-10-06 03:23:47
  • java 中遍历取值异常(Hashtable Enumerator)解决办法

    2023-08-06 05:17:08
  • Android实现应用内置语言切换功能

    2021-11-14 13:19:50
  • PageHelper插件实现一对多查询时的分页问题

    2021-11-05 07:02:34
  • java高并发的线程中断的几种方式详解

    2022-08-25 01:35:09
  • Spring boot 整合Logback过程示例解析

    2021-12-06 04:05:52
  • c#使用ManagedWifi查看当前Wifi信号并选择wifi的示例

    2021-07-06 15:37:18
  • Android实现启动页倒计时效果

    2021-07-26 20:50:14
  • Java基础学习之关键字和变量数据类型的那些事

    2023-09-17 04:31:24
  • Java实现验证码的产生和验证

    2022-10-30 22:41:39
  • Android LuBan与Compressor图片压缩方式

    2022-11-29 01:18:41
  • asp之家 软件编程 m.aspxhome.com