2003-01-18 20:42:48 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : mod_version.erl
|
2007-12-24 13:58:05 +01:00
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
2007-07-31 06:13:58 +02:00
|
|
|
%%% Purpose : XEP-0092: Software Version
|
2007-12-24 13:58:05 +01:00
|
|
|
%%% Created : 18 Jan 2003 by Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2011-02-14 13:47:22 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2011 ProcessOne
|
2007-12-24 13:58:05 +01:00
|
|
|
%%%
|
|
|
|
%%% This program is free software; you can redistribute it and/or
|
|
|
|
%%% modify it under the terms of the GNU General Public License as
|
|
|
|
%%% published by the Free Software Foundation; either version 2 of the
|
|
|
|
%%% License, or (at your option) any later version.
|
|
|
|
%%%
|
|
|
|
%%% This program is distributed in the hope that it will be useful,
|
|
|
|
%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
%%% General Public License for more details.
|
2009-01-19 15:47:33 +01:00
|
|
|
%%%
|
2007-12-24 13:58:05 +01:00
|
|
|
%%% You should have received a copy of the GNU General Public License
|
|
|
|
%%% along with this program; if not, write to the Free Software
|
|
|
|
%%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
%%% 02111-1307 USA
|
|
|
|
%%%
|
2003-01-18 20:42:48 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(mod_version).
|
2007-12-24 13:58:05 +01:00
|
|
|
-author('alexey@process-one.net').
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2003-01-24 21:18:33 +01:00
|
|
|
-behaviour(gen_mod).
|
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
-export([start/2,
|
|
|
|
stop/1,
|
2003-01-18 20:42:48 +01:00
|
|
|
process_local_iq/3]).
|
|
|
|
|
2008-10-07 14:20:09 +02:00
|
|
|
-include_lib("exmpp/include/exmpp.hrl").
|
|
|
|
|
2003-01-18 20:42:48 +01:00
|
|
|
-include("ejabberd.hrl").
|
|
|
|
|
|
|
|
|
2011-07-15 02:50:45 +02:00
|
|
|
start(Host, Opts) when is_list(Host) ->
|
|
|
|
start(list_to_binary(Host), Opts);
|
|
|
|
start(HostB, Opts) ->
|
2003-01-24 21:18:33 +01:00
|
|
|
IQDisc = gen_mod:get_opt(iqdisc, Opts, one_queue),
|
2011-07-15 02:50:45 +02:00
|
|
|
gen_iq_handler:add_iq_handler(ejabberd_local, HostB, ?NS_SOFT_VERSION,
|
2003-01-24 21:18:33 +01:00
|
|
|
?MODULE, process_local_iq, IQDisc).
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
stop(Host) ->
|
2009-01-10 17:10:12 +01:00
|
|
|
gen_iq_handler:remove_iq_handler(ejabberd_local, list_to_binary(Host), ?NS_SOFT_VERSION).
|
2003-01-18 20:42:48 +01:00
|
|
|
|
|
|
|
|
2008-10-07 14:20:09 +02:00
|
|
|
process_local_iq(_From, To, #iq{type = Type} = IQ_Rec) ->
|
2003-01-18 20:42:48 +01:00
|
|
|
case Type of
|
|
|
|
set ->
|
2008-10-07 14:20:09 +02:00
|
|
|
exmpp_iq:error(IQ_Rec, 'not-allowed');
|
2003-01-18 20:42:48 +01:00
|
|
|
get ->
|
2009-01-03 16:15:38 +01:00
|
|
|
Host = exmpp_jid:domain_as_list(To),
|
2007-07-31 06:13:58 +02:00
|
|
|
OS = case gen_mod:get_module_opt(Host, ?MODULE, show_os, true) of
|
|
|
|
true -> [get_os()];
|
|
|
|
false -> []
|
|
|
|
end,
|
2008-10-07 14:20:09 +02:00
|
|
|
R = #xmlel{ns = ?NS_SOFT_VERSION, name = 'query',
|
|
|
|
children = [ exmpp_xml:set_cdata(#xmlel{ns = ?NS_SOFT_VERSION,
|
|
|
|
name = 'name'},
|
|
|
|
<<"ejabberd">>),
|
|
|
|
exmpp_xml:set_cdata(#xmlel{ns = ?NS_SOFT_VERSION,
|
|
|
|
name = 'version'},
|
|
|
|
?VERSION) | OS]},
|
|
|
|
exmpp_iq:result(IQ_Rec, R)
|
2003-01-18 20:42:48 +01:00
|
|
|
end.
|
|
|
|
|
|
|
|
|
2007-07-31 06:13:58 +02:00
|
|
|
get_os() ->
|
|
|
|
OSType = case os:type() of
|
|
|
|
{Osfamily, Osname} ->
|
|
|
|
atom_to_list(Osfamily) ++ "/" ++
|
|
|
|
atom_to_list(Osname);
|
|
|
|
Osfamily ->
|
|
|
|
atom_to_list(Osfamily)
|
|
|
|
end,
|
|
|
|
OSVersion = case os:version() of
|
|
|
|
{Major, Minor, Release} ->
|
|
|
|
lists:flatten(
|
|
|
|
io_lib:format("~w.~w.~w",
|
|
|
|
[Major, Minor, Release]));
|
|
|
|
VersionString ->
|
|
|
|
VersionString
|
|
|
|
end,
|
|
|
|
OS = OSType ++ " " ++ OSVersion,
|
2008-10-07 14:20:09 +02:00
|
|
|
exmpp_xml:set_cdata(#xmlel{ns = ?NS_SOFT_VERSION, name = 'os'}, OS).
|