mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 10:39:02 -04:00
Add mode +V, status prefix. Because we haven't used up enough channel mode letters yet.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12385 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
f1c95ba930
commit
7bff99d3dc
7
.gitignore
vendored
7
.gitignore
vendored
@ -5,15 +5,10 @@
|
||||
/.modulemanager
|
||||
/BSDmakefile
|
||||
/GNUmakefile
|
||||
/bin
|
||||
/build
|
||||
/inspircd
|
||||
/modules
|
||||
/org.inspircd.plist
|
||||
|
||||
/conf/*.conf
|
||||
/conf/*.pem
|
||||
/conf/*.pid
|
||||
/run
|
||||
|
||||
/include/inspircd_config.h
|
||||
/include/inspircd_version.h
|
||||
|
@ -688,7 +688,7 @@
|
||||
# Delay message module: Adds the channel mode +d which disallows a user
|
||||
# from talking in the channel unless they've been joined for X seconds.
|
||||
# Settable a la: /mode +d 30
|
||||
#<module name="m_delaymsg.so>
|
||||
#<module name="m_delaymsg.so">
|
||||
|
||||
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
|
||||
# Deny Channels: Deny Channels from being used by users
|
||||
@ -1630,6 +1630,10 @@
|
||||
# server to server traffic, you MUST load it before m_spanningtree in #
|
||||
# your configuration file! #
|
||||
|
||||
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
|
||||
# Status prefix: Adds the channel mode +V
|
||||
#<module name="m_statusprefix.so">
|
||||
|
||||
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
|
||||
# Strip colour module: Adds the channel mode +S
|
||||
#<module name="m_stripcolor.so">
|
||||
|
108
src/modules/m_statusprefix.cpp
Normal file
108
src/modules/m_statusprefix.cpp
Normal file
@ -0,0 +1,108 @@
|
||||
/* +------------------------------------+
|
||||
* | Inspire Internet Relay Chat Daemon |
|
||||
* +------------------------------------+
|
||||
*
|
||||
* InspIRCd: (C) 2002-2009 InspIRCd Development Team
|
||||
* See: http://wiki.inspircd.org/Credits
|
||||
*
|
||||
* This program is free but copyrighted software; see
|
||||
* the file COPYING for details.
|
||||
*
|
||||
* ---------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "inspircd.h"
|
||||
|
||||
/* $ModDesc: Provides channel mode +V, adding the - prefix
|
||||
* which does nothing but serves as a status symbol. */
|
||||
|
||||
#define STATUS_VALUE 1
|
||||
|
||||
/** Abstraction of StatusPrefixBase for channel mode +a
|
||||
*/
|
||||
class StatusPrefix : public ModeHandler
|
||||
{
|
||||
public:
|
||||
StatusPrefix(Module* parent) : ModeHandler(parent, "status", 'V', PARAM_ALWAYS, MODETYPE_CHANNEL)
|
||||
{
|
||||
list = true;
|
||||
prefix = 0;
|
||||
levelrequired = HALFOP_VALUE;
|
||||
m_paramtype = TR_NICK;
|
||||
}
|
||||
|
||||
void SetPrefix(char pfx) { prefix = pfx; }
|
||||
|
||||
unsigned int GetPrefixRank()
|
||||
{
|
||||
return STATUS_VALUE;
|
||||
}
|
||||
|
||||
void RemoveMode(Channel* channel, irc::modestacker* stack)
|
||||
{
|
||||
const UserMembList* cl = channel->GetUsers();
|
||||
std::vector<std::string> mode_junk;
|
||||
mode_junk.push_back(channel->name);
|
||||
irc::modestacker modestack(false);
|
||||
std::deque<std::string> stackresult;
|
||||
|
||||
for (UserMembCIter i = cl->begin(); i != cl->end(); i++)
|
||||
{
|
||||
if (i->second->hasMode('V'))
|
||||
{
|
||||
if (stack)
|
||||
stack->Push(this->GetModeChar(), i->first->nick);
|
||||
else
|
||||
modestack.Push(this->GetModeChar(), i->first->nick);
|
||||
}
|
||||
}
|
||||
|
||||
if (stack)
|
||||
return;
|
||||
|
||||
while (modestack.GetStackedLine(stackresult))
|
||||
{
|
||||
mode_junk.insert(mode_junk.end(), stackresult.begin(), stackresult.end());
|
||||
ServerInstance->SendMode(mode_junk, ServerInstance->FakeClient);
|
||||
mode_junk.erase(mode_junk.begin() + 1, mode_junk.end());
|
||||
}
|
||||
}
|
||||
|
||||
void RemoveMode(User* user, irc::modestacker* stack)
|
||||
{
|
||||
}
|
||||
|
||||
ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding)
|
||||
{
|
||||
return MODEACTION_ALLOW;
|
||||
}
|
||||
};
|
||||
|
||||
class ModuleStatusPrefix : public Module
|
||||
{
|
||||
StatusPrefix mh;
|
||||
|
||||
public:
|
||||
ModuleStatusPrefix() : mh(this)
|
||||
{
|
||||
}
|
||||
|
||||
void init()
|
||||
{
|
||||
ConfigTag* tag = ServerInstance->Config->ConfValue("statusprefix");
|
||||
std::string pfxchar = tag->getString("prefix", "-");
|
||||
mh.SetPrefix(pfxchar[0]);
|
||||
ServerInstance->Modules->AddService(mh);
|
||||
}
|
||||
|
||||
~ModuleStatusPrefix()
|
||||
{
|
||||
}
|
||||
|
||||
Version GetVersion()
|
||||
{
|
||||
return Version("Provides a channel mode that does nothing but serve as a status symbol", VF_VENDOR);
|
||||
}
|
||||
};
|
||||
|
||||
MODULE_INIT(ModuleStatusPrefix)
|
Loading…
x
Reference in New Issue
Block a user