dcabrejas / magento-rate-limit
Rate Limiting Library With Token Bucket Algorithm with Magento Adapter
Installs: 6 198
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: >=5.5
- touhonoob/rate-limit: ^1.2
This package is not auto-updated.
Last update: 2025-03-25 19:43:11 UTC
README
Magento 2 adapter for the touhonoob/RateLimit Library
Installation
composer require dcabrejas/magento-rate-limit
Usage
//Inject the adapter via dependency injection public function __construct(\Dcabrejas\RateLimit\Adapter\Magento $magentoAdapter) { $this->magentoAdapter = $magentoAdapter; } $rateLimit = new \Touhonoob\RateLimit\RateLimit("myratelimit", 100, 3600, $this->magentoAdapter); // 100 Requests / Hour $id = $_SERVER['REMOTE_ADDR']; // Use client IP as identity if ($rateLimit->check($id) > 0) { echo "passed"; } else { echo "rate limit exceeded"; }