gnuworld/mod.ccontrol/COMMANDSCommand.cc

265 lines
5.3 KiB
C++

/**
* COMMANDSCommand.cc
* Changes all kind of commands options
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*
* $Id: COMMANDSCommand.cc,v 1.15 2006/09/26 17:35:58 kewlio Exp $
*/
#include <string>
#include "ccontrol.h"
#include "CControlCommands.h"
#include "StringTokenizer.h"
#include "ccUser.h"
#include "misc.h"
#include "gnuworld_config.h"
RCSTAG( "$Id: COMMANDSCommand.cc,v 1.15 2006/09/26 17:35:58 kewlio Exp $" ) ;
namespace gnuworld
{
using std::string ;
namespace uworld
{
bool COMMANDSCommand::Exec( iClient* theClient, const string& Message)
{
StringTokenizer st( Message ) ;
if( st.size() < 3 )
{
Usage(theClient);
return true;
}
if(st[1].size() > 128)
{
bot->Notice(theClient,"Command name can't be more than 128 characters.");
return false;
}
bot->MsgChanLog("COMMANDS %s\n",st.assemble(1).c_str());
Command* Comm = bot->findCommandInMem(st[2]);
if(!Comm)
{
bot->Notice(theClient,"Can't find command name '%s'",st[2].c_str());
return false;
}
if(!strcasecmp(st[1],"-ds"))
{
Comm->Disable();
if(!bot->updateCommand(Comm))
{
bot->Notice(theClient,"Error while disabling command");
return false;
}
else
{
bot->Notice(theClient,"Command has been disabled");
return true;
}
}
else if(!strcasecmp(st[1],"-en"))
{
Comm->Enable();
if(!bot->updateCommand(Comm))
{
bot->Notice(theClient,"Error while enabling command");
return false;
}
else
{
bot->Notice(theClient,"Command has been enabled");
return true;
}
}
else if(!strcasecmp(st[1],"-no"))
{
if(st.size() < 4)
{
bot->Notice(theClient,"-no must get a on/off option");
return false;
}
if(!strcasecmp(st[3],"on"))
{
Comm->setNeedOp(true);
if(!bot->updateCommand(Comm))
{
bot->Notice(theClient,"error while setting need op");
return false;
}
else
{
bot->Notice(theClient,"needop has been enabled");
return true;
}
}
else if(!strcasecmp(st[3],"off"))
{
Comm->setNeedOp(false);
if(!bot->updateCommand(Comm))
{
bot->Notice(theClient,"error while removing need op");
return false;
}
else
{
bot->Notice(theClient,"needop has been disabled");
return true;
}
}
else
{
bot->Notice(theClient,"unknown option for -no must be on/off");
return false;
}
}
else if(!strcasecmp(st[1],"-nl"))
{
if(st.size() < 4)
{
bot->Notice(theClient,"-nl must get a on/off option");
return false;
}
if(!strcasecmp(st[3],"on"))
{
Comm->setNoLog(true);
if(!bot->updateCommand(Comm))
{
bot->Notice(theClient,"error while setting no log");
return false;
}
else
{
bot->Notice(theClient,"no log has been enabled");
return true;
}
}
else if(!strcasecmp(st[3],"off"))
{
Comm->setNoLog(false);
if(!bot->updateCommand(Comm))
{
bot->Notice(theClient,"error while removing no log");
return false;
}
else
{
bot->Notice(theClient,"no log has been disabled");
return true;
}
}
else
{
bot->Notice(theClient,"unknown option for -nl must be on/off");
return false;
}
}
else if(!strcasecmp(st[1],"-na"))
{
if(st.size() < 4)
{
bot->Notice(theClient,"-na must get a new command name");
return false;
}
if(st[3].size() > 128)
{
bot->Notice(theClient,"Command name can't be more than 128 characters");
return false;
}
if(!strcasecmp(Comm->getName(),st[3]))
{
bot->Notice(theClient,"the command is already called like that");
return false;
}
Comm->setName(string_upper(st[3]));
if(!bot->updateCommand(Comm))
{
bot->Notice(theClient,"error while changing command name");
return false;
}
else
{
bot->Notice(theClient,"command name has been changed");
return true;
}
}
else if(!strcasecmp(st[1],"-ml"))
{
unsigned int MINLEVEL;
if(st.size() < 4)
{
bot->Notice(theClient,"-ml must get a new min level");
return false;
}
if(!strcasecmp(st[3],"CODER"))
{
MINLEVEL = operLevel::CODERLEVEL;
}
else if(!strcasecmp(st[3],"SMT"))
{
MINLEVEL = operLevel::SMTLEVEL;
}
else if(!strcasecmp(st[3],"ADMIN"))
{
MINLEVEL = operLevel::ADMINLEVEL;
}
else if(!strcasecmp(st[3],"OPER"))
{
MINLEVEL = operLevel::OPERLEVEL;
}
else if(!strcasecmp(st[3],"UHS"))
{
MINLEVEL = operLevel::UHSLEVEL;
}
else
{
bot->Notice(theClient,"Unknown level, must be CODER,SMT,ADMIN,OPER or UHS");
return false;
}
Comm->setMinLevel(MINLEVEL);
if(!bot->updateCommand(Comm))
{
bot->Notice(theClient,"error while changing command min level");
return false;
}
else
{
bot->Notice(theClient,"command min level has been changed");
return true;
}
}
else
{
bot->Notice(theClient,"Unknown option for commands, must be -en,-ds,-no,-nl");
}
return true;
}
}
}