]> granicus.if.org Git - ejabberd/commitdiff
add condition inclusion of pep in disco identity (EJAB-564)
authorChristophe Romain <christophe.romain@process-one.net>
Wed, 2 Apr 2008 09:06:28 +0000 (09:06 +0000)
committerChristophe Romain <christophe.romain@process-one.net>
Wed, 2 Apr 2008 09:06:28 +0000 (09:06 +0000)
SVN Revision: 1268

ChangeLog
src/mod_pubsub/mod_pubsub.erl

index 5ff93d548f50f309becf98bea6ee5108cb166c2a..5652fee77ef9579d84f388cb53977254da916711 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-02  Christophe Romain <christophe.romain@process-one.net>
+
+       * src/mod_pubsub/mod_pubsub.erl: add condition inclusion of pep in
+       disco identity (EJAB-564)
+
 2008-04-01  Badlop  <badlop@process-one.net>
 
        * doc/guide.tex: Updated command line parameters, epmd section
index 56fdb627b22fb451e99b5751081f60451f6d904e..43bd7d9ac198c9449c21a465d1a06d33856b0cb2 100644 (file)
                host,
                access,
                nodetree = ?STDTREE,
-               plugins = [?STDNODE,?PEPNODE]}).
+               plugins = [?STDNODE]}).
 
 %%====================================================================
 %% API
@@ -208,7 +208,7 @@ init_plugins(Host, ServerHost, Opts) ->
                              gen_mod:get_opt(nodetree, Opts, ?STDTREE)),
     ?INFO_MSG("** tree plugin is ~p",[TreePlugin]),
     TreePlugin:init(Host, ServerHost, Opts),
-    Plugins = lists:usort(gen_mod:get_opt(plugins, Opts, []) ++ [?STDNODE,?PEPNODE]),
+    Plugins = lists:usort(gen_mod:get_opt(plugins, Opts, []) ++ [?STDNODE]),
     lists:foreach(fun(Name) ->
                          ?INFO_MSG("** init ~s plugin",[Name]),
                          Plugin = list_to_atom(?PLUGIN_PREFIX ++ Name),
@@ -303,8 +303,15 @@ update_database(Host) ->
 %% disco hooks handling functions
 %%
 
-disco_local_identity(Acc, _From, _To, [], _Lang) ->
-    Acc ++ [{xmlelement, "identity", [{"category", "pubsub"}, {"type", "pep"}], []} ];
+identity(Host) ->
+    Identity = case lists:member(?PEPNODE, plugins(Host)) of
+    true -> [{"category", "pubsub"}, {"type", "pep"}];
+    false -> [{"category", "pubsub"}]
+    end,
+    {xmlelement, "identity", Identity, []}.
+
+disco_local_identity(Acc, _From, To, [], _Lang) ->
+    Acc ++ [identity(To#jid.lserver)];
 disco_local_identity(Acc, _From, _To, _Node, _Lang) ->
     Acc.
 
@@ -325,8 +332,8 @@ disco_local_items(Acc, _From, _To, [], _Lang) ->
 disco_local_items(Acc, _From, _To, _Node, _Lang) ->
     Acc.
 
-disco_sm_identity(Acc, _From, _To, [], _Lang) ->
-    Acc ++ [{xmlelement, "identity", [{"category", "pubsub"}, {"type", "pep"}], []} ];
+disco_sm_identity(Acc, _From, To, [], _Lang) ->
+    Acc ++ [identity(To#jid.lserver)];
 disco_sm_identity(Acc, From, To, Node, _Lang) ->
     LOwner = jlib:jid_tolower(jlib:jid_remove_resource(To)),
     Acc ++ case node_disco_identity(LOwner, From, Node) of
@@ -829,11 +836,7 @@ iq_get_vcard(Lang) ->
                            "\nCopyright (c) 2004-2008 Process-One"}]}].
 
 iq_pubsub(Host, ServerHost, From, IQType, SubEl, Lang) ->
-    Plugins = case ets:lookup(gen_mod:get_module_proc(ServerHost, pubsub_state), plugins) of
-                 [{plugins, PL}] -> PL;
-                 _ -> [?STDNODE,?PEPNODE]
-             end,
-    iq_pubsub(Host, ServerHost, From, IQType, SubEl, Lang, all, Plugins).
+    iq_pubsub(Host, ServerHost, From, IQType, SubEl, Lang, all, plugins(ServerHost)).
 
 iq_pubsub(Host, ServerHost, From, IQType, SubEl, _Lang, Access, Plugins) ->
     {xmlelement, _, _, SubEls} = SubEl,
@@ -1474,10 +1477,7 @@ publish_item(Host, ServerHost, Node, Publisher, ItemId, Payload) ->
                {_User, _Server, _Resource} -> 
                    ?PEPNODE;
                _ -> 
-                   case ets:lookup(gen_mod:get_module_proc(ServerHost, pubsub_state), plugins) of
-                       [{plugins, PL}] -> hd(PL);
-                       _ -> ?STDNODE
-                   end
+                   hd(plugins(ServerHost))
            end,
            case lists:member("auto-create", features(Type)) of
                true ->
@@ -2598,6 +2598,12 @@ set_xoption([_ | _Opts], _NewOpts) ->
 
 %%%% plugin handling
 
+plugins(Host) ->
+    case ets:lookup(gen_mod:get_module_proc(Host, pubsub_state), plugins) of
+    [{plugins, PL}] -> PL;
+    _ -> [?STDNODE]
+    end.
+
 features() ->
        [
         %"access-authorize",   % OPTIONAL
@@ -2649,8 +2655,10 @@ features(Type) ->
                      {'EXIT', {undef, _}} -> [];
                      Result -> Result
                  end.
-features(_Host, []) ->
-    lists:usort(features(?STDNODE) ++ features(?PEPNODE));
+features(Host, []) ->
+    lists:usort(lists:foldl(fun(Plugin, Acc) ->
+       Acc ++ features(Plugin)
+    end, [], plugins(Host)));
 features(Host, Node) ->
     {result, Features} = node_action(Host, Node, features, []),
     lists:usort(features() ++ Features).