mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
5b1a236029
commit
a7448e43e0
2 changed files with 25 additions and 0 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue