GrantLimit.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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 GrantLimit
  18. * @package catcher\library\rate
  19. */
  20. class GrantLimit
  21. {
  22. use Redis;
  23. protected $ttl = 60;
  24. protected $limit = 1000;
  25. protected $key;
  26. public function __construct($key)
  27. {
  28. $this->key = $key;
  29. $this->init();
  30. }
  31. /**
  32. * 是否到达限流
  33. *
  34. * @time 2020年06月30日
  35. * @return void
  36. */
  37. public function overflow()
  38. {
  39. if ($this->getCurrentVisitTimes() > $this->limit) {
  40. throw new FailedException('访问限制');
  41. }
  42. $this->inc();
  43. }
  44. /**
  45. * 增加接口次数
  46. *
  47. * @time 2020年06月30日
  48. * @return void
  49. */
  50. public function inc()
  51. {
  52. $this->getRedis()->incr($this->key);
  53. }
  54. /**
  55. * 初始化
  56. *
  57. * @time 2020年06月30日
  58. * @return void
  59. */
  60. protected function init()
  61. {
  62. if (!$this->getRedis()->exists($this->key)) {
  63. $this->getRedis()->setex($this->key, $this->ttl, 0);
  64. }
  65. }
  66. /**
  67. * 获取当前访问次数
  68. *
  69. * @time 2020年06月30日
  70. * @return mixed
  71. */
  72. protected function getCurrentVisitTimes()
  73. {
  74. return $this->getRedis()->get($this->key);
  75. }
  76. }