prosodyctl: Implemented the 'list' command, which is a bridge to 'luarocks list'

This commit is contained in:
João Duarte 2019-06-20 19:17:47 +01:00
parent 8025f98427
commit 992d18aa62

View file

@ -85,6 +85,19 @@ local prosodyctl_timeout = (configmanager.get("*", "prosodyctl_timeout") or 5) *
local commands = {};
local command = table.remove(arg, 1);
function commands.list(arg)
-- Need to think about the case with many flags
local flag="--tree="
-- I'm considering the flag is the first, but there can be many flags
if arg[1] and arg[1]:sub(1, #flag) == flag then
local dir = arg[1]:match("=(.+)$")
-- These extra double brackets allow us to correctly process names with spaces
os.execute("luarocks list --tree=".."'"..dir.."'")
else
os.execute("luarocks list --tree="..prosody.paths.data.."/rocks")
end
end
function commands.enabled_plugins()
for module in modulemanager.get_modules_for_host() do
show_warning("%s", module)