Git Product home page Git Product logo

laravel-sliding-window-limiter's Introduction

Sliding Time Window Rate Limiter for Laravel

Latest Version on Packagist Build Status Quality Score Total Downloads

This package allows you to easily create and validate rate limiting using the sliding window algorithm (in a memory efficient way).

This package makes use of Redis' atomic requests.

Installation

You can install the package via composer:

composer require beyondcode/laravel-sliding-window-limiter

Usage

You can create a new limiter instance by calling the create method and pass it a CarbonInterval that represents the window of time, that will be used for the limiter. The second argument is the maximum number of requests/attempts that your limiter will accept in that given time frame.

$limiter = SlidingWindowLimiter::create(CarbonInterval::hour(1), 100);

Specifying custom intervals

By default, all attempts to the limiter will be grouped down to the nearest minute. If you need a more fine-grained control over the interval, you can specify it as a third parameter:

$limiter = SlidingWindowLimiter::create(CarbonInterval::minute(1), 100, CarbonInterval::second());

Running attempts against your limiter

Once your limiter is created, you can perform attempts against it to see if the call is within the usage limits that you specified. Since your limiter can be used for multiple resources, you need to pass the resource that you want to attempt the call for in the attempt method call.

$limiter->attempt('user_1');

Getting the usage count

When you want to read the number of attempts that were made for a given resource, you may call the getUsage method.

Note: This method will not return the number of attempts, but only the number of successful attempts.

$count = $limiter->getUsage('user_1');

Reset the limiter

If you want to reset the attempts for a specific resource, you may call the reset method on the limiter instance. This will reset the TTL to the given time frame and re-allow new attempts.

$limiter->reset('user_1');

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.