aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_version.lua
blob: 2f68fa07d51a4fb61f82ea6a4a057989ce0189de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

local st = require "util.stanza";

local log = require "util.logger".init("mod_version");

local xmlns_version = "jabber:iq:version"

require "core.discomanager".set("version", xmlns_version);

local function handle_version_request(session, stanza)
	if stanza.attr.type == "get" then
		session.send(st.reply(stanza):query(xmlns_version)
			:tag("name"):text("lxmppd"):up()
			:tag("version"):text("pre-alpha"):up()
			:tag("os"):text("the best operating system ever!"));
	end
end

add_iq_handler("c2s", xmlns_version, handle_version_request);
add_iq_handler("s2sin", xmlns_version, handle_version_request);