Skip to content

Repository files navigation

InstasentRateLimitBundle

Build StatusCode CoverageScrutinizer Code Quality

Latest Stable VersionTotal DownloadsLatest Unstable VersionLicense

This bundle provides enables the @RateLimit annotation which allows you to limit the number of connections to actions. This is mostly useful in APIs.

The bundle is prepared to work by default in cooperation with the FOSOAuthServerBundle. It contains a listener that adds the OAuth token to the cache-key. However, you can create your own key generator to allow custom rate limiting based on the request. See Create a custom key generator below.

This bundle is partially inspired by a GitHub gist from Ruud Kamphuis: https://gist.github.com/ruudk/3350405

Features

  • Simple usage through annotations
  • Customize rates per controller, action and even per HTTP method
  • Multiple storage backends: Redis, Memcached and Doctrine cache

Installation

Installation takes just few easy steps:

Step 1: Add the bundle to your composer.json

If you're not yet familiar with Composer see http://getcomposer.org. Add the InstasentRateLimitBundle in your composer.json:

{"require": {"Instasent/ratelimit-bundle": "1.x"}}

Now tell composer to download the bundle by running the command:

php composer.phar update Instasent/ratelimit-bundle

Step 2: Enable the bundle

Enable the bundle in the kernel:

<?php// app/AppKernel.phppublicfunctionregisterBundles()
{
$bundles = array(
// ...newInstasent\RateLimitBundle\InstasentRateLimitBundle(),
);
}

Step 3: Install a storage engine

Redis

If you want to use Redis as your storage engine, you will need to install SncRedisBundle:

Memcache

If you want to use Memcache, you need to install LswMemcacheBundle

Doctrine cache

If you want to use Doctrine cache as your storage engine, you will need to install DoctrineCacheBundle:

Referer to their documentations for more details. You can change your storage engine with the storage_engine configuration parameter. See Configuration reference.

Configuration

Enable bundle only in production

If you wish to enable the bundle only in production environment (so you can test without worrying about limit in your development environments), you can use the enabled configuration setting to enable/disable the bundle completely. It's enabled by default:

# config_dev.ymlinstasent_rate_limit:
enabled: false

Configuration reference

This is the default bundle configuration:

instasent_rate_limit:
enabled: true# The storage engine where all the rates will be storedstorage_engine: ~ # One of "redis"; "memcache"; "doctrine"# The redis client to use for the redis storage engineredis_client: default_client# The memcache client to use for the memcache storage enginememcache_client: default# The Doctrine Cache provider to use for the doctrine storage enginedoctrine_provider: null # Example: my_apc_cache# The HTTP status code to return when a client hits the rate limitrate_response_code: 429# Optional exception class that will be returned when a client hits the rate limitrate_response_exception: null# The HTTP message to return when a client hits the rate limitrate_response_message: 'You exceeded the rate limit'# Should the ratelimit headers be automatically added to the response?display_headers: true# What are the different header names to addheaders:
limit: X-RateLimit-Limitremaining: X-RateLimit-Remainingreset: X-RateLimit-Reset# Rate limits for pathspath_limits:
path: ~ # Requiredmethods:
# Default:- *limit: ~ # Requiredperiod: ~ # Required

Usage

Simple rate limiting

To enable rate limiting, you only need to add the annotation to the docblock of the specified action

<?phpuseInstasent\RateLimitBundle\Annotation\RateLimit;
useSensio\Bundle\FrameworkExtraBundle\Configuration\Route;
/** * @Route(...) * * @RateLimit(limit=1000, period=3600) */publicfunctionsomeApiAction()
{
}

Limit per method

It's possible to rate-limit specific HTTP methods as well. This can be either a string or an array of methods. When no method argument is given, all other methods not defined are rated. This allows to add a default rate limit if needed.

<?phpuseInstasent\RateLimitBundle\Annotation\RateLimit;
useSensio\Bundle\FrameworkExtraBundle\Configuration\Route;
/** * @Route(...) * * @RateLimit(methods={"PUT", "POST"}, limit=1000, period=3600) * @RateLimit(methods={"GET"}, limit=1000, period=3600) * @RateLimit(limit=5000, period=3600) */publicfunctionsomeApiAction()
{
}

Limit per controller

It's also possible to add rate-limits to a controller class instead of a single action. This will act as a default rate limit for all actions, except the ones that actually defines a custom rate-limit.

<?phpuseInstasent\RateLimitBundle\Annotation\RateLimit;
useSensio\Bundle\FrameworkExtraBundle\Configuration\Route;
/** * @Ratelimit(methods={"POST"}, limit=100, period=10); // 100 POST requests per 10 seconds */class DefaultController extends Controller
{
/** * @ratelimit(method="POST", limit=200, period=10); // 200 POST requests to indexAction allowed. */publicfunctionindexAction()
{
}
}

Create a custom key generator

If you need to create a custom key generator, you need to register a listener to listen to the ratelimit.generate.key event:

services:
mybundle.listener.rate_limit_generate_key:
class: MyBundle\Listener\RateLimitGenerateKeyListenertags:
- { name: kernel.event_listener, event: 'ratelimit.generate.key', method: 'onGenerateKey' }
<?phpnamespaceMyBundle\Listener;
useInstasent\RateLimitBundle\Events\GenerateKeyEvent;
class RateLimitGenerateKeyListener
{
publicfunctiononGenerateKey(GenerateKeyEvent$event)
{
$key = $this->generateKey();
$event->addToKey($key);
// $event->setKey($key); // to overwrite key completely
}
}

Make sure to generate a key based on what is rate limited in your controllers.

Set custom period or limit

If you need to create a custom period/limit based for example on client settings saved in database, you need to register a listener to listen to the ratelimit.pre.create event:

services:
mybundle.listener.rate_limit_pre_create:
class: MyBundle\Listener\RateLimitFromDatabaseListenertags:
- { name: kernel.event_listener, event: 'ratelimit.pre.create', method: 'findUserLimit' }
<?phpnamespaceMyBundle\Listener;
useInstasent\RateLimitBundle\Events\RateLimit;
class RateLimitFromDatabaseListener
{
publicfunctionfindUserLimit(RateLimit$event)
{
//TODO search value in database$event->setLimit($value);
}
}

Set your own limit value

Throwing exceptions

Instead of returning a Response object when a rate limit has exceeded, it's also possible to throw an exception. This allows you to easily handle the rate limit on another level, for instance by capturing the kernel.exception event.

Running tests

If you want to run the tests use:

./vendor/bin/phpunit ./Tests

About

Rate limit bundle

Resources

Stars

1 star

Watchers

3 watching

Forks

Releases

Packages

Used by

Contributors

Languages