mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.pubsub: Validate node configuration on node creation (fixes #1328)
This commit is contained in:
parent
7241f86668
commit
5d4504e51b
2 changed files with 51 additions and 1 deletions
|
@ -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 = {};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue