Software /
code /
prosody-modules
Changeset
554:a2b0174b5c48
mod_muc_limits: New module to impose overall rate-limits on a MUC (not on individual users)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sun, 15 Jan 2012 01:08:15 +0000 |
parents | 553:7310ceb7564f |
children | 555:2356ad05fdb6 |
files | mod_muc_limits/mod_muc_limits.lua |
diffstat | 1 files changed, 34 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_muc_limits/mod_muc_limits.lua Sun Jan 15 01:08:15 2012 +0000 @@ -0,0 +1,34 @@ + +local st = require "util.stanza"; +local new_throttle = require "util.throttle".create; + +local period = math.max(module:get_option_number("muc_event_rate", 0.5), 0); +local burst = math.max(module:get_option_number("muc_burst_factor", 6), 1); + +local function handle_stanza(event) + local origin, stanza = event.origin, event.stanza; + local dest_room, dest_host, dest_nick = jid.split(stanza.attr.to); + local room = hosts[module.host].modules.muc.rooms[dest_room.."@"..dest_host]; + if not room then return; end + local from_jid = stanza.attr.from; + local occupant = room._occupants[room._jid_nick[from_jid]]; + if occupant and occupant.affiliation then + module:log("debug", "Skipping stanza from affiliated user..."); + return; + end + local throttle = room.throttle; + if not room.throttle then + throttle = new_throttle(period*burst, burst); + room.throttle = throttle; + end + if not throttle:poll(1) then + module:log("warn", "Dropping stanza for %s@%s from %s, over rate limit", dest_room, dest_host, from_jid); + origin.send(st.error_reply(stanza, "wait", "policy-violation", "The room is currently overactive, please try again later")); + return true; + end +end + +module:hook("message/bare", handle_stanza, 10); +module:hook("message/full", handle_stanza, 10); +module:hook("presence/bare", handle_stanza, 10); +module:hook("presence/full", handle_stanza, 10);