]> jfr.im git - irc/quakenet/newserv.git/blob - chanserv/chancmds/addchan.c
ACHIEVEMENTS: More achievement stuff
[irc/quakenet/newserv.git] / chanserv / chancmds / addchan.c
1 /* Automatically generated by refactor.pl.
2 *
3 *
4 * CMDNAME: addchan
5 * CMDLEVEL: QCMD_OPER
6 * CMDARGS: 5
7 * CMDDESC: Adds a new channel to the bot.
8 * CMDFUNC: csc_doaddchan
9 * CMDPROTO: int csc_doaddchan(void *source, int cargc, char **cargv);
10 * CMDHELP: Usage: addchan <channel> [<owner> [<flags> [<type> [<msguser>]]]]
11 * CMDHELP: Adds the given channel to the bot, where:
12 * CMDHELP: owner - can be either nickname on the network or #authname. If not supplied,
13 * CMDHELP: the channel will belong to the user issuing the ADDCHAN command.
14 * CMDHELP: flags - can be any valid chanflags (see CHANFLAGS). If not specified this
15 * CMDHELP: defaults to +j.
16 * CMDHELP: type - is a channel type as per old Q and is now obsolete.
17 * CMDHELP: msguser - send a notification to this user (for service use)
18 */
19
20 #include "../chanserv.h"
21 #include "../../nick/nick.h"
22 #include "../../lib/flags.h"
23 #include "../../lib/irc_string.h"
24 #include "../../channel/channel.h"
25 #include "../../parser/parser.h"
26 #include "../../irc/irc.h"
27 #include "../../localuser/localuserchannel.h"
28 #include <string.h>
29 #include <stdio.h>
30
31 int csc_doaddchan(void *source, int cargc, char **cargv) {
32 nick *sender=source, *notify=NULL;
33 reguser *rup=getreguserfromnick(sender);
34 chanindex *cip;
35 regchan *rcp;
36 regchanuser *rcup;
37 reguser *founder;
38 flag_t flags;
39 short type=0;
40 unsigned int i;
41 void *args[3];
42
43 if (!rup)
44 return CMD_ERROR;
45
46 if (cargc<1) {
47 chanservstdmessage(sender, QM_NOTENOUGHPARAMS, "addchan");
48 return CMD_ERROR;
49 }
50
51 if (*cargv[0] != '#' || strlen(cargv[0]) > CHANNELLEN) {
52 chanservstdmessage(sender, QM_INVALIDCHANNAME, cargv[0]);
53 return CMD_ERROR;
54 }
55
56 /* If a 5th argument is supplied, it's a nick to send the reply messages to. */
57 if (cargc>4) {
58 notify=getnickbynick(cargv[4]);
59 }
60
61 if (cargc>1) {
62 if (!(founder=findreguser(sender, cargv[1])))
63 return CMD_ERROR;
64 } else {
65 founder=rup;
66 }
67
68 if (cargc>2) {
69 flags=0;
70 setflags(&flags, QCFLAG_ALL, cargv[2], rcflags, REJECT_NONE);
71 /* Apply relevant policy */
72 if (!UIsDev(rup)) {
73 flags &= QCFLAG_USERCONTROL;
74 flags |= QCFLAG_JOINED;
75 }
76 } else {
77 flags = (QCFLAG_JOINED);
78 }
79
80 /* Pick up the chantype */
81 if (cargc>3) {
82 for (type=CHANTYPES-1;type;type--) {
83 if (!ircd_strcmp(chantypes[type]->content, cargv[3]))
84 break;
85 }
86 if (!type) {
87 chanservstdmessage(sender, QM_UNKNOWNCHANTYPE, cargv[3]);
88 return CMD_ERROR;
89 }
90 }
91
92 if (!(cip=findorcreatechanindex(cargv[0]))) {
93 chanservstdmessage(sender, QM_INVALIDCHANNAME, cargv[0]);
94 if (notify)
95 chanservstdmessage(notify, QM_INVALIDCHANNAME, cargv[0]);
96 return CMD_ERROR;
97 }
98
99 if (cip->exts[chanservext]) {
100 chanservstdmessage(sender, QM_ALREADYREGISTERED, cip->name->content);
101 if (notify)
102 chanservstdmessage(notify, QM_ALREADYREGISTERED, cip->name->content);
103 return CMD_ERROR;
104 }
105
106 /* Initialise the channel */
107 rcp=getregchan();
108
109 /* ID, index */
110 rcp->ID=++lastchannelID;
111 rcp->index=cip;
112 cip->exts[chanservext]=rcp;
113
114 rcp->chantype=type;
115 rcp->flags=flags;
116 rcp->status=0;
117 rcp->bans=NULL;
118 rcp->lastcountersync=0;
119
120 rcp->limit=0;
121 rcp->forcemodes=CHANMODE_DEFAULT;
122 rcp->denymodes=0;
123
124 if (CIsAutoLimit(rcp)) {
125 rcp->forcemodes |= CHANMODE_LIMIT;
126 }
127
128 rcp->autolimit=5;
129 rcp->banstyle=0;
130
131 rcp->created=rcp->lastactive=rcp->statsreset=rcp->ostatsreset=time(NULL);
132 rcp->banduration=0;
133 rcp->autoupdate=0;
134 rcp->lastbancheck=0;
135
136 /* Added by */
137 rcp->addedby=rup->ID;
138
139 /* Founder */
140 rcp->founder=founder->ID;
141
142 /* Suspend by */
143 rcp->suspendby=0;
144 rcp->suspendtime=0;
145
146 rcp->totaljoins=rcp->tripjoins=rcp->otripjoins=rcp->maxusers=rcp->tripusers=rcp->otripusers=0;
147 rcp->welcome=rcp->topic=rcp->key=rcp->suspendreason=rcp->comment=NULL;
148
149 /* Users */
150 memset(rcp->regusers,0,REGCHANUSERHASHSIZE*sizeof(reguser *));
151
152 rcp->checksched=NULL;
153 rcp->ltimestamp=0;
154 for (i=0;i<CHANOPHISTORY;i++) {
155 rcp->chanopnicks[i][0]='\0';
156 rcp->chanopaccts[i]=0;
157 }
158 rcp->chanoppos=0;
159
160 /* Add new channel to db.. */
161 csdb_createchannel(rcp);
162
163 /* Add the founder as +ano */
164 rcup=getregchanuser();
165 rcup->chan=rcp;
166 rcup->user=founder;
167 rcup->flags=(QCUFLAG_OWNER | QCUFLAG_OP | QCUFLAG_AUTOOP);
168 rcup->usetime=0;
169 rcup->info=NULL;
170 rcup->changetime=time(NULL);
171
172 addregusertochannel(rcup);
173 csdb_createchanuser(rcup);
174 csdb_chanlevhistory_insert(rcp, sender, rcup->user, 0, rcup->flags);
175
176 args[0]=sender;
177 args[1]=rcup;
178 args[2]=(void *)0;
179
180 triggerhook(HOOK_CHANSERV_CHANLEVMOD, args);
181
182 /* If the channel exists, get the ball rolling */
183 if (cip->channel) {
184 chanservjoinchan(cip->channel);
185 rcp->status |= QCSTAT_MODECHECK | QCSTAT_OPCHECK | QCSTAT_BANCHECK;
186 cs_timerfunc(cip);
187 }
188
189 cs_log(sender, "ADDCHAN %s #%s %s %s",cip->name->content,founder->username,printflags(rcp->flags,rcflags), chantypes[type]->content);
190 chanservstdmessage(sender, QM_DONE);
191 if (notify)
192 chanservstdmessage(notify, QM_DONE);
193 return CMD_OK;
194 }