mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.stanza: Add method for removing all children with a specific name, xmlns
This commit is contained in:
parent
b6dc9e444a
commit
13463cb100
1 changed files with 10 additions and 0 deletions
|
@ -97,6 +97,16 @@ function stanza_mt:add_child(child)
|
|||
return self;
|
||||
end
|
||||
|
||||
function stanza_mt:remove_children(name, xmlns)
|
||||
xmlns = xmlns or self.attr.xmlns;
|
||||
return self:maptags(function (tag)
|
||||
if (not name or tag.name == name) and tag.attr.xmlns == xmlns then
|
||||
return nil;
|
||||
end
|
||||
return tag;
|
||||
end);
|
||||
end
|
||||
|
||||
function stanza_mt:get_child(name, xmlns)
|
||||
for _, child in ipairs(self.tags) do
|
||||
if (not name or child.name == name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue