2015-12-15 16:11:29 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : node_pep.erl
|
|
|
|
%%% Author : Christophe Romain <christophe.romain@process-one.net>
|
|
|
|
%%% Purpose : Standard PubSub PEP plugin
|
|
|
|
%%% 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
|
|
|
%%%
|
2018-01-05 21:18:58 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2018 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.
|
2007-12-01 06:16:30 +01: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>
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
-module(node_pep).
|
2015-04-08 17:12:05 +02:00
|
|
|
-behaviour(gen_pubsub_node).
|
2007-12-01 06:16:30 +01:00
|
|
|
-author('christophe.romain@process-one.net').
|
|
|
|
|
|
|
|
-include("pubsub.hrl").
|
|
|
|
|
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,
|
2017-03-30 14:26:30 +02:00
|
|
|
get_last_items/3,
|
2015-04-08 17:12:05 +02:00
|
|
|
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]).
|
|
|
|
|
|
|
|
depends(_Host, _ServerHost, _Opts) ->
|
|
|
|
[{mod_caps, hard}].
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
init(Host, ServerHost, Opts) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:init(Host, ServerHost, Opts),
|
2007-12-01 06:16:30 +01:00
|
|
|
ok.
|
|
|
|
|
|
|
|
terminate(Host, ServerHost) ->
|
2015-10-07 00:06:58 +02:00
|
|
|
node_flat:terminate(Host, ServerHost),
|
|
|
|
ok.
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
options() ->
|
2015-04-08 17:12:05 +02:00
|
|
|
[{deliver_payloads, true},
|
|
|
|
{notify_config, false},
|
|
|
|
{notify_delete, false},
|
|
|
|
{notify_retract, false},
|
|
|
|
{purge_offline, false},
|
2015-06-18 12:06:29 +02:00
|
|
|
{persist_items, true},
|
2015-04-08 17:12:05 +02:00
|
|
|
{max_items, 1},
|
|
|
|
{subscribe, true},
|
|
|
|
{access_model, presence},
|
|
|
|
{roster_groups_allowed, []},
|
|
|
|
{publish_model, publishers},
|
|
|
|
{notification_type, headline},
|
|
|
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
|
|
|
{send_last_published_item, on_sub_and_presence},
|
|
|
|
{deliver_notifications, true},
|
2016-04-21 23:47:07 +02:00
|
|
|
{presence_based_delivery, true},
|
|
|
|
{itemreply, none}].
|
2015-04-08 17:12:05 +02:00
|
|
|
|
2007-12-01 06:16:30 +01:00
|
|
|
features() ->
|
2015-04-08 17:12:05 +02:00
|
|
|
[<<"create-nodes">>,
|
|
|
|
<<"auto-create">>,
|
|
|
|
<<"auto-subscribe">>,
|
|
|
|
<<"delete-nodes">>,
|
|
|
|
<<"delete-items">>,
|
|
|
|
<<"filtered-notifications">>,
|
|
|
|
<<"modify-affiliations">>,
|
|
|
|
<<"outcast-affiliation">>,
|
|
|
|
<<"persistent-items">>,
|
|
|
|
<<"publish">>,
|
2017-12-12 01:04:14 +01:00
|
|
|
<<"publish-options">>,
|
2015-04-08 17:12:05 +02:00
|
|
|
<<"purge-nodes">>,
|
|
|
|
<<"retract-items">>,
|
|
|
|
<<"retrieve-affiliations">>,
|
|
|
|
<<"retrieve-items">>,
|
|
|
|
<<"retrieve-subscriptions">>,
|
|
|
|
<<"subscribe">>].
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2008-07-23 01:41:44 +02:00
|
|
|
create_node_permission(Host, ServerHost, _Node, _ParentNode, Owner, Access) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
LOwner = jid:tolower(Owner),
|
2009-02-27 04:09:00 +01:00
|
|
|
{User, Server, _Resource} = LOwner,
|
2008-07-23 01:41:44 +02:00
|
|
|
Allowed = case LOwner of
|
2015-04-08 17:12:05 +02:00
|
|
|
{<<"">>, Host, <<"">>} ->
|
|
|
|
true; % pubsub service always allowed
|
|
|
|
_ ->
|
|
|
|
case acl:match_rule(ServerHost, Access, LOwner) of
|
|
|
|
allow ->
|
|
|
|
case Host of
|
|
|
|
{User, Server, _} -> true;
|
|
|
|
_ -> false
|
|
|
|
end;
|
2013-03-14 10:33:02 +01:00
|
|
|
_ ->
|
2015-04-08 17:12:05 +02:00
|
|
|
false
|
|
|
|
end
|
|
|
|
end,
|
2008-07-23 01:41:44 +02:00
|
|
|
{result, Allowed}.
|
2009-02-27 04:09:00 +01:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
create_node(Nidx, Owner) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:create_node(Nidx, Owner).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
delete_node(Nodes) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
{result, {_, _, Result}} = node_flat:delete_node(Nodes),
|
2017-08-01 15:40:34 +02:00
|
|
|
{result, {default, Result}}.
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
subscribe_node(Nidx, Sender, Subscriber, AccessModel,
|
|
|
|
SendLast, PresenceSubscription, RosterGroup, Options) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:subscribe_node(Nidx, Sender, Subscriber, AccessModel, SendLast,
|
2015-04-08 17:12:05 +02:00
|
|
|
PresenceSubscription, RosterGroup, Options).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
unsubscribe_node(Nidx, Sender, Subscriber, SubId) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
case node_flat:unsubscribe_node(Nidx, Sender, Subscriber, SubId) of
|
2015-04-08 17:12:05 +02:00
|
|
|
{error, Error} -> {error, Error};
|
|
|
|
{result, _} -> {result, []}
|
2007-12-01 06:16:30 +01:00
|
|
|
end.
|
|
|
|
|
2015-07-01 17:18:32 +02:00
|
|
|
publish_item(Nidx, Publisher, Model, MaxItems, ItemId, Payload, PubOpts) ->
|
|
|
|
node_flat:publish_item(Nidx, Publisher, Model, MaxItems, ItemId,
|
|
|
|
Payload, PubOpts).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
remove_extra_items(Nidx, MaxItems, ItemIds) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:remove_extra_items(Nidx, MaxItems, ItemIds).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
delete_item(Nidx, Publisher, PublishModel, ItemId) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:delete_item(Nidx, Publisher, PublishModel, ItemId).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
purge_node(Nidx, Owner) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:purge_node(Nidx, Owner).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
get_entity_affiliations(Host, Owner) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
{_, D, _} = SubKey = jid:tolower(Owner),
|
|
|
|
SubKey = jid:tolower(Owner),
|
|
|
|
GenKey = jid:remove_resource(SubKey),
|
2015-04-08 17:12:05 +02:00
|
|
|
States = mnesia:match_object(#pubsub_state{stateid = {GenKey, '_'}, _ = '_'}),
|
|
|
|
NodeTree = mod_pubsub:tree(Host),
|
|
|
|
Reply = lists:foldl(fun (#pubsub_state{stateid = {_, N}, affiliation = A}, Acc) ->
|
|
|
|
case NodeTree:get_node(N) of
|
|
|
|
#pubsub_node{nodeid = {{_, D, _}, _}} = Node -> [{Node, A} | Acc];
|
|
|
|
_ -> Acc
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
[], States),
|
2009-05-26 23:50:13 +02:00
|
|
|
{result, Reply}.
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_node_affiliations(Nidx) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_node_affiliations(Nidx).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
get_affiliation(Nidx, Owner) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_affiliation(Nidx, Owner).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
set_affiliation(Nidx, Owner, Affiliation) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:set_affiliation(Nidx, Owner, Affiliation).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
get_entity_subscriptions(Host, Owner) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
{U, D, _} = SubKey = jid:tolower(Owner),
|
|
|
|
GenKey = jid:remove_resource(SubKey),
|
2009-05-19 23:59:15 +02:00
|
|
|
States = case SubKey of
|
2015-04-08 17:12:05 +02:00
|
|
|
GenKey ->
|
|
|
|
mnesia:match_object(#pubsub_state{stateid = {{U, D, '_'}, '_'}, _ = '_'});
|
|
|
|
_ ->
|
|
|
|
mnesia:match_object(#pubsub_state{stateid = {GenKey, '_'}, _ = '_'})
|
|
|
|
++
|
|
|
|
mnesia:match_object(#pubsub_state{stateid = {SubKey, '_'}, _ = '_'})
|
|
|
|
end,
|
|
|
|
NodeTree = mod_pubsub:tree(Host),
|
|
|
|
Reply = lists:foldl(fun (#pubsub_state{stateid = {J, N}, subscriptions = Ss}, Acc) ->
|
|
|
|
case NodeTree:get_node(N) of
|
|
|
|
#pubsub_node{nodeid = {{_, D, _}, _}} = Node ->
|
|
|
|
lists:foldl(fun
|
|
|
|
({subscribed, SubId}, Acc2) ->
|
|
|
|
[{Node, subscribed, SubId, J} | Acc2];
|
|
|
|
({pending, _SubId}, Acc2) ->
|
|
|
|
[{Node, pending, J} | Acc2];
|
|
|
|
(S, Acc2) ->
|
|
|
|
[{Node, S, J} | Acc2]
|
|
|
|
end,
|
|
|
|
Acc, Ss);
|
|
|
|
_ ->
|
|
|
|
Acc
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
[], States),
|
2009-05-19 23:59:15 +02:00
|
|
|
{result, Reply}.
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_node_subscriptions(Nidx) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_node_subscriptions(Nidx).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
get_subscriptions(Nidx, Owner) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_subscriptions(Nidx, Owner).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
set_subscriptions(Nidx, Owner, Subscription, SubId) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:set_subscriptions(Nidx, Owner, Subscription, SubId).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
2009-07-20 10:53:56 +02:00
|
|
|
get_pending_nodes(Host, Owner) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_pending_nodes(Host, Owner).
|
2009-07-20 10:53:56 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_states(Nidx) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_states(Nidx).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
get_state(Nidx, JID) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_state(Nidx, JID).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
set_state(State) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:set_state(State).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
get_items(Nidx, From, RSM) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_items(Nidx, From, RSM).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
get_items(Nidx, JID, AccessModel, PresenceSubscription, RosterGroup, SubId, RSM) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_items(Nidx, JID, AccessModel,
|
2015-04-08 17:12:05 +02:00
|
|
|
PresenceSubscription, RosterGroup, SubId, RSM).
|
|
|
|
|
2017-03-30 14:26:30 +02:00
|
|
|
get_last_items(Nidx, From, Count) ->
|
|
|
|
node_flat:get_last_items(Nidx, From, Count).
|
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_item(Nidx, ItemId) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_item(Nidx, ItemId).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
get_item(Nidx, ItemId, JID, AccessModel, PresenceSubscription, RosterGroup, SubId) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_item(Nidx, ItemId, JID, AccessModel,
|
2015-04-08 17:12:05 +02:00
|
|
|
PresenceSubscription, RosterGroup, SubId).
|
|
|
|
|
|
|
|
set_item(Item) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:set_item(Item).
|
2008-02-06 19:04:23 +01:00
|
|
|
|
|
|
|
get_item_name(Host, Node, Id) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_item_name(Host, Node, Id).
|
2008-06-29 13:34:30 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
node_to_path(Node) ->
|
|
|
|
node_flat:node_to_path(Node).
|
2009-10-20 17:03:07 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
path_to_node(Path) ->
|
|
|
|
node_flat:path_to_node(Path).
|