mod_admin_shell, mod_admin_telnet, util.prosodyctl.shell: Separate output from final result

Fixes the client pausing for input after output from commands.
This commit is contained in:
Matthew Wild 2020-06-01 16:14:06 +01:00
parent a355440c01
commit e703759258
3 changed files with 25 additions and 17 deletions

View file

@ -65,7 +65,7 @@ function console:new_session(conn)
local w = function(s) conn:write(s:gsub("\n", "\r\n")); end;
local session = { conn = conn;
send = function (t)
if st.is_stanza(t) and t.name == "repl-result" then
if st.is_stanza(t) and (t.name == "repl-result" or t.name == "repl-output") then
t = "| "..t:get_text().."\n";
end
w(tostring(t));
@ -106,7 +106,7 @@ function console:process_line(session, line)
session:disconnect();
return;
end
return module:fire_event("admin/repl-line", { origin = session, stanza = st.stanza("repl"):text(line) });
return module:fire_event("admin/repl-input", { origin = session, stanza = st.stanza("repl-input"):text(line) });
end
local sessions = {};