Skip to content

Commit 418ca34

Browse files
authored
Merge pull request #4357 from badlop/adhoc_api
New mod_adhoc_api and related improvements
2 parents 6d8e588 + 9bf2d6c commit 418ca34

19 files changed

+1266
-130
lines changed

ejabberd.yml.example

+7-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,12 @@ api_permissions:
118118
from: ejabberd_web_admin
119119
who: admin
120120
what: "*"
121-
"admin access":
121+
"adhoc commands":
122+
from: mod_adhoc_api
123+
who: admin
124+
what: "*"
125+
"http access":
126+
from: mod_http_api
122127
who:
123128
access:
124129
allow:
@@ -159,6 +164,7 @@ shaper_rules:
159164

160165
modules:
161166
mod_adhoc: {}
167+
mod_adhoc_api: {}
162168
mod_admin_extra: {}
163169
mod_announce:
164170
access: announce

src/ejabberd_access_permissions.erl

+12-2
Original file line numberDiff line numberDiff line change
@@ -344,10 +344,20 @@ validator(from) ->
344344
fun(L) when is_list(L) ->
345345
lists:map(
346346
fun({K, V}) -> {(econf:enum([tag]))(K), (econf:binary())(V)};
347-
(A) -> (econf:enum([ejabberd_xmlrpc, mod_cron, mod_http_api, ejabberd_ctl, ejabberd_web_admin]))(A)
347+
(A) -> (econf:enum([ejabberd_ctl,
348+
ejabberd_web_admin,
349+
ejabberd_xmlrpc,
350+
mod_adhoc_api,
351+
mod_cron,
352+
mod_http_api]))(A)
348353
end, lists:flatten(L));
349354
(A) ->
350-
[(econf:enum([ejabberd_xmlrpc, mod_cron, mod_http_api, ejabberd_ctl, ejabberd_web_admin]))(A)]
355+
[(econf:enum([ejabberd_ctl,
356+
ejabberd_web_admin,
357+
ejabberd_xmlrpc,
358+
mod_adhoc_api,
359+
mod_cron,
360+
mod_http_api]))(A)]
351361
end;
352362
validator(what) ->
353363
econf:and_then(

src/ejabberd_admin.erl

+26-7
Original file line numberDiff line numberDiff line change
@@ -598,8 +598,9 @@ get_commands_spec() ->
598598
args = [{node, atom}, {table, binary}, {page, integer}],
599599
result = {res, any}},
600600

601-
#ejabberd_commands{name = mnesia_list_tables, tags = [internal, mnesia],
601+
#ejabberd_commands{name = mnesia_list_tables, tags = [mnesia],
602602
desc = "List of Mnesia tables",
603+
note = "added in 25.xx",
603604
module = ?MODULE, function = mnesia_list_tables,
604605
result = {tables, {list, {table, {tuple, [{name, atom},
605606
{storage_type, binary},
@@ -615,8 +616,10 @@ get_commands_spec() ->
615616
{value, binary}
616617
]}}}}},
617618

618-
#ejabberd_commands{name = mnesia_table_change_storage, tags = [internal, mnesia],
619-
desc = "Change storage type of a Mnesia table to: ram_copies, disc_copies, or disc_only_copies.",
619+
#ejabberd_commands{name = mnesia_table_change_storage, tags = [mnesia],
620+
desc = "Change storage type of a Mnesia table",
621+
note = "added in 25.xx",
622+
longdesc = "Storage type can be: `ram_copies`, `disc_copies`, `disc_only_copies`, `remote_copy`.",
620623
module = ?MODULE, function = mnesia_table_change_storage,
621624
args = [{table, binary}, {storage_type, binary}],
622625
result = {res, restuple}},
@@ -1281,13 +1284,12 @@ is_my_host(Host) ->
12811284

12821285
%% @format-begin
12831286

1284-
%% mnesia:del_table_copy(Table, Node);
1285-
%% mnesia:change_table_copy_type(Table, Node, Type);
1286-
12871287
mnesia_table_change_storage(STable, SType) ->
12881288
Table = binary_to_existing_atom(STable, latin1),
12891289
Type =
12901290
case SType of
1291+
<<"remote_copy">> ->
1292+
remote_copy;
12911293
<<"ram_copies">> ->
12921294
ram_copies;
12931295
<<"disc_copies">> ->
@@ -1297,7 +1299,24 @@ mnesia_table_change_storage(STable, SType) ->
12971299
_ ->
12981300
false
12991301
end,
1300-
mnesia:add_table_copy(Table, node(), Type).
1302+
Node = node(),
1303+
Result =
1304+
case Type of
1305+
false ->
1306+
"Nothing to do";
1307+
remote_copy ->
1308+
mnesia:del_table_copy(Table, Node),
1309+
"Deleted table copy";
1310+
_ ->
1311+
case mnesia:add_table_copy(Table, Node, Type) of
1312+
{aborted, _} ->
1313+
mnesia:change_table_copy_type(Table, Node, Type),
1314+
"Changed table copy type";
1315+
_ ->
1316+
"Added table copy"
1317+
end
1318+
end,
1319+
{ok, Result}.
13011320

13021321
mnesia_table_clear(STable) ->
13031322
Table = binary_to_existing_atom(STable, latin1),

src/ejabberd_commands.erl

+42-4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
-export([start_link/0,
3434
list_commands/0,
3535
list_commands/1,
36+
list_commands/2,
3637
get_command_format/1,
3738
get_command_format/2,
3839
get_command_format/3,
@@ -42,7 +43,9 @@
4243
get_tags_commands/1,
4344
register_commands/1,
4445
register_commands/2,
46+
register_commands/3,
4547
unregister_commands/1,
48+
unregister_commands/3,
4649
get_commands_spec/0,
4750
get_commands_definition/0,
4851
get_commands_definition/1,
@@ -142,19 +145,34 @@ code_change(_OldVsn, State, _Extra) ->
142145
register_commands(Commands) ->
143146
register_commands(unknown, Commands).
144147

148+
-spec register_commands(atom(), [ejabberd_commands()]) -> ok.
149+
145150
register_commands(Definer, Commands) ->
151+
ExistingCommands = list_commands(),
146152
lists:foreach(
147153
fun(Command) ->
148-
%% XXX check if command exists
149-
mnesia:dirty_write(register_command_prepare(Command, Definer))
150-
%% ?DEBUG("This command is already defined:~n~p", [Command])
154+
Name = Command#ejabberd_commands.name,
155+
case lists:keyfind(Name, 1, ExistingCommands) of
156+
false ->
157+
mnesia:dirty_write(register_command_prepare(Command, Definer));
158+
_ ->
159+
OtherCommandDef = get_command_definition(Name),
160+
?CRITICAL_MSG("Error trying to define a command: another one already exists with the same name:~n Existing: ~p~n New: ~p", [OtherCommandDef, Command])
161+
end
151162
end,
152163
Commands),
153164
ejabberd_access_permissions:invalidate(),
154165
ok.
155166

167+
-spec register_commands(binary(), atom(), [ejabberd_commands()]) -> ok.
156168

157-
169+
register_commands(Host, Definer, Commands) ->
170+
case gen_mod:is_loaded_elsewhere(Host, Definer) of
171+
false ->
172+
register_commands(Definer, Commands);
173+
true ->
174+
ok
175+
end.
158176

159177
register_command_prepare(Command, Definer) ->
160178
Tags1 = Command#ejabberd_commands.tags,
@@ -175,6 +193,16 @@ unregister_commands(Commands) ->
175193
Commands),
176194
ejabberd_access_permissions:invalidate().
177195

196+
-spec unregister_commands(binary(), atom(), [ejabberd_commands()]) -> ok.
197+
198+
unregister_commands(Host, Definer, Commands) ->
199+
case gen_mod:is_loaded_elsewhere(Host, Definer) of
200+
false ->
201+
unregister_commands(Commands);
202+
true ->
203+
ok
204+
end.
205+
178206
-spec list_commands() -> [{atom(), [aterm()], string()}].
179207

180208
list_commands() ->
@@ -190,6 +218,16 @@ list_commands(Version) ->
190218
desc = Desc} <- Commands,
191219
not lists:member(internal, Tags)].
192220

221+
-spec list_commands(integer(), map()) -> [{atom(), [aterm()], string()}].
222+
223+
list_commands(Version, CallerInfo) ->
224+
lists:filter(
225+
fun({Name, _Args, _Desc}) ->
226+
allow == ejabberd_access_permissions:can_access(Name, CallerInfo)
227+
end,
228+
list_commands(Version)
229+
).
230+
193231
-spec get_command_format(atom()) -> {[aterm()], [{atom(),atom()}], rterm()}.
194232

195233
get_command_format(Name) ->

0 commit comments

Comments
 (0)