/** * REMSGLINECommand.cc * Removes a gline * * 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: REMSGLINECommand.cc,v 1.8 2006/09/26 17:36:01 kewlio Exp $ */ #include #include #include #include "ccontrol.h" #include "CControlCommands.h" #include "StringTokenizer.h" #include "gnuworld_config.h" RCSTAG( "$Id: REMSGLINECommand.cc,v 1.8 2006/09/26 17:36:01 kewlio Exp $" ) ; namespace gnuworld { using std::string ; namespace uworld { // remgline user@host bool REMSGLINECommand::Exec( iClient* theClient, const string& Message ) { StringTokenizer st( Message ) ; if( st.size() < 2 ) { Usage( theClient ) ; return true ; } bot->MsgChanLog("REMSGLINE %s\n",st.assemble(1).c_str()); if(st[1].substr(0,1) == "#") { bot->Notice(theClient,"Please use REMGCHAN to remove a BADCHAN gline"); return false; } ccGline *tmpGline; bool realName = false; if(st[1].substr(0,1) != "$") tmpGline = bot->findGline(st[1]); else { tmpGline = bot->findRealGline(st[1]); realName = true; } if(tmpGline != NULL) { if(!tmpGline->Delete()) bot->MsgChanLog("Error while removing gline for host %s from the database\n", st[1].c_str()); bot->remGline(tmpGline); delete tmpGline; } server->removeGline(st[1],bot); bot->Notice( theClient, "Removal of gline (%s) succeeded\n",st[1].c_str() ) ; return true ; } } } // namespace gnuworld