mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.prosodyctl.shell, util.adminstream: Move connection logic into adminstream for easier reuse
This commit is contained in:
parent
425c9cb979
commit
78a8bfc31d
2 changed files with 47 additions and 42 deletions
|
@ -136,6 +136,44 @@ end
|
|||
|
||||
--- Public methods
|
||||
|
||||
local function new_connection(socket_path, listeners)
|
||||
local have_unix, unix = pcall(require, "socket.unix");
|
||||
if type(unix) ~= "table" then
|
||||
have_unix = false;
|
||||
end
|
||||
local conn, sock;
|
||||
|
||||
return {
|
||||
connect = function ()
|
||||
if not have_unix then
|
||||
return nil, "no unix socket support";
|
||||
end
|
||||
if sock or conn then
|
||||
return nil, "already connected";
|
||||
end
|
||||
sock = unix.stream();
|
||||
sock:settimeout(0);
|
||||
local ok, err = sock:connect(socket_path);
|
||||
if not ok then
|
||||
return nil, err;
|
||||
end
|
||||
conn = server.wrapclient(sock, nil, nil, listeners, "*a");
|
||||
return true;
|
||||
end;
|
||||
disconnect = function ()
|
||||
if conn then
|
||||
conn:close();
|
||||
conn = nil;
|
||||
end
|
||||
if sock then
|
||||
sock:close();
|
||||
sock = nil;
|
||||
end
|
||||
return true;
|
||||
end;
|
||||
};
|
||||
end
|
||||
|
||||
local function new_server(sessions, stanza_handler)
|
||||
local listeners = {};
|
||||
|
||||
|
@ -280,6 +318,7 @@ local function new_client()
|
|||
end
|
||||
|
||||
return {
|
||||
connection = new_connection;
|
||||
server = new_server;
|
||||
client = new_client;
|
||||
};
|
||||
|
|
|
@ -1,11 +1,3 @@
|
|||
local have_unix, unix = pcall(require, "socket.unix");
|
||||
|
||||
if not have_unix or type(unix) ~= "table" then
|
||||
print("** LuaSocket unix socket support not available or incompatible, ensure your");
|
||||
print("** version is up to date.");
|
||||
os.exit(1);
|
||||
end
|
||||
|
||||
local config = require "core.configmanager";
|
||||
local server = require "net.server";
|
||||
local st = require "util.stanza";
|
||||
|
@ -44,37 +36,6 @@ local function repl(client)
|
|||
send_line(client, line);
|
||||
end
|
||||
|
||||
local function connection(socket_path, listeners)
|
||||
local conn, sock;
|
||||
|
||||
return {
|
||||
connect = function ()
|
||||
if sock or conn then
|
||||
return nil, "already connected";
|
||||
end
|
||||
sock = unix.stream();
|
||||
sock:settimeout(0);
|
||||
local ok, err = sock:connect(socket_path);
|
||||
if not ok then
|
||||
return nil, err;
|
||||
end
|
||||
conn = server.wrapclient(sock, nil, nil, listeners, "*a");
|
||||
return true;
|
||||
end;
|
||||
disconnect = function ()
|
||||
if conn then
|
||||
conn:close();
|
||||
conn = nil;
|
||||
end
|
||||
if sock then
|
||||
sock:close();
|
||||
sock = nil;
|
||||
end
|
||||
return true;
|
||||
end;
|
||||
};
|
||||
end
|
||||
|
||||
local function printbanner()
|
||||
print([[
|
||||
____ \ / _
|
||||
|
@ -117,11 +78,16 @@ local function start(arg) --luacheck: ignore 212/arg
|
|||
end);
|
||||
|
||||
local socket_path = path.resolve_relative_path(prosody.paths.data, opts.socket or config.get("*", "admin_socket") or "prosody.sock");
|
||||
local conn = connection(socket_path, client.listeners);
|
||||
local conn = adminstream.connection(socket_path, client.listeners);
|
||||
local ok, err = conn:connect();
|
||||
if not ok then
|
||||
if err == "no unix socket support" then
|
||||
print("** LuaSocket unix socket support not available or incompatible, ensure your");
|
||||
print("** version is up to date.");
|
||||
else
|
||||
print("** Unable to connect to server - is it running? Is mod_admin_shell enabled?");
|
||||
print("** Connection error: "..err);
|
||||
end
|
||||
os.exit(1);
|
||||
end
|
||||
server.loop();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue