2007-12-01 06:16:30 +01: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/.
|
|
|
|
%%%
|
|
|
|
%%% 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.
|
|
|
|
%%%
|
2008-07-31 13:18:49 +02:00
|
|
|
%%% The Initial Developer of the Original Code is ProcessOne.
|
2010-01-12 17:11:32 +01:00
|
|
|
%%% Portions created by ProcessOne are Copyright 2006-2010, ProcessOne
|
2007-12-24 14:57:53 +01:00
|
|
|
%%% All Rights Reserved.''
|
2010-01-12 17:11:32 +01:00
|
|
|
%%% This software is copyright 2006-2010, ProcessOne.
|
2007-12-01 06:16:30 +01:00
|
|
|
%%%
|
2007-12-24 14:57:53 +01:00
|
|
|
%%%
|
2010-01-12 17:11:32 +01:00
|
|
|
%%% @copyright 2006-2010 ProcessOne
|
2007-12-01 06:16:30 +01:00
|
|
|
%%% @author Christophe romain <christophe.romain@process-one.net>
|
|
|
|
%%% [http://www.process-one.net/]
|
|
|
|
%%% @version {@vsn}, {@date} {@time}
|
|
|
|
%%% @end
|
|
|
|
%%% ====================================================================
|
|
|
|
|
|
|
|
-module(node_club).
|
|
|
|
-author('christophe.romain@process-one.net').
|
|
|
|
|
|
|
|
-include("pubsub.hrl").
|
|
|
|
-include("jlib.hrl").
|
|
|
|
|
|
|
|
-behaviour(gen_pubsub_node).
|
|
|
|
|
|
|
|
%% Note on function definition
|
|
|
|
%% included is all defined plugin function
|
|
|
|
%% it's possible not to define some function at all
|
|
|
|
%% in that case, warning will be generated at compilation
|
|
|
|
%% and function call will fail,
|
2009-05-29 00:30:43 +02:00
|
|
|
%% then mod_pubsub will call function from node_hometree
|
2007-12-01 06:16:30 +01:00
|
|
|
%% (this makes code cleaner, but execution a little bit longer)
|
|
|
|
|
|
|
|
%% API definition
|
|
|
|
-export([init/3, terminate/2,
|
|
|
|
options/0, features/0,
|
|
|
|
create_node_permission/6,
|
2009-04-30 07:18:06 +02:00
|
|
|
create_node/2,
|
|
|
|
delete_node/1,
|
|
|
|
purge_node/2,
|
2009-05-29 04:14:07 +02:00
|
|
|
subscribe_node/8,
|
2009-04-30 07:18:06 +02:00
|
|
|
unsubscribe_node/4,
|
|
|
|
publish_item/6,
|
2009-05-07 02:09:02 +02:00
|
|
|
delete_item/4,
|
2009-04-30 07:18:06 +02:00
|
|
|
remove_extra_items/3,
|
2007-12-01 06:16:30 +01:00
|
|
|
get_entity_affiliations/2,
|
2009-04-30 07:18:06 +02:00
|
|
|
get_node_affiliations/1,
|
|
|
|
get_affiliation/2,
|
|
|
|
set_affiliation/3,
|
2007-12-01 06:16:30 +01:00
|
|
|
get_entity_subscriptions/2,
|
2009-04-30 07:18:06 +02:00
|
|
|
get_node_subscriptions/1,
|
2009-05-29 04:14:07 +02:00
|
|
|
get_subscriptions/2,
|
2009-07-17 11:29:11 +02:00
|
|
|
set_subscriptions/4,
|
2009-07-20 10:53:56 +02:00
|
|
|
get_pending_nodes/2,
|
2009-04-30 07:18:06 +02:00
|
|
|
get_states/1,
|
|
|
|
get_state/2,
|
2007-12-01 06:16:30 +01:00
|
|
|
set_state/1,
|
2009-04-30 07:18:06 +02:00
|
|
|
get_items/6,
|
|
|
|
get_items/2,
|
|
|
|
get_item/7,
|
|
|
|
get_item/2,
|
2008-02-06 19:04:23 +01:00
|
|
|
set_item/1,
|
2009-10-20 17:03:07 +02:00
|
|
|
get_item_name/3,
|
|
|
|
node_to_path/1,
|
|
|
|
path_to_node/1
|
2007-12-01 06:16:30 +01:00
|
|
|
]).
|
|
|
|
|
|
|
|
|
|
|
|
init(Host, ServerHost, Opts) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:init(Host, ServerHost, Opts).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
terminate(Host, ServerHost) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:terminate(Host, ServerHost).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
options() ->
|
2009-06-15 15:45:40 +02:00
|
|
|
[{deliver_payloads, true},
|
2007-12-01 06:16:30 +01:00
|
|
|
{notify_config, false},
|
|
|
|
{notify_delete, false},
|
|
|
|
{notify_retract, true},
|
2010-03-05 11:11:44 +01:00
|
|
|
{purge_offline, false},
|
2007-12-01 06:16:30 +01:00
|
|
|
{persist_items, true},
|
2009-09-23 17:56:06 +02:00
|
|
|
{max_items, ?MAXITEMS},
|
2007-12-01 06:16:30 +01:00
|
|
|
{subscribe, true},
|
|
|
|
{access_model, authorize},
|
2008-01-25 10:24:10 +01:00
|
|
|
{roster_groups_allowed, []},
|
2007-12-01 06:16:30 +01:00
|
|
|
{publish_model, publishers},
|
2009-09-24 21:28:43 +02:00
|
|
|
{notification_type, headline},
|
2007-12-01 06:16:30 +01:00
|
|
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
|
|
|
{send_last_published_item, never},
|
|
|
|
{deliver_notifications, true},
|
|
|
|
{presence_based_delivery, false}].
|
|
|
|
|
|
|
|
features() ->
|
|
|
|
["create-nodes",
|
|
|
|
"delete-nodes",
|
2009-02-09 14:37:58 +01:00
|
|
|
"delete-items",
|
2007-12-01 06:16:30 +01:00
|
|
|
"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) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:create_node_permission(Host, ServerHost, Node, ParentNode, Owner, Access).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
create_node(NodeId, Owner) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:create_node(NodeId, Owner).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
delete_node(Removed) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:delete_node(Removed).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-05-29 04:14:07 +02:00
|
|
|
subscribe_node(NodeId, Sender, Subscriber, AccessModel, SendLast, PresenceSubscription, RosterGroup, Options) ->
|
|
|
|
node_hometree:subscribe_node(NodeId, Sender, Subscriber, AccessModel, SendLast, PresenceSubscription, RosterGroup, Options).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
unsubscribe_node(NodeId, Sender, Subscriber, SubID) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:unsubscribe_node(NodeId, Sender, Subscriber, SubID).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
publish_item(NodeId, Publisher, Model, MaxItems, ItemId, Payload) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:publish_item(NodeId, Publisher, Model, MaxItems, ItemId, Payload).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
remove_extra_items(NodeId, MaxItems, ItemIds) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:remove_extra_items(NodeId, MaxItems, ItemIds).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-05-07 02:09:02 +02:00
|
|
|
delete_item(NodeId, Publisher, PublishModel, ItemId) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:delete_item(NodeId, Publisher, PublishModel, ItemId).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
purge_node(NodeId, Owner) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:purge_node(NodeId, Owner).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
get_entity_affiliations(Host, Owner) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:get_entity_affiliations(Host, Owner).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
get_node_affiliations(NodeId) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:get_node_affiliations(NodeId).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
get_affiliation(NodeId, Owner) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:get_affiliation(NodeId, Owner).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
set_affiliation(NodeId, Owner, Affiliation) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:set_affiliation(NodeId, Owner, Affiliation).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
get_entity_subscriptions(Host, Owner) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:get_entity_subscriptions(Host, Owner).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
get_node_subscriptions(NodeId) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:get_node_subscriptions(NodeId).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-05-29 04:14:07 +02:00
|
|
|
get_subscriptions(NodeId, Owner) ->
|
|
|
|
node_hometree:get_subscriptions(NodeId, Owner).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-07-17 11:29:11 +02:00
|
|
|
set_subscriptions(NodeId, Owner, Subscription, SubId) ->
|
|
|
|
node_hometree:set_subscriptions(NodeId, Owner, Subscription, SubId).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-07-20 10:53:56 +02:00
|
|
|
get_pending_nodes(Host, Owner) ->
|
|
|
|
node_hometree:get_pending_nodes(Host, Owner).
|
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
get_states(NodeId) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:get_states(NodeId).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
get_state(NodeId, JID) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:get_state(NodeId, JID).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
set_state(State) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:set_state(State).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
get_items(NodeId, From) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:get_items(NodeId, From).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
get_items(NodeId, JID, AccessModel, PresenceSubscription, RosterGroup, SubId) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:get_items(NodeId, JID, AccessModel, PresenceSubscription, RosterGroup, SubId).
|
2008-07-03 11:56:31 +02:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
get_item(NodeId, ItemId) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:get_item(NodeId, ItemId).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
get_item(NodeId, ItemId, JID, AccessModel, PresenceSubscription, RosterGroup, SubId) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:get_item(NodeId, ItemId, JID, AccessModel, PresenceSubscription, RosterGroup, SubId).
|
2008-07-03 11:56:31 +02:00
|
|
|
|
2007-12-01 06:16:30 +01:00
|
|
|
set_item(Item) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:set_item(Item).
|
2008-02-06 19:04:23 +01:00
|
|
|
|
|
|
|
get_item_name(Host, Node, Id) ->
|
2009-05-29 00:30:43 +02:00
|
|
|
node_hometree:get_item_name(Host, Node, Id).
|
2009-10-20 17:03:07 +02:00
|
|
|
|
|
|
|
node_to_path(Node) ->
|
|
|
|
node_flat:node_to_path(Node).
|
|
|
|
|
|
|
|
path_to_node(Path) ->
|
|
|
|
node_flat:path_to_node(Path).
|
|
|
|
|