2015-12-15 16:11:29 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : node_mb.erl
|
|
|
|
%%% Author : Eric Cestari <ecestari@process-one.net>
|
|
|
|
%%% Purpose : PEP microglobing experimentation
|
|
|
|
%%% Created : 25 Sep 2008 by Eric Cestari <ecestari@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.
|
2008-09-30 10:58:37 +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.
|
|
|
|
%%%
|
|
|
|
%%%----------------------------------------------------------------------
|
2008-09-30 10:58:37 +02:00
|
|
|
|
2008-09-25 19:26:06 +02:00
|
|
|
-module(node_mb).
|
2015-04-08 17:12:05 +02:00
|
|
|
-behaviour(gen_pubsub_node).
|
2015-12-15 16:11:29 +01:00
|
|
|
-author('ecestari@process-one.net').
|
2008-09-25 19:26:06 +02:00
|
|
|
|
|
|
|
-include("pubsub.hrl").
|
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
%%% @doc The module <strong>{@module}</strong> is the pep microblog PubSub plugin.
|
2015-06-19 23:13:36 +02:00
|
|
|
%%% <p>To be used, mod_pubsub must be configured:<pre>
|
|
|
|
%%% mod_pubsub:
|
|
|
|
%%% access_createnode: pubsub_createnode
|
|
|
|
%%% ignore_pep_from_offline: false
|
|
|
|
%%% plugins:
|
|
|
|
%%% - "flat"
|
|
|
|
%%% - "pep" # Requires mod_caps.
|
2016-09-06 00:08:43 +02:00
|
|
|
%%% - "mb"
|
2015-06-19 23:13:36 +02:00
|
|
|
%%% pep_mapping:
|
|
|
|
%%% "urn:xmpp:microblog:0": "mb"
|
|
|
|
%%% </pre></p>
|
2015-04-08 17:12:05 +02:00
|
|
|
%%% <p>PubSub plugin nodes are using the {@link gen_pubsub_node} behaviour.</p>
|
2008-09-25 19:26:06 +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,
|
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,
|
|
|
|
path_to_node/1]).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
|
|
|
init(Host, ServerHost, Opts) ->
|
|
|
|
node_pep:init(Host, ServerHost, Opts).
|
|
|
|
|
|
|
|
terminate(Host, ServerHost) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
node_pep:terminate(Host, ServerHost), ok.
|
2008-09-25 19:26:06 +02: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},
|
|
|
|
{persist_items, true},
|
|
|
|
{max_items, ?MAXITEMS},
|
|
|
|
{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}].
|
2008-09-25 19:26:06 +02: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">>,
|
2017-12-20 11:54:12 +01:00
|
|
|
<<"multi-items">>,
|
2015-04-08 17:12:05 +02:00
|
|
|
<<"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">>].
|
|
|
|
|
|
|
|
create_node_permission(Host, ServerHost, Node, ParentNode, Owner, Access) ->
|
|
|
|
node_pep:create_node_permission(Host, ServerHost, Node, ParentNode, Owner, Access).
|
|
|
|
|
|
|
|
create_node(Nidx, Owner) ->
|
|
|
|
node_pep:create_node(Nidx, Owner).
|
|
|
|
|
|
|
|
delete_node(Removed) ->
|
|
|
|
node_pep:delete_node(Removed).
|
|
|
|
|
|
|
|
subscribe_node(Nidx, Sender, Subscriber, AccessModel,
|
|
|
|
SendLast, PresenceSubscription, RosterGroup, Options) ->
|
|
|
|
node_pep:subscribe_node(Nidx, Sender, Subscriber, AccessModel, SendLast,
|
|
|
|
PresenceSubscription, RosterGroup, Options).
|
|
|
|
|
|
|
|
unsubscribe_node(Nidx, Sender, Subscriber, SubId) ->
|
|
|
|
node_pep:unsubscribe_node(Nidx, Sender, Subscriber, SubId).
|
|
|
|
|
2015-07-01 17:18:32 +02:00
|
|
|
publish_item(Nidx, Publisher, Model, MaxItems, ItemId, Payload, PubOpts) ->
|
|
|
|
node_pep:publish_item(Nidx, Publisher, Model, MaxItems, ItemId,
|
|
|
|
Payload, PubOpts).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
remove_extra_items(Nidx, MaxItems, ItemIds) ->
|
|
|
|
node_pep:remove_extra_items(Nidx, MaxItems, ItemIds).
|
|
|
|
|
|
|
|
delete_item(Nidx, Publisher, PublishModel, ItemId) ->
|
|
|
|
node_pep:delete_item(Nidx, Publisher, PublishModel, ItemId).
|
|
|
|
|
|
|
|
purge_node(Nidx, Owner) ->
|
|
|
|
node_pep:purge_node(Nidx, Owner).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
|
|
|
get_entity_affiliations(Host, Owner) ->
|
|
|
|
node_pep:get_entity_affiliations(Host, Owner).
|
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_node_affiliations(Nidx) ->
|
|
|
|
node_pep:get_node_affiliations(Nidx).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_affiliation(Nidx, Owner) ->
|
|
|
|
node_pep:get_affiliation(Nidx, Owner).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
set_affiliation(Nidx, Owner, Affiliation) ->
|
|
|
|
node_pep:set_affiliation(Nidx, Owner, Affiliation).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
get_entity_subscriptions(Host, Owner) ->
|
2008-09-25 19:26:06 +02:00
|
|
|
node_pep:get_entity_subscriptions(Host, Owner).
|
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_node_subscriptions(Nidx) ->
|
|
|
|
node_pep:get_node_subscriptions(Nidx).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_subscriptions(Nidx, Owner) ->
|
|
|
|
node_pep:get_subscriptions(Nidx, Owner).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
set_subscriptions(Nidx, Owner, Subscription, SubId) ->
|
|
|
|
node_pep:set_subscriptions(Nidx, Owner, Subscription, SubId).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
2009-07-20 10:53:56 +02:00
|
|
|
get_pending_nodes(Host, Owner) ->
|
2016-09-06 00:30:46 +02:00
|
|
|
node_pep:get_pending_nodes(Host, Owner).
|
2009-07-20 10:53:56 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_states(Nidx) ->
|
|
|
|
node_pep:get_states(Nidx).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_state(Nidx, JID) ->
|
|
|
|
node_pep:get_state(Nidx, JID).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
set_state(State) ->
|
|
|
|
node_pep:set_state(State).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_items(Nidx, From, RSM) ->
|
|
|
|
node_pep:get_items(Nidx, From, RSM).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_items(Nidx, JID, AccessModel, PresenceSubscription, RosterGroup, SubId, RSM) ->
|
|
|
|
node_pep:get_items(Nidx, JID, AccessModel, PresenceSubscription, RosterGroup, SubId, RSM).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
2017-03-30 14:26:30 +02:00
|
|
|
get_last_items(Nidx, From, Count) ->
|
|
|
|
node_pep:get_last_items(Nidx, From, Count).
|
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_item(Nidx, ItemId) ->
|
|
|
|
node_pep:get_item(Nidx, ItemId).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_item(Nidx, ItemId, JID, AccessModel, PresenceSubscription, RosterGroup, SubId) ->
|
|
|
|
node_pep:get_item(Nidx, ItemId, JID, AccessModel,
|
|
|
|
PresenceSubscription, RosterGroup, SubId).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
set_item(Item) ->
|
|
|
|
node_pep:set_item(Item).
|
2008-09-25 19:26:06 +02:00
|
|
|
|
|
|
|
get_item_name(Host, Node, Id) ->
|
|
|
|
node_pep:get_item_name(Host, Node, Id).
|
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
node_to_path(Node) ->
|
|
|
|
node_pep: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_pep:path_to_node(Path).
|