2022-11-23 14:50:18 +01:00
|
|
|
%%%-------------------------------------------------------------------
|
|
|
|
%%% @author Pawel Chmielowski <pawel@process-one.net>
|
2024-01-22 16:40:01 +01:00
|
|
|
%%% @copyright (C) 2002-2024 ProcessOne, SARL. All Rights Reserved.
|
2022-11-23 14:50:18 +01:00
|
|
|
%%%
|
|
|
|
%%% Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
%%% you may not use this file except in compliance with the License.
|
|
|
|
%%% You may obtain a copy of the License at
|
|
|
|
%%%
|
|
|
|
%%% http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
%%%
|
|
|
|
%%% Unless required by applicable law or agreed to in writing, software
|
|
|
|
%%% distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
%%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
%%% See the License for the specific language governing permissions and
|
|
|
|
%%% limitations under the License.
|
|
|
|
%%%
|
|
|
|
%%%-------------------------------------------------------------------
|
|
|
|
-module(mod_mqtt_bridge).
|
|
|
|
-behaviour(gen_mod).
|
|
|
|
|
|
|
|
%% gen_mod API
|
|
|
|
-export([start/2, stop/1, reload/3, depends/2, mod_options/1, mod_opt_type/1]).
|
|
|
|
-export([mod_doc/0]).
|
|
|
|
|
|
|
|
%% API
|
|
|
|
-export([mqtt_publish_hook/3]).
|
|
|
|
|
|
|
|
-include("logger.hrl").
|
|
|
|
-include("mqtt.hrl").
|
|
|
|
-include("translate.hrl").
|
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% API
|
|
|
|
%%%===================================================================
|
2023-08-04 17:53:50 +02:00
|
|
|
start(_Host, Opts) ->
|
2022-11-23 14:50:18 +01:00
|
|
|
User = mod_mqtt_bridge_opt:replication_user(Opts),
|
2023-01-16 11:22:17 +01:00
|
|
|
start_servers(User, element(1, mod_mqtt_bridge_opt:servers(Opts))),
|
2023-08-04 17:53:50 +02:00
|
|
|
{ok, [{hook, mqtt_publish, mqtt_publish_hook, 50}]}.
|
2023-01-16 11:22:17 +01:00
|
|
|
|
|
|
|
stop(Host) ->
|
|
|
|
stop_servers(element(1, mod_mqtt_bridge_opt:servers(Host))),
|
|
|
|
ok.
|
|
|
|
|
|
|
|
start_servers(User, Servers) ->
|
2022-11-23 14:50:18 +01:00
|
|
|
lists:foldl(
|
2023-01-13 19:40:53 +01:00
|
|
|
fun({Proc, Transport, HostAddr, Port, Path, Publish, Subscribe, Authentication}, Started) ->
|
2022-11-23 14:50:18 +01:00
|
|
|
case Started of
|
|
|
|
#{Proc := _} ->
|
|
|
|
?DEBUG("Already started ~p", [Proc]),
|
|
|
|
Started;
|
|
|
|
_ ->
|
|
|
|
ChildSpec = {Proc,
|
|
|
|
{mod_mqtt_bridge_session, start_link,
|
2023-01-13 19:40:53 +01:00
|
|
|
[Proc, Transport, HostAddr, Port, Path, Publish, Subscribe, Authentication, User]},
|
2022-11-23 14:50:18 +01:00
|
|
|
transient,
|
|
|
|
1000,
|
|
|
|
worker,
|
|
|
|
[mod_mqtt_bridge_session]},
|
|
|
|
Res = supervisor:start_child(ejabberd_gen_mod_sup, ChildSpec),
|
|
|
|
?DEBUG("Starting ~p ~p", [Proc, Res]),
|
|
|
|
Started#{Proc => true}
|
|
|
|
end
|
2023-01-16 11:22:17 +01:00
|
|
|
end, #{}, Servers).
|
2022-11-23 14:50:18 +01:00
|
|
|
|
2023-01-16 11:22:17 +01:00
|
|
|
stop_servers(Servers) ->
|
|
|
|
lists:foreach(
|
|
|
|
fun({Proc, _Transport, _Host, _Port, _Path, _Publish, _Subscribe, _Authentication}) ->
|
2022-11-23 14:50:18 +01:00
|
|
|
try p1_server:call(Proc, stop)
|
|
|
|
catch _:_ -> ok
|
|
|
|
end,
|
|
|
|
supervisor:terminate_child(ejabberd_gen_mod_sup, Proc),
|
|
|
|
supervisor:delete_child(ejabberd_gen_mod_sup, Proc)
|
2023-01-16 11:22:17 +01:00
|
|
|
end, Servers).
|
2022-11-23 14:50:18 +01:00
|
|
|
|
2023-01-16 11:22:17 +01:00
|
|
|
reload(_Host, NewOpts, OldOpts) ->
|
|
|
|
OldServers = element(1, mod_mqtt_bridge_opt:servers(OldOpts)),
|
|
|
|
NewServers = element(1, mod_mqtt_bridge_opt:servers(NewOpts)),
|
|
|
|
Deleted = lists:filter(
|
|
|
|
fun(E) -> not lists:keymember(element(1, E), 1, NewServers) end,
|
|
|
|
OldServers),
|
|
|
|
Added = lists:filter(
|
|
|
|
fun(E) -> not lists:keymember(element(1, E), 1, OldServers) end,
|
|
|
|
NewServers),
|
|
|
|
stop_servers(Deleted),
|
|
|
|
start_servers(mod_mqtt_bridge_opt:replication_user(NewOpts), Added),
|
2022-11-23 14:50:18 +01:00
|
|
|
ok.
|
|
|
|
|
|
|
|
depends(_Host, _Opts) ->
|
|
|
|
[{mod_mqtt, hard}].
|
|
|
|
|
2023-01-16 11:22:17 +01:00
|
|
|
proc_name(Proto, Host, Port, Path) ->
|
2022-11-23 14:50:18 +01:00
|
|
|
HostB = list_to_binary(Host),
|
2022-12-07 13:35:04 +01:00
|
|
|
TransportB = list_to_binary(Proto),
|
2023-01-16 11:22:17 +01:00
|
|
|
PathB = case Path of
|
|
|
|
V when is_list(V) ->
|
|
|
|
list_to_binary(V);
|
|
|
|
_ -> <<>>
|
|
|
|
end,
|
2022-12-07 13:35:04 +01:00
|
|
|
binary_to_atom(<<"mod_mqtt_bridge_", TransportB/binary, "_", HostB/binary,
|
2023-01-16 11:22:17 +01:00
|
|
|
"_", (integer_to_binary(Port))/binary, PathB/binary>>, utf8).
|
2022-11-23 14:50:18 +01:00
|
|
|
|
2022-11-24 14:55:11 +01:00
|
|
|
-spec mqtt_publish_hook(jid:ljid(), publish(), non_neg_integer()) -> ok.
|
2022-11-23 14:50:18 +01:00
|
|
|
mqtt_publish_hook({_, S, _}, #publish{topic = Topic} = Pkt, _ExpiryTime) ->
|
|
|
|
{_, Publish} = mod_mqtt_bridge_opt:servers(S),
|
|
|
|
case maps:find(Topic, Publish) of
|
|
|
|
error -> ok;
|
|
|
|
{ok, Procs} ->
|
|
|
|
lists:foreach(
|
|
|
|
fun(Proc) ->
|
|
|
|
Proc ! {publish, Pkt}
|
|
|
|
end, Procs)
|
|
|
|
end.
|
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% Options
|
|
|
|
%%%===================================================================
|
|
|
|
-spec mod_options(binary()) ->
|
2022-11-24 14:55:11 +01:00
|
|
|
[{servers,
|
2022-12-07 13:35:04 +01:00
|
|
|
{[{atom(), mqtt | mqtts | mqtt5 | mqtt5s, binary(), non_neg_integer(),
|
|
|
|
#{binary() => binary()}, #{binary() => binary()}, map()}],
|
2022-11-24 14:55:11 +01:00
|
|
|
#{binary() => [atom()]}}} |
|
|
|
|
{atom(), any()}].
|
2022-11-23 14:50:18 +01:00
|
|
|
mod_options(Host) ->
|
|
|
|
[{servers, []},
|
|
|
|
{replication_user, jid:make(<<"admin">>, Host)}].
|
|
|
|
|
|
|
|
mod_opt_type(replication_user) ->
|
|
|
|
econf:jid();
|
|
|
|
mod_opt_type(servers) ->
|
|
|
|
econf:and_then(
|
2023-01-16 11:01:24 +01:00
|
|
|
econf:map(econf:url([mqtt, mqtts, mqtt5, mqtt5s, ws, wss, ws5, wss5]),
|
2022-12-07 13:35:04 +01:00
|
|
|
econf:options(
|
|
|
|
#{
|
|
|
|
publish => econf:map(econf:binary(), econf:binary(), [{return, map}]),
|
|
|
|
subscribe => econf:map(econf:binary(), econf:binary(), [{return, map}]),
|
|
|
|
authentication => econf:either(
|
|
|
|
econf:options(
|
|
|
|
#{
|
|
|
|
username => econf:binary(),
|
|
|
|
password => econf:binary()
|
|
|
|
}, [{return, map}]),
|
|
|
|
econf:options(
|
|
|
|
#{
|
|
|
|
certfile => econf:pem()
|
|
|
|
}, [{return, map}])
|
|
|
|
)}, [{return, map}]),
|
2022-11-23 14:50:18 +01:00
|
|
|
[{return, map}]),
|
|
|
|
fun(Servers) ->
|
|
|
|
maps:fold(
|
|
|
|
fun(Url, Opts, {HAcc, PAcc}) ->
|
2023-01-13 19:40:53 +01:00
|
|
|
{ok, Scheme, _UserInfo, Host, Port, Path, _Query} =
|
2022-12-07 13:35:04 +01:00
|
|
|
misc:uri_parse(Url, [{mqtt, 1883}, {mqtts, 8883},
|
2023-01-13 19:40:53 +01:00
|
|
|
{mqtt5, 1883}, {mqtt5s, 8883},
|
2023-01-16 11:01:24 +01:00
|
|
|
{ws, 80}, {wss, 443},
|
|
|
|
{ws5, 80}, {wss5, 443}]),
|
2022-11-24 14:55:11 +01:00
|
|
|
Publish = maps:get(publish, Opts, #{}),
|
|
|
|
Subscribe = maps:get(subscribe, Opts, #{}),
|
2022-11-23 14:50:18 +01:00
|
|
|
Authentication = maps:get(authentication, Opts, []),
|
2022-12-07 13:35:04 +01:00
|
|
|
Proto = list_to_atom(Scheme),
|
2023-01-16 11:22:17 +01:00
|
|
|
Proc = proc_name(Scheme, Host, Port, Path),
|
2022-11-23 14:50:18 +01:00
|
|
|
PAcc2 = maps:fold(
|
|
|
|
fun(Topic, _RemoteTopic, Acc) ->
|
|
|
|
maps:update_with(Topic, fun(V) -> [Proc | V] end, [Proc], Acc)
|
|
|
|
end, PAcc, Publish),
|
2023-01-13 19:40:53 +01:00
|
|
|
{[{Proc, Proto, Host, Port, Path, Publish, Subscribe, Authentication} | HAcc], PAcc2}
|
2022-11-23 14:50:18 +01:00
|
|
|
end, {[], #{}}, Servers)
|
|
|
|
end
|
|
|
|
).
|
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% Doc
|
|
|
|
%%%===================================================================
|
|
|
|
mod_doc() ->
|
|
|
|
#{desc =>
|
2023-01-16 15:33:37 +01:00
|
|
|
[?T("This module adds ability to synchronize local MQTT topics with data on remote servers"),
|
|
|
|
?T("It can update topics on remote servers when local user updates local topic, or can subscribe "
|
|
|
|
"for changes on remote server, and update local copy when remote data is updated."),
|
|
|
|
?T("It is available since ejabberd 23.01.")],
|
|
|
|
example =>
|
2023-01-16 16:24:44 +01:00
|
|
|
["modules:",
|
|
|
|
" ...",
|
|
|
|
" mod_mqtt_bridge:",
|
|
|
|
" servers:",
|
|
|
|
" \"mqtt://server.com\":",
|
|
|
|
" publish:",
|
|
|
|
" \"localA\": \"remoteA\" # local changes to 'localA' will be replicated on remote server as 'remoteA'",
|
|
|
|
" \"topicB\": \"topicB\"",
|
|
|
|
" subscribe:",
|
|
|
|
" \"remoteB\": \"localB\" # changes to 'remoteB' on remote server will be stored as 'localB' on local server",
|
|
|
|
" authentication:",
|
|
|
|
" certfile: \"/etc/ejabberd/mqtt_server.pem\"",
|
|
|
|
" replication_user: \"mqtt@xmpp.server.com\"",
|
|
|
|
" ..."],
|
2022-11-23 14:50:18 +01:00
|
|
|
opts =>
|
|
|
|
[{servers,
|
2023-01-16 16:24:44 +01:00
|
|
|
#{value => "{ServerUrl: {publish: [TopicPairs], subscribe: [TopicPairs], authentication: [AuthInfo]}}",
|
2022-11-23 14:50:18 +01:00
|
|
|
desc =>
|
2023-01-16 15:33:37 +01:00
|
|
|
?T("Declaration of data to share, must contain 'publish' or 'subscribe' or both, and 'authentication' "
|
2023-01-16 18:22:25 +01:00
|
|
|
"section with username/password field or certfile pointing to client certificate. "
|
2023-01-16 15:33:37 +01:00
|
|
|
"Accepted urls can use schema mqtt, mqtts (mqtt with tls), mqtt5, mqtt5s (both to trigger v5 protocol), "
|
2024-01-11 12:59:29 +01:00
|
|
|
"ws, wss, ws5, wss5. Certificate authentication can be only used with mqtts, mqtt5s, wss, wss5.")}},
|
2022-11-23 14:50:18 +01:00
|
|
|
{replication_user,
|
|
|
|
#{value => "JID",
|
|
|
|
desc =>
|
2023-01-16 15:33:37 +01:00
|
|
|
?T("Identifier of a user that will be assigned as owner of local changes.")}}]}.
|
2022-11-23 14:50:18 +01:00
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% Internal functions
|
|
|
|
%%%===================================================================
|