mod_pep_plus: Advertise pubsub features in disco#info (code adapted from mod_pubsub)
authorKim Alvefur <zash@zash.se>
Thu, 12 Oct 2017 01:34:32 +0200
changeset 8322 57e3ad11f3f6
parent 8321 d0a7fc7614de
child 8323 fe5eaf4ed631
mod_pep_plus: Advertise pubsub features in disco#info (code adapted from mod_pubsub)
plugins/mod_pep_plus.lua
--- a/plugins/mod_pep_plus.lua	Thu Oct 12 01:31:08 2017 +0200
+++ b/plugins/mod_pep_plus.lua	Thu Oct 12 01:34:32 2017 +0200
@@ -409,9 +409,40 @@
 end);
 
 module:hook("account-disco-info", function(event)
-	local reply = event.reply;
+	local origin, reply = event.origin, event.reply;
+
 	reply:tag('identity', {category='pubsub', type='pep'}):up();
-	reply:tag('feature', {var='http://jabber.org/protocol/pubsub#publish'}):up();
+
+	local username = jid_split(reply.attr.from) or origin.username;
+	local service = get_pep_service(username);
+
+	local feature_map = {
+		create = { "create-nodes", "instant-nodes", "item-ids" };
+		retract = { "delete-items", "retract-items" };
+		purge = { "purge-nodes" };
+		publish = { "publish", service.config.autocreate_on_publish and "auto-create" };
+		delete = { "delete-nodes" };
+		get_items = { "retrieve-items" };
+		add_subscription = { "subscribe" };
+		get_subscriptions = { "retrieve-subscriptions" };
+		set_configure = { "config-node" };
+		get_default = { "retrieve-default" };
+	};
+
+	for method, features in pairs(feature_map) do
+		if service[method] then
+			for _, feature in ipairs(features) do
+				if feature then
+					reply:tag('feature', {var=xmlns_pubsub.."#"..feature}):up();
+				end
+			end
+		end
+	end
+	for affiliation in pairs(service.config.capabilities) do
+		if affiliation ~= "none" and affiliation ~= "owner" then
+			reply:tag('feature', {var=xmlns_pubsub.."#"..affiliation.."-affiliation"}):up();
+		end
+	end
 end);
 
 module:hook("account-disco-items-node", function(event)