mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_version: Leave out the os element if hide_os_type is set
This commit is contained in:
parent
9b900ecc5f
commit
42ddba6e98
1 changed files with 6 additions and 7 deletions
|
@ -12,6 +12,10 @@ module:add_feature("jabber:iq:version");
|
|||
|
||||
local version = "the best operating system ever!";
|
||||
|
||||
local query = st.stanza("query", {xmlns = "jabber:iq:version"})
|
||||
:tag("name"):text("Prosody"):up()
|
||||
:tag("version"):text(prosody.version):up();
|
||||
|
||||
if not module:get_option("hide_os_type") then
|
||||
if os.getenv("WINDIR") then
|
||||
version = "Windows";
|
||||
|
@ -23,15 +27,10 @@ if not module:get_option("hide_os_type") then
|
|||
version = "an OS";
|
||||
end
|
||||
end
|
||||
version = version:match("^%s*(.-)%s*$") or version;
|
||||
query:tag("os"):text(version):up();
|
||||
end
|
||||
|
||||
version = version:match("^%s*(.-)%s*$") or version;
|
||||
|
||||
local query = st.stanza("query", {xmlns = "jabber:iq:version"})
|
||||
:tag("name"):text("Prosody"):up()
|
||||
:tag("version"):text(prosody.version):up()
|
||||
:tag("os"):text(version);
|
||||
|
||||
module:hook("iq/host/jabber:iq:version:query", function(event)
|
||||
local stanza = event.stanza;
|
||||
if stanza.attr.type == "get" and stanza.attr.to == module.host then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue