Skip to content

Middleware for rate limiting hubot commands - PRE-RELEASE! (depends on middleware)

Notifications You must be signed in to change notification settings

geoffreyanderson/hubot-rate-limit

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hubot-rate-limit

Middleware for adding rate limits to commands

See src/rate-limit.coffee for full documentation.

Installation

In hubot project repo, run:

npm install hubot-rate-limit --save

Then add hubot-rate-limit to your external-scripts.json:

[
  "hubot-rate-limit"
]

Configuration

HUBOT_RATE_LIMIT_NOTIFY_PERIOD - default interval (seconds) between posting rate limiting messages in chat HUBOT_RATE_LIMIT_CMD_PERIOD - default interval (seconds) between each invocation of a specific listener

HUBOT_RATE_LIMIT_CMD_PERIOD can be overridden using listener options:

robot.hear /hi/, {rateLimits:{minPeriodMs:1000}} (msg) ->
  # stuff that will only be executed once per second

A rate limit period of 0 effectively means as fast as possible.

If notify period is greater than command period, then the notify period is lowered down to the command period. This is so that there is always at least one notification per transition from allowed to limiting.

Sample Interaction

user1>> hubot hello
hubot>> hello!
user1>> hubot hello
hubot>> Rate limit hit! Please wait 5 seconds before trying again.
user1>> hubot hello
(no response)
user1>> hubot hello
(no response)
(wait 5 seconds)
user1>> hubot hello
hubot>> hello!

Known Issues

If you are using the hubot-history script, it adds a catch-all listener that hubot-rate-limit then applies rate limiting to. This will result in spurious rate limiting messages and patchy logs (only one log message every second).

About

Middleware for rate limiting hubot commands - PRE-RELEASE! (depends on middleware)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CoffeeScript 73.1%
  • JavaScript 18.4%
  • Shell 8.5%