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>
|
|
|
|
%%%
|
|
|
|
%%%
|
2016-01-13 12:29:14 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2016 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-12 15:44:42 +01:00
|
|
|
%%%
|
2014-02-22 11:27:40 +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.,
|
|
|
|
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-12-24 13:58:05 +01:00
|
|
|
%%%
|
2003-01-18 20:42:48 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(mod_version).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2007-12-24 13:58:05 +01:00
|
|
|
-author('alexey@process-one.net').
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2015-05-21 17:02:36 +02:00
|
|
|
-protocol({xep, 92, '1.1'}).
|
|
|
|
|
2003-01-24 21:18:33 +01:00
|
|
|
-behaviour(gen_mod).
|
|
|
|
|
2015-06-01 14:38:27 +02:00
|
|
|
-export([start/2, stop/1, process_local_iq/3,
|
|
|
|
mod_opt_type/1]).
|
2003-01-18 20:42:48 +01:00
|
|
|
|
|
|
|
-include("ejabberd.hrl").
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("logger.hrl").
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
-include("jlib.hrl").
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
start(Host, Opts) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
IQDisc = gen_mod:get_opt(iqdisc, Opts, fun gen_iq_handler:check_type/1,
|
|
|
|
one_queue),
|
|
|
|
gen_iq_handler:add_iq_handler(ejabberd_local, Host,
|
|
|
|
?NS_VERSION, ?MODULE, process_local_iq,
|
|
|
|
IQDisc).
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
stop(Host) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
gen_iq_handler:remove_iq_handler(ejabberd_local, Host,
|
|
|
|
?NS_VERSION).
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
process_local_iq(_From, To,
|
|
|
|
#iq{id = _ID, type = Type, xmlns = _XMLNS,
|
|
|
|
sub_el = SubEl} =
|
|
|
|
IQ) ->
|
2003-01-18 20:42:48 +01:00
|
|
|
case Type of
|
2013-03-14 10:33:02 +01:00
|
|
|
set ->
|
|
|
|
IQ#iq{type = error, sub_el = [SubEl, ?ERR_NOT_ALLOWED]};
|
|
|
|
get ->
|
|
|
|
Host = To#jid.lserver,
|
|
|
|
OS = case gen_mod:get_module_opt(Host, ?MODULE, show_os,
|
|
|
|
fun(B) when is_boolean(B) -> B end,
|
|
|
|
true)
|
|
|
|
of
|
|
|
|
true -> [get_os()];
|
|
|
|
false -> []
|
|
|
|
end,
|
|
|
|
IQ#iq{type = result,
|
|
|
|
sub_el =
|
|
|
|
[#xmlel{name = <<"query">>,
|
|
|
|
attrs = [{<<"xmlns">>, ?NS_VERSION}],
|
|
|
|
children =
|
|
|
|
[#xmlel{name = <<"name">>, attrs = [],
|
|
|
|
children =
|
|
|
|
[{xmlcdata, <<"ejabberd">>}]},
|
|
|
|
#xmlel{name = <<"version">>, attrs = [],
|
|
|
|
children = [{xmlcdata, ?VERSION}]}]
|
|
|
|
++ OS}]}
|
2003-01-18 20:42:48 +01:00
|
|
|
end.
|
|
|
|
|
2007-07-31 06:13:58 +02:00
|
|
|
get_os() ->
|
2013-12-10 08:40:43 +01:00
|
|
|
{Osfamily, Osname} = os:type(),
|
|
|
|
OSType = list_to_binary([atom_to_list(Osfamily), $/, atom_to_list(Osname)]),
|
2007-07-31 06:13:58 +02:00
|
|
|
OSVersion = case os:version() of
|
2013-03-14 10:33:02 +01:00
|
|
|
{Major, Minor, Release} ->
|
|
|
|
iolist_to_binary(io_lib:format("~w.~w.~w",
|
|
|
|
[Major, Minor, Release]));
|
|
|
|
VersionString -> VersionString
|
2007-07-31 06:13:58 +02:00
|
|
|
end,
|
2013-03-14 10:33:02 +01:00
|
|
|
OS = <<OSType/binary, " ", OSVersion/binary>>,
|
|
|
|
#xmlel{name = <<"os">>, attrs = [],
|
|
|
|
children = [{xmlcdata, OS}]}.
|
2015-06-01 14:38:27 +02:00
|
|
|
|
|
|
|
mod_opt_type(iqdisc) -> fun gen_iq_handler:check_type/1;
|
|
|
|
mod_opt_type(show_os) ->
|
|
|
|
fun (B) when is_boolean(B) -> B end;
|
|
|
|
mod_opt_type(_) -> [iqdisc, show_os].
|