]> jfr.im git - irc/evilnet/mod.chanfix.git/blob - UNSUSPENDCommand.cc
Fixed missing include, corebug fix was already applied here.
[irc/evilnet/mod.chanfix.git] / UNSUSPENDCommand.cc
1 /**
2 * UNSUSPENDCommand.cc
3 *
4 * 08/29/2005 - Reed Loden <reed@reedloden.com>
5 * Initial Version
6 *
7 * Unsuspends a user
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
22 * USA.
23 *
24 * $Id$
25 */
26
27 #include "gnuworld_config.h"
28
29 #include "chanfix.h"
30 #include "responses.h"
31 #include "StringTokenizer.h"
32 #include "sqlcfUser.h"
33
34 RCSTAG("$Id$");
35
36 namespace gnuworld
37 {
38 namespace cf
39 {
40
41 void UNSUSPENDCommand::Exec(iClient* theClient, sqlcfUser* theUser, const std::string& Message)
42 {
43 StringTokenizer st(Message);
44
45 sqlcfUser* targetUser = bot->isAuthed(st[1]);
46 if (!targetUser) {
47 bot->SendTo(theClient,
48 bot->getResponse(theUser,
49 language::no_such_user,
50 std::string("No such user %s.")).c_str(), st[1].c_str());
51 return;
52 }
53
54 /* Can't unsuspend an owner unless you're an owner. */
55 if (targetUser->getFlag(sqlcfUser::F_OWNER) && !theUser->getFlag(sqlcfUser::F_OWNER)) {
56 bot->SendTo(theClient,
57 bot->getResponse(theUser,
58 language::cant_unsuspend_an_owner,
59 std::string("You cannot unsuspend an owner unless you're an owner.")).c_str());
60 return;
61 }
62
63 /* Can only unsuspend a user manager if you're an owner. */
64 if (targetUser->getFlag(sqlcfUser::F_USERMANAGER) && !theUser->getFlag(sqlcfUser::F_OWNER)) {
65 bot->SendTo(theClient,
66 bot->getResponse(theUser,
67 language::cant_unsuspend_manager,
68 std::string("You cannot unsuspend a user manager unless you're an owner.")).c_str());
69 return;
70 }
71
72 /* A serveradmin can only unsuspend users in his/her own group. */
73 if (theUser->getFlag(sqlcfUser::F_SERVERADMIN) &&
74 !theUser->getFlag(sqlcfUser::F_USERMANAGER)) {
75 if (targetUser->getGroup() != theUser->getGroup()) {
76 bot->SendTo(theClient,
77 bot->getResponse(theUser,
78 language::cant_unsuspend_diff_group,
79 std::string("You cannot unsuspend a user in a different group.")).c_str());
80 return;
81 }
82 }
83
84 if (!targetUser->getIsSuspended()) {
85 bot->SendTo(theClient,
86 bot->getResponse(theUser,
87 language::user_not_suspended,
88 std::string("User %s is not currently suspended.")).c_str(),
89 targetUser->getUserName().c_str());
90 return;
91 }
92
93 targetUser->setSuspended(false);
94 targetUser->setLastUpdated(bot->currentTime());
95 targetUser->setLastUpdatedBy( std::string( "("
96 + theUser->getUserName()
97 + ") "
98 + theClient->getRealNickUserHost() ) );
99 targetUser->commit(bot->getLocalDBHandle());
100
101 bot->SendTo(theClient,
102 bot->getResponse(theUser,
103 language::user_unsuspended,
104 std::string("Unsuspended user %s.")).c_str(),
105 targetUser->getUserName().c_str());
106
107 bot->logAdminMessage("%s (%s) UNSUSPEND %s",
108 theUser->getUserName().c_str(),
109 theClient->getRealNickUserHost().c_str(),
110 targetUser->getUserName().c_str());
111
112 bot->logLastComMessage(theClient, Message);
113
114 return;
115 } //UNSUSPENDCommand::Exec
116 } //namespace cf
117 } //namespace gnuworld