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>
|
|
|
|
%%%
|
|
|
|
%%%
|
2021-01-27 16:55:25 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2021 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).
|
|
|
|
|
2017-02-22 17:46:47 +01:00
|
|
|
-export([start/2, stop/1, reload/3, process_local_iq/1,
|
2020-01-08 10:24:51 +01:00
|
|
|
mod_opt_type/1, mod_options/1, depends/2, mod_doc/0]).
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("logger.hrl").
|
2020-09-03 13:45:57 +02:00
|
|
|
-include_lib("xmpp/include/xmpp.hrl").
|
2019-06-22 16:08:45 +02:00
|
|
|
-include("translate.hrl").
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2018-02-11 10:54:15 +01:00
|
|
|
start(Host, _Opts) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
gen_iq_handler:add_iq_handler(ejabberd_local, Host,
|
2018-02-11 10:54:15 +01:00
|
|
|
?NS_VERSION, ?MODULE, process_local_iq).
|
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
|
|
|
|
2018-02-11 10:54:15 +01:00
|
|
|
reload(_Host, _NewOpts, _OldOpts) ->
|
|
|
|
ok.
|
2017-02-22 17:46:47 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
process_local_iq(#iq{type = set, lang = Lang} = IQ) ->
|
2019-06-22 16:08:45 +02:00
|
|
|
Txt = ?T("Value 'set' of 'type' attribute is not allowed"),
|
2016-07-18 14:01:32 +02:00
|
|
|
xmpp:make_error(IQ, xmpp:err_not_allowed(Txt, Lang));
|
|
|
|
process_local_iq(#iq{type = get, to = To} = IQ) ->
|
|
|
|
Host = To#jid.lserver,
|
2019-06-14 11:33:26 +02:00
|
|
|
OS = case mod_version_opt:show_os(Host) of
|
2016-07-18 14:01:32 +02:00
|
|
|
true -> get_os();
|
|
|
|
false -> undefined
|
|
|
|
end,
|
|
|
|
xmpp:make_iq_result(IQ, #version{name = <<"ejabberd">>,
|
2019-06-14 11:33:26 +02:00
|
|
|
ver = ejabberd_option:version(),
|
2016-07-18 14:01:32 +02:00
|
|
|
os = OS}).
|
2003-01-18 20:42:48 +01:00
|
|
|
|
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} ->
|
2016-11-24 13:06:06 +01:00
|
|
|
(str:format("~w.~w.~w",
|
2013-03-14 10:33:02 +01:00
|
|
|
[Major, Minor, Release]));
|
|
|
|
VersionString -> VersionString
|
2007-07-31 06:13:58 +02:00
|
|
|
end,
|
2016-07-18 14:01:32 +02:00
|
|
|
<<OSType/binary, " ", OSVersion/binary>>.
|
2015-06-01 14:38:27 +02:00
|
|
|
|
2016-07-06 13:58:48 +02:00
|
|
|
depends(_Host, _Opts) ->
|
|
|
|
[].
|
|
|
|
|
2015-06-01 14:38:27 +02:00
|
|
|
mod_opt_type(show_os) ->
|
2019-06-14 11:33:26 +02:00
|
|
|
econf:bool().
|
2018-01-23 08:54:52 +01:00
|
|
|
|
2018-02-11 10:54:15 +01:00
|
|
|
mod_options(_Host) ->
|
|
|
|
[{show_os, true}].
|
2020-01-08 10:24:51 +01:00
|
|
|
|
|
|
|
mod_doc() ->
|
|
|
|
#{desc =>
|
|
|
|
?T("This module implements "
|
|
|
|
"https://xmpp.org/extensions/xep-0092.html"
|
|
|
|
"[XEP-0092: Software Version]. Consequently, "
|
|
|
|
"it answers ejabberd's version when queried."),
|
|
|
|
opts =>
|
|
|
|
[{show_os,
|
|
|
|
#{value => "true | false",
|
|
|
|
desc =>
|
|
|
|
?T("Should the operating system be revealed or not. "
|
|
|
|
"The default value is 'true'.")}}]}.
|