diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mode.cpp | 5 | ||||
-rw-r--r-- | src/modes/umode_n.cpp | 26 |
2 files changed, 29 insertions, 2 deletions
diff --git a/src/mode.cpp b/src/mode.cpp index c3153dfee..18580a21e 100644 --- a/src/mode.cpp +++ b/src/mode.cpp @@ -63,6 +63,8 @@ using namespace std; #include "modes/umode_i.h" /* +o (operator) */ #include "modes/umode_o.h" +/* +n (notice mask - our implementation of snomasks) */ +#include "modes/umode_n.h" extern int MODCOUNT; extern std::vector<Module*> modules; @@ -620,7 +622,6 @@ ModeParser::ModeParser() this->AddMode(new ModeUserWallops, 'w'); this->AddMode(new ModeUserInvisible, 'i'); this->AddMode(new ModeUserOperator, 'o'); - - /* TODO: User modes +swio */ + this->AddMode(new ModeUserServerNoticeMask, 'n'); } diff --git a/src/modes/umode_n.cpp b/src/modes/umode_n.cpp new file mode 100644 index 000000000..6c1b380f3 --- /dev/null +++ b/src/modes/umode_n.cpp @@ -0,0 +1,26 @@ +#include "inspircd.h" +#include "mode.h" +#include "channels.h" +#include "users.h" +#include "modes/umode_n.h" + +ModeUserServerNoticeMask::ModeUserServerNoticeMask() : ModeHandler('n', 1, 0, false, MODETYPE_USER, true) +{ +} + +ModeAction ModeUserServerNoticeMask::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_DENY; + + /* Set the bitfields */ + if (dest->modes[UM_SERVERNOTICE] != adding) + { + dest->modes[UM_SERVERNOTICE] = adding; + return MODEACTION_ALLOW; + } + + /* Allow the change */ + return MODEACTION_DENY; +} |