1 |
michael |
1206 |
/* |
2 |
michael |
2820 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
michael |
1206 |
* |
4 |
michael |
2820 |
* Copyright (c) 2011-2014 ircd-hybrid development team |
5 |
michael |
1206 |
* |
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 |
michael |
2820 |
/*! \file m_globops.c |
23 |
|
|
* \brief Includes required functions for processing the GLOBOPS command. |
24 |
|
|
* \version $Id$ |
25 |
|
|
*/ |
26 |
|
|
|
27 |
michael |
1206 |
#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 "s_serv.h" |
34 |
|
|
#include "parse.h" |
35 |
|
|
#include "modules.h" |
36 |
|
|
|
37 |
|
|
|
38 |
|
|
/* |
39 |
|
|
* mo_globops - GLOBOPS message handler |
40 |
|
|
* (write to *all* local opers currently online) |
41 |
michael |
3096 |
* parv[0] = command |
42 |
michael |
1206 |
* parv[1] = message text |
43 |
|
|
*/ |
44 |
michael |
2820 |
static int |
45 |
michael |
1206 |
mo_globops(struct Client *client_p, struct Client *source_p, |
46 |
|
|
int parc, char *parv[]) |
47 |
|
|
{ |
48 |
|
|
const char *message = parv[1]; |
49 |
|
|
|
50 |
michael |
1219 |
if (!HasOFlag(source_p, OPER_FLAG_GLOBOPS)) |
51 |
michael |
1216 |
{ |
52 |
michael |
1834 |
sendto_one(source_p, form_str(ERR_NOPRIVS), |
53 |
michael |
1216 |
me.name, source_p->name, "globops"); |
54 |
michael |
2820 |
return 0; |
55 |
michael |
1216 |
} |
56 |
|
|
|
57 |
michael |
1206 |
if (EmptyString(message)) |
58 |
|
|
{ |
59 |
michael |
1834 |
sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS), |
60 |
michael |
1206 |
me.name, source_p->name, "GLOBOPS"); |
61 |
michael |
2820 |
return 0; |
62 |
michael |
1206 |
} |
63 |
|
|
|
64 |
michael |
2820 |
sendto_server(NULL, CAP_TS6, NOCAPS, ":%s GLOBOPS :%s", |
65 |
|
|
ID(source_p), message); |
66 |
|
|
sendto_server(NULL, NOCAPS, CAP_TS6, ":%s GLOBOPS :%s", |
67 |
|
|
source_p->name, message); |
68 |
michael |
1206 |
|
69 |
michael |
1618 |
sendto_realops_flags(UMODE_ALL, L_ALL, SEND_GLOBAL, "from: %s: %s", |
70 |
michael |
1206 |
source_p->name, message); |
71 |
michael |
2820 |
return 0; |
72 |
michael |
1206 |
} |
73 |
|
|
|
74 |
michael |
2820 |
static int |
75 |
michael |
1206 |
ms_globops(struct Client *client_p, struct Client *source_p, |
76 |
|
|
int parc, char *parv[]) |
77 |
|
|
{ |
78 |
michael |
1224 |
if (EmptyString(parv[1])) |
79 |
michael |
2820 |
return 0; |
80 |
michael |
1206 |
|
81 |
michael |
1474 |
sendto_server(client_p, CAP_TS6, NOCAPS, ":%s GLOBOPS :%s", |
82 |
michael |
1206 |
ID(source_p), parv[1]); |
83 |
michael |
1474 |
sendto_server(client_p, NOCAPS, CAP_TS6, ":%s GLOBOPS :%s", |
84 |
michael |
1206 |
source_p->name, parv[1]); |
85 |
|
|
|
86 |
michael |
1618 |
sendto_realops_flags(UMODE_ALL, L_ALL, SEND_GLOBAL, "from: %s: %s", |
87 |
michael |
1206 |
source_p->name, parv[1]); |
88 |
michael |
2820 |
return 0; |
89 |
michael |
1206 |
} |
90 |
michael |
1230 |
|
91 |
michael |
2820 |
static struct Message globops_msgtab = |
92 |
|
|
{ |
93 |
michael |
1230 |
"GLOBOPS", 0, 0, 2, MAXPARA, MFLG_SLOW, 0, |
94 |
|
|
{ m_unregistered, m_not_oper, ms_globops, m_ignore, mo_globops, m_ignore } |
95 |
|
|
}; |
96 |
|
|
|
97 |
|
|
static void |
98 |
|
|
module_init(void) |
99 |
|
|
{ |
100 |
|
|
mod_add_cmd(&globops_msgtab); |
101 |
|
|
} |
102 |
|
|
|
103 |
|
|
static void |
104 |
|
|
module_exit(void) |
105 |
|
|
{ |
106 |
|
|
mod_del_cmd(&globops_msgtab); |
107 |
|
|
} |
108 |
|
|
|
109 |
michael |
2820 |
struct module module_entry = |
110 |
|
|
{ |
111 |
michael |
1230 |
.node = { NULL, NULL, NULL }, |
112 |
|
|
.name = NULL, |
113 |
|
|
.version = "$Revision$", |
114 |
|
|
.handle = NULL, |
115 |
|
|
.modinit = module_init, |
116 |
|
|
.modexit = module_exit, |
117 |
|
|
.flags = 0 |
118 |
|
|
}; |