bm2ilabs/rate-limiter 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

bm2ilabs/rate-limiter

最新稳定版本:1.0.1

Composer 安装命令:

composer require bm2ilabs/rate-limiter

包简介

Multi-period rate limiting for Laravel applications with minute, hour, and day limits

README 文档

README

A comprehensive Laravel package for implementing multi-period rate limiting in your application. This package allows you to easily set and enforce rate limits for different time intervals (minute, hour, day) and automatically includes these limits in your API response headers.

Features

  • Rate limiting for multiple time periods (minute, hour, day)
  • Custom response headers for each period
  • Configurable limits through environment variables or config file
  • Easy to use middleware
  • Support for different identifiers (IP, authenticated user, custom parameter)
  • Compatible with Laravel 8.x, 9.x, 10.x, and 11.x

Installation

You can install the package via composer:

composer require amineware/rate-limiter

Configuration

Publish the configuration file:

php artisan vendor:publish --provider="Amineware\RateLimiter\RateLimiterServiceProvider"

This will create a rate-limiter.php file in your config directory. You can customize the rate limits and other settings in this file.

Basic Usage

Add the middleware to your routes:

// In routes/api.php
Route::middleware('multi-rate-limit')->group(function () {
    // Your API routes here
});

Or apply it to specific routes:

Route::get('/endpoint', 'YourController@method')->middleware('multi-rate-limit');

Response Headers

When using this middleware, your API responses will include the following headers:

X-RateLimit-Limit: 60
X-RateLimit-Remaining: 59
X-RateLimit-Limit-Hour: 1000
X-RateLimit-Remaining-Hour: 999
X-RateLimit-Limit-Day: 10000
X-RateLimit-Remaining-Day: 9999

If a rate limit is exceeded, the response will include:

Retry-After: <seconds until reset>
X-RateLimit-Reset: <timestamp>

Advanced Usage

Using the Facade

You can use the facade to manually check or manipulate rate limits:

use Amineware\RateLimiter\Facades\MultiPeriodRateLimiter;

// Check remaining attempts
$remaining = MultiPeriodRateLimiter::remaining('minute', $userId);

// Check if too many attempts
if (MultiPeriodRateLimiter::tooManyAttempts('hour', $userId, 100)) {
    // Handle rate limit exceeded
}

// Increment the counter
MultiPeriodRateLimiter::hit('day', $userId);

// Clear rate limits for a key
MultiPeriodRateLimiter::clear('minute', $userId);

Custom Identifiers

By default, the package uses the authenticated user ID or IP address as the identifier. You can customize this in the config file:

// In config/rate-limiter.php
'identifiers' => [
    'default' => 'custom',
    'custom_parameter' => 'api_key',
],

Environment Variables

You can set rate limits through environment variables:

RATE_LIMIT_PER_MINUTE=60
RATE_LIMIT_PER_HOUR=1000
RATE_LIMIT_PER_DAY=10000

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 3
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 5
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-05-07

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固