Software / code / prosody
Annotate
plugins/mod_pubsub.lua @ 3695:d2c4856c7ed5
mod_disco: Don't add caps hash to stream features on unauthenticated connections.
| author | Waqas Hussain <waqas20@gmail.com> |
|---|---|
| date | Fri, 03 Dec 2010 00:37:54 +0500 |
| parent | 3672:b24db47995ac |
| child | 3697:67c01f75af97 |
| rev | line source |
|---|---|
| 3619 | 1 local pubsub = require "util.pubsub"; |
| 2 local st = require "util.stanza"; | |
| 3 local jid_bare = require "util.jid".bare; | |
| 4 local uuid_generate = require "util.uuid".generate; | |
| 5 | |
| 6 require "core.modulemanager".load(module.host, "iq"); | |
| 7 | |
| 8 local xmlns_pubsub = "http://jabber.org/protocol/pubsub"; | |
| 9 local xmlns_pubsub_errors = "http://jabber.org/protocol/pubsub#errors"; | |
| 10 local xmlns_pubsub_event = "http://jabber.org/protocol/pubsub#event"; | |
| 11 | |
| 12 local service; | |
| 13 | |
| 14 local handlers = {}; | |
| 15 | |
| 16 function handle_pubsub_iq(event) | |
| 17 local origin, stanza = event.origin, event.stanza; | |
| 18 local pubsub = stanza.tags[1]; | |
| 19 local action = pubsub.tags[1]; | |
| 20 local handler = handlers[stanza.attr.type.."_"..action.name]; | |
| 21 if handler then | |
| 22 handler(origin, stanza, action); | |
| 23 return true; | |
| 24 end | |
| 25 end | |
| 26 | |
| 27 local pubsub_errors = { | |
| 28 ["invalid-jid"] = { "modify", "bad-request", nil, "invalid-jid" }; | |
| 29 ["item-not-found"] = { "cancel", "item-not-found" }; | |
| 30 }; | |
| 31 function pubsub_error_reply(stanza, error) | |
| 32 local e = pubsub_errors[error]; | |
| 33 local reply = st.error_reply(stanza, unpack(e, 1, 3)); | |
| 34 if e[4] then | |
| 35 reply:tag(e[4], { xmlns = xmlns_pubsub_errors }):up(); | |
| 36 end | |
| 37 return reply; | |
| 38 end | |
| 39 | |
|
3641
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
40 function handlers.get_items(origin, stanza, items) |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
41 local node = items.attr.node; |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
42 local item = items:get_child("item"); |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
43 local id = item and item.attr.id; |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
44 local data = st.stanza("items", { node = node }); |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
45 for _, entry in pairs(service:get(node, stanza.attr.from, id)) do |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
46 data:add_child(entry); |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
47 end |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
48 if data then |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
49 reply = st.reply(stanza) |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
50 :tag("pubsub", { xmlns = xmlns_pubsub }) |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
51 :add_child(data); |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
52 else |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
53 reply = st.error_reply(stanza, "cancel", "item-not-found", "Item could not be found in this node"); |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
54 end |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
55 return origin.send(reply); |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
56 end |
|
3603aeb325de
mod_pubsub, util.pubsub: Support for fetching items
Florian Zeitz <florob@babelmonkeys.de>
parents:
3622
diff
changeset
|
57 |
|
3672
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
58 function handlers.set_create(origin, stanza, create) |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
59 local node = create.attr.node; |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
60 local ok, ret, reply; |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
61 if node then |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
62 ok, ret = service:create(node, stanza.attr.from); |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
63 if ok then |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
64 reply = st.reply(stanza); |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
65 else |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
66 reply = st.error_reply(stanza, "cancel", ret); |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
67 end |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
68 else |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
69 repeat |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
70 node = uuid_generate(); |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
71 ok, ret = service:create(node, stanza.attr.from); |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
72 until ok; |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
73 reply = st.reply(stanza) |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
74 :tag("pubsub", { xmlns = xmlns_pubsub }) |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
75 :tag("create", { node = node }); |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
76 end |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
77 origin.send(reply); |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
78 end |
|
b24db47995ac
mod_pubsub, util.pubsub: Support node creation
Florian Zeitz <florob@babelmonkeys.de>
parents:
3641
diff
changeset
|
79 |
| 3619 | 80 function handlers.set_subscribe(origin, stanza, subscribe) |
| 81 local node, jid = subscribe.attr.node, subscribe.attr.jid; | |
| 82 if jid_bare(jid) ~= jid_bare(stanza.attr.from) then | |
| 83 return origin.send(pubsub_error_reply(stanza, "invalid-jid")); | |
| 84 end | |
| 85 local ok, ret = service:add_subscription(node, stanza.attr.from, jid); | |
| 86 local reply; | |
| 87 if ok then | |
| 88 reply = st.reply(stanza) | |
| 89 :tag("pubsub", { xmlns = xmlns_pubsub }) | |
| 90 :tag("subscription", { | |
| 91 node = node, | |
| 92 jid = jid, | |
| 93 subscription = "subscribed" | |
| 94 }); | |
| 95 else | |
| 96 reply = pubsub_error_reply(stanza, ret); | |
| 97 end | |
| 98 return origin.send(reply); | |
| 99 end | |
| 100 | |
| 101 function handlers.set_publish(origin, stanza, publish) | |
| 102 local node = publish.attr.node; | |
| 103 local item = publish:get_child("item"); | |
| 104 local id = (item and item.attr.id) or uuid_generate(); | |
| 105 local ok, ret = service:publish(node, stanza.attr.from, id, item); | |
| 106 local reply; | |
| 107 if ok then | |
| 108 reply = st.reply(stanza) | |
| 109 :tag("pubsub", { xmlns = xmlns_pubsub }) | |
| 110 :tag("publish", { node = node }) | |
| 111 :tag("item", { id = id }); | |
| 112 else | |
| 113 reply = pubsub_error_reply(stanza, ret); | |
| 114 end | |
| 115 return origin.send(reply); | |
| 116 end | |
| 117 | |
| 118 function simple_broadcast(node, jids, item) | |
| 119 local message = st.message({ from = module.host, type = "headline" }) | |
| 120 :tag("event", { xmlns = xmlns_pubsub_event }) | |
| 121 :tag("items", { node = node }) | |
| 122 :add_child(item); | |
| 123 for jid in pairs(jids) do | |
| 124 module:log("debug", "Sending notification to %s", jid); | |
| 125 message.attr.to = jid; | |
| 126 core_post_stanza(hosts[module.host], message); | |
| 127 end | |
| 128 end | |
| 129 | |
|
3621
7e1a1dd42088
mod_pubsub: Expose 'service'
Matthew Wild <mwild1@gmail.com>
parents:
3619
diff
changeset
|
130 module:hook("iq/host/http://jabber.org/protocol/pubsub:pubsub", handle_pubsub_iq); |
|
7e1a1dd42088
mod_pubsub: Expose 'service'
Matthew Wild <mwild1@gmail.com>
parents:
3619
diff
changeset
|
131 |
| 3619 | 132 service = pubsub.new({ |
| 133 broadcaster = simple_broadcast | |
| 134 }); | |
|
3622
418354197a02
mod_pubsub: Use module.environment to reference the module's environment
Matthew Wild <mwild1@gmail.com>
parents:
3621
diff
changeset
|
135 module.environment.service = service; |
| 3619 | 136 |