Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mam/iq fin transformations #3191

Merged
merged 3 commits into from
Jul 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/mam/mod_mam.erl
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
wrap_message/6,
result_set/4,
result_prefs/4,
make_fin_element/4,
make_fin_element/5,
parse_prefs/1,
is_mam_result_message/1,
features/2]).
Expand Down Expand Up @@ -440,7 +440,8 @@ handle_set_message_form(#jid{} = From, #jid{} = ArcJID,
IsComplete = is_complete_result_page(TotalCount, Offset, MessageRows, Params),
IsStable = true,
ResultSetEl = result_set(FirstMessID, LastMessID, Offset, TotalCount),
FinElem = make_fin_element(IQ#iq.xmlns, IsComplete, IsStable, ResultSetEl),
ExtFinMod = mod_mam_params:extra_fin_element_module(?MODULE, HostType),
FinElem = make_fin_element(IQ#iq.xmlns, IsComplete, IsStable, ResultSetEl, ExtFinMod),
IQ#iq{type = result, sub_el = [FinElem]}
end.

Expand Down
3 changes: 3 additions & 0 deletions src/mam/mod_mam_meta.erl
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ config_items() ->
<<"db_message_format">> => #option{type = atom,
validate = module},
<<"simple">> => #option{type = boolean},
<<"extra_fin_element">> => #option{type = atom,
validate = module},
<<"extra_lookup_params">> => #option{type = atom,
validate = module}
}.
Expand Down Expand Up @@ -213,6 +215,7 @@ common_opts() ->
[is_archivable_message,
send_message,
archive_chat_markers,
extra_fin_element,
extra_lookup_params,
full_text_search,
message_retraction,
Expand Down
5 changes: 3 additions & 2 deletions src/mam/mod_mam_muc.erl
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
result_query/2,
result_prefs/4,
make_fin_message/5,
make_fin_element/4,
make_fin_element/5,
parse_prefs/1,
borders_decode/1,
features/2]).
Expand Down Expand Up @@ -411,7 +411,8 @@ send_messages_and_iq_result({TotalCount, Offset, MessageRows}, HostType, From,
IsComplete = is_complete_result_page(TotalCount, Offset, MessageRows, Params),
IsStable = true,
ResultSetEl = result_set(FirstMessID, LastMessID, Offset, TotalCount),
FinElem = make_fin_element(IQ#iq.xmlns, IsComplete, IsStable, ResultSetEl),
ExtFinMod = mod_mam_params:extra_fin_element_module(?MODULE, HostType),
FinElem = make_fin_element(IQ#iq.xmlns, IsComplete, IsStable, ResultSetEl, ExtFinMod),
IQ#iq{type = result, sub_el = [FinElem]}.

forward_messages(HostType, From, ArcJID, MamNs, QueryID, MessageRows, SetClientNs) ->
Expand Down
62 changes: 33 additions & 29 deletions src/mam/mod_mam_params.erl
Original file line number Diff line number Diff line change
Expand Up @@ -20,36 +20,36 @@

-export([extra_params_module/2, max_result_limit/2, default_result_limit/2,
has_full_text_search/2, is_archivable_message_fun/2, send_message_mod/2,
archive_chat_markers/2, add_stanzaid_element/2]).
archive_chat_markers/2, add_stanzaid_element/2, extra_fin_element_module/2]).

%%--------------------------------------------------------------------
%% API
%%--------------------------------------------------------------------

-spec extra_params_module(mam_module(), Host :: jid:lserver()) -> module() | undefined.
extra_params_module(Module, Host) ->
param(Module, Host, extra_lookup_params, undefined).
-spec extra_params_module(mam_module(), mongooseim:host_type()) -> module() | undefined.
extra_params_module(Module, HostType) ->
param(Module, HostType, extra_lookup_params, undefined).

-spec max_result_limit(mam_module(), Host :: jid:lserver()) -> pos_integer().
max_result_limit(Module, Host) ->
param(Module, Host, max_result_limit, 50).
-spec max_result_limit(mam_module(), mongooseim:host_type()) -> pos_integer().
max_result_limit(Module, HostType) ->
param(Module, HostType, max_result_limit, 50).

-spec default_result_limit(mam_module(), Host :: jid:lserver()) -> pos_integer().
default_result_limit(Module, Host) ->
param(Module, Host, default_result_limit, 50).
-spec default_result_limit(mam_module(), mongooseim:host_type()) -> pos_integer().
default_result_limit(Module, HostType) ->
param(Module, HostType, default_result_limit, 50).


-spec has_full_text_search(Module :: mod_mam | mod_mam_muc, Host :: jid:server()) -> boolean().
has_full_text_search(Module, Host) ->
param(Module, Host, full_text_search, true).
-spec has_full_text_search(Module :: mod_mam | mod_mam_muc, mongooseim:host_type()) -> boolean().
has_full_text_search(Module, HostType) ->
param(Module, HostType, full_text_search, true).

-spec is_archivable_message_fun(mam_module(), Host :: jid:lserver()) ->
-spec is_archivable_message_fun(mam_module(), mongooseim:host_type()) ->
MF :: {module(), atom()}.
is_archivable_message_fun(Module, Host) ->
is_archivable_message_fun(Module, HostType) ->
{IsArchivableModule, IsArchivableFunction} =
case param(Module, Host, is_archivable_message, undefined) of
case param(Module, HostType, is_archivable_message, undefined) of
undefined ->
case param(Module, Host, is_complete_message, undefined) of
case param(Module, HostType, is_complete_message, undefined) of
undefined -> {mod_mam_utils, is_archivable_message};
OldStyleMod -> {OldStyleMod, is_complete_message}
end;
Expand All @@ -58,22 +58,26 @@ is_archivable_message_fun(Module, Host) ->
end,
{IsArchivableModule, IsArchivableFunction}.

-spec send_message_mod(mam_module(), Host :: jid:lserver()) -> module().
send_message_mod(Module, Host) ->
param(Module, Host, send_message, mod_mam_utils).
-spec send_message_mod(mam_module(), mongooseim:host_type()) -> module().
send_message_mod(Module, HostType) ->
param(Module, HostType, send_message, mod_mam_utils).

-spec archive_chat_markers(mam_module(), Host :: jid:lserver()) -> boolean().
archive_chat_markers(Module, Host) ->
param(Module, Host, archive_chat_markers, false).
-spec archive_chat_markers(mam_module(), mongooseim:host_type()) -> boolean().
archive_chat_markers(Module, HostType) ->
param(Module, HostType, archive_chat_markers, false).

-spec add_stanzaid_element(mam_module(), Host :: jid:lserver()) -> boolean().
add_stanzaid_element(Module, Host) ->
not param(Module, Host, no_stanzaid_element, false).
-spec add_stanzaid_element(mam_module(), mongooseim:host_type()) -> boolean().
add_stanzaid_element(Module, HostType) ->
not param(Module, HostType, no_stanzaid_element, false).

-spec extra_fin_element_module(mam_module(), mongooseim:host_type()) -> module() | undefined.
extra_fin_element_module(Module, HostType) ->
param(Module, HostType, extra_fin_element, undefined).

%%--------------------------------------------------------------------
%% Internal functions
%%--------------------------------------------------------------------

-spec param(mam_module(), Host :: jid:lserver(), Opt :: term(), Default :: term()) -> term().
param(Module, Host, Opt, Default) ->
gen_mod:get_module_opt(Host, Module, Opt, Default).
-spec param(mam_module(), mongooseim:host_type(), Opt :: term(), Default :: term()) -> term().
param(Module, HostType, Opt, Default) ->
gen_mod:get_module_opt(HostType, Module, Opt, Default).
30 changes: 19 additions & 11 deletions src/mam/mod_mam_utils.erl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
result_set/4,
result_query/2,
result_prefs/4,
make_fin_element/4,
make_fin_element/5,
parse_prefs/1,
borders_decode/1,
decode_optimizations/1,
Expand Down Expand Up @@ -92,7 +92,10 @@
%% Shared logic
-export([check_result_for_policy_violation/2]).

-ignore_xref([append_arcid_elem/4, delete_arcid_elem/3, form_field_value/2,
-callback extra_fin_element(exml:element()) -> exml:element().
-optional_callbacks([extra_fin_element/1]).

-ignore_xref([behaviour_info/1, append_arcid_elem/4, delete_arcid_elem/3, form_field_value/2,
get_one_of_path/3, is_arcid_elem_for/3, maybe_encode_compact_uuid/2,
maybe_last/1, result_query/2, send_message/4, wrap_message/7, wrapper_id/0]).

Expand Down Expand Up @@ -514,15 +517,20 @@ encode_jids(JIDs) ->


%% MAM v0.4.1 and above
-spec make_fin_element(binary(), boolean(), boolean(), exml:element()) -> exml:element().
make_fin_element(MamNs, IsComplete, IsStable, ResultSetEl) ->
#xmlel{
name = <<"fin">>,
attrs = [{<<"xmlns">>, MamNs}]
++ [{<<"complete">>, <<"true">>} || IsComplete]
++ [{<<"stable">>, <<"false">>} || not IsStable],
children = [ResultSetEl]}.

-spec make_fin_element(binary(), boolean(), boolean(), exml:element(), module()) -> exml:element().
make_fin_element(MamNs, IsComplete, IsStable, ResultSetEl, ExtFinMod) ->
FinEl = #xmlel{
name = <<"fin">>,
attrs = [{<<"xmlns">>, MamNs}]
++ [{<<"complete">>, <<"true">>} || IsComplete]
++ [{<<"stable">>, <<"false">>} || not IsStable],
children = [ResultSetEl]},
maybe_transform_fin_elem(ExtFinMod, FinEl).

maybe_transform_fin_elem(undefined, FinEl) ->
FinEl;
maybe_transform_fin_elem(Module, FinEl) ->
Module:extra_fin_element(FinEl).

-spec parse_prefs(PrefsEl :: exml:element()) -> mod_mam:preference().
parse_prefs(El = #xmlel{ name = <<"prefs">> }) ->
Expand Down
3 changes: 3 additions & 0 deletions test/config_parser_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -2125,6 +2125,8 @@ test_mod_mam_meta(T, M) ->
T(#{<<"db_message_format">> => <<"mam_message_xml">>})),
?eqf(M([{simple, false}]),
T(#{<<"simple">> => false})),
?eqf(M([{extra_fin_element, mod_mam_utils}]),
T(#{<<"extra_fin_element">> => <<"mod_mam_utils">>})),
?eqf(M([{extra_lookup_params, mod_mam_utils}]),
T(#{<<"extra_lookup_params">> => <<"mod_mam_utils">>})),
?errf(T(#{<<"backend">> => <<"notepad">>})),
Expand All @@ -2145,6 +2147,7 @@ test_mod_mam_meta(T, M) ->
?errf(T(#{<<"db_jid_format">> => <<"not_a_module">>})),
?errf(T(#{<<"db_message_format">> => <<"not_a_module">>})),
?errf(T(#{<<"simple">> => <<"yes">>})),
?errf(T(#{<<"extra_fin_element">> => <<"bad_module">>})),
?errf(T(#{<<"extra_lookup_params">> => <<"bad_module">>})).

mod_muc(_Config) ->
Expand Down