aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ejabberd_web_admin.erl231
1 files changed, 124 insertions, 107 deletions
diff --git a/src/ejabberd_web_admin.erl b/src/ejabberd_web_admin.erl
index 2738aa14d..597dd06b0 100644
--- a/src/ejabberd_web_admin.erl
+++ b/src/ejabberd_web_admin.erl
@@ -29,8 +29,8 @@
-author('alexey@process-one.net').
--export([process/2, list_users/5,
- list_users_in_diapason/5, pretty_print_xml/1,
+-export([process/2, list_users/4,
+ list_users_in_diapason/4, pretty_print_xml/1,
term_to_id/1]).
-include("logger.hrl").
@@ -95,20 +95,20 @@ get_jid(Auth, HostHTTP, Method) ->
throw({unauthorized, Auth})
end.
-get_menu_items(global, cluster, Lang, JID, Base) ->
- {_BaseURL, _, Items} = make_server_menu([], [], Lang, JID, Base),
+get_menu_items(global, cluster, Lang, JID, Level) ->
+ {_Base, _, Items} = make_server_menu([], [], Lang, JID, Level),
lists:map(fun ({URI, Name}) ->
- {<<Base/binary, URI/binary, "/">>, Name};
+ {<<URI/binary, "/">>, Name};
({URI, Name, _SubMenu}) ->
- {<<Base/binary, URI/binary, "/">>, Name}
+ {<<URI/binary, "/">>, Name}
end,
Items);
-get_menu_items(Host, cluster, Lang, JID, Base) ->
- {_BaseURL, _, Items} = make_host_menu(Host, [], Lang, JID, Base),
+get_menu_items(Host, cluster, Lang, JID, Level) ->
+ {_Base, _, Items} = make_host_menu(Host, [], Lang, JID, Level),
lists:map(fun ({URI, Name}) ->
- {<<Base/binary, URI/binary, "/">>, Name};
+ {<<URI/binary, "/">>, Name};
({URI, Name, _SubMenu}) ->
- {<<Base/binary, URI/binary, "/">>, Name}
+ {<<URI/binary, "/">>, Name}
end,
Items).
@@ -123,10 +123,10 @@ get_menu_items(Host, cluster, Lang, JID, Base) ->
%% Items
%% ).
-is_allowed_path(Base, {Path, _}, JID) ->
- is_allowed_path(Base ++ [Path], JID);
-is_allowed_path(Base, {Path, _, _}, JID) ->
- is_allowed_path(Base ++ [Path], JID).
+is_allowed_path(BasePath, {Path, _}, JID) ->
+ is_allowed_path(BasePath ++ [Path], JID);
+is_allowed_path(BasePath, {Path, _, _}, JID) ->
+ is_allowed_path(BasePath ++ [Path], JID).
is_allowed_path([<<"admin">> | Path], JID) ->
is_allowed_path(Path, JID);
@@ -152,7 +152,7 @@ url_to_path(URL) -> str:tokens(URL, <<"/">>).
process([<<"server">>, SHost | RPath] = Path,
#request{auth = Auth, lang = Lang, host = HostHTTP,
- path = RequestPath, method = Method} =
+ method = Method} =
Request) ->
Host = jid:nameprep(SHost),
case ejabberd_router:is_my_host(Host) of
@@ -160,8 +160,7 @@ process([<<"server">>, SHost | RPath] = Path,
case get_auth_admin(Auth, HostHTTP, Path, Method) of
{ok, {User, Server}} ->
AJID = get_jid(Auth, HostHTTP, Method),
- Base = extract_base_path(RequestPath, Path),
- process_admin(Base, Host,
+ process_admin(Host,
Request#request{path = RPath,
us = {User, Server}},
AJID);
@@ -188,13 +187,12 @@ process([<<"server">>, SHost | RPath] = Path,
end;
process(RPath,
#request{auth = Auth, lang = Lang, host = HostHTTP,
- path = Path, method = Method} =
+ method = Method} =
Request) ->
- Base = extract_base_path(Path, RPath),
case get_auth_admin(Auth, HostHTTP, RPath, Method) of
{ok, {User, Server}} ->
AJID = get_jid(Auth, HostHTTP, Method),
- process_admin(Base, global,
+ process_admin(global,
Request#request{path = RPath,
us = {User, Server}},
AJID);
@@ -268,15 +266,16 @@ get_auth_account2(HostOfRule, AccessRule, User, Server,
%%%==================================
%%%% make_xhtml
-make_xhtml(Els, Host, Lang, JID, Base) ->
- make_xhtml(Els, Host, cluster, Lang, JID, Base).
+make_xhtml(Els, Host, Lang, JID, Level) ->
+ make_xhtml(Els, Host, cluster, Lang, JID, Level).
%% @spec (Els, Host, Node, Lang, JID) -> {200, [html], xmlelement()}
%% where Host = global | string()
%% Node = cluster | atom()
%% JID = jid()
-make_xhtml(Els, Host, Node, Lang, JID, Base) ->
- MenuItems = make_navigation(Host, Node, Lang, JID, Base),
+make_xhtml(Els, Host, Node, Lang, JID, Level) ->
+ Base = get_base_path_sum(0, 0, Level),
+ MenuItems = make_navigation(Host, Node, Lang, JID, Level),
{200, [html],
#xmlel{name = <<"html">>,
attrs =
@@ -334,19 +333,19 @@ make_xhtml(Els, Host, Node, Lang, JID, Base) ->
direction(<<"he">>) -> [{<<"dir">>, <<"rtl">>}];
direction(_) -> [].
-extract_base_path(Path, RPath) ->
- Base = lists:sublist(Path, length(Path)-length(RPath)),
- iolist_to_binary("/" ++ lists:join("/", Base) ++ "/").
+get_base_path(Host, Node, Level) ->
+ SumHost = case Host of
+ global -> 0;
+ _ -> -2
+ end,
+ SumNode = case Node of
+ cluster -> 0;
+ _ -> -2
+ end,
+ get_base_path_sum(SumHost, SumNode, Level).
-get_base_path(global, cluster, Base) -> Base;
-get_base_path(Host, cluster, Base) ->
- <<Base/binary, "/server/", Host/binary, "/">>;
-get_base_path(global, Node, Base) ->
- <<Base/binary, "/node/",
- (iolist_to_binary(atom_to_list(Node)))/binary, "/">>;
-get_base_path(Host, Node, Base) ->
- <<Base/binary, "/server/", Host/binary, "/node/",
- (iolist_to_binary(atom_to_list(Node)))/binary, "/">>.
+get_base_path_sum(SumHost, SumNode, Level) ->
+ iolist_to_binary(lists:duplicate(Level + SumHost + SumNode, "../")).
%%%==================================
%%%% css & images
@@ -357,11 +356,11 @@ additions_js() ->
{error, _} -> <<>>
end.
-css(Base, Host) ->
+css(Host) ->
case misc:read_css("admin.css") of
{ok, CSS} ->
- BP = get_base_path(Host, cluster, Base),
- re:replace(CSS, <<"@BASE@">>, BP, [{return, binary}]);
+ Base = get_base_path(Host, cluster, 0),
+ re:replace(CSS, <<"@BASE@">>, Base, [{return, binary}]);
{error, _} ->
<<>>
end.
@@ -387,73 +386,73 @@ logo_fill() ->
%%%==================================
%%%% process_admin
-process_admin(Base, global, #request{path = [], lang = Lang}, AJID) ->
+process_admin(global, #request{path = [], lang = Lang}, AJID) ->
make_xhtml((?H1GL((translate:translate(Lang, ?T("Administration"))), <<"">>,
<<"Contents">>))
++
[?XE(<<"ul">>,
[?LI([?ACT(MIU, MIN)])
|| {MIU, MIN}
- <- get_menu_items(global, cluster, Lang, AJID, Base)])],
- global, Lang, AJID, Base);
-process_admin(Base, Host, #request{path = [], lang = Lang}, AJID) ->
+ <- get_menu_items(global, cluster, Lang, AJID, 0)])],
+ global, Lang, AJID, 0);
+process_admin(Host, #request{path = [], lang = Lang}, AJID) ->
make_xhtml([?XCT(<<"h1">>, ?T("Administration")),
?XE(<<"ul">>,
[?LI([?ACT(MIU, MIN)])
|| {MIU, MIN}
- <- get_menu_items(Host, cluster, Lang, AJID, Base)])],
- Host, Lang, AJID, Base);
-process_admin(Base, Host, #request{path = [<<"style.css">>]}, _) ->
+ <- get_menu_items(Host, cluster, Lang, AJID, 2)])],
+ Host, Lang, AJID, 2);
+process_admin(Host, #request{path = [<<"style.css">>]}, _) ->
{200,
[{<<"Content-Type">>, <<"text/css">>}, last_modified(),
cache_control_public()],
- css(Base, Host)};
-process_admin(_Base, _Host, #request{path = [<<"favicon.ico">>]}, _) ->
+ css(Host)};
+process_admin(_Host, #request{path = [<<"favicon.ico">>]}, _) ->
{200,
[{<<"Content-Type">>, <<"image/x-icon">>},
last_modified(), cache_control_public()],
favicon()};
-process_admin(_Base, _Host, #request{path = [<<"logo.png">>]}, _) ->
+process_admin(_Host, #request{path = [<<"logo.png">>]}, _) ->
{200,
[{<<"Content-Type">>, <<"image/png">>}, last_modified(),
cache_control_public()],
logo()};
-process_admin(_Base, _Host, #request{path = [<<"logo-fill.png">>]}, _) ->
+process_admin(_Host, #request{path = [<<"logo-fill.png">>]}, _) ->
{200,
[{<<"Content-Type">>, <<"image/png">>}, last_modified(),
cache_control_public()],
logo_fill()};
-process_admin(_Base, _Host, #request{path = [<<"additions.js">>]}, _) ->
+process_admin(_Host, #request{path = [<<"additions.js">>]}, _) ->
{200,
[{<<"Content-Type">>, <<"text/javascript">>},
last_modified(), cache_control_public()],
additions_js()};
-process_admin(Base, global, #request{path = [<<"vhosts">>], lang = Lang}, AJID) ->
+process_admin(global, #request{path = [<<"vhosts">>], lang = Lang}, AJID) ->
Res = list_vhosts(Lang, AJID),
make_xhtml((?H1GL((translate:translate(Lang, ?T("Virtual Hosts"))),
<<"virtual-hosting">>, ?T("Virtual Hosting")))
++ Res,
- global, Lang, AJID, Base);
-process_admin(Base, Host, #request{path = [<<"users">>], q = Query,
+ global, Lang, AJID, 1);
+process_admin(Host, #request{path = [<<"users">>], q = Query,
lang = Lang}, AJID)
when is_binary(Host) ->
- Res = list_users(Base, Host, Query, Lang, fun url_func/1),
+ Res = list_users(Host, Query, Lang, fun url_func/1),
make_xhtml([?XCT(<<"h1">>, ?T("Users"))] ++ Res, Host,
- Lang, AJID, Base);
-process_admin(Base, Host, #request{path = [<<"users">>, Diap],
+ Lang, AJID, 3);
+process_admin(Host, #request{path = [<<"users">>, Diap],
lang = Lang}, AJID)
when is_binary(Host) ->
- Res = list_users_in_diapason(Base, Host, Diap, Lang,
+ Res = list_users_in_diapason(Host, Diap, Lang,
fun url_func/1),
make_xhtml([?XCT(<<"h1">>, ?T("Users"))] ++ Res, Host,
- Lang, AJID, Base);
-process_admin(Base, Host, #request{path = [<<"online-users">>],
+ Lang, AJID, 4);
+process_admin(Host, #request{path = [<<"online-users">>],
lang = Lang}, AJID)
when is_binary(Host) ->
Res = list_online_users(Host, Lang),
make_xhtml([?XCT(<<"h1">>, ?T("Online Users"))] ++ Res,
- Host, Lang, AJID, Base);
-process_admin(Base, Host, #request{path = [<<"last-activity">>],
+ Host, Lang, AJID, 3);
+process_admin(Host, #request{path = [<<"last-activity">>],
q = Query, lang = Lang}, AJID)
when is_binary(Host) ->
?DEBUG("Query: ~p", [Query]),
@@ -494,37 +493,49 @@ process_admin(Base, Host, #request{path = [<<"last-activity">>],
?INPUTT(<<"submit">>, <<"integral">>,
?T("Show Integral Table"))])]
++ Res,
- Host, Lang, AJID, Base);
-process_admin(Base, Host, #request{path = [<<"stats">>], lang = Lang}, AJID) ->
+ Host, Lang, AJID, 3);
+process_admin(Host, #request{path = [<<"stats">>], lang = Lang}, AJID) ->
Res = get_stats(Host, Lang),
PageH1 = ?H1GL(translate:translate(Lang, ?T("Statistics")), <<"mod-stats">>, <<"mod_stats">>),
- make_xhtml(PageH1 ++ Res, Host, Lang, AJID, Base);
-process_admin(Base, Host, #request{path = [<<"user">>, U],
+ Level = case Host of
+ global -> 1;
+ _ -> 3
+ end,
+ make_xhtml(PageH1 ++ Res, Host, Lang, AJID, Level);
+process_admin(Host, #request{path = [<<"user">>, U],
q = Query, lang = Lang}, AJID) ->
case ejabberd_auth:user_exists(U, Host) of
true ->
Res = user_info(U, Host, Query, Lang),
- make_xhtml(Res, Host, Lang, AJID, Base);
+ make_xhtml(Res, Host, Lang, AJID, 4);
false ->
make_xhtml([?XCT(<<"h1">>, ?T("Not Found"))], Host,
- Lang, AJID, Base)
+ Lang, AJID, 4)
end;
-process_admin(Base, Host, #request{path = [<<"nodes">>], lang = Lang}, AJID) ->
+process_admin(Host, #request{path = [<<"nodes">>], lang = Lang}, AJID) ->
Res = get_nodes(Lang),
- make_xhtml(Res, Host, Lang, AJID, Base);
-process_admin(Base, Host, #request{path = [<<"node">>, SNode | NPath],
+ Level = case Host of
+ global -> 1;
+ _ -> 3
+ end,
+ make_xhtml(Res, Host, Lang, AJID, Level);
+process_admin(Host, #request{path = [<<"node">>, SNode | NPath],
q = Query, lang = Lang}, AJID) ->
case search_running_node(SNode) of
false ->
make_xhtml([?XCT(<<"h1">>, ?T("Node not found"))], Host,
- Lang, AJID, Base);
+ Lang, AJID, 2);
Node ->
- Res = get_node(Base, Host, Node, NPath, Query, Lang),
- make_xhtml(Res, Host, Node, Lang, AJID, Base)
+ Res = get_node(Host, Node, NPath, Query, Lang),
+ Level = case Host of
+ global -> 2 + length(NPath);
+ _ -> 4 + length(NPath)
+ end,
+ make_xhtml(Res, Host, Node, Lang, AJID, Level)
end;
%%%==================================
%%%% process_admin default case
-process_admin(Base, Host, #request{lang = Lang} = Request, AJID) ->
+process_admin(Host, #request{lang = Lang} = Request, AJID) ->
Res = case Host of
global ->
ejabberd_hooks:run_fold(
@@ -533,13 +544,17 @@ process_admin(Base, Host, #request{lang = Lang} = Request, AJID) ->
ejabberd_hooks:run_fold(
webadmin_page_host, Host, [], [Host, Request])
end,
+ Level = case Host of
+ global -> length(Request#request.path);
+ _ -> 2 + length(Request#request.path)
+ end,
case Res of
[] ->
setelement(1,
make_xhtml([?XC(<<"h1">>, <<"Not Found">>)], Host, Lang,
- AJID, Base),
+ AJID, Level),
404);
- _ -> make_xhtml(Res, Host, Lang, AJID, Base)
+ _ -> make_xhtml(Res, Host, Lang, AJID, Level)
end.
term_to_id(T) -> base64:encode((term_to_binary(T))).
@@ -586,13 +601,13 @@ list_vhosts2(Lang, Hosts) ->
%%%==================================
%%%% list_users
-list_users(Base, Host, Query, Lang, URLFunc) ->
+list_users(Host, Query, Lang, URLFunc) ->
Res = list_users_parse_query(Query, Host),
Users = ejabberd_auth:get_users(Host),
SUsers = lists:sort([{S, U} || {U, S} <- Users]),
FUsers = case length(SUsers) of
N when N =< 100 ->
- [list_given_users(Host, SUsers, Base, Lang,
+ [list_given_users(Host, SUsers, <<"../">>, Lang,
URLFunc)];
N ->
NParts = trunc(math:sqrt(N * 6.17999999999999993783e-1))
@@ -668,18 +683,17 @@ list_users_parse_query(Query, Host) ->
false -> nothing
end.
-list_users_in_diapason(Base, Host, Diap, Lang, URLFunc) ->
+list_users_in_diapason(Host, Diap, Lang, URLFunc) ->
Users = ejabberd_auth:get_users(Host),
SUsers = lists:sort([{S, U} || {U, S} <- Users]),
[S1, S2] = ejabberd_regexp:split(Diap, <<"-">>),
N1 = binary_to_integer(S1),
N2 = binary_to_integer(S2),
Sub = lists:sublist(SUsers, N1, N2 - N1 + 1),
- [list_given_users(Host, Sub, Base, Lang,
+ [list_given_users(Host, Sub, <<"../../">>, Lang,
URLFunc)].
-list_given_users(Host, Users, Base, Lang, URLFunc) ->
- Prefix = get_base_path(Host, cluster, Base),
+list_given_users(Host, Users, Prefix, Lang, URLFunc) ->
ModOffline = get_offlinemsg_module(Host),
?XE(<<"table">>,
[?XE(<<"thead">>,
@@ -1061,10 +1075,10 @@ search_running_node(SNode, [Node | Nodes]) ->
_ -> search_running_node(SNode, Nodes)
end.
-get_node(Base, global, Node, [], Query, Lang) ->
+get_node(global, Node, [], Query, Lang) ->
Res = node_parse_query(Node, Query),
- BP = get_base_path(global, Node, Base),
- MenuItems2 = make_menu_items(global, Node, BP, Lang),
+ Base = get_base_path(global, Node, 2),
+ MenuItems2 = make_menu_items(global, Node, Base, Lang),
[?XC(<<"h1">>,
(str:format(translate:translate(Lang, ?T("Node ~p")), [Node])))]
++
@@ -1085,12 +1099,12 @@ get_node(Base, global, Node, [], Query, Lang) ->
[?INPUTT(<<"submit">>, <<"restart">>, ?T("Restart")),
?C(<<" ">>),
?INPUTT(<<"submit">>, <<"stop">>, ?T("Stop"))])];
-get_node(Base, Host, Node, [], _Query, Lang) ->
- BP = get_base_path(Host, Node, Base),
- MenuItems2 = make_menu_items(Host, Node, BP, Lang),
+get_node(Host, Node, [], _Query, Lang) ->
+ Base = get_base_path(Host, Node, 4),
+ MenuItems2 = make_menu_items(Host, Node, Base, Lang),
[?XC(<<"h1">>, (str:format(translate:translate(Lang, ?T("Node ~p")), [Node]))),
?XE(<<"ul">>, MenuItems2)];
-get_node(_Base, global, Node, [<<"db">>], Query, Lang) ->
+get_node(global, Node, [<<"db">>], Query, Lang) ->
case ejabberd_cluster:call(Node, mnesia, system_info, [tables]) of
{badrpc, _Reason} ->
[?XCT(<<"h1">>, ?T("RPC Call Error"))];
@@ -1168,7 +1182,7 @@ get_node(_Base, global, Node, [<<"db">>], Query, Lang) ->
<<"submit">>,
?T("Submit"))])])]))])])]
end;
-get_node(_Base, global, Node, [<<"backup">>], Query, Lang) ->
+get_node(global, Node, [<<"backup">>], Query, Lang) ->
HomeDirRaw = case {os:getenv("HOME"), os:type()} of
{EnvHome, _} when is_list(EnvHome) -> list_to_binary(EnvHome);
{false, {win32, _Osname}} -> <<"C:/">>;
@@ -1318,7 +1332,7 @@ get_node(_Base, global, Node, [<<"backup">>], Query, Lang) ->
?XE(<<"td">>,
[?INPUTT(<<"submit">>, <<"import_dir">>,
?T("OK"))])])])])])];
-get_node(_Base, global, Node, [<<"stats">>], _Query, Lang) ->
+get_node(global, Node, [<<"stats">>], _Query, Lang) ->
UpTime = ejabberd_cluster:call(Node, erlang, statistics,
[wall_clock]),
UpTimeS = (str:format("~.3f",
@@ -1367,7 +1381,7 @@ get_node(_Base, global, Node, [<<"stats">>], _Query, Lang) ->
[?XCT(<<"td">>, ?T("Transactions Logged:")),
?XAC(<<"td">>, [{<<"class">>, <<"alignright">>}],
(pretty_string_int(TransactionsLogged)))])])])];
-get_node(_Base, global, Node, [<<"update">>], Query, Lang) ->
+get_node(global, Node, [<<"update">>], Query, Lang) ->
ejabberd_cluster:call(Node, code, purge, [ejabberd_update]),
Res = node_update_parse_query(Node, Query),
ejabberd_cluster:call(Node, code, load_file, [ejabberd_update]),
@@ -1423,7 +1437,7 @@ get_node(_Base, global, Node, [<<"update">>], Query, Lang) ->
?XC(<<"pre">>, (misc:atom_to_binary(Check))),
?BR,
?INPUTT(<<"submit">>, <<"update">>, ?T("Update"))])];
-get_node(_Base, Host, Node, NPath, Query, Lang) ->
+get_node(Host, Node, NPath, Query, Lang) ->
Res = case Host of
global ->
ejabberd_hooks:run_fold(webadmin_page_node, Host, [],
@@ -1735,19 +1749,19 @@ make_navigation_menu(Host, Node, Lang, JID, Level) ->
make_server_menu(HostMenu, NodeMenu, Lang, JID, Level).
%% @spec (Host, Node, Base, Lang) -> [LI]
-make_menu_items(global, cluster, BP, Lang) ->
+make_menu_items(global, cluster, Base, Lang) ->
HookItems = get_menu_items_hook(server, Lang),
- make_menu_items(Lang, {BP, <<"">>, HookItems});
-make_menu_items(global, Node, BP, Lang) ->
+ make_menu_items(Lang, {Base, <<"">>, HookItems});
+make_menu_items(global, Node, Base, Lang) ->
HookItems = get_menu_items_hook({node, Node}, Lang),
- make_menu_items(Lang, {BP, <<"">>, HookItems});
-make_menu_items(Host, cluster, BP, Lang) ->
+ make_menu_items(Lang, {Base, <<"">>, HookItems});
+make_menu_items(Host, cluster, Base, Lang) ->
HookItems = get_menu_items_hook({host, Host}, Lang),
- make_menu_items(Lang, {BP, <<"">>, HookItems});
-make_menu_items(Host, Node, BP, Lang) ->
+ make_menu_items(Lang, {Base, <<"">>, HookItems});
+make_menu_items(Host, Node, Base, Lang) ->
HookItems = get_menu_items_hook({hostnode, Host, Node},
Lang),
- make_menu_items(Lang, {BP, <<"">>, HookItems}).
+ make_menu_items(Lang, {Base, <<"">>, HookItems}).
make_host_node_menu(global, _, _Lang, _JID, _Level) ->
{<<"">>, <<"">>, []};
@@ -1789,19 +1803,22 @@ make_node_menu(global, Node, Lang, Level) ->
{<<"stats">>, ?T("Statistics")},
{<<"update">>, ?T("Update")}]
++ get_menu_items_hook({node, Node}, Lang),
- {NodeBase, iolist_to_binary(atom_to_list(Node)), NodeFixed}.
+ {NodeBase, iolist_to_binary(atom_to_list(Node)),
+ NodeFixed};
+make_node_menu(_Host, _Node, _Lang, _Level) ->
+ {<<"">>, <<"">>, []}.
make_server_menu(HostMenu, NodeMenu, Lang, JID, Level) ->
- BP = get_base_path(global, cluster, Level),
+ Base = get_base_path(global, cluster, Level),
Fixed = [{<<"vhosts">>, ?T("Virtual Hosts"), HostMenu},
{<<"nodes">>, ?T("Nodes"), NodeMenu},
{<<"stats">>, ?T("Statistics")}]
++ get_menu_items_hook(server, Lang),
- Base = url_to_path(BP),
+ BasePath = url_to_path(Base),
Fixed2 = [Tuple
|| Tuple <- Fixed,
- is_allowed_path(Base, Tuple, JID)],
- {BP, <<"">>, Fixed2}.
+ is_allowed_path(BasePath, Tuple, JID)],
+ {Base, <<"">>, Fixed2}.
get_menu_items_hook({hostnode, Host, Node}, Lang) ->
ejabberd_hooks:run_fold(webadmin_menu_hostnode, Host,