Giter Club home page Giter Club logo

codeigniter-ratelimiter's Introduction

CodeIgniter Ratelimiter

CI Ratelimiter is, as the name suggests, a rate limiting library for CodeIgniter. This library tracks user's requests and allow/deny them based on the parameters set by you. Additionally, all subsequent requests are denied for a time frame defined by you.

Installation

Merge the contents of the src\application folder with the application folder of your project. Then you can autoload the library by adding ratelimiter to autoloader like:

$autoload['libraries'] = array('ratelimiter');

Alternatively, you can load the library as and when required, like:

$this->load->library('ratelimiter');

Usage

Verifying requests

// Load library
$this->load->library('ratelimiter');

// Set Paramaters
$params = array(
    'requests' => 50,
    'duration' => 30,
    'block_duration' => 30,
    /* Additional Resource/User Data */
);

// Verify (return_type = 'object' in config)
$allow_request = $this->ratelimiter->allow_request($params);
if(!$allow_request->success) {
    if($allow_request->blocked_on_this_request) {
        // Alert via email/sms
    }
    // Block request
}

Cleaning Logs

$this->load->library('ratelimiter');
$this->ratelimiter->clean_logs();

Response

allow_request() method

/**
*   Return type = 'object'
*/

// On success (allow request)
$response->success = true;

// On failure
    // IP blacklisted
    $response->success = false;
    $response->blacklisted_ip = true;
    $response->message = 'IP is blacklisted';
    
    // User/IP is already blocked.
    $response->success = false;
    $response->already_blocked = true;
    $response->message = 'User/IP blocked';
    $response->blocked_till = '2020-01-27 00:00:00';
    
    // User/IP blocked on this request
    $response->success = false;
    $response->blocked_on_this_request = true;
    $response->message = 'User/IP blocked';
    $response->blocked_till = '2020-01-27 00:00:00';

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

Apache License

codeigniter-ratelimiter's People

Contributors

internshala avatar rachit2427 avatar

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.