summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-08 15:05:49 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-08 15:05:49 +0000
commit8d99003c221b7d6dcc04d0fc58629c243b48dbf0 (patch)
tree1412b12337da066d69cea9529dfefef7234c4062 /src
parent8c4528880ab1dfe6307b03d5976e23e1a553a663 (diff)
AddOper() and DeleteOper() -> userrec::Oper() and userrec::UnOper() (these do more, too)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4792 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/cmd_oper.cpp10
-rw-r--r--src/helperfuncs.cpp3
-rw-r--r--src/modes/umode_o.cpp5
-rw-r--r--src/modules/extra/m_sqloper.cpp35
-rw-r--r--src/users.cpp28
5 files changed, 37 insertions, 44 deletions
diff --git a/src/cmd_oper.cpp b/src/cmd_oper.cpp
index f695c44f8..078150565 100644
--- a/src/cmd_oper.cpp
+++ b/src/cmd_oper.cpp
@@ -101,7 +101,6 @@ void cmd_oper::Handle (const char** parameters, int pcnt, userrec *user)
log(DEFAULT,"OPER: Failed oper attempt by %s!%s@%s: credentials valid, but oper type erroneous.",user->nick,user->ident,user->host);
return;
}
- strlcpy(user->oper,TypeName,NICKMAX-1);
found = true;
fail2 = false;
break;
@@ -117,14 +116,7 @@ void cmd_oper::Handle (const char** parameters, int pcnt, userrec *user)
WriteOpers("*** %s (%s@%s) is now an IRC operator of type %s",user->nick,user->ident,user->host,OperType);
WriteServ(user->fd,"381 %s :You are now an IRC operator of type %s",user->nick,OperType);
if (!user->modes[UM_OPERATOR])
- {
- user->modes[UM_OPERATOR] = 1;
- WriteServ(user->fd,"MODE %s :+o",user->nick);
- FOREACH_MOD(I_OnOper,OnOper(user,OperType));
- log(DEFAULT,"OPER: %s!%s@%s opered as type: %s",user->nick,user->ident,user->host,OperType);
- AddOper(user);
- FOREACH_MOD(I_OnPostOper,OnPostOper(user,OperType));
- }
+ user->Oper(OperType);
}
else
{
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp
index e7ecb56a1..495a4658b 100644
--- a/src/helperfuncs.cpp
+++ b/src/helperfuncs.cpp
@@ -1001,8 +1001,7 @@ void purge_empty_chans(userrec* u)
}
}
- if (*u->oper)
- DeleteOper(u);
+ u->UnOper();
}
diff --git a/src/modes/umode_o.cpp b/src/modes/umode_o.cpp
index 2105376ba..861fb62dc 100644
--- a/src/modes/umode_o.cpp
+++ b/src/modes/umode_o.cpp
@@ -24,8 +24,7 @@ ModeAction ModeUserOperator::OnModeChange(userrec* source, userrec* dest, chanre
* verifying as an oper and getting an opertype assigned
* to your userrec!
*/
- dest->modes[UM_OPERATOR] = 0;
- /* Remove their opertype when they oper down */
- *dest->oper = 0;
+ dest->UnOper();
+
return MODEACTION_ALLOW;
}
diff --git a/src/modules/extra/m_sqloper.cpp b/src/modules/extra/m_sqloper.cpp
index 81f22eca6..bb6718313 100644
--- a/src/modules/extra/m_sqloper.cpp
+++ b/src/modules/extra/m_sqloper.cpp
@@ -46,7 +46,7 @@ public:
{
SQLutils = Srv->FindFeature("SQLutils");
- if(SQLutils)
+ if (SQLutils)
{
log(DEBUG, "Successfully got SQLutils pointer");
}
@@ -75,7 +75,7 @@ public:
{
if (validated && (command == "OPER"))
{
- if(LookupOper(user, parameters[0], parameters[1]))
+ if (LookupOper(user, parameters[0], parameters[1]))
{
/* Returning true here just means the query is in progress, or on it's way to being
* in progress. Nothing about the /oper actually being successful..
@@ -93,11 +93,11 @@ public:
target = Srv->FindFeature("SQL");
- if(target)
+ if (target)
{
SQLrequest req = SQLreq(this, target, databaseid, "SELECT username, password, hostname, type FROM ircd_opers WHERE username = '?' AND password=md5('?')", username, password);
- if(req.Send())
+ if (req.Send())
{
/* When we get the query response from the service provider we will be given an ID to play with,
* just an ID number which is unique to this query. We need a way of associating that ID with a userrec
@@ -128,7 +128,7 @@ public:
virtual char* OnRequest(Request* request)
{
- if(strcmp(SQLRESID, request->GetId()) == 0)
+ if (strcmp(SQLRESID, request->GetId()) == 0)
{
SQLresult* res;
@@ -139,14 +139,14 @@ public:
userrec* user = GetAssocUser(this, SQLutils, res->id).S().user;
UnAssociate(this, SQLutils, res->id).S();
- if(user)
+ if (user)
{
- if(res->error.Id() == NO_ERROR)
+ if (res->error.Id() == NO_ERROR)
{
log(DEBUG, "Associated query ID %lu with user %s", res->id, user->nick);
log(DEBUG, "Got result with %d rows and %d columns", res->Rows(), res->Cols());
- if(res->Rows())
+ if (res->Rows())
{
/* We got a row in the result, this means there was a record for the oper..
* now we just need to check if their host matches, and if it does then
@@ -161,11 +161,11 @@ public:
* are no more rows to return.
*/
- for(SQLfieldMap& row = res->GetRowMap(); row.size(); row = res->GetRowMap())
+ for (SQLfieldMap& row = res->GetRowMap(); row.size(); row = res->GetRowMap())
{
log(DEBUG, "Trying to oper user %s with username = '%s', passhash = '%s', hostname = '%s', type = '%s'", user->nick, row["username"].d.c_str(), row["password"].d.c_str(), row["hostname"].d.c_str(), row["type"].d.c_str());
- if(OperUser(user, row["username"].d, row["password"].d, row["hostname"].d, row["type"].d))
+ if (OperUser(user, row["username"].d, row["password"].d, row["hostname"].d, row["type"].d))
{
/* If/when one of the rows matches, stop checking and return */
return SQLSUCCESS;
@@ -223,14 +223,14 @@ public:
std::string hostname(user->ident);
hostname.append("@").append(user->host);
- if((tname == type) && OneOfMatches(hostname.c_str(), user->GetIPString(), pattern.c_str()))
+ if ((tname == type) && OneOfMatches(hostname.c_str(), user->GetIPString(), pattern.c_str()))
{
/* Opertype and host match, looks like this is it. */
log(DEBUG, "Host (%s matched %s OR %s) and type (%s)", pattern.c_str(), hostname.c_str(), user->GetIPString(), type.c_str());
std::string operhost = Conf.ReadValue("type", "host", j);
- if(operhost.size())
+ if (operhost.size())
Srv->ChangeHost(user, operhost);
strlcpy(user->oper, type.c_str(), NICKMAX-1);
@@ -238,15 +238,8 @@ public:
WriteOpers("*** %s (%s@%s) is now an IRC operator of type %s", user->nick, user->ident, user->host, type.c_str());
WriteServ(user->fd,"381 %s :You are now an IRC operator of type %s", user->nick, type.c_str());
- if(!user->modes[UM_OPERATOR])
- {
- user->modes[UM_OPERATOR] = 1;
- WriteServ(user->fd,"MODE %s :+o",user->nick);
- FOREACH_MOD(I_OnOper,OnOper(user, type));
- AddOper(user);
- FOREACH_MOD(I_OnPostOper,OnPostOper(user, type));
- log(DEFAULT,"OPER: %s!%s@%s opered as type: %s", user->nick, user->ident, user->host, type.c_str());
- }
+ if (!user->modes[UM_OPERATOR])
+ user->Oper();
return true;
}
diff --git a/src/users.cpp b/src/users.cpp
index aab7815e8..327d0b5bb 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -615,21 +615,31 @@ const char* userrec::GetWriteError()
return this->WriteError.c_str();
}
-void AddOper(userrec* user)
+void userrec::Oper(const std::string &opertype)
{
- log(DEBUG,"Oper added to optimization list");
- all_opers.push_back(user);
+ this->modes[UM_OPERATOR] = 1;
+ WriteServ(this->fd, "MODE %s :+o", this->nick);
+ FOREACH_MOD(I_OnOper, OnOper(this, opertype));
+ log(DEFAULT,"OPER: %s!%s@%s opered as type: %s", this->nick, this->ident, this->host, opertype.c_str());
+ strlcpy(this->oper, opertype.c_str(), NICKMAX - 1);
+ all_opers.push_back(this);
+ FOREACH_MOD(I_OnPostOper,OnPostOper(this, opertype));
}
-void DeleteOper(userrec* user)
+void userrec::UnOper()
{
- for (std::vector<userrec*>::iterator a = all_opers.begin(); a < all_opers.end(); a++)
+ if (*this->oper)
{
- if (*a == user)
+ *this->oper = 0;
+ this->modes[UM_OPERATOR] = 0;
+ for (std::vector<userrec*>::iterator a = all_opers.begin(); a < all_opers.end(); a++)
{
- log(DEBUG,"Oper removed from optimization list");
- all_opers.erase(a);
- return;
+ if (*a == this)
+ {
+ log(DEBUG,"Oper removed from optimization list");
+ all_opers.erase(a);
+ return;
+ }
}
}
}