2015-12-15 16:11:29 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
2016-04-20 11:27:32 +02:00
|
|
|
%%% File : node_pep_sql.erl
|
2015-12-15 16:11:29 +01:00
|
|
|
%%% Author : Christophe Romain <christophe.romain@process-one.net>
|
|
|
|
%%% Purpose : Standard PubSub PEP plugin with ODBC backend
|
|
|
|
%%% Created : 1 Dec 2007 by Christophe Romain <christophe.romain@process-one.net>
|
2015-04-08 17:12:05 +02:00
|
|
|
%%%
|
2013-03-14 10:33:02 +01:00
|
|
|
%%%
|
2020-01-28 13:34:02 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2020 ProcessOne
|
2015-04-08 17:12:05 +02:00
|
|
|
%%%
|
2015-12-15 16:11:29 +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.
|
2013-03-14 10:33:02 +01:00
|
|
|
%%%
|
2015-12-15 16:11:29 +01:00
|
|
|
%%% 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-08-07 10:26:47 +02:00
|
|
|
%%%
|
2015-12-15 16:11:29 +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.,
|
|
|
|
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
%%%
|
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
%%% @doc The module <strong>{@module}</strong> is the pep PubSub plugin.
|
|
|
|
%%% <p>PubSub plugin nodes are using the {@link gen_pubsub_node} behaviour.</p>
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2016-04-20 11:27:32 +02:00
|
|
|
-module(node_pep_sql).
|
2015-04-08 17:12:05 +02:00
|
|
|
-behaviour(gen_pubsub_node).
|
2009-08-07 10:26:47 +02:00
|
|
|
-author('christophe.romain@process-one.net').
|
|
|
|
|
2017-11-15 11:16:15 +01:00
|
|
|
|
2009-08-07 10:26:47 +02:00
|
|
|
-include("pubsub.hrl").
|
2017-11-15 11:16:15 +01:00
|
|
|
-include("ejabberd_sql_pt.hrl").
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
-export([init/3, terminate/2, options/0, features/0,
|
2015-04-08 17:12:05 +02:00
|
|
|
create_node_permission/6, create_node/2, delete_node/1,
|
|
|
|
purge_node/2, subscribe_node/8, unsubscribe_node/4,
|
2015-07-01 17:18:32 +02:00
|
|
|
publish_item/7, delete_item/4, remove_extra_items/3,
|
2015-04-08 17:12:05 +02:00
|
|
|
get_entity_affiliations/2, get_node_affiliations/1,
|
|
|
|
get_affiliation/2, set_affiliation/3,
|
|
|
|
get_entity_subscriptions/2, get_node_subscriptions/1,
|
|
|
|
get_subscriptions/2, set_subscriptions/4,
|
|
|
|
get_pending_nodes/2, get_states/1, get_state/2,
|
|
|
|
set_state/1, get_items/7, get_items/3, get_item/7,
|
|
|
|
get_item/2, set_item/1, get_item_name/3, node_to_path/1,
|
2016-07-06 13:58:48 +02:00
|
|
|
path_to_node/1, depends/3,
|
2019-07-31 12:20:38 +02:00
|
|
|
get_entity_subscriptions_for_send_last/2, get_last_items/3,
|
|
|
|
get_only_item/2]).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2016-07-06 13:58:48 +02:00
|
|
|
depends(_Host, _ServerHost, _Opts) ->
|
|
|
|
[{mod_caps, hard}].
|
|
|
|
|
2009-08-07 10:26:47 +02:00
|
|
|
init(Host, ServerHost, Opts) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:init(Host, ServerHost, Opts),
|
2009-08-07 10:26:47 +02:00
|
|
|
ok.
|
|
|
|
|
|
|
|
terminate(Host, ServerHost) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:terminate(Host, ServerHost),
|
2015-10-07 00:06:58 +02:00
|
|
|
ok.
|
2009-08-07 10:26:47 +02:00
|
|
|
|
|
|
|
options() ->
|
2016-04-20 11:27:32 +02:00
|
|
|
[{sql, true}, {rsm, true} | node_pep:options()].
|
2015-04-08 17:12:05 +02:00
|
|
|
|
2009-08-07 10:26:47 +02:00
|
|
|
features() ->
|
2015-04-08 17:12:05 +02:00
|
|
|
[<<"rsm">> | node_pep:features()].
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
create_node_permission(Host, ServerHost, Node, ParentNode, Owner, Access) ->
|
|
|
|
node_pep:create_node_permission(Host, ServerHost, Node, ParentNode, Owner, Access).
|
|
|
|
|
|
|
|
create_node(Nidx, Owner) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:create_node(Nidx, Owner),
|
2015-04-08 17:12:05 +02:00
|
|
|
{result, {default, broadcast}}.
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
delete_node(Nodes) ->
|
2018-11-12 12:54:53 +01:00
|
|
|
node_flat_sql:delete_node(Nodes).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
subscribe_node(Nidx, Sender, Subscriber, AccessModel,
|
|
|
|
SendLast, PresenceSubscription, RosterGroup, Options) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:subscribe_node(Nidx, Sender, Subscriber, AccessModel, SendLast,
|
2015-04-08 17:12:05 +02:00
|
|
|
PresenceSubscription, RosterGroup, Options).
|
|
|
|
|
|
|
|
|
|
|
|
unsubscribe_node(Nidx, Sender, Subscriber, SubId) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
case node_flat_sql:unsubscribe_node(Nidx, Sender, Subscriber, SubId) of
|
2015-04-08 17:12:05 +02:00
|
|
|
{error, Error} -> {error, Error};
|
|
|
|
{result, _} -> {result, []}
|
2009-08-07 10:26:47 +02:00
|
|
|
end.
|
|
|
|
|
2015-07-01 17:18:32 +02:00
|
|
|
publish_item(Nidx, Publisher, Model, MaxItems, ItemId, Payload, PubOpts) ->
|
|
|
|
node_flat_sql:publish_item(Nidx, Publisher, Model, MaxItems, ItemId,
|
|
|
|
Payload, PubOpts).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
remove_extra_items(Nidx, MaxItems, ItemIds) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:remove_extra_items(Nidx, MaxItems, ItemIds).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
delete_item(Nidx, Publisher, PublishModel, ItemId) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:delete_item(Nidx, Publisher, PublishModel, ItemId).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
purge_node(Nidx, Owner) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:purge_node(Nidx, Owner).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
2009-08-07 10:26:47 +02:00
|
|
|
get_entity_affiliations(_Host, Owner) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
OwnerKey = jid:tolower(jid:remove_resource(Owner)),
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_entity_affiliations(OwnerKey, Owner).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_node_affiliations(Nidx) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_node_affiliations(Nidx).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
get_affiliation(Nidx, Owner) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_affiliation(Nidx, Owner).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
set_affiliation(Nidx, Owner, Affiliation) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:set_affiliation(Nidx, Owner, Affiliation).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
|
|
|
get_entity_subscriptions(_Host, Owner) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
SubKey = jid:tolower(Owner),
|
|
|
|
GenKey = jid:remove_resource(SubKey),
|
2017-11-15 11:16:15 +01:00
|
|
|
HLike = <<"%@", (node_flat_sql:encode_host_like(element(2, SubKey)))/binary>>,
|
|
|
|
GJ = node_flat_sql:encode_jid(GenKey),
|
2009-08-07 10:26:47 +02:00
|
|
|
Query = case SubKey of
|
2017-11-15 11:16:15 +01:00
|
|
|
GenKey ->
|
|
|
|
GJLike = <<(node_flat_sql:encode_jid_like(GenKey))/binary, "/%">>,
|
2017-11-16 11:38:04 +01:00
|
|
|
?SQL("select @(host)s, @(node)s, @(plugin)s, @(i.nodeid)d, @(jid)s, @(subscriptions)s "
|
2017-11-15 11:16:15 +01:00
|
|
|
"from pubsub_state i, pubsub_node n "
|
|
|
|
"where i.nodeid = n.nodeid and "
|
2020-01-13 01:36:52 +01:00
|
|
|
"(jid=%(GJ)s or jid like %(GJLike)s %ESCAPE) and host like %(HLike)s %ESCAPE");
|
2017-11-15 11:16:15 +01:00
|
|
|
_ ->
|
|
|
|
SJ = node_flat_sql:encode_jid(SubKey),
|
2017-11-16 11:38:04 +01:00
|
|
|
?SQL("select @(host)s, @(node)s, @(plugin)s, @(i.nodeid)d, @(jid)s, @(subscriptions)s "
|
2017-11-15 11:16:15 +01:00
|
|
|
"from pubsub_state i, pubsub_node n "
|
|
|
|
"where i.nodeid = n.nodeid and "
|
2020-01-13 01:36:52 +01:00
|
|
|
"jid in (%(SJ)s,%(GJ)s) and host like %(HLike)s %ESCAPE")
|
2017-11-15 11:16:15 +01:00
|
|
|
end,
|
|
|
|
{result,
|
|
|
|
case ejabberd_sql:sql_query_t(Query) of
|
|
|
|
{selected, RItems} ->
|
|
|
|
lists:foldl(
|
|
|
|
fun({H, N, T, I, J, S}, Acc) ->
|
|
|
|
O = node_flat_sql:decode_jid(H),
|
|
|
|
Node = nodetree_tree_sql:raw_to_node(O, {N, <<"">>, T, I}),
|
|
|
|
Jid = node_flat_sql:decode_jid(J),
|
|
|
|
lists:foldl(
|
|
|
|
fun({Sub, SubId}, Acc2) ->
|
|
|
|
[{Node, Sub, SubId, Jid} | Acc2]
|
|
|
|
end, Acc, node_flat_sql:decode_subscriptions(S))
|
|
|
|
end, [], RItems);
|
|
|
|
_ ->
|
|
|
|
[]
|
|
|
|
end}.
|
2009-08-07 10:26:47 +02:00
|
|
|
|
|
|
|
get_entity_subscriptions_for_send_last(_Host, Owner) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
SubKey = jid:tolower(Owner),
|
|
|
|
GenKey = jid:remove_resource(SubKey),
|
2017-11-15 11:16:15 +01:00
|
|
|
HLike = <<"%@", (node_flat_sql:encode_host_like(element(2, SubKey)))/binary>>,
|
|
|
|
GJ = node_flat_sql:encode_jid(GenKey),
|
2009-08-07 10:26:47 +02:00
|
|
|
Query = case SubKey of
|
2017-11-15 11:16:15 +01:00
|
|
|
GenKey ->
|
|
|
|
GJLike = <<(node_flat_sql:encode_jid_like(GenKey))/binary, "/%">>,
|
2017-11-16 11:38:04 +01:00
|
|
|
?SQL("select @(host)s, @(node)s, @(plugin)s, @(i.nodeid)d, @(jid)s, @(subscriptions)s "
|
2017-11-15 11:16:15 +01:00
|
|
|
"from pubsub_state i, pubsub_node n, pubsub_node_option o "
|
|
|
|
"where i.nodeid = n.nodeid and n.nodeid = o.nodeid and "
|
|
|
|
"name='send_last_published_item' and val='on_sub_and_presence' and "
|
2020-01-13 01:36:52 +01:00
|
|
|
"(jid=%(GJ)s or jid like %(GJLike)s %ESCAPE) and host like %(HLike)s %ESCAPE");
|
2017-11-15 11:16:15 +01:00
|
|
|
_ ->
|
|
|
|
SJ = node_flat_sql:encode_jid(SubKey),
|
2017-11-16 11:38:04 +01:00
|
|
|
?SQL("select @(host)s, @(node)s, @(plugin)s, @(i.nodeid)d, @(jid)s, @(subscriptions)s "
|
2017-11-15 11:16:15 +01:00
|
|
|
"from pubsub_state i, pubsub_node n, pubsub_node_option o "
|
|
|
|
"where i.nodeid = n.nodeid and n.nodeid = o.nodeid and "
|
|
|
|
"name='send_last_published_item' and val='on_sub_and_presence' and "
|
2020-01-13 01:36:52 +01:00
|
|
|
"jid in (%(SJ)s,%(GJ)s) and host like %(HLike)s %ESCAPE")
|
2017-11-15 11:16:15 +01:00
|
|
|
end,
|
|
|
|
{result,
|
|
|
|
case ejabberd_sql:sql_query_t(Query) of
|
|
|
|
{selected, RItems} ->
|
|
|
|
lists:foldl(
|
|
|
|
fun ({H, N, T, I, J, S}, Acc) ->
|
|
|
|
O = node_flat_sql:decode_jid(H),
|
|
|
|
Node = nodetree_tree_sql:raw_to_node(O, {N, <<"">>, T, I}),
|
|
|
|
Jid = node_flat_sql:decode_jid(J),
|
|
|
|
lists:foldl(
|
|
|
|
fun ({Sub, SubId}, Acc2) ->
|
|
|
|
[{Node, Sub, SubId, Jid}| Acc2]
|
|
|
|
end, Acc, node_flat_sql:decode_subscriptions(S))
|
|
|
|
end, [], RItems);
|
|
|
|
_ ->
|
|
|
|
[]
|
|
|
|
end}.
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_node_subscriptions(Nidx) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_node_subscriptions(Nidx).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_subscriptions(Nidx, Owner) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_subscriptions(Nidx, Owner).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
set_subscriptions(Nidx, Owner, Subscription, SubId) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:set_subscriptions(Nidx, Owner, Subscription, SubId).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
|
|
|
get_pending_nodes(Host, Owner) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_pending_nodes(Host, Owner).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_states(Nidx) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_states(Nidx).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_state(Nidx, JID) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_state(Nidx, JID).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
set_state(State) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:set_state(State).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_items(Nidx, From, RSM) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_items(Nidx, From, RSM).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_items(Nidx, JID, AccessModel, PresenceSubscription, RosterGroup, SubId, RSM) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_items(Nidx, JID, AccessModel,
|
2015-04-08 17:12:05 +02:00
|
|
|
PresenceSubscription, RosterGroup, SubId, RSM).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_last_items(Nidx, JID, Count) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_last_items(Nidx, JID, Count).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2019-07-31 12:20:38 +02:00
|
|
|
get_only_item(Nidx, JID) ->
|
|
|
|
node_flat_sql:get_only_item(Nidx, JID).
|
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_item(Nidx, ItemId) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_item(Nidx, ItemId).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_item(Nidx, ItemId, JID, AccessModel, PresenceSubscription, RosterGroup, SubId) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_item(Nidx, ItemId, JID, AccessModel,
|
2015-04-08 17:12:05 +02:00
|
|
|
PresenceSubscription, RosterGroup, SubId).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
set_item(Item) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:set_item(Item).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
|
|
|
get_item_name(Host, Node, Id) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:get_item_name(Host, Node, Id).
|
2009-08-07 10:26:47 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
node_to_path(Node) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:node_to_path(Node).
|
2009-10-20 17:03:07 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
path_to_node(Path) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
node_flat_sql:path_to_node(Path).
|