mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
fix invalid response on get_options when no options set (EJAB-1648)
This commit is contained in:
parent
b66e4fbdc4
commit
8621a8f006
@ -3682,26 +3682,33 @@ get_options_helper(JID, Lang, Node, NodeID, SubID, Type) ->
|
||||
{error,
|
||||
extended_error(?ERR_NOT_ACCEPTABLE, <<"subid-required">>)};
|
||||
{_, _} ->
|
||||
read_sub(Subscriber, Node, NodeID, SubID, Lang)
|
||||
ValidSubId = lists:member(SubID, SubIDs),
|
||||
if ValidSubId ->
|
||||
read_sub(Subscriber, Node, NodeID, SubID, Lang);
|
||||
true ->
|
||||
{error,
|
||||
extended_error(?ERR_NOT_ACCEPTABLE, <<"invalid-subid">>)}
|
||||
end
|
||||
end.
|
||||
|
||||
read_sub(Subscriber, Node, NodeID, SubID, Lang) ->
|
||||
case pubsub_subscription:get_subscription(Subscriber, NodeID, SubID) of
|
||||
Children = case pubsub_subscription:get_subscription(Subscriber, NodeID, SubID) of
|
||||
{error, notfound} ->
|
||||
{error, extended_error(?ERR_NOT_ACCEPTABLE, <<"invalid-subid">>)};
|
||||
[];
|
||||
{result, #pubsub_subscription{options = Options}} ->
|
||||
{result, XdataEl} = pubsub_subscription:get_options_xform(Lang, Options),
|
||||
[XdataEl]
|
||||
end,
|
||||
OptionsEl = #xmlel{name = <<"options">>,
|
||||
attrs =
|
||||
[{<<"jid">>, jlib:jid_to_string(Subscriber)},
|
||||
{<<"subid">>, SubID}
|
||||
| nodeAttr(Node)],
|
||||
children = [XdataEl]},
|
||||
children = Children},
|
||||
PubsubEl = #xmlel{name = <<"pubsub">>,
|
||||
attrs = [{<<"xmlns">>, ?NS_PUBSUB}],
|
||||
children = [OptionsEl]},
|
||||
{result, PubsubEl}
|
||||
end.
|
||||
{result, PubsubEl}.
|
||||
|
||||
set_options(Host, Node, JID, SubID, Configuration) ->
|
||||
Action = fun (#pubsub_node{type = Type, id = NodeID}) ->
|
||||
|
@ -3301,26 +3301,33 @@ get_options_helper(JID, Lang, Node, NodeID, SubID, Type) ->
|
||||
{error,
|
||||
extended_error(?ERR_NOT_ACCEPTABLE, <<"subid-required">>)};
|
||||
{_, _} ->
|
||||
read_sub(Subscriber, Node, NodeID, SubID, Lang)
|
||||
ValidSubId = lists:member(SubID, SubIDs),
|
||||
if ValidSubId ->
|
||||
read_sub(Subscriber, Node, NodeID, SubID, Lang);
|
||||
true ->
|
||||
{error,
|
||||
extended_error(?ERR_NOT_ACCEPTABLE, <<"invalid-subid">>)}
|
||||
end
|
||||
end.
|
||||
|
||||
read_sub(Subscriber, Node, NodeID, SubID, Lang) ->
|
||||
case pubsub_subscription_odbc:get_subscription(Subscriber, NodeID, SubID) of
|
||||
Children = case pubsub_subscription_odbc:get_subscription(Subscriber, NodeID, SubID) of
|
||||
{error, notfound} ->
|
||||
{error, extended_error(?ERR_NOT_ACCEPTABLE, <<"invalid-subid">>)};
|
||||
[];
|
||||
{result, #pubsub_subscription{options = Options}} ->
|
||||
{result, XdataEl} = pubsub_subscription_odbc:get_options_xform(Lang, Options),
|
||||
[XdataEl]
|
||||
end,
|
||||
OptionsEl = #xmlel{name = <<"options">>,
|
||||
attrs =
|
||||
[{<<"jid">>, jlib:jid_to_string(Subscriber)},
|
||||
{<<"subid">>, SubID}
|
||||
| nodeAttr(Node)],
|
||||
children = [XdataEl]},
|
||||
children = Children},
|
||||
PubsubEl = #xmlel{name = <<"pubsub">>,
|
||||
attrs = [{<<"xmlns">>, ?NS_PUBSUB}],
|
||||
children = [OptionsEl]},
|
||||
{result, PubsubEl}
|
||||
end.
|
||||
{result, PubsubEl}.
|
||||
|
||||
set_options(Host, Node, JID, SubID, Configuration) ->
|
||||
Action = fun (#pubsub_node{type = Type, id = NodeID}) ->
|
||||
|
Loading…
Reference in New Issue
Block a user