util.pubsub: Validate node configuration on node creation (fixes #1328)

This commit is contained in:
Kim Alvefur 2019-03-03 19:31:56 +01:00
parent 7241f86668
commit 5d4504e51b
2 changed files with 51 additions and 1 deletions

View file

@ -436,10 +436,19 @@ function service:create(node, actor, options) --> ok, err
return false, "conflict";
end
local config = setmetatable(options or {}, {__index=self.node_defaults});
if self.config.check_node_config then
local ok = self.config.check_node_config(node, actor, config);
if not ok then
return false, "not-acceptable";
end
end
self.nodes[node] = {
name = node;
subscribers = {};
config = setmetatable(options or {}, {__index=self.node_defaults});
config = config;
affiliations = {};
};