2016-04-13 13:09:34 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
2016-12-27 10:44:07 +01:00
|
|
|
%%% File : mod_private_sql.erl
|
|
|
|
%%% Author : Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2016-04-13 13:09:34 +02:00
|
|
|
%%% Created : 13 Apr 2016 by Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2016-12-27 10:44:07 +01:00
|
|
|
%%%
|
|
|
|
%%%
|
2018-01-05 21:18:58 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2018 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-13 13:09:34 +02:00
|
|
|
-module(mod_private_sql).
|
2017-05-23 11:25:13 +02:00
|
|
|
-compile([{parse_transform, ejabberd_sql_pt}]).
|
2016-04-13 13:09:34 +02:00
|
|
|
-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]).
|
2016-04-13 13:09:34 +02:00
|
|
|
|
2016-07-26 10:29:17 +02:00
|
|
|
-include("xmpp.hrl").
|
2016-04-13 13:09:34 +02:00
|
|
|
-include("mod_private.hrl").
|
2017-05-23 11:25:13 +02:00
|
|
|
-include("ejabberd_sql_pt.hrl").
|
2017-05-22 09:34:57 +02:00
|
|
|
-include("logger.hrl").
|
2016-04-13 13:09:34 +02:00
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% API
|
|
|
|
%%%===================================================================
|
|
|
|
init(_Host, _Opts) ->
|
|
|
|
ok.
|
|
|
|
|
|
|
|
set_data(LUser, LServer, Data) ->
|
|
|
|
F = fun() ->
|
|
|
|
lists:foreach(
|
|
|
|
fun({XMLNS, El}) ->
|
|
|
|
SData = fxml:element_to_binary(El),
|
2017-05-23 11:25:13 +02:00
|
|
|
?SQL_UPSERT_T(
|
|
|
|
"private_storage",
|
|
|
|
["!username=%(LUser)s",
|
2017-11-02 15:03:30 +01:00
|
|
|
"!server_host=%(LServer)s",
|
2017-05-23 11:25:13 +02:00
|
|
|
"!namespace=%(XMLNS)s",
|
|
|
|
"data=%(SData)s"])
|
2016-04-13 13:09:34 +02:00
|
|
|
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.
|
2016-04-13 13:09:34 +02:00
|
|
|
|
|
|
|
get_data(LUser, LServer, XMLNS) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
case ejabberd_sql:sql_query(
|
|
|
|
LServer,
|
|
|
|
?SQL("select @(data)s from private_storage"
|
2017-11-02 15:03:30 +01:00
|
|
|
" where username=%(LUser)s and %(LServer)H"
|
|
|
|
" and namespace=%(XMLNS)s")) of
|
2016-04-13 13:09:34 +02:00
|
|
|
{selected, [{SData}]} ->
|
2017-05-22 09:34:57 +02:00
|
|
|
parse_element(LUser, LServer, SData);
|
|
|
|
{selected, []} ->
|
|
|
|
error;
|
2016-04-13 13:09:34 +02:00
|
|
|
_ ->
|
2017-05-22 09:34:57 +02:00
|
|
|
{error, db_failure}
|
2016-04-13 13:09:34 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
get_all_data(LUser, LServer) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
case ejabberd_sql:sql_query(
|
|
|
|
LServer,
|
|
|
|
?SQL("select @(namespace)s, @(data)s from private_storage"
|
2017-11-02 15:03:30 +01:00
|
|
|
" where username=%(LUser)s and %(LServer)H")) of
|
2017-05-22 09:34:57 +02:00
|
|
|
{selected, []} ->
|
|
|
|
error;
|
2016-04-13 13:09:34 +02:00
|
|
|
{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)};
|
2016-04-13 13:09:34 +02:00
|
|
|
_ ->
|
2017-05-22 09:34:57 +02:00
|
|
|
{error, db_failure}
|
2016-04-13 13:09:34 +02:00
|
|
|
end.
|
|
|
|
|
2017-05-22 09:34:57 +02:00
|
|
|
del_data(LUser, LServer) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
case ejabberd_sql:sql_query(
|
|
|
|
LServer,
|
2017-11-02 15:03:30 +01:00
|
|
|
?SQL("delete from private_storage"
|
|
|
|
" where username=%(LUser)s and %(LServer)H")) of
|
2017-05-22 09:34:57 +02:00
|
|
|
{updated, _} ->
|
|
|
|
ok;
|
|
|
|
_ ->
|
|
|
|
{error, db_failure}
|
|
|
|
end.
|
2016-04-13 13:09:34 +02:00
|
|
|
|
|
|
|
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),
|
2017-05-23 11:25:13 +02:00
|
|
|
[?SQL("delete from private_storage where"
|
2017-11-02 15:03:30 +01:00
|
|
|
" username=%(LUser)s and %(LServer)H and namespace=%(XMLNS)s;"),
|
|
|
|
?SQL_INSERT(
|
|
|
|
"private_storage",
|
|
|
|
["username=%(LUser)s",
|
|
|
|
"server_host=%(LServer)s",
|
|
|
|
"namespace=%(XMLNS)s",
|
|
|
|
"data=%(SData)s"])];
|
2016-04-13 13:09:34 +02:00
|
|
|
(_Host, _R) ->
|
|
|
|
[]
|
|
|
|
end}].
|
|
|
|
|
2016-11-22 14:48:01 +01:00
|
|
|
import(_, _, _) ->
|
|
|
|
ok.
|
2016-04-13 13:09:34 +02:00
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% 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.
|