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
|
/*
* Copyright (c) 2005 William Pitcock <nenolod -at- nenolod.net>
* Copyright (c) 2007 Jilles Tjoelker
* Copyright (c) 2017 ChatLounge IRC Network Development Team
*
* Rights to this code are as documented in doc/LICENSE.
*
* Changes the account name to another registered nick
*
*/
#include "atheme.h"
#include "uplink.h"
#include "groupserv.h"
DECLARE_MODULE_V1
(
"groupserv/set_groupname", false, _modinit, _moddeinit,
PACKAGE_STRING,
VENDOR_STRING
);
static void gs_cmd_set_groupname(sourceinfo_t *si, int parc, char *parv[]);
command_t gs_set_groupname = { "GROUPNAME", N_("Changes the group's name."), AC_NONE, 1, gs_cmd_set_groupname, { .path = "groupserv/set_groupname" } };
void _modinit(module_t *m)
{
use_groupserv_main_symbols(m);
use_groupserv_set_symbols(m);
command_add(&gs_set_groupname, gs_set_cmdtree);
}
void _moddeinit(module_unload_intent_t intent)
{
command_delete(&gs_set_groupname, gs_set_cmdtree);
}
/* SET GROUPNAME <name> */
static void gs_cmd_set_groupname(sourceinfo_t *si, int parc, char *parv[])
{
char *oldname, *newname;
mygroup_t *mg;
if (parc != 2)
{
command_fail(si, fault_needmoreparams, STR_INSUFFICIENT_PARAMS, "GROUPNAME");
command_fail(si, fault_needmoreparams, _("Syntax: SET GROUPNAME <oldname> <newname>"));
return;
}
oldname = parv[0];
newname = parv[1];
if (*oldname != '!' || *newname != '!')
{
command_fail(si, fault_badparams, STR_INVALID_PARAMS, "GROUPNAME");
command_fail(si, fault_badparams, _("Syntax: SET GROUPNAME <oldname> <newname>"));
return;
}
mg = mygroup_find(oldname);
if (mg == NULL)
{
command_fail(si, fault_nosuch_target, _("The group \2%s\2 does not exist."), oldname);
return;
}
if (!groupacs_sourceinfo_has_flag(mg, si, GA_FOUNDER))
{
command_fail(si, fault_noprivs, _("You are not authorized to execute this command."));
return;
}
if (strcmp(entity(mg)->name, newname) == 0)
{
command_fail(si, fault_nochange, _("The group name is already set to: \2%s\2"), newname);
return;
}
if (mygroup_find(newname) != NULL)
{
command_fail(si, fault_nochange, _("The group \2%s\2 already exists."), newname);
return;
}
mygroup_rename(mg, newname);
logcommand(si, CMDLOG_REGISTER, "SET:GROUPNAME: \2%s\2 to \2%s\2", oldname, newname);
command_success_nodata(si, _("The group \2%s\2 has been renamed to: \2%s\2"), oldname, newname);
notify_group_set_change(si, si->smu, mg, "GROUPNAME", newname);
}
/* 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
*/
|