2016-04-15 12:44:33 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
2016-12-27 10:44:07 +01:00
|
|
|
%%% File : mod_offline_sql.erl
|
|
|
|
%%% Author : Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2016-04-15 12:44:33 +02:00
|
|
|
%%% Created : 15 Apr 2016 by Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2016-12-27 10:44:07 +01:00
|
|
|
%%%
|
|
|
|
%%%
|
2017-01-02 21:41:53 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2017 ProcessOne
|
2016-12-27 10:44:07 +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.
|
|
|
|
%%%
|
|
|
|
%%% 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.
|
|
|
|
%%%
|
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
2016-04-15 12:44:33 +02:00
|
|
|
-module(mod_offline_sql).
|
|
|
|
|
|
|
|
-compile([{parse_transform, ejabberd_sql_pt}]).
|
|
|
|
|
|
|
|
-behaviour(mod_offline).
|
|
|
|
|
|
|
|
-export([init/2, store_messages/5, pop_messages/2, remove_expired_messages/1,
|
|
|
|
remove_old_messages/2, remove_user/2, read_message_headers/2,
|
|
|
|
read_message/3, remove_message/3, read_all_messages/2,
|
2016-11-22 14:48:01 +01:00
|
|
|
remove_all_messages/2, count_messages/2, import/1, export/1]).
|
2016-04-15 12:44:33 +02:00
|
|
|
|
2016-07-26 10:29:17 +02:00
|
|
|
-include("xmpp.hrl").
|
2016-04-15 12:44:33 +02:00
|
|
|
-include("mod_offline.hrl").
|
|
|
|
-include("logger.hrl").
|
|
|
|
-include("ejabberd_sql_pt.hrl").
|
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% API
|
|
|
|
%%%===================================================================
|
|
|
|
init(_Host, _Opts) ->
|
|
|
|
ok.
|
|
|
|
|
|
|
|
store_messages(Host, {User, _Server}, Msgs, Len, MaxOfflineMsgs) ->
|
|
|
|
Count = if MaxOfflineMsgs =/= infinity ->
|
|
|
|
Len + count_messages(User, Host);
|
|
|
|
true -> 0
|
|
|
|
end,
|
|
|
|
if Count > MaxOfflineMsgs -> {atomic, discard};
|
|
|
|
true ->
|
|
|
|
Query = lists:map(
|
|
|
|
fun(M) ->
|
2016-05-24 17:44:07 +02:00
|
|
|
LUser = (M#offline_msg.to)#jid.luser,
|
2016-04-15 12:44:33 +02:00
|
|
|
From = M#offline_msg.from,
|
|
|
|
To = M#offline_msg.to,
|
2016-11-13 08:44:53 +01:00
|
|
|
Packet = xmpp:set_from_to(
|
|
|
|
M#offline_msg.packet, From, To),
|
|
|
|
NewPacket = xmpp_util:add_delay_info(
|
|
|
|
Packet, jid:make(Host),
|
|
|
|
M#offline_msg.timestamp,
|
|
|
|
<<"Offline Storage">>),
|
|
|
|
XML = fxml:element_to_binary(
|
|
|
|
xmpp:encode(NewPacket)),
|
2016-05-24 17:44:07 +02:00
|
|
|
sql_queries:add_spool_sql(LUser, XML)
|
2016-04-15 12:44:33 +02:00
|
|
|
end,
|
|
|
|
Msgs),
|
2016-04-20 11:27:32 +02:00
|
|
|
sql_queries:add_spool(Host, Query)
|
2016-04-15 12:44:33 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
pop_messages(LUser, LServer) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
case sql_queries:get_and_del_spool_msg_t(LServer, LUser) of
|
2016-04-15 12:44:33 +02:00
|
|
|
{atomic, {selected, Rs}} ->
|
|
|
|
{ok, lists:flatmap(
|
|
|
|
fun({_, XML}) ->
|
|
|
|
case xml_to_offline_msg(XML) of
|
|
|
|
{ok, Msg} ->
|
|
|
|
[Msg];
|
|
|
|
_Err ->
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end, Rs)};
|
|
|
|
Err ->
|
|
|
|
{error, Err}
|
|
|
|
end.
|
|
|
|
|
|
|
|
remove_expired_messages(_LServer) ->
|
|
|
|
%% TODO
|
|
|
|
{atomic, ok}.
|
|
|
|
|
|
|
|
remove_old_messages(Days, LServer) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
case catch ejabberd_sql:sql_query(
|
2016-04-15 12:44:33 +02:00
|
|
|
LServer,
|
|
|
|
[<<"DELETE FROM spool"
|
|
|
|
" WHERE created_at < "
|
2016-06-22 11:21:11 +02:00
|
|
|
"NOW() - INTERVAL '">>,
|
2016-10-10 11:32:36 +02:00
|
|
|
integer_to_list(Days), <<"' DAY;">>]) of
|
2016-04-15 12:44:33 +02:00
|
|
|
{updated, N} ->
|
|
|
|
?INFO_MSG("~p message(s) deleted from offline spool", [N]);
|
|
|
|
_Error ->
|
|
|
|
?ERROR_MSG("Cannot delete message in offline spool: ~p", [_Error])
|
|
|
|
end,
|
|
|
|
{atomic, ok}.
|
|
|
|
|
|
|
|
remove_user(LUser, LServer) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
sql_queries:del_spool_msg(LServer, LUser).
|
2016-04-15 12:44:33 +02:00
|
|
|
|
|
|
|
read_message_headers(LUser, LServer) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
case catch ejabberd_sql:sql_query(
|
2016-05-24 17:44:07 +02:00
|
|
|
LServer,
|
|
|
|
?SQL("select @(xml)s, @(seq)d from spool"
|
|
|
|
" where username=%(LUser)s order by seq")) of
|
|
|
|
{selected, Rows} ->
|
2016-04-15 12:44:33 +02:00
|
|
|
lists:flatmap(
|
2016-05-24 17:44:07 +02:00
|
|
|
fun({XML, Seq}) ->
|
2016-04-15 12:44:33 +02:00
|
|
|
case xml_to_offline_msg(XML) of
|
|
|
|
{ok, #offline_msg{from = From,
|
|
|
|
to = To,
|
2016-11-18 11:38:08 +01:00
|
|
|
timestamp = TS,
|
2016-04-15 12:44:33 +02:00
|
|
|
packet = El}} ->
|
2016-11-18 11:38:08 +01:00
|
|
|
[{Seq, From, To, TS, El}];
|
2016-04-15 12:44:33 +02:00
|
|
|
_ ->
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end, Rows);
|
|
|
|
_Err ->
|
|
|
|
[]
|
|
|
|
end.
|
|
|
|
|
|
|
|
read_message(LUser, LServer, Seq) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
case ejabberd_sql:sql_query(
|
2016-04-15 12:44:33 +02:00
|
|
|
LServer,
|
2016-05-24 17:44:07 +02:00
|
|
|
?SQL("select @(xml)s from spool where username=%(LUser)s"
|
|
|
|
" and seq=%(Seq)d")) of
|
|
|
|
{selected, [{RawXML}|_]} ->
|
2016-04-15 12:44:33 +02:00
|
|
|
case xml_to_offline_msg(RawXML) of
|
|
|
|
{ok, Msg} ->
|
|
|
|
{ok, Msg};
|
|
|
|
_ ->
|
|
|
|
error
|
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
error
|
|
|
|
end.
|
|
|
|
|
|
|
|
remove_message(LUser, LServer, Seq) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
ejabberd_sql:sql_query(
|
2016-04-15 12:44:33 +02:00
|
|
|
LServer,
|
2016-05-24 17:44:07 +02:00
|
|
|
?SQL("delete from spool where username=%(LUser)s"
|
|
|
|
" and seq=%(Seq)d")),
|
2016-04-15 12:44:33 +02:00
|
|
|
ok.
|
|
|
|
|
|
|
|
read_all_messages(LUser, LServer) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
case catch ejabberd_sql:sql_query(
|
2016-04-15 12:44:33 +02:00
|
|
|
LServer,
|
|
|
|
?SQL("select @(xml)s from spool where "
|
|
|
|
"username=%(LUser)s order by seq")) of
|
|
|
|
{selected, Rs} ->
|
|
|
|
lists:flatmap(
|
|
|
|
fun({XML}) ->
|
|
|
|
case xml_to_offline_msg(XML) of
|
|
|
|
{ok, Msg} -> [Msg];
|
|
|
|
_ -> []
|
|
|
|
end
|
|
|
|
end, Rs);
|
|
|
|
_ ->
|
|
|
|
[]
|
|
|
|
end.
|
|
|
|
|
|
|
|
remove_all_messages(LUser, LServer) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
sql_queries:del_spool_msg(LServer, LUser),
|
2016-04-15 12:44:33 +02:00
|
|
|
{atomic, ok}.
|
|
|
|
|
|
|
|
count_messages(LUser, LServer) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
case catch ejabberd_sql:sql_query(
|
2016-04-15 12:44:33 +02:00
|
|
|
LServer,
|
|
|
|
?SQL("select @(count(*))d from spool "
|
|
|
|
"where username=%(LUser)s")) of
|
|
|
|
{selected, [{Res}]} ->
|
|
|
|
Res;
|
|
|
|
_ -> 0
|
|
|
|
end.
|
|
|
|
|
|
|
|
export(_Server) ->
|
|
|
|
[{offline_msg,
|
|
|
|
fun(Host, #offline_msg{us = {LUser, LServer},
|
|
|
|
timestamp = TimeStamp, from = From, to = To,
|
2016-11-13 08:44:53 +01:00
|
|
|
packet = El})
|
2016-04-15 12:44:33 +02:00
|
|
|
when LServer == Host ->
|
2016-11-13 08:44:53 +01:00
|
|
|
try xmpp:decode(El, ?NS_CLIENT, [ignore_els]) of
|
|
|
|
Packet ->
|
|
|
|
Packet1 = xmpp:set_from_to(Packet, From, To),
|
|
|
|
Packet2 = xmpp_util:add_delay_info(
|
|
|
|
Packet1, jid:make(LServer),
|
|
|
|
TimeStamp, <<"Offline Storage">>),
|
|
|
|
XML = fxml:element_to_binary(xmpp:encode(Packet2)),
|
|
|
|
[?SQL("delete from spool where username=%(LUser)s;"),
|
|
|
|
?SQL("insert into spool(username, xml) values ("
|
|
|
|
"%(LUser)s, %(XML)s);")]
|
|
|
|
catch _:{xmpp_codec, Why} ->
|
|
|
|
?ERROR_MSG("failed to decode packet ~p of user ~s@~s: ~s",
|
|
|
|
[El, LUser, LServer, xmpp:format_error(Why)]),
|
|
|
|
[]
|
|
|
|
end;
|
2016-04-15 12:44:33 +02:00
|
|
|
(_Host, _R) ->
|
|
|
|
[]
|
|
|
|
end}].
|
|
|
|
|
2016-11-22 14:48:01 +01:00
|
|
|
import(_) ->
|
|
|
|
ok.
|
2016-04-15 12:44:33 +02:00
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% Internal functions
|
|
|
|
%%%===================================================================
|
|
|
|
xml_to_offline_msg(XML) ->
|
|
|
|
case fxml_stream:parse_element(XML) of
|
|
|
|
#xmlel{} = El ->
|
|
|
|
el_to_offline_msg(El);
|
|
|
|
Err ->
|
|
|
|
?ERROR_MSG("got ~p when parsing XML packet ~s",
|
|
|
|
[Err, XML]),
|
|
|
|
Err
|
|
|
|
end.
|
|
|
|
|
|
|
|
el_to_offline_msg(El) ->
|
|
|
|
To_s = fxml:get_tag_attr_s(<<"to">>, El),
|
|
|
|
From_s = fxml:get_tag_attr_s(<<"from">>, El),
|
|
|
|
To = jid:from_string(To_s),
|
|
|
|
From = jid:from_string(From_s),
|
|
|
|
if To == error ->
|
|
|
|
?ERROR_MSG("failed to get 'to' JID from offline XML ~p", [El]),
|
|
|
|
{error, bad_jid_to};
|
|
|
|
From == error ->
|
|
|
|
?ERROR_MSG("failed to get 'from' JID from offline XML ~p", [El]),
|
|
|
|
{error, bad_jid_from};
|
|
|
|
true ->
|
|
|
|
{ok, #offline_msg{us = {To#jid.luser, To#jid.lserver},
|
|
|
|
from = From,
|
|
|
|
to = To,
|
|
|
|
packet = El}}
|
|
|
|
end.
|