From 39939bd65e46a352137193bb01352b0b2e445727 Mon Sep 17 00:00:00 2001 From: Florian Zeitz Date: Wed, 1 Dec 2010 23:38:47 +0100 Subject: mod_pubsub, util.pubsub: Support node creation --- plugins/mod_pubsub.lua | 22 ++++++++++++++++++++++ util/pubsub.lua | 8 ++++++++ 2 files changed, 30 insertions(+) diff --git a/plugins/mod_pubsub.lua b/plugins/mod_pubsub.lua index da2070f3..f92d27aa 100644 --- a/plugins/mod_pubsub.lua +++ b/plugins/mod_pubsub.lua @@ -55,6 +55,28 @@ function handlers.get_items(origin, stanza, items) return origin.send(reply); end +function handlers.set_create(origin, stanza, create) + local node = create.attr.node; + local ok, ret, reply; + if node then + ok, ret = service:create(node, stanza.attr.from); + if ok then + reply = st.reply(stanza); + else + reply = st.error_reply(stanza, "cancel", ret); + end + else + repeat + node = uuid_generate(); + ok, ret = service:create(node, stanza.attr.from); + until ok; + reply = st.reply(stanza) + :tag("pubsub", { xmlns = xmlns_pubsub }) + :tag("create", { node = node }); + end + origin.send(reply); +end + function handlers.set_subscribe(origin, stanza, subscribe) local node, jid = subscribe.attr.node, subscribe.attr.jid; if jid_bare(jid) ~= jid_bare(stanza.attr.from) then diff --git a/util/pubsub.lua b/util/pubsub.lua index da90fdcc..dc3f3432 100644 --- a/util/pubsub.lua +++ b/util/pubsub.lua @@ -28,6 +28,14 @@ function service:get_subscription(node, actor, jid) end end +function service:create(node, actor) + if not self.nodes[node] then + self.nodes[node] = { name = node, subscribers = {}, config = {}, data = {} }; + return true; + end + return false, "conflict"; +end + function service:publish(node, actor, id, item) local node_obj = self.nodes[node]; if not node_obj then -- cgit v1.2.3