Software / code / prosody-modules
Comparison
mod_cloud_notify/mod_cloud_notify.lua @ 1923:b030e46ec640
mod_cloud_notify: Send notification from bare user JID per http://xmpp.org/extensions/xep-0357.html#publishing
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Fri, 23 Oct 2015 15:51:09 +0200 |
| parent | 1922:e170b11b60b8 |
| child | 1924:c84cf61ca0f3 |
comparison
equal
deleted
inserted
replaced
| 1922:e170b11b60b8 | 1923:b030e46ec640 |
|---|---|
| 86 if not user_push_services then return end | 86 if not user_push_services then return end |
| 87 | 87 |
| 88 for _, push_info in pairs(user_push_services) do | 88 for _, push_info in pairs(user_push_services) do |
| 89 push_info.count = push_info.count + 1; | 89 push_info.count = push_info.count + 1; |
| 90 local push_jid, push_node = push_info.jid, push_info.node; | 90 local push_jid, push_node = push_info.jid, push_info.node; |
| 91 local push_publish = st.iq({ to = push_jid, from = module.host, type = "set", id = "push" }) | 91 local push_publish = st.iq({ to = push_jid, from = node .. "@" .. module.host, type = "set", id = "push" }) |
| 92 :tag("pubsub", { xmlns = "http://jabber.org/protocol/pubsub" }) | 92 :tag("pubsub", { xmlns = "http://jabber.org/protocol/pubsub" }) |
| 93 :tag("publish", { node = push_node }); | 93 :tag("publish", { node = push_node }); |
| 94 local form_data = { | 94 local form_data = { |
| 95 ["message-count"] = tostring(push_info.count); | 95 ["message-count"] = tostring(push_info.count); |
| 96 }; | 96 }; |