forked from atheme/atheme-contrib-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathns_forbid.c
150 lines (129 loc) · 4.43 KB
/
ns_forbid.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*
* Copyright (c) 2005-2007 William Pitcock, et al.
* Rights to this code are as documented in doc/LICENSE.
*
* This file contains code for the NickServ FORBID function.
*/
#include "atheme-compat.h"
DECLARE_MODULE_V1
(
"contrib/ns_forbid", false, _modinit, _moddeinit,
PACKAGE_STRING,
"Atheme Development Group <http://www.atheme.org>"
);
#define FORBID_EMAIL "noemail"
static void ns_cmd_forbid(sourceinfo_t *si, int parc, char *parv[]);
command_t ns_forbid = { "FORBID", "Disallows use of a nickname.", PRIV_USER_ADMIN, 3, ns_cmd_forbid, { .path = "contrib/forbid" } };
void _modinit(module_t *m)
{
service_named_bind_command("nickserv", &ns_forbid);
}
void _moddeinit(module_unload_intent_t intent)
{
service_named_unbind_command("nickserv", &ns_forbid);
}
static void make_forbid(sourceinfo_t *si, const char *account, const char *reason)
{
myuser_t *mu;
mynick_t *mn = NULL;
user_t *u;
if (!nicksvs.no_nick_ownership && IsDigit(*account))
{
command_fail(si, fault_badparams, "For security reasons, you can't forbid a UID.");
return;
}
if (strchr(account, ' ') || strchr(account, '\n') || strchr(account, '\r') || account[0] == '=' || account[0] == '#' || account[0] == '@' || account[0] == '+' || account[0] == '%' || account[0] == '!' || strchr(account, ','))
{
command_fail(si, fault_badparams, "The account name \2%s\2 is invalid.", account);
return;
}
/* make sure it isn't registered already */
if (nicksvs.no_nick_ownership ? myuser_find(account) != NULL : mynick_find(account) != NULL)
{
command_fail(si, fault_alreadyexists, "\2%s\2 is already registered.", account);
return;
}
mu = myuser_add(account, "*", FORBID_EMAIL, MU_CRYPTPASS | MU_ENFORCE | MU_HOLD | MU_NOBURSTLOGIN);
mu->registered = CURRTIME;
mu->lastlogin = CURRTIME;
metadata_add(mu, "private:freeze:freezer", get_oper_name(si));
metadata_add(mu, "private:freeze:reason", reason);
metadata_add(mu, "private:freeze:timestamp", number_to_string(CURRTIME));
if (!nicksvs.no_nick_ownership)
{
mn = mynick_add(mu, entity(mu)->name);
mn->registered = CURRTIME;
mn->lastseen = CURRTIME;
u = user_find_named(entity(mu)->name);
if (u != NULL)
{
notice(si->service->nick, u->nick,
_("The nick \2%s\2 is now forbidden."),
entity(mu)->name);
hook_call_nick_enforce((&(hook_nick_enforce_t){ .u = u, .mn = mn }));
}
}
logcommand(si, CMDLOG_ADMIN | CMDLOG_REGISTER, "FORBID:ON: \2%s\2 (reason: \2%s\2)", account, reason);
wallops("%s forbade the nickname \2%s\2 (%s).", get_oper_name(si), account, reason);
command_success_nodata(si, "\2%s\2 is now forbidden.", entity(mu)->name);
/* don't call hooks, hmm */
}
static void destroy_forbid(sourceinfo_t *si, const char *account)
{
myuser_t *mu;
metadata_t *md;
mu = myuser_find(account);
if (!mu)
{
command_fail(si, fault_nosuch_target, _("\2%s\2 is not registered."), account);
return;
}
md = metadata_find(mu, "private:freeze:freezer");
if (md == NULL || mu->registered != mu->lastlogin ||
MOWGLI_LIST_LENGTH(&mu->nicks) != 1 ||
strcmp(mu->email, FORBID_EMAIL))
{
command_fail(si, fault_nosuch_target, _("\2%s\2 is not a forbidden nickname."), account);
return;
}
logcommand(si, CMDLOG_ADMIN | CMDLOG_REGISTER, "FORBID:OFF: \2%s\2", entity(mu)->name);
wallops("%s unforbade the nickname \2%s\2.", get_oper_name(si), account);
command_success_nodata(si, "\2%s\2 is no longer forbidden.", entity(mu)->name);
/* no hooks here either, hmm */
object_unref(mu);
}
static void ns_cmd_forbid(sourceinfo_t *si, int parc, char *parv[])
{
const char *account;
const char *action;
const char *reason;
account = parv[0], action = parv[1], reason = parv[2];
if (!account || !action)
{
command_fail(si, fault_needmoreparams, STR_INSUFFICIENT_PARAMS, "FORBID");
command_fail(si, fault_needmoreparams, "Syntax: FORBID <nickname> ON|OFF [reason]");
return;
}
if (!strcasecmp(action, "ON"))
{
if (!reason)
{
command_fail(si, fault_needmoreparams, STR_INSUFFICIENT_PARAMS, "FORBID");
command_fail(si, fault_needmoreparams, _("Usage: FORBID <nickname> ON <reason>"));
return;
}
make_forbid(si, account, reason);
}
else if (!strcasecmp(action, "OFF"))
destroy_forbid(si, account);
else
{
command_fail(si, fault_needmoreparams, STR_INSUFFICIENT_PARAMS, "FORBID");
command_fail(si, fault_needmoreparams, _("Usage: FORBID <nickname> ON|OFF [reason]"));
}
}
/* vim:cinoptions=>s,e0,n0,f0,{0,}0,^0,=s,ps,t0,c3,+s,(2s,us,)20,*30,gs,hs
* vim:ts=8
* vim:sw=8
* vim:noexpandtab
*/