Software / code / verse
Annotate
plugins/receipts.lua @ 326:f657ed8f464e
plugins.smacks: Start counting when sending <enable/>
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sun, 10 Feb 2013 03:41:45 +0100 |
| parent | 319:12b0e5cc72bf |
| rev | line source |
|---|---|
| 319 | 1 local verse = require"verse"; |
| 2 local xmlns_receipts = "urn:xmpp:receipts"; | |
| 3 | |
| 4 function verse.plugins.receipts(stream) | |
| 5 stream:add_plugin("disco"); | |
| 6 local function send_receipt(stanza) | |
| 7 if stanza:get_child("request", xmlns_receipts) then | |
| 8 stream:send(verse.reply(stanza) | |
| 9 :tag("received", { xmlns = xmlns_receipts, id = stanza.attr.id })); | |
| 10 end | |
| 11 end | |
| 12 | |
| 13 stream:add_disco_feature(xmlns_receipts); | |
| 14 stream:hook("message", send_receipt, 1000); | |
| 15 end | |
| 16 |