2015-04-08 17:12:05 +02:00
|
|
|
%% ====================================================================
|
2007-12-24 14:57:53 +01:00
|
|
|
%%% ``The contents of this file are subject to the Erlang Public License,
|
|
|
|
%%% Version 1.1, (the "License"); you may not use this file except in
|
|
|
|
%%% compliance with the License. You should have received a copy of the
|
|
|
|
%%% Erlang Public License along with this software. If not, it can be
|
|
|
|
%%% retrieved via the world wide web at http://www.erlang.org/.
|
2015-04-08 17:12:05 +02:00
|
|
|
%%%
|
2013-03-14 10:33:02 +01:00
|
|
|
%%%
|
2007-12-24 14:57:53 +01:00
|
|
|
%%% Software distributed under the License is distributed on an "AS IS"
|
|
|
|
%%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
|
|
|
|
%%% the License for the specific language governing rights and limitations
|
|
|
|
%%% under the License.
|
2015-04-08 17:12:05 +02:00
|
|
|
%%%
|
2013-03-14 10:33:02 +01:00
|
|
|
%%%
|
2008-07-31 13:18:49 +02:00
|
|
|
%%% The Initial Developer of the Original Code is ProcessOne.
|
2015-01-08 17:34:43 +01:00
|
|
|
%%% Portions created by ProcessOne are Copyright 2006-2015, ProcessOne
|
2007-12-24 14:57:53 +01:00
|
|
|
%%% All Rights Reserved.''
|
2015-01-08 17:34:43 +01:00
|
|
|
%%% This software is copyright 2006-2015, ProcessOne.
|
2007-12-01 06:16:30 +01:00
|
|
|
%%%
|
2015-01-08 17:34:43 +01:00
|
|
|
%%% @copyright 2006-2015 ProcessOne
|
2015-04-08 17:12:05 +02:00
|
|
|
%%% @author Christophe Romain <christophe.romain@process-one.net>
|
2007-12-01 06:16:30 +01:00
|
|
|
%%% [http://www.process-one.net/]
|
|
|
|
%%% @version {@vsn}, {@date} {@time}
|
|
|
|
%%% @end
|
|
|
|
%%% ====================================================================
|
|
|
|
|
|
|
|
-module(node_club).
|
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").
|
|
|
|
-include("jlib.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,
|
|
|
|
publish_item/6, delete_item/4, remove_extra_items/3,
|
|
|
|
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,
|
|
|
|
path_to_node/1]).
|
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
|
|
|
|
|
|
|
terminate(Host, ServerHost) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:terminate(Host, ServerHost).
|
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, true},
|
|
|
|
{purge_offline, false},
|
|
|
|
{persist_items, true},
|
|
|
|
{max_items, ?MAXITEMS},
|
|
|
|
{subscribe, true},
|
|
|
|
{access_model, authorize},
|
|
|
|
{roster_groups_allowed, []},
|
|
|
|
{publish_model, publishers},
|
|
|
|
{notification_type, headline},
|
|
|
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
|
|
|
{send_last_published_item, never},
|
|
|
|
{deliver_notifications, true},
|
|
|
|
{presence_based_delivery, false}].
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
features() ->
|
2015-04-08 17:12:05 +02:00
|
|
|
[<<"create-nodes">>,
|
|
|
|
<<"delete-nodes">>,
|
|
|
|
<<"delete-items">>,
|
|
|
|
<<"instant-nodes">>,
|
|
|
|
<<"outcast-affiliation">>,
|
|
|
|
<<"persistent-items">>,
|
|
|
|
<<"publish">>,
|
|
|
|
<<"purge-nodes">>,
|
|
|
|
<<"retract-items">>,
|
|
|
|
<<"retrieve-affiliations">>,
|
|
|
|
<<"retrieve-items">>,
|
|
|
|
<<"retrieve-subscriptions">>,
|
|
|
|
<<"subscribe">>,
|
|
|
|
<<"subscription-notifications">>].
|
|
|
|
|
|
|
|
create_node_permission(Host, ServerHost, Node, ParentNode, Owner, Access) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:create_node_permission(Host, ServerHost, Node, ParentNode, Owner, Access).
|
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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
delete_node(Removed) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:delete_node(Removed).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
unsubscribe_node(Nidx, Sender, Subscriber, SubId) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:unsubscribe_node(Nidx, Sender, Subscriber, SubId).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
publish_item(Nidx, Publisher, Model, MaxItems, ItemId, Payload) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:publish_item(Nidx, Publisher, Model, MaxItems, ItemId, Payload).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
get_entity_affiliations(Host, Owner) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_entity_affiliations(Host, Owner).
|
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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
get_entity_subscriptions(Host, Owner) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:get_entity_subscriptions(Host, Owner).
|
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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
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).
|
2007-12-01 06:16:30 +01: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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
set_state(State) ->
|
2015-07-22 10:37:26 +02:00
|
|
|
node_flat:set_state(State).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
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).
|
2008-07-03 11:56:31 +02:00
|
|
|
|
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).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
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).
|
2008-07-03 11:56:31 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
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).
|
2009-10-20 17:03:07 +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).
|