sagarkc/laravel-bot-throttle 问题修复 & 功能扩展

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

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

sagarkc/laravel-bot-throttle

Composer 安装命令:

composer require sagarkc/laravel-bot-throttle

包简介

Advanced bot detection and request throttling package for Laravel by Sagar KC

README 文档

README

Laravel Bot Throttle is an advanced middleware package for Laravel to detect and block bots, throttle abuse, and protect your routes. Developed and maintained by Sagar KC

🚀 Features

  • 🛡️ Detects bots based on User-Agent patterns
  • ⛔ Temporarily bans malicious IPs via cache
  • 📈 Logs bot activity to a dedicated log file (botthrottle.log)
  • 🔄 Customizable request throttling per IP and route
  • ⚙️ IP whitelisting and block control
  • 🧩 Fully configurable via config/botthrottle.php

📦 Installation

composer require sagarkc/laravel-bot-throttle

🛠️ Publish the Config File

php artisan vendor:publish --provider="BotThrottle\BotThrottleServiceProvider"

This will publish config/botthrottle.php which allows full customization, you can add the list of bots as per your need.

📝 Optional: Enable Custom Bot Log File

To log bot activity in a separate file (storage/logs/botthrottle.log), add the following line to the channels array in your config/logging.php file:

'channels' => array_merge(config('logging.channels'), config('botthrottle.log_channel')),

This merges the custom botthrottle log channel defined in config/botthrottle.php into Laravel's logging system.

After this, all blocked bots will be logged in botthrottle.log instead of the default laravel.log.

🧪 Usage

Apply middleware to your routes:

Route::middleware(['detect.bot', 'throttle.bot'])->group(function () {
    Route::get('/api/data', 'ApiController@getData');
});

⚙️ Configuration Example

return [
    'throttle' => [
        'max_attempts' => 100,
        'decay_minutes' => 1,
    ],
    'bot_detection' => [
        'user_agents' => [
            'curl', 'python', 'bot', 'spider', 'crawler', 'wget', 'httpclient', 'scrapy', 'axios'
        ],
        'ip_blacklist' => [],
        'log_bots' => true,
    ],
    'advanced' => [
        'log_all_bots' => true,
        'ban_duration_minutes' => 60,
        'block_response_code' => 403,
        'allow_whitelist_ips' => true,
        'whitelist_ips' => ['127.0.0.1'],
    ],
    'log_channel' => [
        'botthrottle' => [
            'driver' => 'single',
            'path' => storage_path('logs/botthrottle.log'),
            'level' => 'warning',
        ],
    ],
];

📊 View Blocked IPs (Programmatically)

use BotThrottle\BotLog;

$blockedIps = BotLog::getBlockedIps();

📄 License

MIT © Sagar KC

🙌 Contributing

Pull requests and issues are welcome. Please fork the repository and open a PR with improvements or bug fixes.

sagarkc/laravel-bot-throttle 适用场景与选型建议

sagarkc/laravel-bot-throttle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 05 月 23 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 sagarkc/laravel-bot-throttle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 sagarkc/laravel-bot-throttle 我们能提供哪些服务?
定制开发 / 二次开发

基于 sagarkc/laravel-bot-throttle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

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

其他信息

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