1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-06 20:43:12 +02:00
Files
unrealircd/src/modules/m_svsnline.c
T
2002-03-19 16:00:34 +00:00

220 lines
4.9 KiB
C

/*
* IRC - Internet Relay Chat, src/modules/m_svsnline.c
* (C) 2001 The UnrealIRCd Team
*
* SVSNLINE Command
*
* See file AUTHORS in IRC package for additional names of
* the programmers.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 1, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "config.h"
#include "struct.h"
#include "common.h"
#include "sys.h"
#include "numeric.h"
#include "msg.h"
#include "channel.h"
#include <time.h>
#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
#include <io.h>
#endif
#include <fcntl.h>
#include "h.h"
#include "proto.h"
#ifdef STRIPBADWORDS
#include "badwords.h"
#endif
#ifdef _WIN32
#include "version.h"
#endif
DLLFUNC int m_svsnline(aClient *cptr, aClient *sptr, int parc, char *parv[]);
/* Place includes here */
#define MSG_SVSNLINE "SVSNLINE" /* svsnline */
#define TOK_SVSNLINE "BR" /* 127 4ever !;) */
#ifndef DYNAMIC_LINKING
ModuleHeader m_svsnline_Header
#else
#define m_svsnline_Header Mod_Header
ModuleHeader Mod_Header
#endif
= {
"svsnline", /* Name of module */
"$Id$", /* Version */
"command /svsnline", /* Short description of module */
"3.2-b8-1",
NULL
};
/* The purpose of these ifdefs, are that we can "static" link the ircd if we
* want to
*/
/* This is called on module init, before Server Ready */
#ifdef DYNAMIC_LINKING
DLLFUNC int Mod_Init(ModuleInfo *modinfo)
#else
int m_svsnline_Init(ModuleInfo *modinfo)
#endif
{
/*
* We call our add_Command crap here
*/
add_Command(MSG_SVSNLINE, TOK_SVSNLINE, m_svsnline, MAXPARA);
return MOD_SUCCESS;
}
/* Is first run when server is 100% ready */
#ifdef DYNAMIC_LINKING
DLLFUNC int Mod_Load(int module_load)
#else
int m_svsnline_Load(int module_load)
#endif
{
return MOD_SUCCESS;
}
/* Called when module is unloaded */
#ifdef DYNAMIC_LINKING
DLLFUNC int Mod_Unload(int module_unload)
#else
int m_svsnline_Unload(int module_unload)
#endif
{
if (del_Command(MSG_SVSNLINE, TOK_SVSNLINE, m_svsnline) < 0)
{
sendto_realops("Failed to delete commands when unloading %s",
m_svsnline_Header.name);
}
return MOD_SUCCESS;
}
void wipe_svsnlines(void)
{
ConfigItem_ban *bconf, t;
for (bconf = conf_ban; bconf; bconf = (ConfigItem_ban *) bconf->next)
{
if ((bconf->flag.type == CONF_BAN_REALNAME) &&
(bconf->flag.type2 == CONF_BAN_TYPE_AKILL))
{
t.next = (ConfigItem *)DelListItem(bconf, conf_ban);
if (bconf->mask)
MyFree(bconf->mask);
if (bconf->reason)
MyFree(bconf->reason);
MyFree(bconf);
bconf = &t;
}
}
}
/*
* m_svsnline
* SVSNLINE + reason_where_is_space :realname mask with spaces
* SVSNLINE - :realname mask
* SVSNLINE * Wipes
* -Stskeeps
*/
DLLFUNC int m_svsnline(aClient *cptr, aClient *sptr, int parc, char *parv[])
{
ConfigItem_ban *bconf;
char *s;
if (!IsServer(sptr))
return 0;
if (parc < 2)
return 0;
switch (*parv[1])
{
/* Allow non-U:lines to send ONLY SVSNLINE +, but don't send it out
* unless it is from a U:line -- codemastr */
case '+':
{
if (parc < 4)
return 0;
if (!Find_banEx(parv[3], CONF_BAN_REALNAME, CONF_BAN_TYPE_AKILL))
{
bconf = (ConfigItem_ban *) MyMallocEx(sizeof(ConfigItem_ban));
bconf->flag.type = CONF_BAN_REALNAME;
bconf->mask = strdup(parv[3]);
bconf->reason = strdup(parv[2]);
for (s = bconf->reason; *s; s++)
if (*s == '_')
*s = ' ';
bconf->flag.type2 = CONF_BAN_TYPE_AKILL;
AddListItem(bconf, conf_ban);
}
if (IsULine(sptr))
sendto_serv_butone_token(cptr,
sptr->name,
MSG_SVSNLINE,
TOK_SVSNLINE,
"+ %s :%s",
parv[2], parv[3]);
break;
}
case '-':
{
if (!IsULine(sptr))
return 0;
if (parc < 3)
return 0;
if ((bconf = Find_banEx(parv[3], CONF_BAN_REALNAME, CONF_BAN_TYPE_AKILL)))
{
DelListItem(bconf, conf_ban);
if (bconf->mask)
MyFree(bconf->mask);
if (bconf->reason)
MyFree(bconf->reason);
MyFree(bconf);
}
sendto_serv_butone_token(cptr,
sptr->name, MSG_SVSNLINE, TOK_SVSNLINE, "- %s",
parv[2]);
break;
}
case '*':
{
if (!IsULine(sptr))
return 0;
wipe_svsnlines();
sendto_serv_butone_token(cptr, sptr->name,
MSG_SVSNLINE, TOK_SVSNLINE, "*");
break;
}
}
return 0;
}