2015-12-15 16:11:29 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : nodetree_virtual.erl
|
|
|
|
%%% Author : Christophe Romain <christophe.romain@process-one.net>
|
|
|
|
%%% Purpose : Standard node tree plugin using no storage backend
|
|
|
|
%%% Created : 1 Dec 2007 by Christophe Romain <christophe.romain@process-one.net>
|
2013-03-14 10:33:02 +01:00
|
|
|
%%%
|
|
|
|
%%%
|
2017-01-02 21:41:53 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2017 ProcessOne
|
2007-12-01 06:16:30 +01: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.
|
2007-12-24 14:57:53 +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.
|
|
|
|
%%%
|
|
|
|
%%% 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.
|
|
|
|
%%%
|
|
|
|
%%%----------------------------------------------------------------------
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
%%% @doc The module <strong>{@module}</strong> is the PubSub node tree plugin that
|
2015-04-08 17:12:05 +02:00
|
|
|
%%% allow virtual nodes handling. This prevent storage of nodes.
|
2007-12-01 06:16:30 +01:00
|
|
|
%%% <p>PubSub node tree plugins are using the {@link gen_nodetree} behaviour.</p>
|
2009-08-17 19:16:43 +02:00
|
|
|
%%% <p>This plugin development is still a work in progress. Due to optimizations in
|
2009-05-19 23:59:15 +02:00
|
|
|
%%% mod_pubsub, this plugin can not work anymore without altering functioning.
|
|
|
|
%%% Please, send us comments, feedback and improvements.</p>
|
2007-12-01 06:16:30 +01:00
|
|
|
|
|
|
|
-module(nodetree_virtual).
|
2015-04-08 17:12:05 +02:00
|
|
|
-behaviour(gen_pubsub_nodetree).
|
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, set_node/1,
|
2015-04-08 17:12:05 +02:00
|
|
|
get_node/3, get_node/2, get_node/1, get_nodes/2,
|
|
|
|
get_nodes/1, get_parentnodes/3, get_parentnodes_tree/3,
|
|
|
|
get_subnodes/3, get_subnodes_tree/3, create_node/6,
|
|
|
|
delete_node/2]).
|
|
|
|
|
|
|
|
init(_Host, _ServerHost, _Opts) ->
|
|
|
|
ok.
|
|
|
|
|
|
|
|
terminate(_Host, _ServerHost) ->
|
|
|
|
ok.
|
|
|
|
|
|
|
|
options() ->
|
|
|
|
[{virtual_tree, true}].
|
|
|
|
|
|
|
|
set_node(_Node) ->
|
|
|
|
ok.
|
|
|
|
|
|
|
|
get_node(Host, Node, _From) ->
|
|
|
|
get_node(Host, Node).
|
|
|
|
|
|
|
|
get_node(Host, Node) ->
|
2015-12-17 10:16:17 +01:00
|
|
|
Nidx = nodeidx(Host, Node),
|
|
|
|
node_record(Host, Node, Nidx).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
get_node(Nidx) ->
|
|
|
|
{Host, Node} = nodeid(Nidx),
|
2015-12-17 10:16:17 +01:00
|
|
|
node_record(Host, Node, Nidx).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
get_nodes(Host, _From) ->
|
|
|
|
get_nodes(Host).
|
|
|
|
|
|
|
|
get_nodes(_Host) ->
|
|
|
|
[].
|
|
|
|
|
|
|
|
get_parentnodes(_Host, _Node, _From) ->
|
|
|
|
[].
|
|
|
|
|
|
|
|
get_parentnodes_tree(Host, Node, From) ->
|
2015-12-17 10:16:17 +01:00
|
|
|
[{0, [get_node(Host, Node, From)]}].
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
get_subnodes(Host, Node, _From) ->
|
|
|
|
get_subnodes(Host, Node).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
get_subnodes(_Host, _Node) ->
|
|
|
|
[].
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2009-04-30 07:18:06 +02:00
|
|
|
get_subnodes_tree(Host, Node, _From) ->
|
|
|
|
get_subnodes_tree(Host, Node).
|
2015-04-08 17:12:05 +02:00
|
|
|
|
|
|
|
get_subnodes_tree(_Host, _Node) ->
|
|
|
|
[].
|
|
|
|
|
|
|
|
create_node(Host, Node, _Type, _Owner, _Options, _Parents) ->
|
2015-12-17 10:16:17 +01:00
|
|
|
{error, {virtual, nodeidx(Host, Node)}}.
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2015-04-08 17:12:05 +02:00
|
|
|
delete_node(Host, Node) ->
|
|
|
|
[get_node(Host, Node)].
|
|
|
|
|
|
|
|
%% internal helper
|
|
|
|
|
2015-12-17 10:16:17 +01:00
|
|
|
node_record({U,S,R}, Node, Nidx) ->
|
|
|
|
Host = mod_pubsub:host(S),
|
|
|
|
Type = <<"pep">>,
|
|
|
|
Module = mod_pubsub:plugin(Host, Type),
|
|
|
|
#pubsub_node{nodeid = {{U,S,R},Node}, id = Nidx, type = Type,
|
|
|
|
owners = [{U,S,R}],
|
|
|
|
options = Module:options()};
|
|
|
|
node_record(Host, Node, Nidx) ->
|
|
|
|
[Type|_] = mod_pubsub:plugins(Host),
|
|
|
|
Module = mod_pubsub:plugin(Host, Type),
|
|
|
|
#pubsub_node{nodeid = {Host, Node}, id = Nidx, type = Type,
|
|
|
|
owners = [{<<"">>, Host, <<"">>}],
|
|
|
|
options = Module:options()}.
|
|
|
|
|
|
|
|
nodeidx({U,S,R}, Node) ->
|
2017-02-26 08:07:12 +01:00
|
|
|
JID = jid:encode(jid:make(U,S,R)),
|
2015-12-17 10:16:17 +01:00
|
|
|
<<JID/binary, ":", Node/binary>>;
|
|
|
|
nodeidx(Host, Node) ->
|
|
|
|
<<Host/binary, ":", Node/binary>>.
|
|
|
|
nodeid(Nidx) ->
|
|
|
|
[Head, Node] = binary:split(Nidx, <<":">>),
|
2017-02-26 08:07:12 +01:00
|
|
|
case jid:decode(Head) of
|
2015-12-17 10:16:17 +01:00
|
|
|
{jid,<<>>,Host,<<>>,_,_,_} -> {Host, Node};
|
|
|
|
{jid,U,S,R,_,_,_} -> {{U,S,R}, Node}
|
|
|
|
end.
|