2003-01-18 20:42:48 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : mod_time.erl
|
2007-12-24 13:58:05 +01:00
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
2003-01-18 20:42:48 +01:00
|
|
|
%%% Purpose :
|
2007-12-24 13:58:05 +01:00
|
|
|
%%% Created : 18 Jan 2003 by Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2010-01-12 17:15:16 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2010 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_time).
|
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,
|
2009-06-30 18:55:26 +02:00
|
|
|
process_local_iq90/3, % TODO: Remove once XEP-0090 is Obsolete
|
2003-01-18 20:42:48 +01:00
|
|
|
process_local_iq/3]).
|
|
|
|
|
2008-10-07 11:55:38 +02:00
|
|
|
-include_lib("exmpp/include/exmpp.hrl").
|
|
|
|
|
2003-01-18 20:42:48 +01:00
|
|
|
-include("ejabberd.hrl").
|
|
|
|
|
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
start(Host, Opts) ->
|
2003-01-24 21:18:33 +01:00
|
|
|
IQDisc = gen_mod:get_opt(iqdisc, Opts, one_queue),
|
2009-06-30 18:55:26 +02:00
|
|
|
%% TODO: Remove the next two lines once XEP-0090 is Obsolete
|
|
|
|
gen_iq_handler:add_iq_handler(ejabberd_local, list_to_binary(Host), ?NS_TIME_OLD,
|
|
|
|
?MODULE, process_local_iq90, IQDisc),
|
2009-01-10 17:10:12 +01:00
|
|
|
gen_iq_handler:add_iq_handler(ejabberd_local, list_to_binary(Host), ?NS_TIME,
|
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-06-30 18:55:26 +02:00
|
|
|
%% TODO: Remove the next two lines once XEP-0090 is Obsolete
|
|
|
|
gen_iq_handler:remove_iq_handler(ejabberd_local, list_to_binary(Host), ?NS_TIME_OLD),
|
2009-01-10 17:10:12 +01:00
|
|
|
gen_iq_handler:remove_iq_handler(ejabberd_local, list_to_binary(Host), ?NS_TIME).
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2008-10-07 11:55:38 +02:00
|
|
|
process_local_iq(_From, _To, #iq{type = get} = IQ_Rec) ->
|
2009-06-30 18:55:26 +02:00
|
|
|
Now = now(),
|
|
|
|
Now_universal = calendar:now_to_universal_time(Now),
|
|
|
|
Now_local = calendar:now_to_local_time(Now),
|
|
|
|
{UTC, UTC_diff} = jlib:timestamp_to_iso(Now_universal, utc),
|
|
|
|
Seconds_diff = calendar:datetime_to_gregorian_seconds(Now_local)
|
|
|
|
- calendar:datetime_to_gregorian_seconds(Now_universal),
|
|
|
|
{Hd, Md, _} = calendar:seconds_to_time(Seconds_diff),
|
|
|
|
{_, TZO_diff} = jlib:timestamp_to_iso({{0, 0, 0}, {0, 0, 0}}, {Hd, Md}),
|
|
|
|
Result = #xmlel{ns = ?NS_TIME, name = 'time', children = [
|
|
|
|
#xmlel{ns = ?NS_TIME, name = 'tzo', children = [
|
|
|
|
#xmlcdata{cdata = list_to_binary(TZO_diff)}]},
|
|
|
|
#xmlel{ns = ?NS_TIME, name = 'utc', children = [
|
|
|
|
#xmlcdata{cdata = list_to_binary(UTC ++ UTC_diff)}]}
|
2008-10-07 11:55:38 +02:00
|
|
|
]},
|
|
|
|
exmpp_iq:result(IQ_Rec, Result);
|
|
|
|
process_local_iq(_From, _To, #iq{type = set} = IQ_Rec) ->
|
|
|
|
exmpp_iq:error(IQ_Rec, 'not-allowed').
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2009-06-30 18:55:26 +02:00
|
|
|
%% TODO: Remove this function once XEP-0090 is Obsolete
|
|
|
|
process_local_iq90(_From, _To, #iq{type = get} = IQ_Rec) ->
|
|
|
|
UTC = jlib:timestamp_to_iso(calendar:universal_time()),
|
|
|
|
Result = #xmlel{ns = ?NS_TIME_OLD, name = 'query',
|
|
|
|
children = [#xmlel{ns = ?NS_TIME_OLD, name = 'utc',
|
|
|
|
children=[#xmlcdata{cdata =
|
|
|
|
list_to_binary(UTC)}
|
|
|
|
]}
|
|
|
|
]},
|
|
|
|
exmpp_iq:result(IQ_Rec, Result);
|
|
|
|
process_local_iq90(_From, _To, #iq{type = set} = IQ_Rec) ->
|
|
|
|
exmpp_iq:error(IQ_Rec, 'not-allowed').
|