add useradd command

master
Menche 2016-07-19 20:21:33 -07:00
parent de9eeca556
commit 56687cdb83
3 changed files with 43 additions and 1 deletions

View File

@ -5974,6 +5974,13 @@ void Server::handlePeerChanges()
}
}
void Server::addUser(const char *name, const char *password)
{
m_authmanager.add(name);
m_authmanager.setPassword(name, password);
m_authmanager.save();
}
uint64_t Server::getPlayerPrivs(Player *player)
{
if(player==NULL)

View File

@ -440,6 +440,8 @@ public:
}
}
void setPlayerPassword(const char *name, const char *password) {m_authmanager.setPassword(name,password);}
void addUser(const char *name, const char *password);
bool userExists(const char *name) {return m_authmanager.exists(name);}
Player *getPlayer(std::string name) {return m_env.getPlayer(name.c_str());}
core::list<Player*> getPlayers() {return m_env.getPlayers();}

View File

@ -299,10 +299,38 @@ void cmd_banunban(std::wostringstream &os, ServerCommandContext *ctx)
}
}
void cmd_adduser(std::wostringstream &os,
ServerCommandContext *ctx)
{
if ((ctx->privs & PRIV_BAN) == 0) {
os<<L"-!- You don't have permission to do that";
return;
}
if (ctx->parms.size() != 3) {
os<<L"-!- /adduser <PLAYERNAME> <PASSWORD>";
return;
}
if (ctx->server->userExists(wide_to_narrow(ctx->parms[1]).c_str())) {
os<<L"-!- User already exists!";
return;
}
std::string name = wide_to_narrow(ctx->parms[1]);
std::string pass = translatePassword(name,ctx->parms[2]);
ctx->server->addUser(name.c_str(), pass.c_str());
os<<L"-!- Added user "<<ctx->parms[1];
actionstream<<ctx->player->getName()<<" creates user "
<<wide_to_narrow(ctx->parms[1])<<std::endl;
}
void cmd_clearobjects(std::wostringstream &os,
ServerCommandContext *ctx)
{
if ((ctx->privs & PRIV_SERVER) ==0) {
if ((ctx->privs & PRIV_SERVER) == 0) {
os<<L"-!- You don't have permission to do that";
return;
}
@ -400,6 +428,9 @@ void cmd_help(std::wostringstream &os,
}else if (ctx->parms[1] == L"unban") {
os<<L"-!- /unban <PLAYERNAME OR IP ADDRESS> - remove a player's ban from the server";
return;
}else if (ctx->parms[1] == L"adduser") {
os<<L"-!- /adduser <PLAYERNAME> <PASSWORD> - add a new player with the specified password";
return;
}
}
if (ctx->parms[1] == L"privs") {
@ -459,6 +490,8 @@ std::wstring processServerCommand(ServerCommandContext *ctx)
cmd_teleport(os, ctx);
}else if(ctx->parms[0] == L"ban" || ctx->parms[0] == L"unban") {
cmd_banunban(os, ctx);
}else if(ctx->parms[0] == L"adduser") {
cmd_adduser(os, ctx);
}else if(ctx->parms[0] == L"me") {
cmd_me(os, ctx);
}else if(ctx->parms[0] == L"setpassword") {