1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-01 08:36:38 +02:00
Files
unrealircd/src/modules/usermodes/servicebot.c
T
Bram Matthys a0167c35c0 Major reorganization of operclass privileges:
* The operclass privileges have been redone. Since there were 50+ changes
  to the 100+ privileges it makes little sense to list the changes here.
  If, like 99% of the users, you use default operclasses such as "globop"
  and "admin-with-override" then you don't need to do anything.
  However, if you have custom operclass { } blocks then the privileges
  will have to be redone. For more information on the conversion process,
  see https://www.unrealircd.org/docs/FAQ#New_operclass_permissions
  For the new list of permissions, with much better naming and grouping:
  https://www.unrealircd.org/docs/Operclass_permissions
The inconsistency in the privileges was initially reported by webczat in
https://bugs.unrealircd.org/view.php?id=4771
The subsequent reorganization took two full days, so.. hopefully the
people who are using - or plan to use - custom operclasses will like the
new layout... except that they need to redo their work of course ;)
2018-12-14 17:05:32 +01:00

148 lines
4.4 KiB
C

/*
* Prevents you from being kicked (User mode +q)
* (C) Copyright 2000-.. Bram Matthys (Syzop) and the UnrealIRCd team
*
* 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 "unrealircd.h"
#define IsServiceBot(cptr) (cptr->umodes & UMODE_SERVICEBOT)
#define WHOIS_SERVICE_STRING ":%s 313 %s %s :is a Network Service"
/* Module header */
ModuleHeader MOD_HEADER(servicebot)
= {
"usermodes/servicebot",
"4.2",
"User Mode +q",
"3.2-b8-1",
NULL
};
/* Global variables */
long UMODE_SERVICEBOT = 0L;
/* Forward declarations */
int servicebot_can_kick(aClient *sptr, aClient *target, aChannel *chptr,
char *comment, long sptr_flags, long target_flags, char **reject_reason);
int servicebot_mode_deop(aClient *sptr, aClient *target, aChannel *chptr,
u_int what, int modechar, long my_access, char **reject_reason);
int servicebot_pre_kill(aClient *sptr, aClient *target, char *reason);
int servicebot_whois(aClient *sptr, aClient *acptr);
int servicebot_see_channel_in_whois(aClient *sptr, aClient *target, aChannel *chptr);
MOD_TEST(servicebot)
{
return MOD_SUCCESS;
}
MOD_INIT(servicebot)
{
UmodeAdd(modinfo->handle, 'S', UMODE_GLOBAL, 1, umode_allow_none, &UMODE_SERVICEBOT);
HookAdd(modinfo->handle, HOOKTYPE_CAN_KICK, 0, servicebot_can_kick);
HookAdd(modinfo->handle, HOOKTYPE_MODE_DEOP, 0, servicebot_mode_deop);
HookAdd(modinfo->handle, HOOKTYPE_PRE_KILL, 0, servicebot_pre_kill);
HookAdd(modinfo->handle, HOOKTYPE_WHOIS, 0, servicebot_whois);
HookAdd(modinfo->handle, HOOKTYPE_SEE_CHANNEL_IN_WHOIS, 0, servicebot_see_channel_in_whois);
MARK_AS_OFFICIAL_MODULE(modinfo);
return MOD_SUCCESS;
}
MOD_LOAD(servicebot)
{
return MOD_SUCCESS;
}
MOD_UNLOAD(servicebot)
{
return MOD_SUCCESS;
}
int servicebot_can_kick(aClient *sptr, aClient *target, aChannel *chptr, char *comment,
long sptr_flags, long target_flags, char **reject_reason)
{
static char errmsg[NICKLEN+256];
if (MyClient(sptr) && !IsULine(sptr) && IsServiceBot(target))
{
char errmsg2[NICKLEN+32];
snprintf(errmsg2, sizeof(errmsg2), "%s is a Service Bot", target->name);
snprintf(errmsg, sizeof(errmsg), err_str(ERR_CANNOTDOCOMMAND),
me.name, sptr->name, "KICK", errmsg2);
*reject_reason = errmsg;
return EX_DENY;
}
return EX_ALLOW;
}
int servicebot_mode_deop(aClient *sptr, aClient *target, aChannel *chptr,
u_int what, int modechar, long my_access, char **reject_reason)
{
static char errmsg[NICKLEN+256];
if (IsServiceBot(target) && MyClient(sptr) && !ValidatePermissionsForPath("services:servicebot:deop",sptr,target,chptr,NULL) && (what == MODE_DEL))
{
char errmsg2[NICKLEN+32];
snprintf(errmsg2, sizeof(errmsg2), "%s is a Service Bot", target->name);
snprintf(errmsg, sizeof(errmsg), err_str(ERR_CANNOTCHANGECHANMODE),
me.name, sptr->name, (char)modechar, errmsg2);
*reject_reason = errmsg;
return EX_DENY;
}
return EX_ALLOW;
}
int servicebot_pre_kill(aClient *sptr, aClient *target, char *reason)
{
if (IsServiceBot(target) && !(ValidatePermissionsForPath("services:servicebot:kill",sptr,target,NULL,NULL) || IsULine(sptr)))
{
sendto_one(sptr, err_str(ERR_KILLDENY), me.name,
sptr->name, target->name);
return EX_ALWAYS_DENY;
}
return EX_ALLOW;
}
int servicebot_whois(aClient *sptr, aClient *acptr)
{
int hideoper = (IsHideOper(acptr) && (sptr != acptr) && !IsOper(sptr)) ? 1 : 0;
if (IsServiceBot(acptr) && !hideoper)
sendto_one(sptr, WHOIS_SERVICE_STRING, me.name, sptr->name, acptr->name);
return 0;
}
/* This hides the servicebot, even if you are in the same channel, unless oper overriding */
int servicebot_see_channel_in_whois(aClient *sptr, aClient *target, aChannel *chptr)
{
if (IsServiceBot(target))
return EX_DENY;
return EX_ALLOW;
}