Software /
code /
prosody-modules
File
mod_spam_reporting/mod_spam_reporting.lua @ 2273:677fc0203da0
mod_filter_words: Very basic module in its early stages, to filter words in messages
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 18 Aug 2016 10:25:29 +0100 |
parent | 2267:df96e2613cb6 |
child | 2275:7f228bf82fe5 |
line wrap: on
line source
local st = require "util.stanza"; module:depends("blocklist"); module:add_feature("urn:xmpp:reporting:0"); module:add_feature("urn:xmpp:reporting:reason:spam:0"); module:add_feature("urn:xmpp:reporting:reason:abuse:0"); module:hook("iq-get/self/urn:xmpp:blocking:blocklist", function (event) for item in event.stanza.tags[1]:childtags("item") do local report = item:get_child("report", "urn:xmpp:reporting:0"); local jid = item.attr.jid; if not report or not jid then return end local type = report:get_child("spam") and "spam" or report:get_child("abuse") and "abuse" or "unknown"; local reason = report:get_child_text("reason") or "no reason given"; module:log("warn", "Received report of %s from JID '%s', %s", type, jid, reason); end end, 1);