xmpp.chapril.org-ejabberd/src/mod_private_sql.erl

120 lines
3.4 KiB
Erlang
Raw Normal View History

%%%-------------------------------------------------------------------
2016-12-27 10:44:07 +01:00
%%% File : mod_private_sql.erl
%%% Author : Evgeny Khramtsov <ekhramtsov@process-one.net>
%%% Created : 13 Apr 2016 by Evgeny Khramtsov <ekhramtsov@process-one.net>
2016-12-27 10:44:07 +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.
%%%
%%%----------------------------------------------------------------------
-module(mod_private_sql).
-behaviour(mod_private).
%% API
2017-05-22 09:34:57 +02:00
-export([init/2, set_data/3, get_data/3, get_all_data/2, del_data/2,
2016-11-22 14:48:01 +01:00
import/3, export/1]).
-include("xmpp.hrl").
-include("mod_private.hrl").
2017-05-22 09:34:57 +02:00
-include("logger.hrl").
%%%===================================================================
%%% API
%%%===================================================================
init(_Host, _Opts) ->
ok.
set_data(LUser, LServer, Data) ->
F = fun() ->
lists:foreach(
fun({XMLNS, El}) ->
SData = fxml:element_to_binary(El),
2016-04-20 11:27:32 +02:00
sql_queries:set_private_data(
LServer, LUser, XMLNS, SData)
end, Data)
end,
2017-05-22 09:34:57 +02:00
case ejabberd_sql:sql_transaction(LServer, F) of
{atomic, ok} ->
ok;
_ ->
{error, db_failure}
end.
get_data(LUser, LServer, XMLNS) ->
2017-05-22 09:34:57 +02:00
case sql_queries:get_private_data(LServer, LUser, XMLNS) of
{selected, [{SData}]} ->
2017-05-22 09:34:57 +02:00
parse_element(LUser, LServer, SData);
{selected, []} ->
error;
_ ->
2017-05-22 09:34:57 +02:00
{error, db_failure}
end.
get_all_data(LUser, LServer) ->
2016-04-20 11:27:32 +02:00
case catch sql_queries:get_private_data(LServer, LUser) of
2017-05-22 09:34:57 +02:00
{selected, []} ->
error;
{selected, Res} ->
2017-05-22 09:34:57 +02:00
{ok, lists:flatmap(
fun({_, SData}) ->
case parse_element(LUser, LServer, SData) of
{ok, El} -> [El];
error -> []
end
end, Res)};
_ ->
2017-05-22 09:34:57 +02:00
{error, db_failure}
end.
2017-05-22 09:34:57 +02:00
del_data(LUser, LServer) ->
case sql_queries:del_user_private_storage(LServer, LUser) of
{updated, _} ->
ok;
_ ->
{error, db_failure}
end.
export(_Server) ->
[{private_storage,
fun(Host, #private_storage{usns = {LUser, LServer, XMLNS},
xml = Data})
when LServer == Host ->
2016-05-04 20:01:05 +02:00
SData = fxml:element_to_binary(Data),
sql_queries:set_private_data_sql(LUser, XMLNS, SData);
(_Host, _R) ->
[]
end}].
2016-11-22 14:48:01 +01:00
import(_, _, _) ->
ok.
%%%===================================================================
%%% Internal functions
%%%===================================================================
2017-05-22 09:34:57 +02:00
parse_element(LUser, LServer, XML) ->
case fxml_stream:parse_element(XML) of
El when is_record(El, xmlel) ->
{ok, El};
_ ->
?ERROR_MSG("malformed XML element in SQL table "
"'private_storage' for user ~s@~s: ~s",
[LUser, LServer, XML]),
error
end.