/************************************************************************ * IRC - Internet Relay Chat, chanmodes/cm_halfop.c * * Copyright (C)2000-2003 TR-IRCD Development * Copyright (C) 1990 Jarkko Oikarinen and * University of Oulu, Co Center * * 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 2, 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 "struct.h" #include "common.h" #include "sys.h" #include "numeric.h" #include "channel.h" #include "h.h" #include "msg.h" #include "hook.h" #include "s_conf.h" #include "chanmode.h" /* * adl : add|del|list :P -TimeMr14C */ static int set_halfop(int adl, aChannel *chptr, int nmodes, int *argnum, int *pidx, int *mbix, char *mbuf, char *pbuf, aClient *cptr, aClient *sptr, int parc, char **parv) { char *pptr; /* temporary paramater pointer */ char *morig = mbuf; /* beginning of mbuf */ int prelen = strlen(cptr->name) + strlen(chptr->chname) + 16; aClient *acptr; /* for walking channel member lists */ aClient *who = NULL; /* who we're doing a mode for */ int chasing = 0; int fargnum = *argnum; int fmbix = *mbix; int fpidx = *pidx; if (parv[fargnum] == NULL) { return nmodes; } who = find_chasing(sptr, parv[fargnum], &chasing); acptr = find_user_member(chptr, who); if (acptr == NULL) { send_me_numeric(sptr, ERR_USERNOTINCHANNEL, parv[fargnum], chptr); fargnum++; *argnum = fargnum; return nmodes; } /* * if we're going to overflow our mode buffer, * * drop the change instead */ if ((prelen + (mbuf - morig) + fpidx + NICKLEN + 1) > REALMODEBUFLEN) { fargnum++; *argnum = fargnum; return nmodes; } mbuf[fmbix++] = 'h'; if (adl == CMODE_ADD) { if (IsChanHideOps(chptr) && !get_flags(acptr, chptr)) send_mode_burst(acptr, chptr, '+'); update_userflags(acptr, chptr, 1, CHFL_HALFOP); } if (adl == CMODE_DEL) { update_userflags(acptr, chptr, 0, CHFL_HALFOP); if (IsChanHideOps(chptr) && !get_flags(acptr, chptr)) send_mode_burst(acptr, chptr, '-'); } pptr = acptr->name; if (fpidx) pbuf[fpidx++] = ' '; while (*pptr) pbuf[fpidx++] = *pptr++; fargnum++; nmodes++; *mbix = fmbix; *pidx = fpidx; *argnum = fargnum; return nmodes; } static int hop_service(int adl, aChannel *chptr, int nmodes, int *argnum, int *pidx, int *mbix, char *mbuf, char *pbuf, aClient *cptr, aClient *sptr, int parc, char **parv) { if (MyClient(sptr)) send_me_numeric(sptr, ERR_CHANOPRIVSNEEDED, chptr); else ircstp->is_fake++; return nmodes; } static int hop_server(int adl, aChannel *chptr, int nmodes, int *argnum, int *pidx, int *mbix, char *mbuf, char *pbuf, aClient *cptr, aClient *sptr, int parc, char **parv) { return set_halfop(adl, chptr, nmodes, argnum, pidx, mbix, mbuf, pbuf, cptr, sptr, parc, parv); } static int hop_uline(int adl, aChannel *chptr, int nmodes, int *argnum, int *pidx, int *mbix, char *mbuf, char *pbuf, aClient *cptr, aClient *sptr, int parc, char **parv) { return set_halfop(adl, chptr, nmodes, argnum, pidx, mbix, mbuf, pbuf, cptr, sptr, parc, parv); } static int hop_oper(int adl, aChannel *chptr, int nmodes, int *argnum, int *pidx, int *mbix, char *mbuf, char *pbuf, aClient *cptr, aClient *sptr, int parc, char **parv) { if (IsChanUser(sptr, chptr, CHFL_CHANOP) || IsOperMode(sptr) || IsServer(cptr)) { return set_halfop(adl, chptr, nmodes, argnum, pidx, mbix, mbuf, pbuf, cptr, sptr, parc, parv); } else send_me_numeric(sptr, ERR_CHANOPRIVSNEEDED, chptr); return nmodes; } static int hop_user(int adl, aChannel *chptr, int nmodes, int *argnum, int *pidx, int *mbix, char *mbuf, char *pbuf, aClient *cptr, aClient *sptr, int parc, char **parv) { if (IsChanUser(sptr, chptr, CHFL_CHANOP) || IsChanUser(sptr, chptr, CHFL_HALFOP)) return set_halfop(adl, chptr, nmodes, argnum, pidx, mbix, mbuf, pbuf, cptr, sptr, parc, parv); else send_me_numeric(sptr, ERR_CHANOPRIVSNEEDED, chptr); return nmodes; } static struct ChanMode mode_halfop[] = { {CHFL_HALFOP, 1, MFLG_IGNORE, CMTYPE_LIST | CMTYPE_PARAMETRIC, hop_user, hop_oper, hop_uline, hop_server, hop_service} }; #ifndef STATIC_MODULES int _persistent = 1; void _modinit(void) #else void halfops_modinit(void) #endif { modetab[(int) 'h'] = mode_halfop[0]; GeneralOpts.lists_created = 0; }