From d40e1e5b0b8c4b94359637921387cd80e9de991b Mon Sep 17 00:00:00 2001 From: brain Date: Sat, 8 Jul 2006 17:04:18 +0000 Subject: 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 --- src/modes/umode_s.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/modes/umode_s.cpp (limited to 'src/modes/umode_s.cpp') 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; +} -- cgit v1.2.3