1 |
/* |
2 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
* |
4 |
* Copyright (c) 1997-2014 ircd-hybrid development team |
5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
7 |
* it under the terms of the GNU General Public License as published by |
8 |
* the Free Software Foundation; either version 2 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* This program is distributed in the hope that it will be useful, |
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU General Public License |
17 |
* along with this program; if not, write to the Free Software |
18 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 |
19 |
* USA |
20 |
*/ |
21 |
|
22 |
/*! \file m_wallops.c |
23 |
* \brief Includes required functions for processing the WALLOPS command. |
24 |
* \version $Id$ |
25 |
*/ |
26 |
|
27 |
#include "stdinc.h" |
28 |
#include "client.h" |
29 |
#include "ircd.h" |
30 |
#include "irc_string.h" |
31 |
#include "numeric.h" |
32 |
#include "send.h" |
33 |
#include "parse.h" |
34 |
#include "modules.h" |
35 |
#include "s_serv.h" |
36 |
|
37 |
|
38 |
/* |
39 |
* mo_wallops (write to *all* opers currently online) |
40 |
* parv[0] = command |
41 |
* parv[1] = message text |
42 |
*/ |
43 |
static int |
44 |
mo_wallops(struct Client *client_p, struct Client *source_p, |
45 |
int parc, char *parv[]) |
46 |
{ |
47 |
const char *message = parv[1]; |
48 |
|
49 |
if (!HasOFlag(source_p, OPER_FLAG_WALLOPS)) |
50 |
{ |
51 |
sendto_one_numeric(source_p, &me, ERR_NOPRIVS, "wallops"); |
52 |
return 0; |
53 |
} |
54 |
|
55 |
if (EmptyString(message)) |
56 |
{ |
57 |
sendto_one_numeric(source_p, &me, ERR_NEEDMOREPARAMS, "WALLOPS"); |
58 |
return 0; |
59 |
} |
60 |
|
61 |
sendto_wallops_flags(UMODE_OPERWALL, source_p, "OPERWALL - %s", message); |
62 |
sendto_server(NULL, CAP_TS6, NOCAPS, |
63 |
":%s WALLOPS :%s", ID(source_p), message); |
64 |
sendto_server(NULL, NOCAPS, CAP_TS6, |
65 |
":%s WALLOPS :%s", source_p->name, message); |
66 |
return 0; |
67 |
} |
68 |
|
69 |
/* |
70 |
* ms_wallops (write to *all* opers currently online) |
71 |
* parv[0] = command |
72 |
* parv[1] = message text |
73 |
*/ |
74 |
static int |
75 |
ms_wallops(struct Client *client_p, struct Client *source_p, |
76 |
int parc, char *parv[]) |
77 |
{ |
78 |
const char *message = parv[1]; |
79 |
|
80 |
if (EmptyString(message)) |
81 |
return 0; |
82 |
|
83 |
if (IsClient(source_p)) |
84 |
sendto_wallops_flags(UMODE_OPERWALL, source_p, "OPERWALL - %s", message); |
85 |
else |
86 |
sendto_wallops_flags(UMODE_WALLOP, source_p, "%s", message); |
87 |
|
88 |
sendto_server(client_p, CAP_TS6, NOCAPS, |
89 |
":%s WALLOPS :%s", ID(source_p), message); |
90 |
sendto_server(client_p, NOCAPS, CAP_TS6, |
91 |
":%s WALLOPS :%s", source_p->name, message); |
92 |
return 0; |
93 |
} |
94 |
|
95 |
static struct Message wallops_msgtab = |
96 |
{ |
97 |
"WALLOPS", 0, 0, 2, MAXPARA, MFLG_SLOW, 0, |
98 |
{ m_unregistered, m_not_oper, ms_wallops, m_ignore, mo_wallops, m_ignore } |
99 |
}; |
100 |
|
101 |
static void |
102 |
module_init(void) |
103 |
{ |
104 |
mod_add_cmd(&wallops_msgtab); |
105 |
} |
106 |
|
107 |
static void |
108 |
module_exit(void) |
109 |
{ |
110 |
mod_del_cmd(&wallops_msgtab); |
111 |
} |
112 |
|
113 |
struct module module_entry = |
114 |
{ |
115 |
.node = { NULL, NULL, NULL }, |
116 |
.name = NULL, |
117 |
.version = "$Revision$", |
118 |
.handle = NULL, |
119 |
.modinit = module_init, |
120 |
.modexit = module_exit, |
121 |
.flags = 0 |
122 |
}; |