Software /
code /
verse
Changeset
319:12b0e5cc72bf
plugins.receipts: XEP-0184 support.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 04 Feb 2013 01:04:01 +0100 |
parents | 318:598552fc085b |
children | 320:e04f10664704 |
files | plugins/receipts.lua |
diffstat | 1 files changed, 16 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plugins/receipts.lua Mon Feb 04 01:04:01 2013 +0100 @@ -0,0 +1,16 @@ +local verse = require"verse"; +local xmlns_receipts = "urn:xmpp:receipts"; + +function verse.plugins.receipts(stream) + stream:add_plugin("disco"); + local function send_receipt(stanza) + if stanza:get_child("request", xmlns_receipts) then + stream:send(verse.reply(stanza) + :tag("received", { xmlns = xmlns_receipts, id = stanza.attr.id })); + end + end + + stream:add_disco_feature(xmlns_receipts); + stream:hook("message", send_receipt, 1000); +end +