Implement <options:prefixpart|suffixpart|fixedpart>

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8690 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
w00t 2008-01-10 11:47:15 +00:00
parent e3a4d6113d
commit 84083a73e8
3 changed files with 36 additions and 1 deletions

View File

@ -348,6 +348,18 @@ class CoreExport ServerConfig : public Extensible
*/
char FixedQuit[MAXBUF];
/** The part prefix in use, or an empty string
*/
char PrefixPart[MAXBUF];
/** The part suffix in use, or an empty string
*/
char SuffixPart[MAXBUF];
/** The fixed part message in use, or an empty string
*/
char FixedPart[MAXBUF];
/** The last string found within a <die> tag, or
* an empty string.
*/

View File

@ -21,6 +21,25 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance)
CmdResult CommandPart::Handle (const char** parameters, int pcnt, User *user)
{
std::string reason;
if (IS_LOCAL(user))
{
if (*ServerInstance->Config->FixedPart)
reason = ServerInstance->Config->FixedPart;
else
{
if (pcnt > 1)
reason = ServerInstance->Config->PrefixPart + std::string(parameters[1]) + ServerInstance->Config->SuffixPart;
else
reason = "";
}
}
else
{
reason = pcnt ? parameters[1] : "";
}
if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0))
return CMD_SUCCESS;
@ -28,7 +47,8 @@ CmdResult CommandPart::Handle (const char** parameters, int pcnt, User *user)
if (c)
{
if (!c->PartUser(user, pcnt > 1 ? parameters[1] : NULL))
const char *rreason = reason.empty() ? NULL : reason.c_str();
if (!c->PartUser(user, rreason))
/* Arse, who stole our channel! :/ */
delete c;
}

View File

@ -815,6 +815,9 @@ void ServerConfig::Read(bool bail, User* user, int pass)
{"options", "prefixquit", "", new ValueContainerChar (this->PrefixQuit), DT_CHARPTR, NoValidation},
{"options", "suffixquit", "", new ValueContainerChar (this->SuffixQuit), DT_CHARPTR, NoValidation},
{"options", "fixedquit", "", new ValueContainerChar (this->FixedQuit), DT_CHARPTR, NoValidation},
{"options", "prefixpart", "", new ValueContainerChar (this->PrefixPart), DT_CHARPTR, NoValidation},
{"options", "suffixpart", "", new ValueContainerChar (this->SuffixPart), DT_CHARPTR, NoValidation},
{"options", "fixedpart", "", new ValueContainerChar (this->FixedPart), DT_CHARPTR, NoValidation},
{"options", "loglevel", "default", new ValueContainerChar (debug), DT_CHARPTR, ValidateLogLevel},
{"options", "netbuffersize","10240", new ValueContainerInt (&this->NetBufferSize), DT_INTEGER, ValidateNetBufferSize},
{"options", "maxwho", "128", new ValueContainerInt (&this->MaxWhoResults), DT_INTEGER, ValidateMaxWho},