/** * UNFORCECommand.cc * * 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: UNFORCECommand.cc,v 1.10 2005/12/05 17:32:15 kewlio Exp $ */ #include #include "StringTokenizer.h" #include "ELog.h" #include "cservice.h" #include "levels.h" #include "responses.h" const char UNFORCECommand_cc_rcsId[] = "$Id: UNFORCECommand.cc,v 1.10 2005/12/05 17:32:15 kewlio Exp $" ; namespace gnuworld { using std::string ; bool UNFORCECommand::Exec( iClient* theClient, const string& Message ) { bot->incStat("COMMANDS.UNFORCE"); StringTokenizer st( Message ) ; if( st.size() < 2 ) { Usage(theClient); return true; } /* * Fetch the sqlUser record attached to this client. If there isn't one, * they aren't logged in - tell them they should be. */ sqlUser* theUser = bot->isAuthed(theClient, true); if (!theUser) { return false; } int admLevel = bot->getAdminAccessLevel(theUser); if (admLevel < level::force) { bot->Notice(theClient, bot->getResponse(theUser, language::insuf_access, string("Sorry, you have insufficient access to " "perform that command."))); return false; } /* * First, check the channel is registered. */ sqlChannel* theChan = bot->getChannelRecord(st[1]); if (!theChan) { bot->Notice(theClient, bot->getResponse(theUser, language::chan_not_reg, string("Sorry, %s isn't registered with me.")).c_str(), st[1].c_str()); return false; } /* * Check to see if this userID is forced in this channel. */ sqlChannel::forceMapType::iterator ptr = theChan->forceMap.find(theUser->getID()); /* If we found something, drop it. */ if(ptr != theChan->forceMap.end()) { theChan->forceMap.erase(theUser->getID()); bot->Notice(theClient, bot->getResponse(theUser, language::rem_temp_access, string("Removed your temporary access of %i from channel %s")).c_str(), admLevel, theChan->getName().c_str()); return true; } bot->Notice(theClient, bot->getResponse(theUser, language::no_forced_access, string("You don't appear to have a forced access in " "%s, perhaps it expired?")).c_str(), theChan->getName().c_str()); return true ; } } // namespace gnuworld