devlop/honeypot
Composer 安装命令:
composer require devlop/honeypot
包简介
Simple honeypot made for Laravel FormRequest
README 文档
README
Honeypot
Simple honeypot made for Laravel FormRequest that detects spam bots via a hidden honeypot field.
Installation
composer require devlop/honeypot
If you wish to change any of the honeypot configuration options (such as the component name) you can publish the config, but this is usually not needed.
php artisan vendor:publish --provider="Devlop\Honeypot\HoneypotServiceProvider"
Usage
First, add the WithHoneypot trait to your FormRequest.
namespace App\Http\Requests; use Devlop\Honeypot\WithHoneypot; use Illuminate\Foundation\Http\FormRequest; class DemoRequest extends FormRequest { use WithHoneypot;
Next you need to add the honeypot to your form.
<form method="POST" action="/"> <x-honeypot /> ... all your other form contents </form>
Optionally you can add a message to show when the honeypot was triggered, this only works when using automatic validation.
<form method="POST" action="/"> <x-honeypot> <p>Nice try! Go away!</p> </x-honeypot> ... all your other form contents </form>
Lastly, you need to configure the validation, it can either be automatic or manual.
Automatic validation
Add the honeypot rules to your rules configuration, this will make it redirect back to the form when triggered, as any other form validation error.
/** * Get the validation rules that apply to the request. * * @return array */ public function rules() : array { return $this->withHoneypotRules([ // your normal rules goes here ]); }
Optionally you can also register the rules like this
/** * Get the validation rules that apply to the request. * * @return array */ public function rules() : array { return [ // your normal rules goes here, $this->getHoneypotInputName() => $this->honeypotRules(), ]; }
Manual validation
If you are doing the validation manually you have more control of how you handle spammers, maybe you want to silently ignore it and give the spammer the impression of success? it's all up to you.
namespace App\Http\Controllers; use App\Requests\DemoRequest; use Illuminate\Http\Request; class DemoController { public function store(DemoRequest $request) { // get the honeypot $honeypot = $request->honeypot(); if ($honeypot->triggered()) { // do something when the honeypot was triggered } } }
devlop/honeypot 适用场景与选型建议
devlop/honeypot 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 32 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 02 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 devlop/honeypot 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 devlop/honeypot 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 32
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-02-07