diff options
Diffstat (limited to 'src/modes')
-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 |
3 files changed, 75 insertions, 0 deletions
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; +} |