/** * CHECKCommand.cc * * 07/19/2005 - Reed Loden * Initial Version * * Shows the number of ops and total clients in * * 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: CHECKCommand.cc,v 1.4 2006/12/09 00:29:18 buzlip01 Exp $ */ #include "gnuworld_config.h" #include "Network.h" #include "chanfix.h" #include "responses.h" #include "StringTokenizer.h" RCSTAG("$Id: CHECKCommand.cc,v 1.4 2006/12/09 00:29:18 buzlip01 Exp $"); namespace gnuworld { namespace cf { void CHECKCommand::Exec(iClient* theClient, sqlcfUser* theUser, const std::string& Message) { StringTokenizer st(Message); Channel* netChan = Network->findChannel(st[1]); if (!netChan) { bot->SendTo(theClient, bot->getResponse(theUser, language::no_such_channel, std::string("No such channel %s.")).c_str()); return; } /* Reports ops and total clients. */ bot->SendTo(theClient, bot->getResponse(theUser, language::check_results, std::string("I see %d opped out of %d total clients in %s.")).c_str(), bot->countChanOps(netChan), netChan->size(), netChan->getName().c_str()); bot->logAdminMessage("%s (%s) CHECK %s", theUser ? theUser->getUserName().c_str() : "!NOT-LOGGED-IN!", theClient->getRealNickUserHost().c_str(), netChan->getName().c_str()); bot->logLastComMessage(theClient, Message); return; } } // namespace cf } // namespace gnuworld