mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
fix previous fix misplacing (EJAB-840)
SVN Revision: 1803
This commit is contained in:
parent
89be1c2ede
commit
56bccce713
@ -1901,9 +1901,24 @@ set_affiliations(Host, Node, From, EntitiesEls) ->
|
||||
true ->
|
||||
lists:foreach(
|
||||
fun({JID, Affiliation}) ->
|
||||
node_call(
|
||||
Type, set_affiliation,
|
||||
[Host, Node, JID, Affiliation])
|
||||
node_call(Type, set_affiliation, [Host, Node, JID, Affiliation]),
|
||||
case Affiliation of
|
||||
owner ->
|
||||
NewOwner = jlib:short_prepd_bare_jid(JID),
|
||||
NewOwners = [NewOwner|Owners],
|
||||
tree_call(Host, set_node, [N#pubsub_node{owners = NewOwners}]);
|
||||
none ->
|
||||
NewOwner = jlib:short_prepd_bare_jid(JID),
|
||||
case lists:member(OldOwner, Owners) of
|
||||
true ->
|
||||
NewOwners = Owners--[OldOwner],
|
||||
tree_call(Host, set_node, [N#pubsub_node{owners = NewOwners}]);
|
||||
_ ->
|
||||
ok
|
||||
end;
|
||||
_ ->
|
||||
ok
|
||||
end
|
||||
end, Entities),
|
||||
{result, []};
|
||||
_ ->
|
||||
@ -2034,25 +2049,10 @@ set_subscriptions(Host, Node, From, EntitiesEls) ->
|
||||
case lists:member(Owner, Owners) of
|
||||
true ->
|
||||
lists:foreach(
|
||||
fun({JID, Affiliation}) ->
|
||||
node_call(Type, set_affiliation, [Host, Node, JID, Affiliation]),
|
||||
case Affiliation of
|
||||
owner ->
|
||||
NewOwner = jlib:short_prepd_bare_jid(JID),
|
||||
NewOwners = [NewOwner|Owners],
|
||||
tree_call(Host, set_node, [N#pubsub_node{owners = NewOwners}]);
|
||||
none ->
|
||||
NewOwner = jlib:short_prepd_bare_jid(JID),
|
||||
case lists:member(OldOwner, Owners) of
|
||||
true ->
|
||||
NewOwners = Owners--[OldOwner],
|
||||
tree_call(Host, set_node, [N#pubsub_node{owners = NewOwners}]);
|
||||
_ ->
|
||||
ok
|
||||
end;
|
||||
_ ->
|
||||
ok
|
||||
end
|
||||
fun({JID, Subscription}) ->
|
||||
node_call(
|
||||
Type, set_subscription,
|
||||
[Host, Node, JID, Subscription])
|
||||
end, Entities),
|
||||
{result, []};
|
||||
_ ->
|
||||
|
@ -358,6 +358,9 @@ unsubscribe_node(Host, Node, Sender, Subscriber, _SubId) ->
|
||||
_ -> get_state(Host, Node, SubKey)
|
||||
end,
|
||||
if
|
||||
%% Requesting entity is prohibited from unsubscribing entity
|
||||
not Authorized ->
|
||||
{error, 'forbidden'};
|
||||
%% Entity did not specify SubID
|
||||
%%SubID == "", ?? ->
|
||||
%% {error, ?ERR_EXTENDED('bad-request', "subid-required")};
|
||||
@ -367,9 +370,6 @@ unsubscribe_node(Host, Node, Sender, Subscriber, _SubId) ->
|
||||
%% Requesting entity is not a subscriber
|
||||
SubState#pubsub_state.subscription == none ->
|
||||
{error, ?ERR_EXTENDED('unexpected-request', "not-subscribed")};
|
||||
%% Requesting entity is prohibited from unsubscribing entity
|
||||
not Authorized ->
|
||||
{error, 'forbidden'};
|
||||
%% Was just subscriber, remove the record
|
||||
SubState#pubsub_state.affiliation == none ->
|
||||
del_state(SubState#pubsub_state.stateid),
|
||||
|
Loading…
Reference in New Issue
Block a user