util.dataforms: Add a simple function for identifying form types

This is meant to allow identifying forms without parsing them
completely.
This commit is contained in:
Kim Alvefur 2018-06-02 19:57:46 +02:00
parent 5b1a236029
commit a7448e43e0
2 changed files with 25 additions and 0 deletions

View file

@ -249,8 +249,24 @@ field_readers["hidden"] =
return field_tag:get_child_text("value");
end
local function get_form_type(form)
if not st.is_stanza(form) then
return nil, "not a stanza object";
elseif form.attr.xmlns ~= "jabber:x:data" or form.name ~= "x" then
return nil, "not a dataform element";
end
for field in form:childtags("field") do
if field.attr.var == "FORM_TYPE" then
return field:get_child_text("value");
end
end
return "";
end
return {
new = new;
get_type = get_form_type;
};