2016-04-14 13:16:32 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
2016-12-27 10:44:07 +01:00
|
|
|
%%% File : mod_privacy_sql.erl
|
|
|
|
%%% Author : Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2016-04-14 13:16:32 +02:00
|
|
|
%%% Created : 14 Apr 2016 by Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2016-12-27 10:44:07 +01:00
|
|
|
%%%
|
|
|
|
%%%
|
2023-01-09 17:09:06 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2023 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-14 13:16:32 +02:00
|
|
|
-module(mod_privacy_sql).
|
|
|
|
|
2016-05-04 20:01:05 +02:00
|
|
|
|
2016-04-14 13:16:32 +02:00
|
|
|
-behaviour(mod_privacy).
|
|
|
|
|
|
|
|
%% API
|
2017-05-20 21:36:32 +02:00
|
|
|
-export([init/2, set_default/3, unset_default/2, set_lists/1,
|
|
|
|
set_list/4, get_lists/2, get_list/3, remove_lists/2,
|
|
|
|
remove_list/3, import/1, export/1]).
|
|
|
|
|
|
|
|
-export([item_to_raw/1, raw_to_item/1]).
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2020-09-03 13:45:57 +02:00
|
|
|
-include_lib("xmpp/include/xmpp.hrl").
|
2016-04-14 13:16:32 +02:00
|
|
|
-include("mod_privacy.hrl").
|
|
|
|
-include("logger.hrl").
|
2016-05-04 20:01:05 +02:00
|
|
|
-include("ejabberd_sql_pt.hrl").
|
2016-04-14 13:16:32 +02:00
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% API
|
|
|
|
%%%===================================================================
|
2023-09-28 02:37:36 +02:00
|
|
|
init(Host, _Opts) ->
|
|
|
|
ejabberd_sql_schema:update_schema(Host, ?MODULE, schemas()),
|
2016-04-14 13:16:32 +02:00
|
|
|
ok.
|
|
|
|
|
2023-09-28 02:37:36 +02:00
|
|
|
schemas() ->
|
|
|
|
[#sql_schema{
|
|
|
|
version = 1,
|
|
|
|
tables =
|
|
|
|
[#sql_table{
|
|
|
|
name = <<"privacy_default_list">>,
|
|
|
|
columns =
|
|
|
|
[#sql_column{name = <<"username">>, type = text},
|
|
|
|
#sql_column{name = <<"server_host">>, type = text},
|
|
|
|
#sql_column{name = <<"name">>, type = text}],
|
|
|
|
indices = [#sql_index{
|
|
|
|
columns = [<<"server_host">>, <<"username">>],
|
|
|
|
unique = true}]},
|
|
|
|
#sql_table{
|
|
|
|
name = <<"privacy_list">>,
|
|
|
|
columns =
|
|
|
|
[#sql_column{name = <<"username">>, type = text},
|
|
|
|
#sql_column{name = <<"server_host">>, type = text},
|
|
|
|
#sql_column{name = <<"name">>, type = text},
|
|
|
|
#sql_column{name = <<"id">>, type = bigserial},
|
|
|
|
#sql_column{name = <<"created_at">>, type = timestamp,
|
|
|
|
default = true}],
|
|
|
|
indices = [#sql_index{
|
|
|
|
columns = [<<"id">>],
|
|
|
|
unique = true},
|
|
|
|
#sql_index{
|
|
|
|
columns = [<<"server_host">>, <<"username">>,
|
|
|
|
<<"name">>],
|
|
|
|
unique = true}]},
|
|
|
|
#sql_table{
|
|
|
|
name = <<"privacy_list_data">>,
|
|
|
|
columns =
|
|
|
|
[#sql_column{name = <<"id">>, type = bigint,
|
|
|
|
opts = [#sql_references{
|
|
|
|
table = <<"privacy_list">>,
|
|
|
|
column = <<"id">>}]},
|
|
|
|
#sql_column{name = <<"t">>, type = {char, 1}},
|
|
|
|
#sql_column{name = <<"value">>, type = text},
|
|
|
|
#sql_column{name = <<"action">>, type = {char, 1}},
|
|
|
|
#sql_column{name = <<"ord">>, type = numeric},
|
|
|
|
#sql_column{name = <<"match_all">>, type = boolean},
|
|
|
|
#sql_column{name = <<"match_iq">>, type = boolean},
|
|
|
|
#sql_column{name = <<"match_message">>, type = boolean},
|
|
|
|
#sql_column{name = <<"match_presence_in">>, type = boolean},
|
|
|
|
#sql_column{name = <<"match_presence_out">>, type = boolean}],
|
|
|
|
indices = [#sql_index{columns = [<<"id">>]}]}]}].
|
|
|
|
|
2017-05-20 21:36:32 +02:00
|
|
|
unset_default(LUser, LServer) ->
|
|
|
|
case unset_default_privacy_list(LUser, LServer) of
|
|
|
|
ok ->
|
|
|
|
ok;
|
|
|
|
_Err ->
|
|
|
|
{error, db_failure}
|
2016-04-14 13:16:32 +02:00
|
|
|
end.
|
|
|
|
|
2017-05-20 21:36:32 +02:00
|
|
|
set_default(LUser, LServer, Name) ->
|
2016-04-14 13:16:32 +02:00
|
|
|
F = fun () ->
|
2017-11-02 15:03:30 +01:00
|
|
|
case get_privacy_list_names_t(LUser, LServer) of
|
2017-05-20 21:36:32 +02:00
|
|
|
{selected, []} ->
|
|
|
|
{error, notfound};
|
|
|
|
{selected, Names} ->
|
|
|
|
case lists:member({Name}, Names) of
|
|
|
|
true ->
|
2017-11-02 15:03:30 +01:00
|
|
|
set_default_privacy_list(LUser, LServer, Name);
|
2017-05-20 21:36:32 +02:00
|
|
|
false ->
|
|
|
|
{error, notfound}
|
|
|
|
end
|
2016-04-14 13:16:32 +02:00
|
|
|
end
|
|
|
|
end,
|
2017-05-20 21:36:32 +02:00
|
|
|
transaction(LServer, F).
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2017-05-20 21:36:32 +02:00
|
|
|
remove_list(LUser, LServer, Name) ->
|
2016-04-14 13:16:32 +02:00
|
|
|
F = fun () ->
|
2017-11-02 15:03:30 +01:00
|
|
|
case get_default_privacy_list_t(LUser, LServer) of
|
2017-05-20 21:36:32 +02:00
|
|
|
{selected, []} ->
|
2017-11-02 15:03:30 +01:00
|
|
|
remove_privacy_list_t(LUser, LServer, Name);
|
2017-05-20 21:36:32 +02:00
|
|
|
{selected, [{Default}]} ->
|
|
|
|
if Name == Default ->
|
|
|
|
{error, conflict};
|
|
|
|
true ->
|
2017-11-02 15:03:30 +01:00
|
|
|
remove_privacy_list_t(LUser, LServer, Name)
|
2017-05-20 21:36:32 +02:00
|
|
|
end
|
2016-04-14 13:16:32 +02:00
|
|
|
end
|
|
|
|
end,
|
2017-05-20 21:36:32 +02:00
|
|
|
transaction(LServer, F).
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2017-05-20 21:36:32 +02:00
|
|
|
set_lists(#privacy{us = {LUser, LServer},
|
|
|
|
default = Default,
|
|
|
|
lists = Lists}) ->
|
2016-04-14 13:16:32 +02:00
|
|
|
F = fun() ->
|
|
|
|
lists:foreach(
|
|
|
|
fun({Name, List}) ->
|
2017-11-02 15:03:30 +01:00
|
|
|
add_privacy_list(LUser, LServer, Name),
|
2019-05-02 21:10:21 +02:00
|
|
|
{selected, [{I}]} =
|
2017-11-02 15:03:30 +01:00
|
|
|
get_privacy_list_id_t(LUser, LServer, Name),
|
2016-04-14 13:16:32 +02:00
|
|
|
RItems = lists:map(fun item_to_raw/1, List),
|
2017-05-20 21:36:32 +02:00
|
|
|
set_privacy_list(I, RItems),
|
2016-04-14 13:16:32 +02:00
|
|
|
if is_binary(Default) ->
|
2017-11-02 15:03:30 +01:00
|
|
|
set_default_privacy_list(
|
|
|
|
LUser, LServer, Default);
|
2016-04-14 13:16:32 +02:00
|
|
|
true ->
|
|
|
|
ok
|
|
|
|
end
|
|
|
|
end, Lists)
|
|
|
|
end,
|
2017-05-20 21:36:32 +02:00
|
|
|
transaction(LServer, F).
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2017-05-20 21:36:32 +02:00
|
|
|
set_list(LUser, LServer, Name, List) ->
|
2016-04-14 13:16:32 +02:00
|
|
|
RItems = lists:map(fun item_to_raw/1, List),
|
2023-04-20 10:55:21 +02:00
|
|
|
F = fun() ->
|
|
|
|
{ID, New} = case get_privacy_list_id_t(LUser, LServer, Name) of
|
|
|
|
{selected, []} ->
|
|
|
|
add_privacy_list(LUser, LServer, Name),
|
|
|
|
{selected, [{I}]} =
|
|
|
|
get_privacy_list_id_t(LUser, LServer, Name),
|
|
|
|
{I, true};
|
|
|
|
{selected, [{I}]} -> {I, false}
|
|
|
|
end,
|
|
|
|
case New of
|
|
|
|
false ->
|
|
|
|
set_privacy_list(ID, RItems);
|
|
|
|
_ ->
|
|
|
|
set_privacy_list_new(ID, RItems)
|
|
|
|
end
|
2016-04-14 13:16:32 +02:00
|
|
|
end,
|
2017-05-20 21:36:32 +02:00
|
|
|
transaction(LServer, F).
|
|
|
|
|
|
|
|
get_list(LUser, LServer, default) ->
|
|
|
|
case get_default_privacy_list(LUser, LServer) of
|
|
|
|
{selected, []} ->
|
|
|
|
error;
|
|
|
|
{selected, [{Default}]} ->
|
|
|
|
get_list(LUser, LServer, Default);
|
|
|
|
_Err ->
|
|
|
|
{error, db_failure}
|
|
|
|
end;
|
|
|
|
get_list(LUser, LServer, Name) ->
|
|
|
|
case get_privacy_list_data(LUser, LServer, Name) of
|
|
|
|
{selected, []} ->
|
|
|
|
error;
|
|
|
|
{selected, RItems} ->
|
|
|
|
{ok, {Name, lists:flatmap(fun raw_to_item/1, RItems)}};
|
|
|
|
_Err ->
|
|
|
|
{error, db_failure}
|
2016-04-14 13:16:32 +02:00
|
|
|
end.
|
|
|
|
|
2017-05-20 21:36:32 +02:00
|
|
|
get_lists(LUser, LServer) ->
|
|
|
|
case get_default_privacy_list(LUser, LServer) of
|
|
|
|
{selected, Selected} ->
|
|
|
|
Default = case Selected of
|
|
|
|
[] -> none;
|
|
|
|
[{DefName}] -> DefName
|
|
|
|
end,
|
|
|
|
case get_privacy_list_names(LUser, LServer) of
|
|
|
|
{selected, Names} ->
|
|
|
|
case lists:foldl(
|
|
|
|
fun(_, {error, _} = Err) ->
|
|
|
|
Err;
|
|
|
|
({Name}, Acc) ->
|
|
|
|
case get_privacy_list_data(LUser, LServer, Name) of
|
|
|
|
{selected, RItems} ->
|
|
|
|
Items = lists:flatmap(
|
|
|
|
fun raw_to_item/1,
|
|
|
|
RItems),
|
|
|
|
[{Name, Items}|Acc];
|
|
|
|
_Err ->
|
|
|
|
{error, db_failure}
|
|
|
|
end
|
|
|
|
end, [], Names) of
|
|
|
|
{error, Reason} ->
|
|
|
|
{error, Reason};
|
|
|
|
Lists ->
|
|
|
|
{ok, #privacy{default = Default,
|
|
|
|
us = {LUser, LServer},
|
|
|
|
lists = Lists}}
|
|
|
|
end;
|
|
|
|
_Err ->
|
|
|
|
{error, db_failure}
|
|
|
|
end;
|
|
|
|
_Err ->
|
|
|
|
{error, db_failure}
|
2016-04-14 13:16:32 +02:00
|
|
|
end.
|
|
|
|
|
2017-05-20 21:36:32 +02:00
|
|
|
remove_lists(LUser, LServer) ->
|
|
|
|
case del_privacy_lists(LUser, LServer) of
|
|
|
|
ok ->
|
|
|
|
ok;
|
|
|
|
_Err ->
|
|
|
|
{error, db_failure}
|
|
|
|
end.
|
2016-04-14 13:16:32 +02:00
|
|
|
|
|
|
|
export(Server) ->
|
2021-05-10 11:37:59 +02:00
|
|
|
SqlType = ejabberd_option:sql_type(Server),
|
2016-04-20 11:27:32 +02:00
|
|
|
case catch ejabberd_sql:sql_query(jid:nameprep(Server),
|
2016-04-14 13:16:32 +02:00
|
|
|
[<<"select id from privacy_list order by "
|
|
|
|
"id desc limit 1;">>]) of
|
|
|
|
{selected, [<<"id">>], [[I]]} ->
|
2016-09-24 22:34:28 +02:00
|
|
|
put(id, binary_to_integer(I));
|
2016-04-14 13:16:32 +02:00
|
|
|
_ ->
|
|
|
|
put(id, 0)
|
|
|
|
end,
|
|
|
|
[{privacy,
|
|
|
|
fun(Host, #privacy{us = {LUser, LServer}, lists = Lists,
|
|
|
|
default = Default})
|
|
|
|
when LServer == Host ->
|
|
|
|
if Default /= none ->
|
2016-05-04 20:01:05 +02:00
|
|
|
[?SQL("delete from privacy_default_list where"
|
2017-11-02 15:03:30 +01:00
|
|
|
" username=%(LUser)s and %(LServer)H;"),
|
|
|
|
?SQL_INSERT(
|
|
|
|
"privacy_default_list",
|
|
|
|
["username=%(LUser)s",
|
|
|
|
"server_host=%(LServer)s",
|
|
|
|
"name=%(Default)s"])];
|
2016-04-14 13:16:32 +02:00
|
|
|
true ->
|
|
|
|
[]
|
|
|
|
end ++
|
|
|
|
lists:flatmap(
|
|
|
|
fun({Name, List}) ->
|
|
|
|
RItems = lists:map(fun item_to_raw/1, List),
|
2016-05-04 20:01:05 +02:00
|
|
|
ID = get_id(),
|
|
|
|
[?SQL("delete from privacy_list where"
|
2017-11-02 15:03:30 +01:00
|
|
|
" username=%(LUser)s and %(LServer)H and"
|
2016-05-04 20:01:05 +02:00
|
|
|
" name=%(Name)s;"),
|
2017-11-02 15:03:30 +01:00
|
|
|
?SQL_INSERT(
|
|
|
|
"privacy_list",
|
|
|
|
["username=%(LUser)s",
|
|
|
|
"server_host=%(LServer)s",
|
|
|
|
"name=%(Name)s",
|
|
|
|
"id=%(ID)d"]),
|
2016-05-04 20:01:05 +02:00
|
|
|
?SQL("delete from privacy_list_data where"
|
|
|
|
" id=%(ID)d;")] ++
|
2021-05-10 11:37:59 +02:00
|
|
|
case SqlType of
|
|
|
|
pgsql ->
|
|
|
|
[?SQL("insert into privacy_list_data(id, t, "
|
|
|
|
"value, action, ord, match_all, match_iq, "
|
|
|
|
"match_message, match_presence_in, "
|
|
|
|
"match_presence_out) "
|
|
|
|
"values (%(ID)d, %(SType)s, %(SValue)s, %(SAction)s,"
|
|
|
|
" %(Order)d, CAST(%(MatchAll)b as boolean), CAST(%(MatchIQ)b as boolean),"
|
|
|
|
" CAST(%(MatchMessage)b as boolean), CAST(%(MatchPresenceIn)b as boolean),"
|
|
|
|
" CAST(%(MatchPresenceOut)b as boolean));")
|
|
|
|
|| {SType, SValue, SAction, Order,
|
|
|
|
MatchAll, MatchIQ,
|
|
|
|
MatchMessage, MatchPresenceIn,
|
|
|
|
MatchPresenceOut} <- RItems];
|
|
|
|
_ ->
|
2016-05-04 20:01:05 +02:00
|
|
|
[?SQL("insert into privacy_list_data(id, t, "
|
|
|
|
"value, action, ord, match_all, match_iq, "
|
|
|
|
"match_message, match_presence_in, "
|
|
|
|
"match_presence_out) "
|
|
|
|
"values (%(ID)d, %(SType)s, %(SValue)s, %(SAction)s,"
|
|
|
|
" %(Order)d, %(MatchAll)b, %(MatchIQ)b,"
|
|
|
|
" %(MatchMessage)b, %(MatchPresenceIn)b,"
|
2016-10-24 13:42:33 +02:00
|
|
|
" %(MatchPresenceOut)b);")
|
2016-05-04 20:01:05 +02:00
|
|
|
|| {SType, SValue, SAction, Order,
|
|
|
|
MatchAll, MatchIQ,
|
|
|
|
MatchMessage, MatchPresenceIn,
|
|
|
|
MatchPresenceOut} <- RItems]
|
2021-05-10 11:37:59 +02:00
|
|
|
end
|
2016-04-14 13:16:32 +02:00
|
|
|
end,
|
|
|
|
Lists);
|
|
|
|
(_Host, _R) ->
|
|
|
|
[]
|
|
|
|
end}].
|
|
|
|
|
|
|
|
get_id() ->
|
|
|
|
ID = get(id),
|
|
|
|
put(id, ID + 1),
|
|
|
|
ID + 1.
|
|
|
|
|
2016-11-22 14:48:01 +01:00
|
|
|
import(_) ->
|
|
|
|
ok.
|
2016-04-14 13:16:32 +02:00
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% Internal functions
|
|
|
|
%%%===================================================================
|
2017-05-20 21:36:32 +02:00
|
|
|
transaction(LServer, F) ->
|
|
|
|
case ejabberd_sql:sql_transaction(LServer, F) of
|
|
|
|
{atomic, Res} -> Res;
|
|
|
|
{aborted, _Reason} -> {error, db_failure}
|
|
|
|
end.
|
|
|
|
|
2016-04-14 13:16:32 +02:00
|
|
|
raw_to_item({SType, SValue, SAction, Order, MatchAll,
|
|
|
|
MatchIQ, MatchMessage, MatchPresenceIn,
|
|
|
|
MatchPresenceOut} = Row) ->
|
|
|
|
try
|
|
|
|
{Type, Value} = case SType of
|
|
|
|
<<"n">> -> {none, none};
|
|
|
|
<<"j">> ->
|
2017-02-26 08:07:12 +01:00
|
|
|
JID = jid:decode(SValue),
|
|
|
|
{jid, jid:tolower(JID)};
|
2016-04-14 13:16:32 +02:00
|
|
|
<<"g">> -> {group, SValue};
|
|
|
|
<<"s">> ->
|
|
|
|
case SValue of
|
|
|
|
<<"none">> -> {subscription, none};
|
|
|
|
<<"both">> -> {subscription, both};
|
|
|
|
<<"from">> -> {subscription, from};
|
|
|
|
<<"to">> -> {subscription, to}
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
Action = case SAction of
|
|
|
|
<<"a">> -> allow;
|
|
|
|
<<"d">> -> deny
|
|
|
|
end,
|
|
|
|
[#listitem{type = Type, value = Value, action = Action,
|
|
|
|
order = Order, match_all = MatchAll, match_iq = MatchIQ,
|
|
|
|
match_message = MatchMessage,
|
|
|
|
match_presence_in = MatchPresenceIn,
|
|
|
|
match_presence_out = MatchPresenceOut}]
|
|
|
|
catch _:_ ->
|
2019-06-24 19:32:34 +02:00
|
|
|
?WARNING_MSG("Failed to parse row: ~p", [Row]),
|
2016-04-14 13:16:32 +02:00
|
|
|
[]
|
|
|
|
end.
|
|
|
|
|
|
|
|
item_to_raw(#listitem{type = Type, value = Value,
|
|
|
|
action = Action, order = Order, match_all = MatchAll,
|
|
|
|
match_iq = MatchIQ, match_message = MatchMessage,
|
|
|
|
match_presence_in = MatchPresenceIn,
|
|
|
|
match_presence_out = MatchPresenceOut}) ->
|
|
|
|
{SType, SValue} = case Type of
|
|
|
|
none -> {<<"n">>, <<"">>};
|
2017-02-26 08:07:12 +01:00
|
|
|
jid -> {<<"j">>, jid:encode(Value)};
|
2016-05-04 20:01:05 +02:00
|
|
|
group -> {<<"g">>, Value};
|
2016-04-14 13:16:32 +02:00
|
|
|
subscription ->
|
|
|
|
case Value of
|
|
|
|
none -> {<<"s">>, <<"none">>};
|
|
|
|
both -> {<<"s">>, <<"both">>};
|
|
|
|
from -> {<<"s">>, <<"from">>};
|
|
|
|
to -> {<<"s">>, <<"to">>}
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
SAction = case Action of
|
|
|
|
allow -> <<"a">>;
|
|
|
|
deny -> <<"d">>
|
|
|
|
end,
|
|
|
|
{SType, SValue, SAction, Order, MatchAll, MatchIQ,
|
|
|
|
MatchMessage, MatchPresenceIn, MatchPresenceOut}.
|
|
|
|
|
2017-05-20 21:36:32 +02:00
|
|
|
get_default_privacy_list(LUser, LServer) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
ejabberd_sql:sql_query(
|
|
|
|
LServer,
|
|
|
|
?SQL("select @(name)s from privacy_default_list "
|
2017-11-02 15:03:30 +01:00
|
|
|
"where username=%(LUser)s and %(LServer)H")).
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2017-11-02 15:03:30 +01:00
|
|
|
get_default_privacy_list_t(LUser, LServer) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
ejabberd_sql:sql_query_t(
|
|
|
|
?SQL("select @(name)s from privacy_default_list "
|
2017-11-02 15:03:30 +01:00
|
|
|
"where username=%(LUser)s and %(LServer)H")).
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2017-05-20 21:36:32 +02:00
|
|
|
get_privacy_list_names(LUser, LServer) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
ejabberd_sql:sql_query(
|
|
|
|
LServer,
|
|
|
|
?SQL("select @(name)s from privacy_list"
|
2017-11-02 15:03:30 +01:00
|
|
|
" where username=%(LUser)s and %(LServer)H")).
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2017-11-02 15:03:30 +01:00
|
|
|
get_privacy_list_names_t(LUser, LServer) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
ejabberd_sql:sql_query_t(
|
|
|
|
?SQL("select @(name)s from privacy_list"
|
2017-11-02 15:03:30 +01:00
|
|
|
" where username=%(LUser)s and %(LServer)H")).
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2017-11-02 15:03:30 +01:00
|
|
|
get_privacy_list_id_t(LUser, LServer, Name) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
ejabberd_sql:sql_query_t(
|
|
|
|
?SQL("select @(id)d from privacy_list"
|
2017-11-02 15:03:30 +01:00
|
|
|
" where username=%(LUser)s and %(LServer)H and name=%(Name)s")).
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2017-05-20 21:36:32 +02:00
|
|
|
get_privacy_list_data(LUser, LServer, Name) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
ejabberd_sql:sql_query(
|
|
|
|
LServer,
|
|
|
|
?SQL("select @(t)s, @(value)s, @(action)s, @(ord)d, @(match_all)b, "
|
|
|
|
"@(match_iq)b, @(match_message)b, @(match_presence_in)b, "
|
|
|
|
"@(match_presence_out)b from privacy_list_data "
|
|
|
|
"where id ="
|
|
|
|
" (select id from privacy_list"
|
2017-11-02 15:03:30 +01:00
|
|
|
" where username=%(LUser)s and %(LServer)H and name=%(Name)s) "
|
2017-05-23 11:25:13 +02:00
|
|
|
"order by ord")).
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2017-11-02 15:03:30 +01:00
|
|
|
set_default_privacy_list(LUser, LServer, Name) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
?SQL_UPSERT_T(
|
|
|
|
"privacy_default_list",
|
|
|
|
["!username=%(LUser)s",
|
2017-11-02 15:03:30 +01:00
|
|
|
"!server_host=%(LServer)s",
|
2017-05-23 11:25:13 +02:00
|
|
|
"name=%(Name)s"]).
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2017-05-20 21:36:32 +02:00
|
|
|
unset_default_privacy_list(LUser, LServer) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
case ejabberd_sql:sql_query(
|
|
|
|
LServer,
|
|
|
|
?SQL("delete from privacy_default_list"
|
2017-11-02 15:03:30 +01:00
|
|
|
" where username=%(LUser)s and %(LServer)H")) of
|
2017-05-20 21:36:32 +02:00
|
|
|
{updated, _} -> ok;
|
|
|
|
Err -> Err
|
|
|
|
end.
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2017-11-02 15:03:30 +01:00
|
|
|
remove_privacy_list_t(LUser, LServer, Name) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
case ejabberd_sql:sql_query_t(
|
|
|
|
?SQL("delete from privacy_list where"
|
2017-11-02 15:03:30 +01:00
|
|
|
" username=%(LUser)s and %(LServer)H and name=%(Name)s")) of
|
2017-05-20 21:36:32 +02:00
|
|
|
{updated, 0} -> {error, notfound};
|
|
|
|
{updated, _} -> ok;
|
|
|
|
Err -> Err
|
|
|
|
end.
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2017-11-02 15:03:30 +01:00
|
|
|
add_privacy_list(LUser, LServer, Name) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
ejabberd_sql:sql_query_t(
|
2017-11-02 15:03:30 +01:00
|
|
|
?SQL_INSERT(
|
|
|
|
"privacy_list",
|
|
|
|
["username=%(LUser)s",
|
|
|
|
"server_host=%(LServer)s",
|
|
|
|
"name=%(Name)s"])).
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2023-04-20 10:55:21 +02:00
|
|
|
set_privacy_list_new(ID, RItems) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
lists:foreach(
|
2023-04-20 10:55:21 +02:00
|
|
|
fun({SType, SValue, SAction, Order, MatchAll, MatchIQ,
|
|
|
|
MatchMessage, MatchPresenceIn, MatchPresenceOut}) ->
|
|
|
|
ejabberd_sql:sql_query_t(
|
|
|
|
?SQL("insert into privacy_list_data(id, t, "
|
|
|
|
"value, action, ord, match_all, match_iq, "
|
|
|
|
"match_message, match_presence_in, match_presence_out) "
|
|
|
|
"values (%(ID)d, %(SType)s, %(SValue)s, %(SAction)s,"
|
|
|
|
" %(Order)d, %(MatchAll)b, %(MatchIQ)b,"
|
|
|
|
" %(MatchMessage)b, %(MatchPresenceIn)b,"
|
|
|
|
" %(MatchPresenceOut)b)"))
|
|
|
|
end,
|
|
|
|
RItems).
|
|
|
|
|
2023-05-02 11:43:18 +02:00
|
|
|
calculate_difference(List1, List2) ->
|
|
|
|
Set1 = gb_sets:from_list(List1),
|
|
|
|
Set2 = gb_sets:from_list(List2),
|
2023-05-02 15:59:40 +02:00
|
|
|
{gb_sets:to_list(gb_sets:subtract(Set1, Set2)),
|
|
|
|
gb_sets:to_list(gb_sets:subtract(Set2, Set1))}.
|
2023-05-02 11:43:18 +02:00
|
|
|
|
2023-04-20 10:55:21 +02:00
|
|
|
set_privacy_list(ID, RItems) ->
|
|
|
|
case ejabberd_sql:sql_query_t(
|
|
|
|
?SQL("select @(t)s, @(value)s, @(action)s, @(ord)d, @(match_all)b, "
|
|
|
|
"@(match_iq)b, @(match_message)b, @(match_presence_in)b, "
|
|
|
|
"@(match_presence_out)b from privacy_list_data "
|
|
|
|
"where id=%(ID)d")) of
|
|
|
|
{selected, ExistingItems} ->
|
2023-05-02 11:43:18 +02:00
|
|
|
{ToAdd2, ToDelete2} = calculate_difference(RItems, ExistingItems),
|
|
|
|
ToAdd3 = if
|
|
|
|
ToDelete2 /= [] ->
|
|
|
|
ejabberd_sql:sql_query_t(
|
|
|
|
?SQL("delete from privacy_list_data where id=%(ID)d")),
|
|
|
|
RItems;
|
|
|
|
true ->
|
|
|
|
ToAdd2
|
|
|
|
end,
|
2023-04-20 10:55:21 +02:00
|
|
|
lists:foreach(
|
|
|
|
fun({SType, SValue, SAction, Order, MatchAll, MatchIQ,
|
|
|
|
MatchMessage, MatchPresenceIn, MatchPresenceOut}) ->
|
|
|
|
ejabberd_sql:sql_query_t(
|
|
|
|
?SQL("insert into privacy_list_data(id, t, "
|
|
|
|
"value, action, ord, match_all, match_iq, "
|
|
|
|
"match_message, match_presence_in, match_presence_out) "
|
|
|
|
"values (%(ID)d, %(SType)s, %(SValue)s, %(SAction)s,"
|
|
|
|
" %(Order)d, %(MatchAll)b, %(MatchIQ)b,"
|
|
|
|
" %(MatchMessage)b, %(MatchPresenceIn)b,"
|
|
|
|
" %(MatchPresenceOut)b)"))
|
|
|
|
end,
|
|
|
|
ToAdd3);
|
|
|
|
Err ->
|
|
|
|
Err
|
|
|
|
end.
|
2016-04-14 13:16:32 +02:00
|
|
|
|
2017-05-20 21:36:32 +02:00
|
|
|
del_privacy_lists(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 privacy_list where username=%(LUser)s and %(LServer)H")) of
|
2017-05-23 11:25:13 +02:00
|
|
|
{updated, _} ->
|
|
|
|
case ejabberd_sql:sql_query(
|
|
|
|
LServer,
|
|
|
|
?SQL("delete from privacy_default_list "
|
2017-11-02 15:03:30 +01:00
|
|
|
"where username=%(LUser)s and %(LServer)H")) of
|
2017-05-23 11:25:13 +02:00
|
|
|
{updated, _} -> ok;
|
|
|
|
Err -> Err
|
|
|
|
end;
|
|
|
|
Err ->
|
|
|
|
Err
|
2017-05-20 21:36:32 +02:00
|
|
|
end.
|