util.pubsub: Add method to retrieve node configuration

This commit is contained in:
Matthew Wild 2018-08-04 21:32:24 +01:00
parent 62fd30552e
commit 43c1195531

View file

@ -592,6 +592,27 @@ function service:set_node_config(node, actor, new_config)
return true; return true;
end end
function service:get_node_config(node, actor)
if not self:may(node, actor, "get_configuration") then
return false, "forbidden";
end
local node_obj = self.nodes[node];
if not node_obj then
return false, "item-not-found";
end
local config_table = {};
for k, v in pairs(default_node_config) do
config_table[k] = v;
end
for k, v in pairs(node_obj.config) do
config_table[k] = v;
end
return true, config_table;
end
return { return {
new = new; new = new;
}; };