mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
fix EJAB-1044 and EJAB-1055
SVN Revision: 2626
This commit is contained in:
parent
dc474cf9d5
commit
1c585e74bc
@ -47,7 +47,7 @@
|
|||||||
|
|
||||||
-module(mod_pubsub).
|
-module(mod_pubsub).
|
||||||
-author('christophe.romain@process-one.net').
|
-author('christophe.romain@process-one.net').
|
||||||
-version('1.12-06').
|
-version('1.13-0').
|
||||||
|
|
||||||
-behaviour(gen_server).
|
-behaviour(gen_server).
|
||||||
-behaviour(gen_mod).
|
-behaviour(gen_mod).
|
||||||
@ -474,7 +474,7 @@ send_loop(State) ->
|
|||||||
#pubsub_node{nodeid = {H, N}, type = Type, id = NodeId, options = Options} = Node,
|
#pubsub_node{nodeid = {H, N}, type = Type, id = NodeId, options = Options} = Node,
|
||||||
case get_option(Options, send_last_published_item) of
|
case get_option(Options, send_last_published_item) of
|
||||||
on_sub_and_presence ->
|
on_sub_and_presence ->
|
||||||
send_items(H, N, NodeId, Type, SubJID, last);
|
send_items(H, N, NodeId, Type, LJID, last);
|
||||||
_ ->
|
_ ->
|
||||||
ok
|
ok
|
||||||
end;
|
end;
|
||||||
@ -3030,10 +3030,14 @@ get_options_for_subs(NodeID, Subs) ->
|
|||||||
% {result, false}
|
% {result, false}
|
||||||
% end
|
% end
|
||||||
|
|
||||||
broadcast_stanza(Host, Node, _NodeId, _Type, NodeOptions, SubsByDepth, NotifyType, Stanza) ->
|
broadcast_stanza(Host, Node, _NodeId, _Type, NodeOptions, SubsByDepth, NotifyType, BaseStanza) ->
|
||||||
%AccessModel = get_option(NodeOptions, access_model),
|
NotificationType = get_option(NodeOptions, notification_type),
|
||||||
BroadcastAll = get_option(NodeOptions, broadcast_all_resources), %% XXX this is not standard, but usefull
|
BroadcastAll = get_option(NodeOptions, broadcast_all_resources), %% XXX this is not standard, but usefull
|
||||||
From = service_jid(Host),
|
From = service_jid(Host),
|
||||||
|
Stanza = case NotificationType of
|
||||||
|
normal -> BaseStanza;
|
||||||
|
MsgType -> add_message_type(BaseStanza, atom_to_list(MsgType))
|
||||||
|
end,
|
||||||
%% Handles explicit subscriptions
|
%% Handles explicit subscriptions
|
||||||
NodesByJID = subscribed_nodes_by_jid(NotifyType, SubsByDepth),
|
NodesByJID = subscribed_nodes_by_jid(NotifyType, SubsByDepth),
|
||||||
lists:foreach(fun ({LJID, Nodes}) ->
|
lists:foreach(fun ({LJID, Nodes}) ->
|
||||||
@ -3277,6 +3281,8 @@ get_configure_xfields(_Type, Options, Lang, Groups) ->
|
|||||||
?LISTM_CONFIG_FIELD("Roster groups allowed to subscribe", roster_groups_allowed, Groups),
|
?LISTM_CONFIG_FIELD("Roster groups allowed to subscribe", roster_groups_allowed, Groups),
|
||||||
?ALIST_CONFIG_FIELD("Specify the publisher model", publish_model,
|
?ALIST_CONFIG_FIELD("Specify the publisher model", publish_model,
|
||||||
[publishers, subscribers, open]),
|
[publishers, subscribers, open]),
|
||||||
|
?ALIST_CONFIG_FIELD("Specify the event message type", notification_type,
|
||||||
|
[headline, normal]),
|
||||||
?INTEGER_CONFIG_FIELD("Max payload size in bytes", max_payload_size),
|
?INTEGER_CONFIG_FIELD("Max payload size in bytes", max_payload_size),
|
||||||
?ALIST_CONFIG_FIELD("When to send the last published item", send_last_published_item,
|
?ALIST_CONFIG_FIELD("When to send the last published item", send_last_published_item,
|
||||||
[never, on_sub, on_sub_and_presence]),
|
[never, on_sub, on_sub_and_presence]),
|
||||||
@ -3408,6 +3414,8 @@ set_xoption(Host, [{"pubsub#access_model", [Val]} | Opts], NewOpts) ->
|
|||||||
?SET_ALIST_XOPT(access_model, Val, [open, authorize, presence, roster, whitelist]);
|
?SET_ALIST_XOPT(access_model, Val, [open, authorize, presence, roster, whitelist]);
|
||||||
set_xoption(Host, [{"pubsub#publish_model", [Val]} | Opts], NewOpts) ->
|
set_xoption(Host, [{"pubsub#publish_model", [Val]} | Opts], NewOpts) ->
|
||||||
?SET_ALIST_XOPT(publish_model, Val, [publishers, subscribers, open]);
|
?SET_ALIST_XOPT(publish_model, Val, [publishers, subscribers, open]);
|
||||||
|
set_xoption(Host, [{"pubsub#notification_type", [Val]} | Opts], NewOpts) ->
|
||||||
|
?SET_ALIST_XOPT(notification_type, Val, [headline, normal]);
|
||||||
set_xoption(Host, [{"pubsub#node_type", [Val]} | Opts], NewOpts) ->
|
set_xoption(Host, [{"pubsub#node_type", [Val]} | Opts], NewOpts) ->
|
||||||
?SET_ALIST_XOPT(node_type, Val, [leaf, collection]);
|
?SET_ALIST_XOPT(node_type, Val, [leaf, collection]);
|
||||||
set_xoption(Host, [{"pubsub#max_payload_size", [Val]} | Opts], NewOpts) ->
|
set_xoption(Host, [{"pubsub#max_payload_size", [Val]} | Opts], NewOpts) ->
|
||||||
@ -3670,6 +3678,11 @@ itemsEls(Items) ->
|
|||||||
{xmlelement, "item", itemAttr(ItemId), Payload}
|
{xmlelement, "item", itemAttr(ItemId), Payload}
|
||||||
end, Items).
|
end, Items).
|
||||||
|
|
||||||
|
add_message_type({xmlelement, "message", Attrs, Els}, Type) ->
|
||||||
|
{xmlelement, "message", [{"type", Type}|Attrs], Els};
|
||||||
|
add_message_type(XmlEl, _Type) ->
|
||||||
|
XmlEl.
|
||||||
|
|
||||||
add_headers({xmlelement, Name, Attrs, Els}, HeaderEls) ->
|
add_headers({xmlelement, Name, Attrs, Els}, HeaderEls) ->
|
||||||
HeaderEl = {xmlelement, "headers", [{"xmlns", ?NS_SHIM}], HeaderEls},
|
HeaderEl = {xmlelement, "headers", [{"xmlns", ?NS_SHIM}], HeaderEls},
|
||||||
{xmlelement, Name, Attrs, [HeaderEl | Els]}.
|
{xmlelement, Name, Attrs, [HeaderEl | Els]}.
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
|
|
||||||
-module(mod_pubsub_odbc).
|
-module(mod_pubsub_odbc).
|
||||||
-author('christophe.romain@process-one.net').
|
-author('christophe.romain@process-one.net').
|
||||||
-version('1.12-06').
|
-version('1.13-0').
|
||||||
|
|
||||||
-behaviour(gen_server).
|
-behaviour(gen_server).
|
||||||
-behaviour(gen_mod).
|
-behaviour(gen_mod).
|
||||||
@ -301,7 +301,7 @@ send_loop(State) ->
|
|||||||
fun({Node, subscribed, _, SubJID}) ->
|
fun({Node, subscribed, _, SubJID}) ->
|
||||||
if (SubJID == LJID) or (SubJID == BJID) ->
|
if (SubJID == LJID) or (SubJID == BJID) ->
|
||||||
#pubsub_node{nodeid = {H, N}, type = Type, id = NodeId} = Node,
|
#pubsub_node{nodeid = {H, N}, type = Type, id = NodeId} = Node,
|
||||||
send_items(H, N, NodeId, Type, SubJID, last);
|
send_items(H, N, NodeId, Type, LJID, last);
|
||||||
true ->
|
true ->
|
||||||
% resource not concerned about that subscription
|
% resource not concerned about that subscription
|
||||||
ok
|
ok
|
||||||
@ -2860,10 +2860,14 @@ get_options_for_subs(NodeID, Subs) ->
|
|||||||
% {result, false}
|
% {result, false}
|
||||||
% end
|
% end
|
||||||
|
|
||||||
broadcast_stanza(Host, Node, _NodeId, _Type, NodeOptions, SubsByDepth, NotifyType, Stanza) ->
|
broadcast_stanza(Host, Node, _NodeId, _Type, NodeOptions, SubsByDepth, NotifyType, BaseStanza) ->
|
||||||
%AccessModel = get_option(NodeOptions, access_model),
|
NotificationType = get_option(NodeOptions, notification_type),
|
||||||
BroadcastAll = get_option(NodeOptions, broadcast_all_resources), %% XXX this is not standard, but usefull
|
BroadcastAll = get_option(NodeOptions, broadcast_all_resources), %% XXX this is not standard, but usefull
|
||||||
From = service_jid(Host),
|
From = service_jid(Host),
|
||||||
|
Stanza = case NotificationType of
|
||||||
|
normal -> BaseStanza;
|
||||||
|
MsgType -> add_message_type(BaseStanza, atom_to_list(MsgType))
|
||||||
|
end,
|
||||||
%% Handles explicit subscriptions
|
%% Handles explicit subscriptions
|
||||||
NodesByJID = subscribed_nodes_by_jid(NotifyType, SubsByDepth),
|
NodesByJID = subscribed_nodes_by_jid(NotifyType, SubsByDepth),
|
||||||
lists:foreach(fun ({LJID, Nodes}) ->
|
lists:foreach(fun ({LJID, Nodes}) ->
|
||||||
@ -3131,6 +3135,8 @@ get_configure_xfields(_Type, Options, Lang, Groups) ->
|
|||||||
?LISTM_CONFIG_FIELD("Roster groups allowed to subscribe", roster_groups_allowed, Groups),
|
?LISTM_CONFIG_FIELD("Roster groups allowed to subscribe", roster_groups_allowed, Groups),
|
||||||
?ALIST_CONFIG_FIELD("Specify the publisher model", publish_model,
|
?ALIST_CONFIG_FIELD("Specify the publisher model", publish_model,
|
||||||
[publishers, subscribers, open]),
|
[publishers, subscribers, open]),
|
||||||
|
?ALIST_CONFIG_FIELD("Specify the event message type", notification_type,
|
||||||
|
[headline, normal]),
|
||||||
?INTEGER_CONFIG_FIELD("Max payload size in bytes", max_payload_size),
|
?INTEGER_CONFIG_FIELD("Max payload size in bytes", max_payload_size),
|
||||||
?ALIST_CONFIG_FIELD("When to send the last published item", send_last_published_item,
|
?ALIST_CONFIG_FIELD("When to send the last published item", send_last_published_item,
|
||||||
[never, on_sub, on_sub_and_presence]),
|
[never, on_sub, on_sub_and_presence]),
|
||||||
@ -3262,6 +3268,8 @@ set_xoption(Host, [{"pubsub#access_model", [Val]} | Opts], NewOpts) ->
|
|||||||
?SET_ALIST_XOPT(access_model, Val, [open, authorize, presence, roster, whitelist]);
|
?SET_ALIST_XOPT(access_model, Val, [open, authorize, presence, roster, whitelist]);
|
||||||
set_xoption(Host, [{"pubsub#publish_model", [Val]} | Opts], NewOpts) ->
|
set_xoption(Host, [{"pubsub#publish_model", [Val]} | Opts], NewOpts) ->
|
||||||
?SET_ALIST_XOPT(publish_model, Val, [publishers, subscribers, open]);
|
?SET_ALIST_XOPT(publish_model, Val, [publishers, subscribers, open]);
|
||||||
|
set_xoption(Host, [{"pubsub#notification_type", [Val]} | Opts], NewOpts) ->
|
||||||
|
?SET_ALIST_XOPT(notification_type, Val, [headline, normal]);
|
||||||
set_xoption(Host, [{"pubsub#node_type", [Val]} | Opts], NewOpts) ->
|
set_xoption(Host, [{"pubsub#node_type", [Val]} | Opts], NewOpts) ->
|
||||||
?SET_ALIST_XOPT(node_type, Val, [leaf, collection]);
|
?SET_ALIST_XOPT(node_type, Val, [leaf, collection]);
|
||||||
set_xoption(Host, [{"pubsub#max_payload_size", [Val]} | Opts], NewOpts) ->
|
set_xoption(Host, [{"pubsub#max_payload_size", [Val]} | Opts], NewOpts) ->
|
||||||
@ -3556,6 +3564,11 @@ itemsEls(Items) ->
|
|||||||
{xmlelement, "item", itemAttr(ItemId), Payload}
|
{xmlelement, "item", itemAttr(ItemId), Payload}
|
||||||
end, Items).
|
end, Items).
|
||||||
|
|
||||||
|
add_message_type({xmlelement, "message", Attrs, Els}, Type) ->
|
||||||
|
{xmlelement, "message", [{"type", Type}|Attrs], Els};
|
||||||
|
add_message_type(XmlEl, _Type) ->
|
||||||
|
XmlEl.
|
||||||
|
|
||||||
add_headers({xmlelement, Name, Attrs, Els}, HeaderEls) ->
|
add_headers({xmlelement, Name, Attrs, Els}, HeaderEls) ->
|
||||||
HeaderEl = {xmlelement, "headers", [{"xmlns", ?NS_SHIM}], HeaderEls},
|
HeaderEl = {xmlelement, "headers", [{"xmlns", ?NS_SHIM}], HeaderEls},
|
||||||
{xmlelement, Name, Attrs, [HeaderEl | Els]}.
|
{xmlelement, Name, Attrs, [HeaderEl | Els]}.
|
||||||
|
@ -88,6 +88,7 @@ options() ->
|
|||||||
{access_model, open},
|
{access_model, open},
|
||||||
{roster_groups_allowed, []},
|
{roster_groups_allowed, []},
|
||||||
{publish_model, publishers},
|
{publish_model, publishers},
|
||||||
|
{notification_type, headline},
|
||||||
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
||||||
{send_last_published_item, on_sub_and_presence},
|
{send_last_published_item, on_sub_and_presence},
|
||||||
{deliver_notifications, true},
|
{deliver_notifications, true},
|
||||||
|
@ -89,6 +89,7 @@ options() ->
|
|||||||
{access_model, presence},
|
{access_model, presence},
|
||||||
{roster_groups_allowed, []},
|
{roster_groups_allowed, []},
|
||||||
{publish_model, publishers},
|
{publish_model, publishers},
|
||||||
|
{notification_type, headline},
|
||||||
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
||||||
{send_last_published_item, never},
|
{send_last_published_item, never},
|
||||||
{deliver_notifications, true},
|
{deliver_notifications, true},
|
||||||
|
@ -89,6 +89,7 @@ options() ->
|
|||||||
{access_model, authorize},
|
{access_model, authorize},
|
||||||
{roster_groups_allowed, []},
|
{roster_groups_allowed, []},
|
||||||
{publish_model, publishers},
|
{publish_model, publishers},
|
||||||
|
{notification_type, headline},
|
||||||
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
||||||
{send_last_published_item, never},
|
{send_last_published_item, never},
|
||||||
{deliver_notifications, true},
|
{deliver_notifications, true},
|
||||||
|
@ -87,6 +87,7 @@ options() ->
|
|||||||
{access_model, open},
|
{access_model, open},
|
||||||
{roster_groups_allowed, []},
|
{roster_groups_allowed, []},
|
||||||
{publish_model, publishers},
|
{publish_model, publishers},
|
||||||
|
{notification_type, headline},
|
||||||
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
||||||
{send_last_published_item, never},
|
{send_last_published_item, never},
|
||||||
{deliver_notifications, true},
|
{deliver_notifications, true},
|
||||||
|
@ -80,6 +80,7 @@ options() ->
|
|||||||
{access_model, open},
|
{access_model, open},
|
||||||
{roster_groups_allowed, []},
|
{roster_groups_allowed, []},
|
||||||
{publish_model, publishers},
|
{publish_model, publishers},
|
||||||
|
{notification_type, headline},
|
||||||
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
||||||
{send_last_published_item, on_sub_and_presence},
|
{send_last_published_item, on_sub_and_presence},
|
||||||
{deliver_notifications, true},
|
{deliver_notifications, true},
|
||||||
|
@ -85,6 +85,7 @@ options() ->
|
|||||||
{access_model, open},
|
{access_model, open},
|
||||||
{roster_groups_allowed, []},
|
{roster_groups_allowed, []},
|
||||||
{publish_model, publishers},
|
{publish_model, publishers},
|
||||||
|
{notification_type, headline},
|
||||||
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
||||||
{send_last_published_item, on_sub_and_presence},
|
{send_last_published_item, on_sub_and_presence},
|
||||||
{deliver_notifications, true},
|
{deliver_notifications, true},
|
||||||
|
@ -143,6 +143,7 @@ options() ->
|
|||||||
{access_model, open},
|
{access_model, open},
|
||||||
{roster_groups_allowed, []},
|
{roster_groups_allowed, []},
|
||||||
{publish_model, publishers},
|
{publish_model, publishers},
|
||||||
|
{notification_type, headline},
|
||||||
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
||||||
{send_last_published_item, on_sub_and_presence},
|
{send_last_published_item, on_sub_and_presence},
|
||||||
{deliver_notifications, true},
|
{deliver_notifications, true},
|
||||||
|
@ -147,6 +147,7 @@ options() ->
|
|||||||
{access_model, open},
|
{access_model, open},
|
||||||
{roster_groups_allowed, []},
|
{roster_groups_allowed, []},
|
||||||
{publish_model, publishers},
|
{publish_model, publishers},
|
||||||
|
{notification_type, headline},
|
||||||
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
||||||
{send_last_published_item, on_sub_and_presence},
|
{send_last_published_item, on_sub_and_presence},
|
||||||
{deliver_notifications, true},
|
{deliver_notifications, true},
|
||||||
|
@ -92,6 +92,7 @@ options() ->
|
|||||||
{access_model, presence},
|
{access_model, presence},
|
||||||
{roster_groups_allowed, []},
|
{roster_groups_allowed, []},
|
||||||
{publish_model, publishers},
|
{publish_model, publishers},
|
||||||
|
{notification_type, headline},
|
||||||
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
||||||
{send_last_published_item, on_sub_and_presence},
|
{send_last_published_item, on_sub_and_presence},
|
||||||
{deliver_notifications, true},
|
{deliver_notifications, true},
|
||||||
|
@ -87,6 +87,7 @@ options() ->
|
|||||||
{access_model, presence},
|
{access_model, presence},
|
||||||
{roster_groups_allowed, []},
|
{roster_groups_allowed, []},
|
||||||
{publish_model, publishers},
|
{publish_model, publishers},
|
||||||
|
{notification_type, headline},
|
||||||
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
||||||
{send_last_published_item, on_sub_and_presence},
|
{send_last_published_item, on_sub_and_presence},
|
||||||
{deliver_notifications, true},
|
{deliver_notifications, true},
|
||||||
|
@ -95,6 +95,7 @@ options() ->
|
|||||||
{access_model, presence},
|
{access_model, presence},
|
||||||
{roster_groups_allowed, []},
|
{roster_groups_allowed, []},
|
||||||
{publish_model, publishers},
|
{publish_model, publishers},
|
||||||
|
{notification_type, headline},
|
||||||
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
||||||
{send_last_published_item, on_sub_and_presence},
|
{send_last_published_item, on_sub_and_presence},
|
||||||
{deliver_notifications, true},
|
{deliver_notifications, true},
|
||||||
|
@ -89,6 +89,7 @@ options() ->
|
|||||||
{access_model, whitelist},
|
{access_model, whitelist},
|
||||||
{roster_groups_allowed, []},
|
{roster_groups_allowed, []},
|
||||||
{publish_model, publishers},
|
{publish_model, publishers},
|
||||||
|
{notification_type, headline},
|
||||||
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
||||||
{send_last_published_item, never},
|
{send_last_published_item, never},
|
||||||
{deliver_notifications, false},
|
{deliver_notifications, false},
|
||||||
|
@ -89,6 +89,7 @@ options() ->
|
|||||||
{access_model, open},
|
{access_model, open},
|
||||||
{roster_groups_allowed, []},
|
{roster_groups_allowed, []},
|
||||||
{publish_model, publishers},
|
{publish_model, publishers},
|
||||||
|
{notification_type, headline},
|
||||||
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
{max_payload_size, ?MAX_PAYLOAD_SIZE},
|
||||||
{send_last_published_item, never},
|
{send_last_published_item, never},
|
||||||
{deliver_notifications, true},
|
{deliver_notifications, true},
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
--- mod_pubsub.erl 2009-09-23 17:53:47.000000000 +0200
|
--- mod_pubsub.erl 2009-09-24 18:34:03.471785103 +0200
|
||||||
+++ mod_pubsub_odbc.erl 2009-09-23 17:54:27.000000000 +0200
|
+++ mod_pubsub_odbc.erl 2009-09-24 18:35:20.256479455 +0200
|
||||||
@@ -45,7 +45,7 @@
|
@@ -45,7 +45,7 @@
|
||||||
%%% TODO
|
%%% TODO
|
||||||
%%% plugin: generate Reply (do not use broadcast atom anymore)
|
%%% plugin: generate Reply (do not use broadcast atom anymore)
|
||||||
@ -7,7 +7,7 @@
|
|||||||
--module(mod_pubsub).
|
--module(mod_pubsub).
|
||||||
+-module(mod_pubsub_odbc).
|
+-module(mod_pubsub_odbc).
|
||||||
-author('christophe.romain@process-one.net').
|
-author('christophe.romain@process-one.net').
|
||||||
-version('1.12-06').
|
-version('1.13-0').
|
||||||
|
|
||||||
@@ -57,9 +57,9 @@
|
@@ -57,9 +57,9 @@
|
||||||
-include("jlib.hrl").
|
-include("jlib.hrl").
|
||||||
@ -243,12 +243,12 @@
|
|||||||
- #pubsub_node{nodeid = {H, N}, type = Type, id = NodeId, options = Options} = Node,
|
- #pubsub_node{nodeid = {H, N}, type = Type, id = NodeId, options = Options} = Node,
|
||||||
- case get_option(Options, send_last_published_item) of
|
- case get_option(Options, send_last_published_item) of
|
||||||
- on_sub_and_presence ->
|
- on_sub_and_presence ->
|
||||||
- send_items(H, N, NodeId, Type, SubJID, last);
|
- send_items(H, N, NodeId, Type, LJID, last);
|
||||||
- _ ->
|
- _ ->
|
||||||
- ok
|
- ok
|
||||||
- end;
|
- end;
|
||||||
+ #pubsub_node{nodeid = {H, N}, type = Type, id = NodeId} = Node,
|
+ #pubsub_node{nodeid = {H, N}, type = Type, id = NodeId} = Node,
|
||||||
+ send_items(H, N, NodeId, Type, SubJID, last);
|
+ send_items(H, N, NodeId, Type, LJID, last);
|
||||||
true ->
|
true ->
|
||||||
% resource not concerned about that subscription
|
% resource not concerned about that subscription
|
||||||
ok
|
ok
|
||||||
@ -612,7 +612,7 @@
|
|||||||
_ -> Acc
|
_ -> Acc
|
||||||
end;
|
end;
|
||||||
(_, Acc) ->
|
(_, Acc) ->
|
||||||
@@ -3199,6 +3029,30 @@
|
@@ -3203,6 +3033,30 @@
|
||||||
Result
|
Result
|
||||||
end.
|
end.
|
||||||
|
|
||||||
@ -643,7 +643,7 @@
|
|||||||
%% @spec (Host, Options) -> MaxItems
|
%% @spec (Host, Options) -> MaxItems
|
||||||
%% Host = host()
|
%% Host = host()
|
||||||
%% Options = [Option]
|
%% Options = [Option]
|
||||||
@@ -3581,7 +3435,13 @@
|
@@ -3589,7 +3443,13 @@
|
||||||
tree_action(Host, Function, Args) ->
|
tree_action(Host, Function, Args) ->
|
||||||
?DEBUG("tree_action ~p ~p ~p",[Host,Function,Args]),
|
?DEBUG("tree_action ~p ~p ~p",[Host,Function,Args]),
|
||||||
Fun = fun() -> tree_call(Host, Function, Args) end,
|
Fun = fun() -> tree_call(Host, Function, Args) end,
|
||||||
@ -658,7 +658,7 @@
|
|||||||
|
|
||||||
%% @doc <p>node plugin call.</p>
|
%% @doc <p>node plugin call.</p>
|
||||||
node_call(Type, Function, Args) ->
|
node_call(Type, Function, Args) ->
|
||||||
@@ -3601,13 +3461,13 @@
|
@@ -3609,13 +3469,13 @@
|
||||||
|
|
||||||
node_action(Host, Type, Function, Args) ->
|
node_action(Host, Type, Function, Args) ->
|
||||||
?DEBUG("node_action ~p ~p ~p ~p",[Host,Type,Function,Args]),
|
?DEBUG("node_action ~p ~p ~p ~p",[Host,Type,Function,Args]),
|
||||||
@ -674,7 +674,7 @@
|
|||||||
case tree_call(Host, get_node, [Host, Node]) of
|
case tree_call(Host, get_node, [Host, Node]) of
|
||||||
N when is_record(N, pubsub_node) ->
|
N when is_record(N, pubsub_node) ->
|
||||||
case Action(N) of
|
case Action(N) of
|
||||||
@@ -3620,8 +3480,14 @@
|
@@ -3628,8 +3488,14 @@
|
||||||
end
|
end
|
||||||
end, Trans).
|
end, Trans).
|
||||||
|
|
||||||
@ -691,7 +691,7 @@
|
|||||||
{result, Result} -> {result, Result};
|
{result, Result} -> {result, Result};
|
||||||
{error, Error} -> {error, Error};
|
{error, Error} -> {error, Error};
|
||||||
{atomic, {result, Result}} -> {result, Result};
|
{atomic, {result, Result}} -> {result, Result};
|
||||||
@@ -3629,6 +3495,15 @@
|
@@ -3637,6 +3503,15 @@
|
||||||
{aborted, Reason} ->
|
{aborted, Reason} ->
|
||||||
?ERROR_MSG("transaction return internal error: ~p~n", [{aborted, Reason}]),
|
?ERROR_MSG("transaction return internal error: ~p~n", [{aborted, Reason}]),
|
||||||
{error, ?ERR_INTERNAL_SERVER_ERROR};
|
{error, ?ERR_INTERNAL_SERVER_ERROR};
|
||||||
@ -707,7 +707,7 @@
|
|||||||
{'EXIT', Reason} ->
|
{'EXIT', Reason} ->
|
||||||
?ERROR_MSG("transaction return internal error: ~p~n", [{'EXIT', Reason}]),
|
?ERROR_MSG("transaction return internal error: ~p~n", [{'EXIT', Reason}]),
|
||||||
{error, ?ERR_INTERNAL_SERVER_ERROR};
|
{error, ?ERR_INTERNAL_SERVER_ERROR};
|
||||||
@@ -3637,6 +3512,17 @@
|
@@ -3645,6 +3520,17 @@
|
||||||
{error, ?ERR_INTERNAL_SERVER_ERROR}
|
{error, ?ERR_INTERNAL_SERVER_ERROR}
|
||||||
end.
|
end.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user