mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
mod_admin_telnet: Verify that the host exists in user commands (Thanks SkyBlue)
This commit is contained in:
parent
146ed08e62
commit
aa4b5036e3
1 changed files with 9 additions and 3 deletions
|
@ -939,7 +939,9 @@ local um = require"core.usermanager";
|
|||
def_env.user = {};
|
||||
function def_env.user:create(jid, password)
|
||||
local username, host = jid_split(jid);
|
||||
if um.user_exists(username, host) then
|
||||
if not hosts[host] then
|
||||
return nil, "No such host: "..host;
|
||||
elseif um.user_exists(username, host) then
|
||||
return nil, "User exists";
|
||||
end
|
||||
local ok, err = um.create_user(username, password, host);
|
||||
|
@ -952,7 +954,9 @@ end
|
|||
|
||||
function def_env.user:delete(jid)
|
||||
local username, host = jid_split(jid);
|
||||
if not um.user_exists(username, host) then
|
||||
if not hosts[host] then
|
||||
return nil, "No such host: "..host;
|
||||
elseif um.user_exists(username, host) then
|
||||
return nil, "No such user";
|
||||
end
|
||||
local ok, err = um.delete_user(username, host);
|
||||
|
@ -965,7 +969,9 @@ end
|
|||
|
||||
function def_env.user:password(jid, password)
|
||||
local username, host = jid_split(jid);
|
||||
if not um.user_exists(username, host) then
|
||||
if not hosts[host] then
|
||||
return nil, "No such host: "..host;
|
||||
elseif um.user_exists(username, host) then
|
||||
return nil, "No such user";
|
||||
end
|
||||
local ok, err = um.set_password(username, password, host);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue