SlidingWindowLimit.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. declare(strict_types=1);
  3. // +----------------------------------------------------------------------
  4. // | CatchAdmin [Just Like ~ ]
  5. // +----------------------------------------------------------------------
  6. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  7. // +----------------------------------------------------------------------
  8. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  9. // +----------------------------------------------------------------------
  10. // | Author: JaguarJack [ njphper@gmail.com ]
  11. // +----------------------------------------------------------------------
  12. namespace catcher\library\rate;
  13. use catcher\exceptions\FailedException;
  14. /**
  15. * 滑动窗口
  16. *
  17. * Class SlidingWindowLimit
  18. * @package catcher\library\rate
  19. */
  20. class SlidingWindowLimit
  21. {
  22. use Redis;
  23. protected $key;
  24. protected $limit = 10;
  25. /**
  26. * @var int
  27. */
  28. protected $window = 5;
  29. public function __construct($key)
  30. {
  31. $this->key = $key;
  32. }
  33. public function overflow()
  34. {
  35. $now = microtime(true) * 1000;
  36. $redis = $this->getRedis();
  37. // 开启管道
  38. $redis->pipeline();
  39. // 去除非窗口内的元素
  40. $redis->zremrangeByScore($this->key, 0, $now - $this->window*1000);
  41. // 获取集合内的所有元素数目
  42. $redis->zcard($this->key);
  43. // 增加元素
  44. $redis->zadd($this->key, $now, $now);
  45. // 设置过期
  46. $redis->expire($this->key, $this->window);
  47. // 执行管道内命令
  48. $res = $redis->exec();
  49. if ($res[1] > $this->limit) {
  50. throw new FailedException('访问限制');
  51. }
  52. return true;
  53. }
  54. public function setWindow($time)
  55. {
  56. $this->window = $time;
  57. return $this;
  58. }
  59. }