diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-08 17:04:18 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-08 17:04:18 +0000 |
commit | d40e1e5b0b8c4b94359637921387cd80e9de991b (patch) | |
tree | 130905009d41a905f527082d2fa03c893020982b | |
parent | 7bb5bcf7728ef24759ebad38b404c5a2009f7456 (diff) |
Added usermodes +swi.
Note the usermode system needs a bit of a refactor to combine
module and core modes into the same storage neatly (as we did
with channels) this is next on my todo.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4174 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | include/mode.h | 1 | ||||
-rw-r--r-- | include/modes/umode_i.h | 8 | ||||
-rw-r--r-- | include/modes/umode_s.h | 8 | ||||
-rw-r--r-- | include/modes/umode_w.h | 8 | ||||
-rw-r--r-- | src/mode.cpp | 16 | ||||
-rw-r--r-- | src/modes/umode_i.cpp | 25 | ||||
-rw-r--r-- | src/modes/umode_s.cpp | 25 | ||||
-rw-r--r-- | src/modes/umode_w.cpp | 25 |
8 files changed, 116 insertions, 0 deletions
diff --git a/include/mode.h b/include/mode.h index 40055ab4c..170da92d5 100644 --- a/include/mode.h +++ b/include/mode.h @@ -242,6 +242,7 @@ class ModeParser static const char* Grant(userrec *d,chanrec *chan,int MASK); static const char* Revoke(userrec *d,chanrec *chan,int MASK); static void CleanMask(std::string &mask); + static void BuildModeString(userrec* user); bool AddMode(ModeHandler* mh, unsigned const char modeletter); void Process(char **parameters, int pcnt, userrec *user, bool servermode); diff --git a/include/modes/umode_i.h b/include/modes/umode_i.h new file mode 100644 index 000000000..61626f3ce --- /dev/null +++ b/include/modes/umode_i.h @@ -0,0 +1,8 @@ +#include "mode.h" + +class ModeUserInvisible : public ModeHandler +{ + public: + ModeUserInvisible(); + ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding); +}; diff --git a/include/modes/umode_s.h b/include/modes/umode_s.h new file mode 100644 index 000000000..c108cb44d --- /dev/null +++ b/include/modes/umode_s.h @@ -0,0 +1,8 @@ +#include "mode.h" + +class ModeUserServerNotice : public ModeHandler +{ + public: + ModeUserServerNotice(); + ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding); +}; diff --git a/include/modes/umode_w.h b/include/modes/umode_w.h new file mode 100644 index 000000000..e92d1ece2 --- /dev/null +++ b/include/modes/umode_w.h @@ -0,0 +1,8 @@ +#include "mode.h" + +class ModeUserWallops : public ModeHandler +{ + public: + ModeUserWallops(); + ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding); +}; diff --git a/src/mode.cpp b/src/mode.cpp index 320ba6195..6f212bdad 100644 --- a/src/mode.cpp +++ b/src/mode.cpp @@ -55,6 +55,13 @@ using namespace std; /* +v (channel voice) */ #include "modes/cmode_v.h" +/* +s (server notices) */ +#include "modes/umode_s.h" +/* +w (see wallops) */ +#include "modes/umode_w.h" +/* +i (invisible) */ +#include "modes/umode_i.h" + extern int MODCOUNT; extern std::vector<Module*> modules; extern std::vector<ircd_module*> factory; @@ -456,6 +463,10 @@ void ModeParser::CleanMask(std::string &mask) } } +void ModeParser::BuildModeString(userrec* user) +{ +} + bool ModeParser::AddMode(ModeHandler* mh, unsigned const char modeletter) { unsigned char mask = 0; @@ -505,6 +516,11 @@ ModeParser::ModeParser() this->AddMode(new ModeChannelHalfOp, 'h'); this->AddMode(new ModeChannelVoice, 'v'); + /* Now for usermodes */ + this->AddMode(new ModeUserServerNotice, 's'); + this->AddMode(new ModeUserWallops, 'w'); + this->AddMode(new ModeUserInvisible, 'i'); + /* TODO: User modes +swio */ } diff --git a/src/modes/umode_i.cpp b/src/modes/umode_i.cpp new file mode 100644 index 000000000..08af105ca --- /dev/null +++ b/src/modes/umode_i.cpp @@ -0,0 +1,25 @@ +#include "inspircd.h" +#include "mode.h" +#include "channels.h" +#include "users.h" +#include "modes/umode_i.h" + +ModeUserInvisible::ModeUserInvisible() : ModeHandler('i', 0, 0, false, MODETYPE_USER, false) +{ +} + +ModeAction ModeUserInvisible::OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) +{ + /* Only opers can change other users modes */ + if ((source != dest) && (!*source->oper)) + return MODEACTION_ALLOW; + + /* Set the bitfields */ + adding ? dest->modebits |= UM_INVISIBLE : dest->modebits &= ~UM_INVISIBLE; + + /* Use the bitfields to build the user's mode string */ + ModeParser::BuildModeString(dest); + + /* Allow the change */ + return MODEACTION_ALLOW; +} diff --git a/src/modes/umode_s.cpp b/src/modes/umode_s.cpp new file mode 100644 index 000000000..a56e29034 --- /dev/null +++ b/src/modes/umode_s.cpp @@ -0,0 +1,25 @@ +#include "inspircd.h" +#include "mode.h" +#include "channels.h" +#include "users.h" +#include "modes/umode_s.h" + +ModeUserServerNotice::ModeUserServerNotice() : ModeHandler('s', 0, 0, false, MODETYPE_USER, false) +{ +} + +ModeAction ModeUserServerNotice::OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) +{ + /* Only opers can change other users modes */ + if ((source != dest) && (!*source->oper)) + return MODEACTION_ALLOW; + + /* Set the bitfields */ + adding ? dest->modebits |= UM_SERVERNOTICE : dest->modebits &= ~UM_SERVERNOTICE; + + /* Use the bitfields to build the user's mode string */ + ModeParser::BuildModeString(dest); + + /* Allow the change */ + return MODEACTION_ALLOW; +} diff --git a/src/modes/umode_w.cpp b/src/modes/umode_w.cpp new file mode 100644 index 000000000..9115a6786 --- /dev/null +++ b/src/modes/umode_w.cpp @@ -0,0 +1,25 @@ +#include "inspircd.h" +#include "mode.h" +#include "channels.h" +#include "users.h" +#include "modes/umode_w.h" + +ModeUserWallops::ModeUserWallops() : ModeHandler('w', 0, 0, false, MODETYPE_USER, false) +{ +} + +ModeAction ModeUserWallops::OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) +{ + /* Only opers can change other users modes */ + if ((source != dest) && (!*source->oper)) + return MODEACTION_ALLOW; + + /* Set the bitfields */ + adding ? dest->modebits |= UM_WALLOPS : dest->modebits &= ~UM_WALLOPS; + + /* Use the bitfields to build the user's mode string */ + ModeParser::BuildModeString(dest); + + /* Allow the change */ + return MODEACTION_ALLOW; +} |