]> jfr.im git - irc/quakenet/newserv.git/blob - helpmod2/hcommands.c
35d138c5b8091b04816893350190951685ebc224
[irc/quakenet/newserv.git] / helpmod2 / hcommands.c
1 #include <string.h>
2 #include <ctype.h>
3 #include <stdio.h>
4 #include <assert.h>
5 #include <sys/types.h>
6 #include <dirent.h>
7
8 #include "../lib/strlfunc.h"
9
10 #include "hcommands.h"
11 #include "hcommand.h"
12
13 #include "helpmod.h"
14 #include "klingon.h"
15 #include "helpmod_alias.h"
16
17 #include "haccount.h"
18 #include "hqueue.h"
19 #include "hterm.h"
20
21 #include "hgen.h"
22 #include "hban.h"
23 #include "hchanban.h"
24
25 #include "hticket.h"
26 #include "hconf.h"
27
28 /* following are macros for use ONLY IN HERE
29 they may not look pretty, but work surprisingly well */
30
31 #define SKIP_WORD \
32 {\
33 if (*ostr == '"' && strchr(ostr+1, '"'))\
34 ostr = strchr(ostr+1, '"');\
35 while (!isspace(*ostr) && *ostr)\
36 ostr++;\
37 while (isspace(*ostr) && *ostr)\
38 ostr++;\
39 argc--;\
40 argv++;\
41 }
42
43 #define DEFINE_HCHANNEL \
44 {\
45 if (argc == 0)\
46 hchan = hchannel_get_by_channel(returntype);\
47 else if (*argv[0] == '#')\
48 {\
49 hchan = hchannel_get_by_name(argv[0]);\
50 SKIP_WORD;\
51 }\
52 else\
53 hchan = hchannel_get_by_channel(returntype);\
54 }
55
56 #define HCHANNEL_VERIFY_AUTHORITY(c, u)\
57 {\
58 if ((c) != NULL && !hchannel_authority((c), (u)))\
59 {\
60 helpmod_reply(u, returntype, "Sorry, channel %s is oper only", hchannel_get_name((c)));\
61 return;\
62 }\
63 }
64
65 enum
66 {
67 H_CMD_OP,
68 H_CMD_DEOP,
69 H_CMD_VOICE,
70 H_CMD_DEVOICE
71 };
72
73 enum
74 {
75 H_TERM_FIND,
76 H_TERM_MINUS,
77 H_TERM_PLUS
78 };
79
80 static void helpmod_cmd_addchan (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
81 {
82 if (argc == 0)
83 {
84 helpmod_reply(sender, returntype, "Cannot add channel: Channel not defined");
85 return;
86 }
87
88 if (*argv[0] != '#')
89 {
90 helpmod_reply(sender, returntype, "Can not add channel: Channel name must start with '#'");
91 return;
92 }
93
94 if (hchannel_get_by_name(argv[0]) != NULL)
95 {
96 helpmod_reply(sender, returntype, "Can not add channel: Channel %s already active", argv[0]);
97 return;
98 }
99
100 if (hchannel_add(argv[0]) != NULL)
101 {
102 helpmod_reply(sender, returntype, "Channel %s added succesfully", argv[0]);
103 return;
104 }
105 }
106
107 static void helpmod_cmd_delchan (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
108 {
109 hchannel *hchan;
110 char buffer[256];
111 DEFINE_HCHANNEL;
112
113 if (hchan == NULL)
114 {
115 helpmod_reply(sender, returntype, "Can not delete channel: Channel not defined or not found");
116 return;
117 }
118 strcpy(buffer, hchan->real_channel->index->name->content);
119 if (argc == 0 || strcmp(argv[0], "YesImSure"))
120 {
121 helpmod_reply(sender, returntype, "Can not delete channel: Sanity check. Please add a parameter \"YesImSure\" to confirm channel deletion");
122 return;
123 }
124 hchannel_del(hchan);
125
126 helpmod_reply(sender, returntype, "Channel %s deleted succesfully", buffer);
127 }
128
129 static void helpmod_cmd_whoami (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
130 {
131 helpmod_reply(sender, returntype, "You are %s", huser_get_nick(sender));
132 helpmod_reply(sender, returntype, "Your userlevel is %s", hlevel_name(huser_get_level(sender)));
133 if (sender->account == NULL)
134 helpmod_reply(sender, returntype, "You do not have an account with me");
135 else
136 helpmod_reply(sender, returntype, "Your accounts name is %s", sender->account->name->content);
137 if (huser_get_level(sender) < H_TRIAL)
138 {
139 if (sender->lc[0] || sender->lc[1] || sender->lc[2] || sender->lc[3] || sender->lc[4])
140 helpmod_reply(sender, returntype, "You violated the following rules: Excessive use of capital letters: %d, repeating: %d, improper use of language: %d, flooding: %d and spamming: %d", sender->lc[0], sender->lc[1], sender->lc[2], sender->lc[3], sender->lc[4]);
141 else
142 helpmod_reply(sender, returntype, "You have not violated any rules");
143 }
144
145 {
146 int pos;
147 huser_channel *huserchan = sender->hchannels;
148 for (;huserchan;huserchan = huserchan->next)
149 if ((pos = hqueue_get_position(huserchan->hchan, sender)) > -1)
150 helpmod_reply(sender, returntype, "You have queue position #%d on channel %s", pos, hchannel_get_name(huserchan->hchan));
151 }
152
153 if (IsAccount(sender->real_user))
154 {
155 hchannel *hchan;
156 hticket *htick;
157 for (hchan = hchannels;hchan;hchan = hchan->next)
158 if (hchan->flags & H_REQUIRE_TICKET)
159 {
160 htick = hticket_get(huser_get_auth(sender), hchan);
161 if (htick != NULL)
162 helpmod_reply(sender, returntype, "You have an invite ticket for channel %s that expires in %s", hchannel_get_name(hchan), helpmod_strtime(time(NULL) - htick->time_expiration));
163 }
164 }
165 }
166
167 static void helpmod_cmd_whois (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
168 {
169 huser *husr;
170 int i;
171
172 if (argc == 0)
173 {
174 helpmod_reply(sender, returntype, "Cannot get user information: User not specified");
175 return;
176 }
177 if (argc > H_CMD_MAX_ARGS)
178 argc = H_CMD_MAX_ARGS;
179
180 for (i=0;i<argc;i++)
181 {
182 husr = huser_get(getnickbynick(argv[i]));
183 if (husr == NULL)
184 {
185 if (getnickbynick(argv[i]) == NULL)
186 helpmod_reply(sender, returntype, "Cannot get user information: User %s does not exist in the network", argv[i]);
187 else
188 helpmod_reply(sender, returntype, "Cannot get user information: User %s exists but is not known to me", argv[i]);
189 continue;
190 }
191 helpmod_reply(sender, returntype, "User %s has userlevel %s", huser_get_nick(husr), hlevel_name(huser_get_level(husr)));
192 if (husr->account == NULL)
193 helpmod_reply(sender, returntype, "User %s does not have an account with me", huser_get_nick(husr));
194 else
195 helpmod_reply(sender, returntype, "User %s has account named %s", huser_get_nick(husr),husr->account->name->content);
196 if (huser_get_level(husr) < H_TRIAL)
197 {
198 if (husr->lc[0] || husr->lc[1] || husr->lc[2] || husr->lc[3] || husr->lc[4])
199 helpmod_reply(sender, returntype, "User %s has lamercontrol entries: Excessive use of capital letters: %d, repeating: %d, improper use of language: %d, flooding: %d and spamming: %d", huser_get_nick(husr), husr->lc[0], husr->lc[1], husr->lc[2], husr->lc[3], husr->lc[4]);
200 else
201 helpmod_reply(sender, returntype, "User %s has no lamercontrol entries", huser_get_nick(husr));
202 }
203 {
204 int pos;
205 huser_channel *huserchan = husr->hchannels;
206 for (;huserchan;huserchan = huserchan->next)
207 {
208 if ((pos = hqueue_get_position(huserchan->hchan, husr)) > -1)
209 helpmod_reply(sender, returntype, "User %s has queue queue position #%d on channel %s", huser_get_nick(husr), pos, hchannel_get_name(huserchan->hchan));
210 if (on_desk(husr, huserchan))
211 helpmod_reply(sender, returntype, "User %s is receiving support on channel %s", huser_get_nick(husr), hchannel_get_name(huserchan->hchan));
212 }
213 }
214 if (IsAccount(husr->real_user))
215 {
216 hchannel *hchan;
217 hticket *htick;
218 for (hchan = hchannels;hchan;hchan = hchan->next)
219 if (hchan->flags & H_REQUIRE_TICKET)
220 {
221 htick = hticket_get(huser_get_auth(husr), hchan);
222 if (htick != NULL)
223 helpmod_reply(sender, returntype, "User %s has an invite ticket for channel %s that expires in %s", huser_get_nick(husr), hchannel_get_name(hchan), helpmod_strtime(time(NULL) - htick->time_expiration));
224 }
225 }
226 }
227 }
228 /*
229 void helpmod_cmd_megod (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
230 {
231 if (sender->account == NULL)
232 sender->account = haccount_add(huser_get_nick(sender), H_ADMIN);
233
234 sender->account->level = H_ADMIN;
235 }
236 */
237
238 static void helpmod_cmd_seen (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
239 {
240 huser *target_huser;
241 haccount *target_haccount;
242 int i;
243
244 if (argc == 0)
245 {
246 helpmod_reply(sender, returntype, "No targets specified for seen");
247 return;
248 }
249 for (i=0;i < argc;i++)
250 {
251 if (*argv[i] == '#')
252 { /* account */
253 if (!ci_strcmp(argv[i] + 1, HELPMOD_AUTH))
254 { /* A nice special case */
255 helpmod_reply(sender, returntype, "I'm right here");
256 continue;
257 }
258 target_haccount = haccount_get_by_name(argv[i]);
259 if (target_haccount == NULL)
260 {
261 helpmod_reply(sender, returntype, "Account %s not found", argv[i] + 1);
262 continue;
263 }
264
265 helpmod_reply(sender, returntype, "Account %s's last recorded activity was %s ago", target_haccount->name->content, helpmod_strtime(time(NULL) - target_haccount->last_activity));
266 }
267 else
268 {
269 if (getnickbynick(argv[i]) == helpmodnick)
270 { /* A nice special case */
271 helpmod_reply(sender, returntype, "I'm right here");
272 continue;
273 }
274 target_huser = huser_get(getnickbynick(argv[i]));
275 if (target_huser == NULL)
276 {
277 helpmod_reply(sender, returntype, "User %s not found", argv[i]);
278 continue;
279 }
280 helpmod_reply(sender, returntype, "User %s's last recorded activity was %s ago", huser_get_nick(target_huser), helpmod_strtime(time(NULL) - target_huser->last_activity));
281 }
282 }
283 }
284
285 static void helpmod_cmd_change_userlevel(huser *sender, hlevel target_level, channel* returntype, char* ostr, int argc, char *argv[])
286 {
287 huser *target_huser;
288 haccount *target_haccount;
289 int i;
290
291 if (argc == 0)
292 {
293 helpmod_reply(sender, returntype, "Incorrect syntax: Nick or account required");
294 return ;
295 }
296
297 if (argc > H_CMD_MAX_ARGS)
298 argc = H_CMD_MAX_ARGS;
299
300 for (i = 0;i < argc;i++)
301 {
302 if (*argv[i] == '#') /* account */
303 {
304 target_haccount = haccount_get_by_name(argv[i]);
305 if (target_haccount == NULL)
306 {
307 helpmod_reply(sender, returntype, "Cannot change userlevel: Account '%s' not found", argv[i]);
308 continue;
309 }
310 if (target_haccount->level > huser_get_level(sender))
311 {
312 helpmod_reply(sender, returntype, "Cannot change userlevel: Account '%s' has a userlevel higher than yours", argv[i]);
313 continue;
314 }
315
316 if (target_haccount->level == target_level)
317 {
318 helpmod_reply(sender, returntype, "Cannot change userlevel: Account '%s' already has userlevel %s", argv[i], hlevel_name(target_level));
319 continue;
320 }
321
322 target_haccount->level = target_level;
323
324 helpmod_reply(sender, returntype, "Userlevel changed: Account '%s' now has userlevel %s", argv[i], hlevel_name(target_level));
325
326 }
327 else
328 {
329 target_huser = huser_get(getnickbynick(argv[i]));
330 if (target_huser == NULL)
331 {
332 helpmod_reply(sender, returntype, "Cannot change userlevel: User '%s' not found", argv[i]);
333 continue;
334 }
335 if (huser_get_level(target_huser) > huser_get_level(sender))
336 {
337 helpmod_reply(sender, returntype, "Cannot change userlevel: User '%s' has a userlevel higher than yours", argv[i]);
338 continue;
339 }
340 if (huser_get_level(target_huser) == H_STAFF && huser_get_level(sender) == H_STAFF)
341 {
342 helpmod_reply(sender, returntype, "Cannot change userlevel: User '%s' has the same userlevel as you have", argv[i]);
343 continue;
344 }
345
346 if (huser_get_level(target_huser) == target_level)
347 {
348 helpmod_reply(sender, returntype, "Cannot change userlevel: User '%s' already has userlevel %s", argv[i], hlevel_name(target_level));
349 continue;
350 }
351 if (target_huser == sender)
352 {
353 helpmod_reply(sender, returntype, "Cannot change userlevel: Sanity check, you're changing your own userlevel, use #account instead of nick if you really wish to do this");
354 continue;
355 }
356
357 if (target_level == H_LAMER)
358 {
359 const char *banmask = hban_ban_string(target_huser->real_user, HBAN_HOST);
360 hban_add(banmask, "Improper user", time(NULL) + HCMD_OUT_DEFAULT, 1);
361 if (!IsAccount(target_huser->real_user))
362 {
363 helpmod_reply(sender, returntype, "Cannot change userlevel: User '%s' is not authed. Banning user instead.", argv[i]);
364 continue;
365 }
366 }
367
368 if (!IsAccount(target_huser->real_user))
369 {
370 helpmod_reply(sender, returntype, "Cannot change userlevel: User '%s' is not authed", argv[i]);
371 continue;
372 }
373
374 if (target_huser->account == NULL)
375 {
376 if (haccount_get_by_name(huser_get_auth(target_huser)) != NULL)
377 {
378 helpmod_reply(sender, returntype, "Cannot change userlevel: Unable to create an account. Account %s already exists", huser_get_auth(target_huser));
379 continue;
380 }
381 else
382 target_huser->account = haccount_add(huser_get_auth(target_huser), target_level);
383 }
384
385 target_huser->account->level = target_level;
386
387 helpmod_reply(sender, returntype, "Userlevel changed: User '%s' now has userlevel %s", argv[i], hlevel_name(target_level));
388
389 if (target_level != H_LAMER)
390 helpmod_reply(target_huser, NULL, "Your userlevel has been changed, your current userlevel is %s", hlevel_name(target_level));
391 }
392 }
393 }
394
395 /* pseudo commands for the above */
396 static void helpmod_cmd_improper (huser *sender, channel* returntype, char* ostr, int argc, char *argv[]) { helpmod_cmd_change_userlevel(sender, H_LAMER, returntype, ostr, argc, argv); }
397 static void helpmod_cmd_peon (huser *sender, channel* returntype, char* ostr, int argc, char *argv[]) { helpmod_cmd_change_userlevel(sender, H_PEON, returntype, ostr, argc, argv); }
398 static void helpmod_cmd_friend (huser *sender, channel* returntype, char* ostr, int argc, char *argv[]) { helpmod_cmd_change_userlevel(sender, H_FRIEND, returntype, ostr, argc, argv); }
399 static void helpmod_cmd_trial (huser *sender, channel* returntype, char* ostr, int argc, char *argv[]) { helpmod_cmd_change_userlevel(sender, H_TRIAL, returntype, ostr, argc, argv); }
400 static void helpmod_cmd_staff (huser *sender, channel* returntype, char* ostr, int argc, char *argv[]) { helpmod_cmd_change_userlevel(sender, H_STAFF, returntype, ostr, argc, argv); }
401 static void helpmod_cmd_oper (huser *sender, channel* returntype, char* ostr, int argc, char *argv[]) { helpmod_cmd_change_userlevel(sender, H_OPER, returntype, ostr, argc, argv); }
402 static void helpmod_cmd_admin (huser *sender, channel* returntype, char* ostr, int argc, char *argv[]) { helpmod_cmd_change_userlevel(sender, H_ADMIN, returntype, ostr, argc, argv); }
403
404 static void helpmod_cmd_deluser (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
405 {
406 int i;
407 huser *target_huser;
408 haccount *target_haccount;
409
410 if (argc == 0)
411 {
412 helpmod_reply(sender, returntype, "Usage: deluser [nick|#account]");
413 return;
414 }
415
416 if (argc > H_CMD_MAX_ARGS)
417 argc = H_CMD_MAX_ARGS;
418
419 for (i = 0;i < argc;i++)
420 {
421 if (*argv[i] != '#')
422 {
423 target_huser = huser_get(getnickbynick(argv[i]));
424 if (target_huser == NULL)
425 {
426 helpmod_reply(sender, returntype, "Cannot delete the account: User %s does not exist", argv[i]);
427 continue;
428 }
429 if (target_huser->account == NULL)
430 {
431 helpmod_reply(sender, returntype, "Cannot delete the account: User %s does not have an account", argv[i]);
432 continue;
433 }
434 target_haccount = target_huser->account;
435 }
436 else
437 target_haccount = haccount_get_by_name(argv[i]);
438
439 if (target_haccount == NULL)
440 {
441 helpmod_reply(sender, returntype, "Cannot delete the account: Account %s does not exist", argv[i]);
442 continue;
443 }
444 if (target_haccount->level > huser_get_level(sender))
445 {
446 helpmod_reply(sender, returntype, "Cannot delete the account: Account %s has higher userlevel than you", target_haccount->name->content);
447 continue;
448 }
449 helpmod_reply(sender, returntype, "Account %s deleted", target_haccount->name->content);
450 haccount_del(target_haccount);
451 }
452 }
453
454 static void helpmod_cmd_listuser (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
455 {
456 char *pattern;
457 haccount *hack = haccounts;
458 int count = 0, lvl = -1;
459 time_t timer;
460
461 if (argc > 0 && sscanf(argv[0], "%d", &lvl) && lvl >= H_LAMER && lvl <= H_ADMIN)
462 {
463 SKIP_WORD;
464 }
465 else
466 lvl = -1;
467
468 if (argc == 0)
469 pattern = "*";
470 else
471 pattern = argv[0];
472
473 if (lvl >= 0)
474 helpmod_reply(sender, returntype, "%s accounts matching pattern %s: (account name, userlevel, expires in)", hlevel_name(lvl), pattern);
475 else
476 helpmod_reply(sender, returntype, "Accounts matching pattern %s: (account name, userlevel, expires in)", pattern);
477 for (;hack;hack = hack->next)
478 {
479 if (strregexp(hack->name->content, pattern))
480 {
481 if (lvl >= 0 && hack->level != lvl)
482 continue;
483 timer = hack->last_activity + HELPMOD_ACCOUNT_EXPIRATION[hack->level];
484 helpmod_reply(sender, returntype, "%-16s %-32s %s", hack->name->content, hlevel_name(hack->level), asctime(localtime(&timer)));
485 count++;
486 }
487 }
488 if (lvl >= 0)
489 helpmod_reply(sender, returntype, "%s accounts matching pattern %d", hlevel_name(lvl), count);
490 else
491 helpmod_reply(sender, returntype, "Accounts matching pattern %d", count);
492 }
493
494 static void helpmod_cmd_censor (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
495 {
496 hchannel *hchan;
497 hcensor *hcens;
498 int i = 0;
499
500 DEFINE_HCHANNEL;
501
502 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
503
504 if (hchan == NULL)
505 {
506 helpmod_reply(sender, returntype, "Cannot handle the censor: Channel not specified or found");
507 return;
508 }
509
510 if (argc < 2 || !ci_strcmp(argv[0], "list")) /* view */
511 {
512 if (hchan->censor == NULL)
513 helpmod_reply(sender, returntype, "Nothing is censored on channel %s", hchan->real_channel->index->name->content);
514 else
515 {
516 helpmod_reply(sender, returntype, "Censored patterns for channel %s (%s):", hchan->real_channel->index->name->content, (hchan->flags & H_CENSOR)?"active":"inactive");
517 for (hcens = hchan->censor;hcens;hcens = hcens->next)
518 helpmod_reply(sender, returntype, "#%-4d %-8s %s%s%s", i++, hcensor_get_typename(hcens->type), hcens->pattern->content, hcens->reason?" :: ":"", hcens->reason?hcens->reason->content:"");
519 }
520 }
521 else
522 {
523 if (!ci_strcmp(argv[0], "add"))
524 {
525 char *pattern;
526 char *reason;
527 int type = HCENSOR_KICK;
528
529 SKIP_WORD;
530
531 /* not very elegant but will have to do */
532 if (argc > 1)
533 {
534 if (!ci_strcmp(argv[0], "warn"))
535 {
536 type = HCENSOR_WARN;
537 if (argc <= 2)
538 {
539 helpmod_reply(sender, returntype, "Cannot add censor entry: Entries of type warn require a reason");
540 return;
541 }
542 SKIP_WORD;
543 }
544 else if (!ci_strcmp(argv[0], "kick"))
545 {
546 type = HCENSOR_KICK;
547 SKIP_WORD;
548 }
549 else if (!ci_strcmp(argv[0], "chanban"))
550 {
551 type = HCENSOR_CHANBAN;
552 SKIP_WORD;
553 }
554 else if (!ci_strcmp(argv[0], "ban"))
555 {
556 type = HCENSOR_BAN;
557 SKIP_WORD;
558 }
559 }
560
561 pattern = argv[0];
562
563 if (strlen(pattern) == 0)
564 {
565 helpmod_reply(sender, returntype, "Cannot add censor entry: Pattern must be non-empty");
566 return;
567 }
568
569 SKIP_WORD;
570 if (argc && strlen(ostr) > 0)
571 reason = ostr;
572 else
573 reason = NULL;
574
575 if (hcensor_get_by_pattern(hchan->censor, pattern))
576 {
577 helpmod_reply(sender, returntype, "Cannot add censor entry: Pattern '%s' is already censored", pattern);
578 return;
579 }
580
581 if (hcensor_add(&hchan->censor, pattern, reason, type))
582 helpmod_reply(sender, returntype, "Pattern '%s' (%s) with type %s, censored succesfully", pattern, reason?reason:"no reason specified", hcensor_get_typename(type));
583 else
584 helpmod_reply(sender, returntype, "Cannot add censor entry: Pattern '%s' is already censored", pattern);
585
586 }
587 else if (!ci_strcmp(argv[0], "del"))
588 {
589 SKIP_WORD;
590 if (*argv[0] == '#')
591 {
592 int tmp;
593 if (!sscanf(argv[0], "#%d", &tmp))
594 {
595 helpmod_reply(sender, returntype, "Cannot delete censor entry: Bad index, integer expected");
596 return;
597 }
598 hcens = hcensor_get_by_index(hchan->censor, tmp);
599 }
600 else
601 hcens = hcensor_get_by_pattern(hchan->censor, argv[0]);
602
603 if (hcens == NULL)
604 helpmod_reply(sender, returntype, "Cannot delete censor entry: Entry not found");
605 else
606 {
607 hcensor_del(&hchan->censor, hcens);
608 helpmod_reply(sender, returntype, "Censor entry deleted succesfully");
609 }
610 }
611 else
612 helpmod_reply(sender, returntype, "Unknown censor command %s", argv[0]);
613 }
614 }
615
616 static void helpmod_cmd_chanconf (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
617 {
618 hchannel *hchan;
619 int old_flags=0;
620
621 DEFINE_HCHANNEL;
622
623 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
624
625 if (hchan == NULL)
626 {
627 helpmod_reply(sender, returntype, "Cannot change or view channel configuration: Channel not specified or found");
628 return;
629 }
630
631 if (argc == 0) /* view, spammy but with pretty formatting */
632 {
633 int i;
634 helpmod_reply(sender, returntype, "Channel configuration for %s:", hchan->real_channel->index->name->content);
635
636 for (i=0;i<=HCHANNEL_CONF_COUNT;i++)
637 helpmod_reply(sender, returntype, "(%02d) %-32s : %s", i, hchannel_get_sname(i), hchannel_get_state(hchan, 1 << i));
638 }
639 else /* change */
640 {
641 int i, tmp, type;
642 old_flags = hchan->flags;
643
644 if (argc > H_CMD_MAX_ARGS)
645 argc = H_CMD_MAX_ARGS;
646
647 for (i=0;i<argc;i++)
648 {
649 if (*argv[i] == '+')
650 {
651 type = 1;
652 argv[i]++;
653 }
654 else if (*argv[i] == '-')
655 {
656 type = -1;
657 argv[i]++;
658 }
659 else
660 type = 0;
661
662 if (!sscanf(argv[i], "%d", &tmp) || (tmp < 0) || (tmp > HCHANNEL_CONF_COUNT))
663 {
664 helpmod_reply(sender, returntype, "Cannot change channel configuration: Expected integer between [0, %d]", HCHANNEL_CONF_COUNT);
665 continue;
666 }
667
668 switch (type)
669 {
670 case -1: /* unset */
671 hchan->flags &= ~(1 << tmp);
672 helpmod_reply(sender, returntype, "Channel configuration for %s changed: %s set to %s",hchannel_get_name(hchan), hchannel_get_sname(tmp), hchannel_get_state(hchan, 1 << tmp));
673 break;
674 case 0: /* view */
675 helpmod_reply(sender, returntype, "(%02d) %-32s : %s", tmp, hchannel_get_sname(tmp), hchannel_get_state(hchan, 1 << tmp));
676 break;
677 case 1: /* set */
678 hchan->flags |= (1 << tmp);
679 helpmod_reply(sender, returntype, "Channel configuration for %s changed: %s set to %s", hchannel_get_name(hchan), hchannel_get_sname(tmp), hchannel_get_state(hchan, 1 << tmp));
680 break;
681 }
682 }
683 hchannel_conf_change(hchan, old_flags);
684 }
685 }
686
687 static void helpmod_cmd_acconf (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
688 {
689 haccount *hacc = sender->account;
690
691 if (hacc == NULL)
692 {
693 helpmod_reply(sender, returntype, "Account configuration impossible: You do not have an account");
694 return;
695 }
696
697 if (argc == 0) /* view, spammy but with pretty formatting */
698 {
699 int i;
700 helpmod_reply(sender, returntype, "Account configuration for %s:", hacc->name->content);
701
702 for (i=0;i<=HACCOUNT_CONF_COUNT;i++)
703 helpmod_reply(sender, returntype, "(%02d) %-35s : %s", i, haccount_get_sname(i), haccount_get_state(hacc, 1 << i));
704 }
705 else /* change */
706 {
707 int i, tmp, type;
708
709 if (argc > H_CMD_MAX_ARGS)
710 argc = H_CMD_MAX_ARGS;
711
712 for (i=0;i<argc;i++)
713 {
714 if (*argv[i] == '+')
715 {
716 type = 1;
717 argv[i]++;
718 }
719 else if (*argv[i] == '-')
720 {
721 type = -1;
722 argv[i]++;
723 }
724 else
725 type = 0;
726
727 if (!sscanf(argv[i], "%d", &tmp) || (tmp < 0) || (tmp > HACCOUNT_CONF_COUNT))
728 {
729 helpmod_reply(sender, returntype, "Cannot change account configuration: Expected integer between [0, %d]", HACCOUNT_CONF_COUNT);
730 continue;
731 }
732
733 switch (type)
734 {
735 case -1: /* unset */
736 hacc->flags &= ~(1 << tmp);
737 helpmod_reply(sender, returntype, "Account configuration for %s changed: %s set to %s",hacc->name->content, haccount_get_sname(tmp), haccount_get_state(hacc, 1 << tmp));
738 break;
739 case 0: /* view */
740 helpmod_reply(sender, returntype, "(%02d) %-35s : %s", tmp, haccount_get_sname(tmp), haccount_get_state(hacc, 1 << tmp));
741 break;
742 case 1: /* set */
743 hacc->flags |= (1 << tmp);
744 helpmod_reply(sender, returntype, "Account configuration for %s changed: %s set to %s", hacc->name->content, haccount_get_sname(tmp), haccount_get_state(hacc, 1 << tmp));
745 break;
746 }
747 }
748 }
749 }
750
751 static void helpmod_cmd_welcome (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
752 {
753 hchannel *hchan;
754
755 DEFINE_HCHANNEL;
756
757 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
758
759 if (hchan == NULL)
760 {
761 helpmod_reply(sender, returntype, "Cannot change or view the welcome message: Channel not specified or found");
762 return;
763 }
764
765 if (argc == 0) /* view */
766 {
767 helpmod_reply(sender, returntype, "Welcome message for channel %s (%s): %s", hchan->real_channel->index->name->content, hchannel_get_state(hchan, H_WELCOME), hchan->welcome);
768 }
769 else
770 {
771 strlcpy(hchan->welcome, ostr, HCHANNEL_WELCOME_LEN);
772 helpmod_reply(sender, returntype, "Welcome message for channel %s (%s) is now: %s", hchan->real_channel->index->name->content, hchannel_get_state(hchan, H_WELCOME), hchan->welcome);
773 }
774 }
775
776 static void helpmod_cmd_aliases (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
777 {
778 char buf[512];
779 int i = 0;
780 void helpmod_list_aliases(alias_tree node)
781 {
782 if (i > 256)
783 {
784 helpmod_reply(sender, returntype, "%s", buf);
785 i = 0;
786 }
787 if (!node)
788 return;
789 sprintf(buf+i,"%.200s ",node->name->content);
790 i+=(1+strlen(node->name->content));
791 helpmod_list_aliases(node->left);
792 helpmod_list_aliases(node->right);
793 }
794 helpmod_list_aliases(aliases);
795 if (i)
796 helpmod_reply(sender, returntype, "%s", buf);
797 }
798
799 static void helpmod_cmd_showcommands (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
800 {
801 int level = H_PEON, previous_level = H_PEON;
802 hcommand *tmp;
803
804 if (!(argc && (sscanf(argv[0], "%d", &level)) && (level >= 0) && (level <= huser_get_level(sender))))
805 level = huser_get_level(sender);
806
807 helpmod_reply(sender, returntype, "HelpMod %s commands for userlevel %s:", HELPMOD_VERSION, hlevel_name(level));
808
809 hcommand_list(H_NONE);
810
811 while ((tmp = hcommand_list(level)) != NULL)
812 {
813 if (tmp->level > previous_level)
814 {
815 helpmod_reply(sender, returntype, "--- Additional commands for userlevel %s ---", hlevel_name(tmp->level));
816 previous_level = tmp->level;
817 }
818 helpmod_reply(sender, returntype, "%-16s %s", tmp->name->content, tmp->help->content);
819 }
820
821 return;
822 }
823
824 static void helpmod_cmd_lamercontrol (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
825 {
826 hchannel *hchan;
827 hlc_profile *ptr;
828
829 DEFINE_HCHANNEL;
830
831 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
832
833 if (hchan == NULL) /* list profiles */
834 {
835 helpmod_reply(sender, returntype, "Following lamercontrol profiles are available:");
836 for (ptr = hlc_profiles;ptr;ptr = ptr->next)
837 helpmod_reply(sender, returntype, "%s", ptr->name->content);
838 return;
839 }
840 if (argc == 0)
841 {
842 if (hchan->lc_profile == NULL)
843 helpmod_reply(sender, returntype, "Channel %s has no lamercontrol profile set", hchannel_get_name(hchan));
844 else
845 helpmod_reply(sender, returntype, "Channel %s is using lamercontrol profile %s (%s)", hchannel_get_name(hchan), hchan->lc_profile->name->content, hchannel_get_state(hchan, H_LAMER_CONTROL));
846 return;
847 }
848 if (!ci_strcmp(argv[0], "list"))
849 {
850 helpmod_reply(sender, returntype, "Following lamercontrol profiles are available:");
851 for (ptr = hlc_profiles;ptr;ptr = ptr->next)
852 helpmod_reply(sender, returntype, "%s", ptr->name->content);
853 return;
854 }
855 ptr = hlc_get(argv[0]);
856 if (ptr == NULL)
857 {
858 helpmod_reply(sender, returntype, "Cannot set the lamercontrol profile: Profile %s does not exist:", argv[0]);
859 return;
860 }
861 else
862 {
863 hchan->lc_profile = ptr;
864 helpmod_reply(sender, returntype, "Lamercontrol profile %s set to channel %s succesfully",ptr->name->content,hchannel_get_name(hchan));
865 }
866
867 }
868
869 static void helpmod_cmd_term_find_general (huser *sender, channel* returntype, int type, char* ostr, int argc, char *argv[])
870 {
871 hterm *htrm;
872 hterm *source;
873 hchannel *hchan;
874 huser *targets[6];
875 int i,ntargets = 0;
876
877 DEFINE_HCHANNEL;
878
879 if (hchan == NULL)
880 source = hterms;
881 else
882 source = hchan->channel_hterms;
883
884 if (argc == 0)
885 {
886 if (type == H_TERM_PLUS)
887 hqueue_advance(hchan, sender, 1);
888 else
889 helpmod_reply(sender, returntype, "Cannot find term: Term not specified");
890 return;
891 }
892 htrm = hterm_get_and_find(source, argv[0]);
893 if (htrm == NULL)
894 {
895 helpmod_reply(sender, returntype, "No term found matching '%s'", argv[0]);
896 return;
897 }
898 if (returntype != NULL && huser_get_level(sender) >= H_TRIAL)
899 {
900 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
901
902 if (argc > 1)
903 {
904 SKIP_WORD;
905 if (argc > H_CMD_MAX_ARGS)
906 argc = H_CMD_MAX_ARGS;
907 for (i=0;i<argc;i++)
908 {
909 targets[ntargets] = huser_get(getnickbynick(argv[i]));
910 if (targets[ntargets] == NULL)
911 {
912 helpmod_reply(sender, returntype, "Error using ?: User %s not found", argv[i]);
913 continue;
914 }
915 else
916 ntargets++;
917 }
918 }
919
920 if (ntargets == 0)
921 helpmod_message_channel_long(hchannel_get_by_channel(returntype), "(%s): %s", htrm->name->content, htrm->description->content);
922 else
923 {
924 char buffer[256] = "";
925 for (i=0;i<ntargets;i++)
926 {
927 if (i != 0)
928 strcat(buffer, " ");
929 strcat(buffer, huser_get_nick(targets[i]));
930 }
931
932 helpmod_message_channel_long(hchannel_get_by_channel(returntype), "%s: (%s) %s", buffer, htrm->name->content, htrm->description->content);
933 if (type != H_TERM_FIND)
934 {
935 if (hchan->flags & H_QUEUE)
936 {
937 for (i=0;i<ntargets;i++)
938 {
939 huser_channel *huserchan = huser_on_channel(targets[i], hchan);
940 huserchan->flags |= HQUEUE_DONE;
941 if (huserchan->flags & HCUMODE_VOICE)
942 helpmod_channick_modes(targets[i], hchan, MC_DEVOICE, HLAZY);
943 }
944 if (type == H_TERM_PLUS)
945 hqueue_advance(hchan, sender, ntargets);
946 }
947 }
948 }
949 }
950 else
951 helpmod_reply(sender, returntype, "(%s): %s", htrm->name->content, htrm->description->content);
952 }
953
954 static void helpmod_cmd_term_find (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
955 {
956 helpmod_cmd_term_find_general(sender, returntype, H_TERM_FIND, ostr, argc, argv);
957 }
958
959 static void helpmod_cmd_term_find_minus (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
960 {
961 helpmod_cmd_term_find_general(sender, returntype, H_TERM_MINUS, ostr, argc, argv);
962 }
963
964 static void helpmod_cmd_term_find_plus (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
965 {
966 helpmod_cmd_term_find_general(sender, returntype, H_TERM_PLUS, ostr, argc, argv);
967 }
968
969 static void helpmod_cmd_klingon (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
970 {
971 hchannel *hchan;
972 huser *target = NULL;
973 int rand_val;
974
975 DEFINE_HCHANNEL;
976
977 if (hchan == NULL)
978 {
979 rand_val = rand() % KLINGON_NTARGETED;
980 helpmod_reply(sender, NULL, "%s: %s", huser_get_nick(sender), klingon_targeted[rand_val]);
981 return;
982 }
983
984 if (argc)
985 target = huser_get(getnickbynick(argv[0]));
986
987 if (target)
988 {
989 rand_val = rand() % KLINGON_NTARGETED;
990 helpmod_message_channel(hchan, "%s: %s", huser_get_nick(target), klingon_targeted[rand_val]);
991 }
992 else
993 {
994 rand_val = rand() % KLINGON_NGENERAL;
995 helpmod_message_channel(hchan, "%s", klingon_general[rand_val]);
996 }
997 }
998
999 void helpmod_cmd_term (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1000 {
1001 hterm *htrm;
1002 hterm **source;
1003 hchannel *hchan;
1004
1005 DEFINE_HCHANNEL;
1006
1007 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1008
1009 if (hchan == NULL)
1010 source = &hterms;
1011 else
1012 source = &hchan->channel_hterms;
1013
1014 if (argc == 0)
1015 {
1016 helpmod_reply(sender, returntype, "Cannot handle terms: Operation not specified");
1017 return;
1018 }
1019 if (!ci_strcmp(argv[0], "list"))
1020 {
1021 char buffer[512];
1022 int count = 0;
1023 char *pattern = "*";
1024
1025 buffer[0] = '\0';
1026 htrm = *source;
1027
1028 if (argc >= 2)
1029 pattern = argv[1];
1030 else
1031 pattern = "*";
1032
1033 helpmod_reply(sender, returntype, "Terms matching pattern '%s'", pattern);
1034 for (;htrm;htrm = htrm->next)
1035 {
1036 if (strlen(buffer) >= 250)
1037 {
1038 helpmod_reply(sender, returntype, "%s", buffer);
1039 buffer[0] = '\0';
1040 }
1041 if (strregexp(htrm->description->content, pattern) || strregexp(htrm->name->content, pattern))
1042 {
1043 sprintf(buffer+strlen(buffer) /* :) */, "%s(%u) ", htrm->name->content, (unsigned int)strlen(htrm->description->content));
1044 count++;
1045 }
1046 }
1047 if (buffer[0])
1048 helpmod_reply(sender, returntype, "%s", buffer);
1049 helpmod_reply(sender, returntype, "%d term%s match%s pattern '%s'", count, (count == 1)?"":"s", (count == 1)?"es":"", pattern);
1050 }
1051 else if (!ci_strcmp(argv[0], "listfull"))
1052 {
1053 htrm = *source;
1054 helpmod_reply(sender, returntype, "Following terms have been entered:");
1055 for (;htrm;htrm = htrm->next)
1056 helpmod_reply(sender, returntype, "(%s): %s", htrm->name->content, htrm->description->content);
1057 }
1058 else if (!ci_strcmp(argv[0], "get"))
1059 {
1060 if (argc < 2)
1061 {
1062 helpmod_reply(sender, returntype, "Cannot get term: Term not specified");
1063 return;
1064 }
1065 htrm = hterm_get(*source, argv[1]);
1066 if (htrm == NULL)
1067 helpmod_reply(sender, returntype, "Cannot get term: Term %s not found", argv[1]);
1068 else
1069 helpmod_reply(sender, returntype, "(%s): %s", htrm->name->content, htrm->description->content);
1070 }
1071 else if (!ci_strcmp(argv[0], "add"))
1072 {
1073 if (argc < 2)
1074 helpmod_reply(sender, returntype, "Cannot add term: Term name not specified");
1075 else if (argc < 3)
1076 helpmod_reply(sender, returntype, "Cannot add term: Term description not specified");
1077 else if ((htrm = hterm_get(*source, argv[1])) != NULL)
1078 helpmod_reply(sender, returntype, "Cannot add term: Term %s is already added", argv[1]);
1079 else
1080 {
1081 char *name = argv[1], *description;
1082 SKIP_WORD; SKIP_WORD;
1083 description = ostr;
1084 htrm = hterm_add(source, name, description);
1085 helpmod_reply(sender, returntype, "Term %s added succesfully", name);
1086 }
1087 }
1088 else if (!ci_strcmp(argv[0], "del"))
1089 {
1090 int i;
1091 if (argc < 2)
1092 {
1093 helpmod_reply(sender, returntype, "Cannot delete term: Term name not specified");
1094 return;
1095 }
1096 if (argc > H_CMD_MAX_ARGS)
1097 argc = H_CMD_MAX_ARGS;
1098 for (i=1;i<argc;i++)
1099 {
1100 htrm = hterm_get(*source, argv[i]);
1101 if (htrm == NULL)
1102 {
1103 helpmod_reply(sender, returntype, "Cannot delete term: Term %s not found", argv[i]);
1104 continue;
1105 }
1106 hterm_del(source != NULL?source:&hterms, htrm);
1107 helpmod_reply(sender, returntype, "Term %s deleted succesfully", argv[i]);
1108 }
1109 }
1110 else if (!ci_strcmp(argv[0], "find"))
1111 {
1112 if (argc < 2)
1113 {
1114 helpmod_reply(sender, returntype, "Cannot find term: Term name not specified");
1115 return;
1116 }
1117 htrm = hterm_get_and_find(*source, argv[1]);
1118
1119 if (htrm == NULL)
1120 {
1121 helpmod_reply(sender, returntype, "No term found matching '%s'", argv[1]);
1122 return;
1123 }
1124 if (returntype != NULL && huser_get_level(sender) >= H_TRIAL)
1125 helpmod_message_channel(hchannel_get_by_channel(returntype), "(%s): %s", htrm->name->content, htrm->description->content);
1126 else
1127 helpmod_reply(sender, returntype, "(%s): %s", htrm->name->content, htrm->description->content);
1128 }
1129 else
1130 {
1131 helpmod_reply(sender, returntype, "Cannot handle terms: Operation not specified");
1132 }
1133 }
1134
1135 static void helpmod_cmd_queue (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1136 {
1137 hchannel *hchan;
1138 int operation;
1139
1140 DEFINE_HCHANNEL;
1141
1142 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1143
1144 if (argc == 0)
1145 {
1146 helpmod_reply(sender, returntype, "Cannot handle queue: Operation not specified");
1147 return;
1148 }
1149
1150 if (!ci_strcmp(argv[0], "done"))
1151 operation = HQ_DONE;
1152 else if (!ci_strcmp(argv[0], "next"))
1153 operation = HQ_NEXT;
1154 else if (!ci_strcmp(argv[0], "on"))
1155 operation = HQ_ON;
1156 else if (!ci_strcmp(argv[0], "off"))
1157 operation = HQ_OFF;
1158 else if (!ci_strcmp(argv[0], "maintain"))
1159 operation = HQ_MAINTAIN;
1160 else if (!ci_strcmp(argv[0], "list"))
1161 operation = HQ_LIST;
1162 else if (!ci_strcmp(argv[0], "summary"))
1163 operation = HQ_SUMMARY;
1164 else if (!ci_strcmp(argv[0], "reset"))
1165 operation = HQ_RESET;
1166 else
1167 operation = HQ_NONE;
1168
1169 SKIP_WORD;
1170
1171 helpmod_queue_handler(sender, returntype, hchan, operation, ostr, argc, argv);
1172 }
1173
1174 static void helpmod_cmd_done (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1175 {
1176 hchannel *hchan;
1177 DEFINE_HCHANNEL;
1178 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1179 helpmod_queue_handler(sender, returntype, hchan, HQ_DONE, ostr, argc, argv);
1180 }
1181
1182 static void helpmod_cmd_next (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1183 {
1184 hchannel *hchan;
1185 DEFINE_HCHANNEL;
1186 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1187 helpmod_queue_handler(sender, returntype, hchan, HQ_NEXT, ostr, argc, argv);
1188 }
1189
1190 static void helpmod_cmd_enqueue (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1191 {
1192 hchannel *hchan;
1193 DEFINE_HCHANNEL;
1194 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1195 helpmod_queue_handler(sender, returntype, hchan, HQ_ON, ostr, argc, argv);
1196 }
1197
1198 static void helpmod_cmd_dequeue (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1199 {
1200 hchannel *hchan;
1201 DEFINE_HCHANNEL;
1202 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1203 helpmod_queue_handler(sender, returntype, hchan, HQ_OFF, ostr, argc, argv);
1204 }
1205
1206 static void helpmod_cmd_autoqueue (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1207 {
1208 hchannel *hchan;
1209 DEFINE_HCHANNEL;
1210 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1211 helpmod_queue_handler(sender, returntype, hchan, HQ_MAINTAIN, ostr, argc, argv);
1212 }
1213
1214 static void helpmod_cmd_dnmo (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1215 {
1216 int i;
1217 if (argc == 0)
1218 {
1219 helpmod_reply(sender, returntype, "Cannot correct the luser: User not defined");
1220 return;
1221 }
1222 if (argc > H_CMD_MAX_ARGS)
1223 argc = H_CMD_MAX_ARGS;
1224 for (i=0;i<argc;i++)
1225 {
1226 huser *husr = huser_get(getnickbynick(argv[i]));
1227 if (husr == NULL)
1228 {
1229 helpmod_reply(sender, returntype, "Cannot correct the luser: User %s not found", argv[i]);
1230 continue;
1231 }
1232 if (huser_get_level(husr) > H_PEON)
1233 {
1234 helpmod_reply(sender, returntype, "Cannot correct the luser: User %s is not a peon", argv[i]);
1235 continue;
1236 }
1237 /*
1238 if (!hchannels_on_queue(husr) && !hchannels_on_desk(husr))
1239 {
1240 helpmod_reply(sender, returntype, "Cannot correct the luser: User %s is not in any queue", argv[i]);
1241 continue;
1242 }
1243 */
1244 hchannels_dnmo(husr);
1245
1246 helpmod_reply(husr, NULL, "You contacted a channel operator without permission. This is a violation of the channel rules. As a result you have been set to the last queue position");
1247 helpmod_reply(sender, returntype, "User %s has been informed of his mistake", argv[i]);
1248 }
1249 { /* fix the autoqueue for the channel(s) */
1250 hchannel *hchan;
1251 for (hchan = hchannels;hchan;hchan = hchan->next)
1252 hqueue_handle_queue(hchan, sender);
1253 }
1254 }
1255
1256 static void helpmod_cmd_ban (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1257 {
1258 if (argc == 0 || !ci_strcmp(argv[0], "list"))
1259 {
1260 hban *ptr = hbans;
1261 char *pattern;
1262 int count = 0;
1263
1264 if (argc <= 1)
1265 pattern = "*";
1266 else
1267 pattern = argv[1];
1268
1269 helpmod_reply(sender, returntype, "Global bans matching pattern %s", pattern);
1270
1271 for (;ptr;ptr = ptr->next)
1272 if (strregexp(bantostring(ptr->real_ban), pattern))
1273 {
1274 helpmod_reply(sender, returntype, "%-64s %-20s %s", bantostring(ptr->real_ban), helpmod_strtime(ptr->expiration - time(NULL)), ptr->reason?ptr->reason->content:"");
1275 count++;
1276 }
1277
1278 helpmod_reply(sender, returntype, "%d Global bans match pattern %s", count, pattern);
1279 }
1280 else if (!ci_strcmp(argv[0], "add"))
1281 {
1282 int duration = 4 * HDEF_h;
1283 char *reason = "Banned";
1284 char *target = argv[1];
1285
1286 if (argc == 1)
1287 {
1288 helpmod_reply(sender, returntype, "Cannot add global ban: Target hostmask not defined");
1289 return;
1290 }
1291 if (argc >= 3)
1292 {
1293 if ((duration = helpmod_read_strtime(argv[2])) < 0)
1294 {
1295 helpmod_reply(sender, returntype, "Cannot add global ban: Invalid time %s", argv[2]);
1296 return;
1297 }
1298 }
1299 if (argc >= 4)
1300 {
1301 SKIP_WORD;
1302 SKIP_WORD;
1303 SKIP_WORD;
1304
1305 reason = ostr;
1306 }
1307 hban_add(target, reason, time(NULL) + duration, 0);
1308 helpmod_reply(sender, returntype, "Added ban for %s (%s), expires in %s", target, reason, helpmod_strtime(duration));
1309 }
1310 else if (!ci_strcmp(argv[0], "del"))
1311 {
1312 int i;
1313 if (argc == 1)
1314 {
1315 helpmod_reply(sender, returntype, "Cannot remove global ban: Target hostmask not defined");
1316 return;
1317 }
1318 if (argc > H_CMD_MAX_ARGS)
1319 argc = H_CMD_MAX_ARGS;
1320 for (i=1;i<argc;i++)
1321 {
1322 hban *ptr = hban_get(argv[i]);
1323 if (ptr == NULL)
1324 {
1325 helpmod_reply(sender, returntype, "Cannot remove global ban: Hostmask %s is not banned", argv[i]);
1326 continue;
1327 }
1328 helpmod_reply(sender, returntype, "Global ban for hostmask %s removed", argv[i]);
1329 hban_del(ptr,0);
1330 }
1331 }
1332 else
1333 {
1334 helpmod_reply(sender, returntype, "Cannot handle global bans: Unknown operation %s", argv[0]);
1335 return;
1336 }
1337 }
1338
1339 static void helpmod_cmd_chanban (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1340 {
1341 hchannel *hchan;
1342 int i;
1343
1344 DEFINE_HCHANNEL;
1345
1346 if (hchan == NULL)
1347 {
1348 helpmod_reply(sender, returntype, "Cannot handle channel bans: Channel not defined or not found");
1349 return;
1350 }
1351
1352 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1353 /*
1354 if (argc == 0)
1355 {
1356 helpmod_reply(sender, returntype, "Cannot handle channel bans: Operation not defined");
1357 return;
1358 }
1359 */
1360 if (argc == 0 || !ci_strcmp(argv[0], "list"))
1361 {
1362 char *pattern, *cban;
1363 chanban *ptr = hchan->real_channel->bans;
1364 int count = 0;
1365
1366 if (argc <= 1)
1367 pattern = "*";
1368 else
1369 pattern = argv[1];
1370
1371 helpmod_reply(sender, returntype, "Bans matching pattern %s for channel %s", pattern, hchannel_get_name(hchan));
1372 for (;ptr;ptr = ptr->next)
1373 if (strregexp((cban = bantostring(ptr)), pattern))
1374 {
1375 count++;
1376 if (hchanban_get(hchan,cban) != NULL)
1377 helpmod_reply(sender, returntype, "%s Expires in %s", bantostring(ptr), helpmod_strtime(hchanban_get(hchan, cban)->expiration - time(NULL)));
1378 else
1379 helpmod_reply(sender, returntype, "%s", bantostring(ptr));
1380 }
1381 helpmod_reply(sender, returntype, "%d bans match pattern %s on channel %s", count, pattern, hchannel_get_name(hchan));
1382 }
1383 else if (!ci_strcmp(argv[0], "add"))
1384 {
1385 if (argc == 1)
1386 {
1387 helpmod_reply(sender, returntype, "Cannot add channel bans: Pattern not defined");
1388 return;
1389 }
1390 if (argc > H_CMD_MAX_ARGS)
1391 argc = H_CMD_MAX_ARGS;
1392 for (i=1;i<argc;i++)
1393 {
1394 /* POSSIBLE BUG ? */
1395 helpmod_setban(hchan, argv[i], H_ETERNITY, MCB_ADD, HLAZY);
1396 helpmod_reply(sender, returntype, "Added ban %s to channel %s", argv[i], hchannel_get_name(hchan));
1397 }
1398 }
1399 else if (!ci_strcmp(argv[0], "del"))
1400 {
1401 if (argc == 1)
1402 {
1403 helpmod_reply(sender, returntype, "Cannot remove channel bans: Pattern not defined");
1404 return;
1405 }
1406 if (argc > H_CMD_MAX_ARGS)
1407 argc = H_CMD_MAX_ARGS;
1408 for (i=1;i<argc;i++)
1409 {
1410 chanban *ptr = hchan->real_channel->bans;
1411 for (;ptr;ptr = ptr->next)
1412 if (strregexp(bantostring(ptr), argv[i]))
1413 {
1414 helpmod_setban(hchan, argv[i], 0, MCB_DEL, HLAZY);
1415 helpmod_reply(sender, returntype, "Channel ban %s removed from channel %s", argv[i], hchannel_get_name(hchan));
1416 break;
1417 }
1418 if (ptr == NULL)
1419 helpmod_reply(sender, returntype, "Cannot remove channel ban: Pattern %s not banned on channel %s", argv[i], hchannel_get_name(hchan));
1420 }
1421 }
1422 else
1423 {
1424 helpmod_reply(sender, returntype, "Cannot handle channel bans: Unknown operation %s", argv[0]);
1425 return;
1426 }
1427 }
1428
1429 static void helpmod_cmd_idlekick (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1430 {
1431 hchannel *hchan;
1432 int tmp;
1433
1434 DEFINE_HCHANNEL;
1435
1436 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1437
1438 if (hchan == NULL)
1439 {
1440 helpmod_reply(sender, returntype, "Cannot handle the idlekick: Channel not defined or not found");
1441 return;
1442 }
1443 if (argc == 0) /* view */
1444 {
1445 helpmod_reply(sender, returntype, "Idlekick for channel %s is set to %s", hchannel_get_name(hchan), helpmod_strtime(hchan->max_idle));
1446 return;
1447 }
1448 else if ((tmp = helpmod_read_strtime(argv[0])) < 0 || tmp < HDEF_m || tmp > HDEF_w)
1449 {
1450 helpmod_reply(sender, returntype, "Cannot set the idlekick: Invalid time given '%s'", argv[0]);
1451 return;
1452 }
1453 else /* set it ! */
1454 {
1455 hchan->max_idle = tmp;
1456 helpmod_reply(sender, returntype, "Idlekick for channel %s set to %s succesfully", hchannel_get_name(hchan), helpmod_strtime(hchan->max_idle));
1457 }
1458 }
1459
1460 static void helpmod_cmd_topic (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1461 {
1462 hchannel *hchan;
1463 DEFINE_HCHANNEL;
1464
1465 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1466
1467 if (hchan == NULL)
1468 {
1469 helpmod_reply(sender, returntype, "Cannot handle the topic: Channel not defined or not found");
1470 return;
1471 }
1472 if (!(hchan -> flags & H_HANDLE_TOPIC))
1473 helpmod_reply(sender, returntype, "Note: I'm not set to handle the topic on channel %s", hchannel_get_name(hchan));
1474
1475 if (argc == 0) /* check the topic */
1476 {
1477 helpmod_reply(sender, returntype, "Topic of channel %s is currently: %s", hchannel_get_name(hchan), htopic_construct(hchan->topic));
1478 return;
1479 }
1480 if (!ci_strcmp(argv[0], "erase"))
1481 {
1482 htopic_del_all(&hchan->topic);
1483 hchannel_set_topic(hchan);
1484 helpmod_reply(sender, returntype, "Topic of channel %s erased", hchannel_get_name(hchan));
1485 }
1486 else if (!ci_strcmp(argv[0], "refresh"))
1487 {
1488 hchannel_set_topic(hchan);
1489 helpmod_reply(sender, returntype, "Topic of channel %s refreshed", hchannel_get_name(hchan));
1490 }
1491 else if (!ci_strcmp(argv[0], "add"))
1492 {
1493 int pos;
1494 SKIP_WORD;
1495 if (argc == 0)
1496 {
1497 helpmod_reply(sender, returntype, "Cannot handle the topic of channel %s: Additional arguments required", hchannel_get_name(hchan));
1498 return;
1499 }
1500 if (sscanf(argv[0], "%d", &pos) && pos >= 0)
1501 {
1502 SKIP_WORD;
1503 }
1504 else
1505 pos = 0;
1506 if (argc == 0) /* lame repeat :( */
1507 {
1508 helpmod_reply(sender, returntype, "Cannot handle the topic of channel %s: Additional arguments required", hchannel_get_name(hchan));
1509 return;
1510 }
1511 if (htopic_len(hchan->topic) + strlen(ostr) + 3 > TOPICLEN)
1512 {
1513 helpmod_reply(sender, returntype, "Cannot add to the topic of channel %s: Maximum topic length exceeded", hchannel_get_name(hchan));
1514 return;
1515 }
1516
1517 htopic_add(&hchan->topic, ostr, pos);
1518 hchannel_set_topic(hchan);
1519 helpmod_reply(sender, returntype, "Added '%s' to the topic of channel %s", ostr, hchannel_get_name(hchan));
1520 }
1521 else if (!ci_strcmp(argv[0], "del"))
1522 {
1523 int pos;
1524 if (argc == 1)
1525 {
1526 helpmod_reply(sender, returntype, "Cannot handle the topic of channel %s: Additional arguments required", hchannel_get_name(hchan));
1527 return;
1528 }
1529 SKIP_WORD;
1530 if (!sscanf(argv[0], "%d", &pos) || pos < 0)
1531 {
1532 helpmod_reply(sender, returntype, "Cannot handle the topic of channel %s: Expected positive integer", hchannel_get_name(hchan));
1533 return;
1534 }
1535 if (htopic_count(hchan->topic) < pos)
1536 {
1537 helpmod_reply(sender, returntype, "Cannot delete from the topic of channel %s: No such topic element %d", hchannel_get_name(hchan), pos);
1538 return;
1539 }
1540 htopic_del(&hchan->topic, htopic_get(hchan->topic, pos));
1541 hchannel_set_topic(hchan);
1542 }
1543 else if (!ci_strcmp(argv[0], "set"))
1544 {
1545 if (argc == 1)
1546 {
1547 helpmod_reply(sender, returntype, "Cannot handle the topic of channel %s: Additional arguments required", hchannel_get_name(hchan));
1548 return;
1549 }
1550 SKIP_WORD;
1551 htopic_del_all(&hchan->topic);
1552 htopic_add(&hchan->topic, ostr, 0);
1553 hchannel_set_topic(hchan);
1554 }
1555 else
1556 helpmod_reply(sender, returntype, "Cannot handle the topic of channel %s: Unknown operation %s", hchannel_get_name(hchan), argv[0]);
1557 }
1558
1559 static void helpmod_cmd_out (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1560 {
1561 huser *husr;
1562 int i;
1563 char *reason = "Banned";
1564 huser *targets[H_CMD_MAX_ARGS];
1565 int ntargets = 0;
1566
1567 if (argc == 0)
1568 {
1569 helpmod_reply(sender, returntype, "Cannot get rid of the user: User not specified");
1570 return;
1571 }
1572
1573 if (argc > H_CMD_MAX_ARGS)
1574 argc = H_CMD_MAX_ARGS;
1575 for (i=0;i<argc;i++)
1576 {
1577 if (argv[i][0] == ':')
1578 {
1579 if (i == 0)
1580 {
1581 helpmod_reply(sender, returntype, "Cannot get rid of users: No users specified");
1582 return;
1583 }
1584 while (i--)
1585 {
1586 SKIP_WORD;
1587 }
1588 reason = ostr + 1;
1589
1590 if (!strncmp(reason, "?? ", 3))
1591 { /* obtain reason from hterms */
1592 hchannel *hchan = NULL;
1593 hterm *new_reason;
1594 if (returntype != NULL)
1595 { /* if hchan is NULL here then everything is broken already */
1596 hchan = hchannel_get_by_channel(returntype);
1597 new_reason = hterm_get_and_find(hchan->channel_hterms, reason + 3);
1598 }
1599 else
1600 new_reason = hterm_get_and_find(hterms, reason + 3);
1601
1602 if (new_reason != NULL)
1603 reason = new_reason->description->content;
1604 }
1605 break;
1606 }
1607
1608 husr = huser_get(getnickbynick(argv[i]));
1609 if (husr == NULL)
1610 {
1611 helpmod_reply(sender, returntype, "Cannot get rid of the user: User %s not found", argv[i]);
1612 continue;
1613 }
1614 if (huser_get_level(husr) > H_PEON)
1615 {
1616 helpmod_reply(sender, returntype, "Cannot get rid of the user: User %s is not a peon", huser_get_nick(husr));
1617 continue;
1618 }
1619 targets[ntargets++] = husr;
1620 }
1621
1622 for (i=0;i<ntargets;i++)
1623 {
1624 const char *banmask = hban_ban_string(targets[i]->real_user, HBAN_HOST);
1625
1626 hban_add(banmask, reason, time(NULL) + HCMD_OUT_DEFAULT, HLAZY);
1627
1628 helpmod_reply(sender, returntype, "User %s is now gone", huser_get_nick(targets[i]));
1629 }
1630 hcommit_modes();
1631 }
1632
1633 static void helpmod_cmd_everyoneout (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1634 {
1635 hchannel *hchan;
1636 hchannel_user **hchanuser;
1637 char *reason = "clearing channel";
1638 int autoqueue_tmp = -1;
1639 enum
1640 {
1641 HELPMOD_KICKMODE_ALL,
1642 HELPMOD_KICKMODE_UNAUTHED
1643 } kickmode = HELPMOD_KICKMODE_ALL;
1644
1645 DEFINE_HCHANNEL;
1646
1647 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1648
1649 if (hchan == NULL)
1650 {
1651 helpmod_reply(sender, returntype, "Cannot clear channel: Channel not defined or not found");
1652 return;
1653 }
1654
1655 if (argc)
1656 {
1657 if (!ci_strcmp(argv[0], "all"))
1658 {
1659 kickmode = HELPMOD_KICKMODE_ALL;
1660 SKIP_WORD;
1661 }
1662 else if (!ci_strcmp(argv[0], "unauthed"))
1663 {
1664 kickmode = HELPMOD_KICKMODE_UNAUTHED;
1665 SKIP_WORD;
1666 }
1667 if (ostr[0] == ':')
1668 ostr++;
1669 reason = ostr;
1670 }
1671
1672 hchan->flags |= H_MAINTAIN_I;
1673 hchannel_mode_check(hchan);
1674
1675 hchanuser = &hchan->channel_users;
1676
1677 if ((hchan->flags & H_QUEUE) && (hchan->flags & H_QUEUE_MAINTAIN))
1678 {
1679 autoqueue_tmp = hchan->autoqueue;
1680 hchan->autoqueue = 0;
1681 }
1682
1683 while (*hchanuser)
1684 {
1685 if (huser_get_level((*hchanuser)->husr) < H_TRIAL)
1686 if (kickmode == HELPMOD_KICKMODE_ALL || (kickmode == HELPMOD_KICKMODE_UNAUTHED && !IsAccount((*hchanuser)->husr->real_user)))
1687 {
1688 helpmod_kick(hchan, (*hchanuser)->husr, "%s", reason);
1689 continue;
1690 }
1691 hchanuser = &(*hchanuser)->next;
1692 }
1693
1694 if (autoqueue_tmp > 0)
1695 hchan->autoqueue = autoqueue_tmp;
1696
1697 helpmod_reply(sender, returntype, "Channel %s has been cleared of normal users", hchannel_get_name(hchan));
1698 }
1699
1700 static void helpmod_cmd_kick (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1701 {
1702 hchannel *hchan;
1703 int i;
1704 huser *husr, *targets[H_CMD_MAX_ARGS];
1705 int ntargets = 0;
1706 char *reason = "out";
1707 DEFINE_HCHANNEL;
1708
1709 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1710
1711 if (hchan == NULL)
1712 {
1713 helpmod_reply(sender, returntype, "Cannot kick the user: Channel not defined or not found");
1714 return;
1715 }
1716
1717 if (argc == 0)
1718 {
1719 helpmod_reply(sender, returntype, "Cannot kick users: No users specified");
1720 return;
1721 }
1722
1723 if (argc > H_CMD_MAX_ARGS)
1724 argc = H_CMD_MAX_ARGS;
1725 for (i=0;i<argc;i++)
1726 {
1727 if (*argv[i] == ':')
1728 {
1729 if (i == 0)
1730 {
1731 helpmod_reply(sender, returntype, "Cannot kick the user: No users defined");
1732 return;
1733 }
1734 while (i--)
1735 {
1736 SKIP_WORD;
1737 }
1738 reason = ostr+1;
1739 break;
1740 }
1741 husr = huser_get(getnickbynick(argv[i]));
1742 if (husr == NULL)
1743 {
1744 helpmod_reply(sender, returntype, "Cannot kick the user: User %s not found", argv[i]);
1745 continue;
1746 }
1747 if (huser_on_channel(husr, hchan) == NULL)
1748 {
1749 helpmod_reply(sender, returntype, "Cannot kick the user: User %s is not on channel %s", huser_get_nick(husr), hchannel_get_name(hchan));
1750 continue;
1751 }
1752 if (huser_get_level(husr) > H_PEON)
1753 {
1754 helpmod_reply(sender, returntype, "Cannot kick the user: User %s is not a peon", huser_get_nick(husr));
1755 continue;
1756 }
1757 targets[ntargets++] = husr;
1758 }
1759
1760 for (i=0;i<ntargets;i++)
1761 helpmod_kick(hchan, targets[i], "%s", reason);
1762 }
1763
1764 static void helpmod_cmd_stats (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1765 {
1766 hchannel *hchan;
1767 haccount *target = sender->account;
1768 hstat_account *ptr;
1769 hstat_account_entry *stat_entry;
1770 int days = 1, weeks = 0;
1771 int type = HSTAT_ACCOUNT_SHORT;
1772
1773 time_t timer = time(NULL);
1774 struct tm *tstruct = localtime(&timer);
1775
1776 int i = 0;
1777
1778 DEFINE_HCHANNEL;
1779
1780 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1781
1782 if (hchan == NULL)
1783 {
1784 helpmod_reply(sender, returntype, "Cannot show user statistics: Channel not defined or not found");
1785 return;
1786 }
1787
1788 if (argc > 0 && huser_get_level(sender) == H_ADMIN)
1789 { /* not very elegant */
1790 if (argv[0][0] == '#') /* account */
1791 {
1792 target = haccount_get_by_name(argv[0]+1);
1793 if (target == NULL)
1794 {
1795 helpmod_reply(sender, returntype, "Cannot show user statistics: Account %s not found", argv[0]);
1796 return;
1797 }
1798 SKIP_WORD;
1799 }
1800 }
1801
1802 if (target == NULL)
1803 {
1804 helpmod_reply(sender, returntype, "Cannot show user statistics: You do not have an account");
1805 return;
1806 }
1807
1808 if (argc > 0)
1809 {
1810 if (!ci_strcmp(argv[0], "short") || !ci_strcmp(argv[0], "s"))
1811 {
1812 type = HSTAT_ACCOUNT_SHORT;
1813 SKIP_WORD;
1814 }
1815 else if (!ci_strcmp(argv[0], "long") || !ci_strcmp(argv[0], "l"))
1816 {
1817 type = HSTAT_ACCOUNT_LONG;
1818 SKIP_WORD;
1819 }
1820 }
1821
1822 if (argc > 0)
1823 if (sscanf(argv[0], "%d", &days))
1824 {
1825 if (days < 0 || days > 7)
1826 {
1827 helpmod_reply(sender, returntype, "Cannot show user statistics: Expected integer between [0, 7]");
1828 return;
1829 }
1830 else
1831 {
1832 SKIP_WORD;
1833 }
1834 }
1835
1836 if (argc > 0)
1837 if (sscanf(argv[0], "%d", &weeks))
1838 {
1839 if (weeks < 0 || weeks > 10)
1840 {
1841 helpmod_reply(sender, returntype, "Cannot show user statistics: Expected integer between [0, 10]");
1842 return;
1843 }
1844 else
1845 {
1846 SKIP_WORD;
1847 }
1848 }
1849
1850 for (ptr = target->stats;ptr;ptr = ptr->next)
1851 if (ptr->hchan == hchan)
1852 break;
1853
1854 if (ptr == NULL)
1855 {
1856 helpmod_reply(sender, returntype, "Cannot show user statistics: User %s has no statistics for channel %s", target->name->content, hchannel_get_name(hchan));
1857 return;
1858 }
1859
1860 if (!days && !weeks)
1861 return;
1862
1863 helpmod_reply(sender, returntype, "Statistics for user %s on channel %s", target->name->content, hchannel_get_name(hchan));
1864
1865 if (days)
1866 {
1867 helpmod_reply(sender, returntype, "Last %d day%s", days, (days==1)?"":"s");
1868 helpmod_reply(sender, returntype, "%s", hstat_header(type));
1869 for (i=0;i<days;i++)
1870 {
1871 stat_entry = &ptr->week[(tstruct->tm_wday - i + 7) % 7];
1872 helpmod_reply(sender, returntype, "%s", hstat_account_print(stat_entry, type));
1873 }
1874 }
1875
1876 if (weeks)
1877 {
1878 helpmod_reply(sender, returntype, "Last %d week%s", weeks, (weeks==1)?"":"s");
1879 helpmod_reply(sender, returntype, "%s", hstat_header(type));
1880 for (i=0;i<weeks;i++)
1881 {
1882 stat_entry = &ptr->longterm[(hstat_week() - i + 10) % 10];
1883 helpmod_reply(sender, returntype, "%s", hstat_account_print(stat_entry, type));
1884 }
1885 }
1886 }
1887
1888 static void helpmod_cmd_chanstats (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1889 {
1890 hchannel *hchan;
1891 hstat_channel *channel_stats;
1892 hstat_channel_entry *stat_entry;
1893
1894 time_t timer = time(NULL);
1895 struct tm *tstruct = localtime(&timer);
1896
1897 int days=1;
1898 int type = HSTAT_CHANNEL_SHORT;
1899 int weeks=0;
1900
1901 int i = 7;
1902
1903 DEFINE_HCHANNEL;
1904
1905 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
1906
1907 if (hchan == NULL)
1908 {
1909 helpmod_reply(sender, returntype, "Cannot show channel statistics: Channel not defined or not found");
1910 return;
1911 }
1912
1913 if (argc > 0)
1914 {
1915 if (!ci_strcmp(argv[0], "short") || !ci_strcmp(argv[0], "s"))
1916 {
1917 type = HSTAT_CHANNEL_SHORT;
1918 SKIP_WORD;
1919 }
1920 else if (!ci_strcmp(argv[0], "long") || !ci_strcmp(argv[0], "l"))
1921 {
1922 type = HSTAT_CHANNEL_LONG;
1923 SKIP_WORD;
1924 }
1925 }
1926
1927 if (argc > 0)
1928 if (sscanf(argv[0], "%d", &days))
1929 {
1930 if (days < 0 || days > 7)
1931 {
1932 helpmod_reply(sender, returntype, "Cannot show channel statistics: Expected integer between [0, 7]");
1933 return;
1934 }
1935 else
1936 {
1937 SKIP_WORD;
1938 }
1939 }
1940
1941 if (argc > 0)
1942 if (sscanf(argv[0], "%d", &weeks))
1943 {
1944 if (weeks < 0 || weeks > 10)
1945 {
1946 helpmod_reply(sender, returntype, "Cannot show channel statistics: Expected integer between [0, 10]");
1947 return;
1948 }
1949 else
1950 {
1951 SKIP_WORD;
1952 }
1953 }
1954
1955 channel_stats = hchan->stats;
1956
1957 if (!days && !weeks)
1958 return;
1959
1960 helpmod_reply(sender, returntype, "Statistics for channel %s", hchannel_get_name(hchan));
1961
1962 if (days)
1963 {
1964 helpmod_reply(sender, returntype, "Last %d day%s", days, (days==1)?"":"s");
1965 helpmod_reply(sender, returntype, "%s", hstat_header(type));
1966 for (i=0;i<days;i++) /* latest week */
1967 {
1968 stat_entry = &hchan->stats->week[(tstruct->tm_wday - i + 7) % 7];
1969 helpmod_reply(sender, returntype, "%s", hstat_channel_print(stat_entry, type));
1970 }
1971 }
1972
1973 if (weeks)
1974 {
1975 helpmod_reply(sender, returntype, "Last %d week%s", weeks, (weeks==1)?"":"s");
1976 helpmod_reply(sender, returntype, "%s", hstat_header(type));
1977 for (i=0;i<weeks;i++) /* latest weeks */
1978 {
1979 stat_entry = &hchan->stats->longterm[(hstat_week() - i + 10) % 10];
1980 helpmod_reply(sender, returntype, "%s", hstat_channel_print(stat_entry, type));
1981 }
1982 }
1983 }
1984
1985 static void helpmod_cmd_activestaff (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
1986 {
1987 hchannel *hchan;
1988 hstat_accounts_array arr;
1989 hlevel lvl = H_OPER;
1990 int listtype = 0;
1991 int i;
1992
1993 DEFINE_HCHANNEL;
1994
1995 if (hchan == NULL)
1996 {
1997 helpmod_reply(sender, returntype, "Cannot list active staff: Channel not specified or not found");
1998 return;
1999 }
2000
2001 if (argc == 1)
2002 {
2003 if (!ci_strcmp(argv[0], "opers") || !ci_strcmp(argv[0], "o"))
2004 {
2005 lvl = H_OPER;
2006 SKIP_WORD;
2007 }
2008 else if (!ci_strcmp(argv[0], "staff") || !ci_strcmp(argv[0], "s"))
2009 {
2010 lvl = H_STAFF;
2011 SKIP_WORD;
2012 }
2013 else if (!ci_strcmp(argv[0], "staff") || !ci_strcmp(argv[0], "s"))
2014 {
2015 lvl = H_ANY;
2016 SKIP_WORD;
2017 }
2018 }
2019
2020 if (argc == 1)
2021 {
2022 if (!ci_strcmp(argv[0], "active") || !ci_strcmp(argv[0], "a"))
2023 {
2024 listtype = 0;
2025 SKIP_WORD;
2026 }
2027 else if (!ci_strcmp(argv[0], "inactive") || !ci_strcmp(argv[0], "i"))
2028 {
2029 listtype = 1;
2030 SKIP_WORD;
2031 }
2032 }
2033
2034 arr = create_hstat_account_array(hchan, lvl, HSTAT_ACCOUNT_ARRAY_TOP10);
2035
2036 helpmod_reply(sender, returntype, "%s %ss for channel %s", listtype?"Inactive":"Active", hlevel_name(lvl), hchannel_get_name(hchan));
2037 switch (listtype)
2038 {
2039 case 0:
2040 for (i=0;i < arr.arrlen && arr.array[i].prime_time_spent > H_ACTIVE_LIMIT;i++)
2041 helpmod_reply(sender, returntype, "#%-2d %-20s %-20s %-20s", i+1,((haccount*)(arr.array[i].owner))->name->content, helpmod_strtime(arr.array[i].prime_time_spent), helpmod_strtime(arr.array[i].time_spent));
2042 break;
2043 case 1:
2044 for (i=arr.arrlen-1;i >= 0 && arr.array[i].prime_time_spent < H_ACTIVE_LIMIT;i--)
2045 helpmod_reply(sender, returntype, "#%-2d %-20s %-20s %-20s", (arr.arrlen - i),((haccount*)(arr.array[i].owner))->name->content, helpmod_strtime(arr.array[i].prime_time_spent), helpmod_strtime(arr.array[i].time_spent));
2046 break;
2047 }
2048
2049 free(arr.array);
2050 }
2051
2052 static void helpmod_cmd_top10 (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2053 {
2054 hchannel *hchan;
2055 hstat_accounts_array arr;
2056 hlevel lvl = H_OPER;
2057 int i, top_n = 10;
2058
2059 DEFINE_HCHANNEL;
2060
2061 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
2062
2063 if (hchan == NULL)
2064 {
2065 helpmod_reply(sender, returntype, "Cannot list channel Top10: Channel not specified or not found");
2066 return;
2067 }
2068
2069 if (argc >= 1)
2070 {
2071 if (!ci_strcmp(argv[0], "opers") || !ci_strcmp(argv[0], "o"))
2072 lvl = H_OPER;
2073 else if (!ci_strcmp(argv[0], "staff") || !ci_strcmp(argv[0], "s"))
2074 lvl = H_STAFF;
2075 else if (!ci_strcmp(argv[0], "all") || !ci_strcmp(argv[0], "a"))
2076 lvl = H_ANY;
2077 }
2078 if (argc == 2)
2079 {
2080 int tmp;
2081 if (sscanf(argv[1], "%d", &tmp) && (tmp >= 10) && (tmp <= 50))
2082 top_n = tmp;
2083 }
2084
2085 arr = create_hstat_account_array(hchan, lvl, HSTAT_ACCOUNT_ARRAY_TOP10);
2086
2087 helpmod_reply(sender, returntype, "Top%d most active %ss of channel %s", top_n, hlevel_name(lvl), hchannel_get_name(hchan));
2088 for (i=0;i < arr.arrlen && i < top_n;i++)
2089 helpmod_reply(sender, returntype, "#%-2d %-20s %-20s %-20s",i+1,((haccount*)(arr.array[i].owner))->name->content, helpmod_strtime(arr.array[i].prime_time_spent), helpmod_strtime(arr.array[i].time_spent));
2090
2091 free(arr.array);
2092 }
2093
2094 static void helpmod_cmd_report (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2095 {
2096 hchannel *hchan, *target;
2097 DEFINE_HCHANNEL;
2098
2099 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
2100
2101 if (hchan != NULL && (argc == 2))
2102 {
2103 hchan = hchannel_get_by_name(argv[0]);
2104 SKIP_WORD;
2105 }
2106
2107 if (hchan == NULL)
2108 {
2109 helpmod_reply(sender, returntype, "Cannot view or set channel reporting: Channel not defined or not found");
2110 return;
2111 }
2112 if (argc != 1)
2113 {
2114 if (hchan->report_to == NULL || !hchannel_is_valid(hchan->report_to))
2115 helpmod_reply(sender, returntype, "Channel %s is not reported anywhere (%s)", hchannel_get_name(hchan), hchannel_get_state(hchan, H_REPORT));
2116 else
2117 helpmod_reply(sender, returntype, "Channel %s is reported to channel %s (%s)", hchannel_get_name(hchan), hchannel_get_name(hchan->report_to), hchannel_get_state(hchan, H_REPORT));
2118 return;
2119 }
2120 if ((target = hchannel_get_by_name(argv[0])) == NULL)
2121 {
2122 helpmod_reply(sender, returntype, "Cannot set channel reporting: Channel %s not found", argv[0]);
2123 return;
2124 }
2125 hchan->report_to = target;
2126 helpmod_reply(sender, returntype, "Channel %s is now reported to channel %s (%s)", hchannel_get_name(hchan), hchannel_get_name(hchan->report_to), hchannel_get_state(hchan, H_REPORT));
2127 }
2128
2129 static void helpmod_cmd_mode(huser *sender, channel* returntype, int change, char* ostr, int argc, char *argv[])
2130 {
2131 hchannel *hchan;
2132 huser_channel *huserchan;
2133 huser *husr;
2134 int i;
2135
2136 DEFINE_HCHANNEL;
2137
2138 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
2139
2140 if (hchan == NULL)
2141 {
2142 helpmod_reply(sender, returntype, "Cannot change mode: Channel not specified or not found");
2143 return;
2144 }
2145
2146 if (argc==0) /* for a simple opme */
2147 {
2148 argc = 1;
2149 argv[0] = (char*)huser_get_nick(sender);
2150 }
2151
2152 if (argc > H_CMD_MAX_ARGS)
2153 argc = H_CMD_MAX_ARGS;
2154
2155 for (i=0;i<argc;i++)
2156 {
2157 husr = huser_get(getnickbynick(argv[i]));
2158 if (husr == NULL)
2159 {
2160 helpmod_reply(sender, returntype, "Cannot change mode: User %s not found", argv[i]);
2161 continue;
2162 }
2163 huserchan = huser_on_channel(husr, hchan);
2164 if (huserchan == NULL)
2165 {
2166 helpmod_reply(sender, returntype, "Cannot change mode: User %s it not on channel %s", huser_get_nick(husr), hchannel_get_name(hchan));
2167 continue;
2168 }
2169
2170 switch (change)
2171 {
2172 case H_CMD_OP:
2173 {
2174 int j;
2175 for (j=0;j < hchan->real_channel->users->hashsize;j++)
2176 if (getnickbynumeric(hchan->real_channel->users->content[j]) == husr->real_user)
2177 break;
2178 if ((huserchan->flags & HCUMODE_OP) && !(hchan->real_channel->users->content[j] & CUMODE_OP))
2179 {
2180 huserchan->flags &= ~HCUMODE_OP;
2181 Error("helpmod", ERR_ERROR, "userchannelmode inconsistency (+o when should be -o)");
2182 }
2183 if (huserchan->flags & HCUMODE_OP)
2184 {
2185 helpmod_reply(sender, returntype, "Cannot change mode: User %s is already +o on channel %s", huser_get_nick(husr), hchannel_get_name(hchan));
2186 continue;
2187 }
2188 if (huser_get_level(husr) < H_STAFF)
2189 {
2190 helpmod_reply(sender, returntype, "Cannot change mode: User %s is not allowed to have +o on channel %s", huser_get_nick(husr), hchannel_get_name(hchan));
2191 continue;
2192 }
2193 helpmod_channick_modes(husr, hchan, MC_OP, HLAZY);
2194 }
2195 break;
2196 case H_CMD_DEOP:
2197 {
2198 int j;
2199 for (j=0;j < hchan->real_channel->users->hashsize;j++)
2200 if (getnickbynumeric(hchan->real_channel->users->content[j]) == husr->real_user)
2201 break;
2202 if (!(huserchan->flags & HCUMODE_OP) && (hchan->real_channel->users->content[j] & CUMODE_OP))
2203 {
2204 huserchan->flags |= HCUMODE_OP;
2205 Error("helpmod", ERR_ERROR, "userchannelmode inconsistency (-o when should be +o)");
2206 }
2207 if (!(huserchan->flags & HCUMODE_OP))
2208 {
2209 helpmod_reply(sender, returntype, "Cannot change mode: User %s is already -o on channel %s", huser_get_nick(husr), hchannel_get_name(hchan));
2210 continue;
2211 }
2212 if (huser_get_level(husr) > huser_get_level(sender))
2213 {
2214 helpmod_reply(sender, returntype, "Cannot change mode: User %s is meant to have +o on channel %s", huser_get_nick(husr), hchannel_get_name(hchan));
2215 continue;
2216 }
2217 helpmod_channick_modes(husr, hchan, MC_DEOP, HLAZY);
2218 }
2219 break;
2220 case H_CMD_VOICE:
2221 {
2222 int j;
2223 for (j=0;j < hchan->real_channel->users->hashsize;j++)
2224 if (getnickbynumeric(hchan->real_channel->users->content[j]) == husr->real_user)
2225 break;
2226 if ((huserchan->flags & HCUMODE_VOICE) && !(hchan->real_channel->users->content[j] & CUMODE_VOICE))
2227 {
2228 huserchan->flags &= ~HCUMODE_VOICE;
2229 Error("helpmod", ERR_ERROR, "userchannelmode inconsistency (+v when should be -v)");
2230 }
2231 if (huserchan->flags & HCUMODE_VOICE)
2232 {
2233 helpmod_reply(sender, returntype, "Cannot change mode: User %s is already +v on channel %s", huser_get_nick(husr), hchannel_get_name(hchan));
2234 continue;
2235 }
2236 helpmod_channick_modes(husr, hchan, MC_VOICE, HLAZY);
2237 }
2238 break;
2239 case H_CMD_DEVOICE:
2240 {
2241 int j;
2242 for (j=0;j < hchan->real_channel->users->hashsize;j++)
2243 if (getnickbynumeric(hchan->real_channel->users->content[j]) == husr->real_user)
2244 break;
2245 if (!(huserchan->flags & HCUMODE_VOICE) && (hchan->real_channel->users->content[j] & CUMODE_VOICE))
2246 {
2247 huserchan->flags |= HCUMODE_VOICE;
2248 Error("helpmod", ERR_ERROR, "userchannelmode inconsistency (-v when should be +v)");
2249 }
2250 if (!(huserchan->flags & HCUMODE_VOICE))
2251 {
2252 helpmod_reply(sender, returntype, "Cannot change mode: User %s is already -v on channel %s", huser_get_nick(husr), hchannel_get_name(hchan));
2253 continue;
2254 }
2255 helpmod_channick_modes(husr, hchan, MC_DEVOICE, HLAZY);
2256 }
2257 break;
2258 }
2259 }
2260 }
2261
2262 static void helpmod_cmd_op (huser *sender, channel* returntype, char* ostr, int argc, char *argv[]) { helpmod_cmd_mode(sender, returntype, H_CMD_OP, ostr, argc, argv); }
2263 static void helpmod_cmd_deop (huser *sender, channel* returntype, char* ostr, int argc, char *argv[]) { helpmod_cmd_mode(sender, returntype, H_CMD_DEOP, ostr, argc, argv); }
2264 static void helpmod_cmd_voice (huser *sender, channel* returntype, char* ostr, int argc, char *argv[]) { helpmod_cmd_mode(sender, returntype, H_CMD_VOICE, ostr, argc, argv); }
2265 static void helpmod_cmd_devoice (huser *sender, channel* returntype, char* ostr, int argc, char *argv[]) { helpmod_cmd_mode(sender, returntype, H_CMD_DEVOICE, ostr, argc, argv); }
2266
2267 static void helpmod_cmd_invite (huser *sender, channel *returntype, char* arg, int argc, char *argv[])
2268 {
2269 hchannel *hchan;
2270 int i;
2271
2272 if (argc == 0)
2273 {
2274 helpmod_reply(sender, returntype, "Cannot invite: Channel not defined or not found");
2275 return;
2276 }
2277
2278 if (huser_get_level(sender) < H_STAFF)
2279 {
2280 hticket *htick;
2281 hchan = hchannel_get_by_name(argv[0]);
2282 if (hchan == NULL)
2283 {
2284 helpmod_reply(sender, returntype, "Cannot invite: Unknown channel %s", argv[0]);
2285 return;
2286 }
2287 /* if tickets don't work, it's better that the user doesn't know that the channel really exists */
2288 if (!(hchan->flags & H_REQUIRE_TICKET))
2289 {
2290 helpmod_reply(sender, returntype, "Cannot invite: Unknown channel %s", argv[0]);
2291 return;
2292 }
2293 htick = hticket_get(huser_get_auth(sender), hchan);
2294
2295 if (htick == NULL)
2296 {
2297 helpmod_reply(sender, returntype, "Cannot invite: You do not have an invite ticket for channel %s", argv[0]);
2298 return;
2299 }
2300
2301 if (nickbanned(sender->real_user, hchan->real_channel))
2302 {
2303 helpmod_reply(sender, returntype, "Cannot invite: You are banned from channel %s", argv[0]);
2304 return;
2305 }
2306
2307 helpmod_invite(hchan, sender);
2308 helpmod_reply(sender, returntype, "Invited you to channel %s", hchannel_get_name(hchan));
2309 return;
2310 }
2311
2312 if (argc > H_CMD_MAX_ARGS)
2313 argc = H_CMD_MAX_ARGS;
2314
2315 for (i = 0;i < argc; i++)
2316 {
2317 hchan = hchannel_get_by_name(argv[i]);
2318 if (hchan == NULL)
2319 {
2320 helpmod_reply(sender, returntype, "Cannot invite: Unknown channel %s", argv[i]);
2321 continue;
2322 }
2323 if (huser_on_channel(sender, hchan) != NULL)
2324 {
2325 helpmod_reply(sender, returntype, "Cannot invite: You are already on channel %s", hchannel_get_name(hchan));
2326 continue;
2327 }
2328 if (!hchannel_authority(hchan, sender))
2329 {
2330 if (huser_get_level(sender) >= H_STAFF && (hchan->flags & H_REQUIRE_TICKET));
2331 else
2332 {
2333 helpmod_reply(sender, returntype, "Sorry, channel %s is oper only", hchannel_get_name(hchan));
2334 continue;
2335 }
2336 }
2337 helpmod_invite(hchan, sender);
2338 helpmod_reply(sender, returntype, "Invited you to channel %s", hchannel_get_name(hchan));
2339 }
2340 }
2341
2342 static void helpmod_cmd_ticket (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2343 {
2344 int expiration = HTICKET_EXPIRATION_TIME;
2345 hchannel *hchan;
2346 huser *husr;
2347 hticket *htick;
2348 const char *message = NULL;
2349
2350 if (argc < 1)
2351 {
2352 helpmod_reply(sender, returntype, "Cannot issue a ticket: Channel not specified");
2353 return;
2354 }
2355
2356 hchan = hchannel_get_by_name(argv[0]);
2357 if (hchan == NULL)
2358 {
2359 helpmod_reply(sender, returntype, "Cannot issue a ticket: Unknown channel %s", argv[0]);
2360 return;
2361 }
2362 if (!(hchan->flags & H_REQUIRE_TICKET))
2363 {
2364 helpmod_reply(sender, returntype, "Cannot issue a ticket: Tickets are not enabled for channel %s", argv[0]);
2365 return;
2366 }
2367 if (argc < 2)
2368 {
2369 helpmod_reply(sender, returntype, "Cannot issue a ticket: Target user not specified");
2370 return;
2371 }
2372
2373 husr = huser_get(getnickbynick(argv[1]));
2374 if (husr == NULL)
2375 {
2376 helpmod_reply(sender, returntype, "Cannot issue a ticket: Unknown user %s", argv[1]);
2377 return;
2378 }
2379 if (!IsAccount(husr->real_user))
2380 {
2381 helpmod_reply(sender, returntype, "Cannot issue a ticket: User %s is not authed", argv[1]);
2382 return;
2383 }
2384 if (huser_get_level(husr) < H_PEON)
2385 {
2386 helpmod_reply(sender, returntype, "Cannot issue a ticket: User %s is considered improper and not worthy of a ticket", argv[1]);
2387 return;
2388 }
2389 if (huser_get_level(husr) > H_PEON)
2390 {
2391 helpmod_reply(sender, returntype, "Cannot issue a ticket: User %s does not require a ticket", argv[1]);
2392 return;
2393 }
2394 if (argc > 3)
2395 {
2396 int tmp;
2397 tmp = helpmod_read_strtime(argv[2]);
2398 if (tmp > HDEF_m && tmp < 2 * HDEF_M)
2399 expiration = tmp;
2400 }
2401 if (argc >= 4 && strlen(argv[3]) < 128)
2402 {
2403 if (argv[3][0] != '\0')
2404 message = argv[3];
2405 }
2406
2407 htick = hticket_get(huser_get_auth(husr), hchan);
2408
2409 if (htick != NULL)
2410 htick->time_expiration = time(NULL) + expiration;
2411 else
2412 hticket_add(huser_get_auth(husr), time(NULL) + expiration, hchan, message);
2413
2414 helpmod_reply(sender, returntype, "Issued an invite ticket to user %s for channel %s expiring in %s", huser_get_nick(husr), hchannel_get_name(hchan), helpmod_strtime(expiration));
2415 helpmod_reply(husr, NULL, "You have been issued an invite ticket for channel %s. This ticket is valid for a period of %s. You can use my invite command to get to the channel now. Type /msg %s invite %s",hchannel_get_name(hchan), helpmod_strtime(HTICKET_EXPIRATION_TIME), helpmodnick->nick, hchannel_get_name(hchan));
2416 if (hchan->flags & H_TICKET_MESSAGE && hchan->ticket_message != NULL)
2417 helpmod_reply(husr, NULL, "Ticket information for %s: %s", hchannel_get_name(hchan), hchan->ticket_message->content);
2418 }
2419
2420 static void helpmod_cmd_resolve (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2421 {
2422 int i;
2423 hchannel *hchan;
2424 hticket *htick;
2425 huser *husr;
2426
2427 DEFINE_HCHANNEL;
2428
2429 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
2430
2431 if (argc > H_CMD_MAX_ARGS)
2432 argc = H_CMD_MAX_ARGS;
2433
2434 if (hchan == NULL)
2435 {
2436 helpmod_reply(sender, returntype, "Cannot resolve a ticket: The channel is not specified");
2437 return;
2438 }
2439
2440 for (i = 0;i< argc;i++)
2441 {
2442 if (argv[i][0] == '#')
2443 {
2444 htick = hticket_get(&argv[i][1], hchan);
2445 if (htick == NULL)
2446 {
2447 helpmod_reply(sender, returntype, "Cannot resolve a ticket: Authname %s does not have a ticket for channel %s", &argv[i][1], hchannel_get_name(hchan));
2448 continue;
2449 }
2450 hticket_del(htick, hchan);
2451 helpmod_reply(sender, returntype, "Resolved authname %s's ticket for channel %s", &argv[i][1], hchannel_get_name(hchan));
2452 }
2453 else
2454 {
2455 husr = huser_get(getnickbynick(argv[i]));
2456 if (husr == NULL)
2457 {
2458 helpmod_reply(sender, returntype, "Cannot resolve a ticket: User %s not found", argv[i]);
2459 continue;
2460 }
2461 if (!IsAccount(husr->real_user))
2462 {
2463 helpmod_reply(sender, returntype, "Cannot resolve a ticket: User %s is not authed", argv[i]);
2464 continue;
2465 }
2466 htick = hticket_get(huser_get_auth(husr),hchan);
2467 if (htick == NULL)
2468 {
2469 helpmod_reply(sender, returntype, "Cannot resolve a ticket: User %s does not have a ticket for channel %s", argv[i], hchannel_get_name(hchan));
2470 continue;
2471 }
2472 hticket_del(htick, hchan);
2473 helpmod_reply(sender, returntype, "Resolved user %s's ticket for channel %s", argv[i], hchannel_get_name(hchan));
2474 }
2475 }
2476 }
2477
2478 static void helpmod_cmd_tickets (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2479 {
2480 hchannel *hchan;
2481 hticket *htick;
2482 int i;
2483
2484 DEFINE_HCHANNEL;
2485
2486 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
2487
2488 if (hchan == NULL)
2489 {
2490 helpmod_reply(sender, returntype, "Cannot list tickets: Channel not defined or not found");
2491 return;
2492 }
2493
2494 if (!(hchan->flags & H_REQUIRE_TICKET))
2495 {
2496 helpmod_reply(sender, returntype, "Cannot list tickets: Channel %s does not use the ticket system", hchannel_get_name(hchan));
2497 return;
2498 }
2499
2500 htick = hchan->htickets;
2501
2502 if (htick == NULL)
2503 {
2504 helpmod_reply(sender, returntype, "Channel %s has no valid tickets", hchannel_get_name(hchan));
2505 return;
2506 }
2507
2508 helpmod_reply(sender, returntype, "Valid tickets for channel %s", hchannel_get_name(hchan));
2509
2510 for (i = 0;htick;htick = htick->next, i++)
2511 helpmod_reply(sender, returntype, "%4d %16s %48s", i, htick->authname, helpmod_strtime(time(NULL) - htick->time_expiration));
2512
2513 helpmod_reply(sender, returntype, "Done listing tickets. Channel %s had %d valid ticket%s", hchannel_get_name(hchan), i, (i==1)?"":"s");
2514 }
2515
2516 static void helpmod_cmd_showticket (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2517 {
2518 hchannel *hchan;
2519 huser *husr;
2520 hticket *htick;
2521 int i;
2522
2523 DEFINE_HCHANNEL;
2524
2525 if (argc > H_CMD_MAX_ARGS)
2526 argc = H_CMD_MAX_ARGS;
2527
2528 if (hchan == NULL)
2529 {
2530 helpmod_reply(sender, returntype, "Cannot show the ticket: Channel not defined or not found");
2531 return;
2532 }
2533 for (i = 0;i < argc;i++)
2534 {
2535 husr = huser_get(getnickbynick(argv[i]));
2536 if (husr == NULL)
2537 {
2538 helpmod_reply(sender, returntype, "Cannot show the ticket: User %s not found", argv[i]);
2539 continue;
2540 }
2541 if (!IsAccount(husr->real_user))
2542 {
2543 helpmod_reply(sender, returntype, "Cannot show the ticket: User %s is not authed", argv[i]);
2544 continue;
2545 }
2546 htick = hticket_get(huser_get_auth(husr), hchan);
2547 if (htick == NULL)
2548 {
2549 helpmod_reply(sender, returntype, "Cannot show the ticket: User %s does not have a valid ticket for channel %s", argv[i], hchannel_get_name(hchan));
2550 continue;
2551 }
2552 if (htick->message == NULL)
2553 helpmod_reply(sender, returntype, "User %s has a ticket for channel %s expiring in %s. No message is attached.", argv[i], hchannel_get_name(hchan), helpmod_strtime(htick->time_expiration - time(NULL)));
2554 else
2555 helpmod_reply(sender, returntype, "User %s has a ticket for channel %s expiring in %s. With message: %s", argv[i], hchannel_get_name(hchan), helpmod_strtime(htick->time_expiration - time(NULL)), htick->message->content);
2556 }
2557 }
2558
2559 static int helpmod_cmd_termstats_sort(const void *left, const void *right)
2560 {
2561 return (*((hterm**)right))->usage - (*((hterm**)left))->usage;
2562 }
2563
2564 static void helpmod_cmd_termstats(huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2565 {
2566 hterm **arr, *origin;
2567 hchannel *hchan;
2568 int i, count;
2569
2570 DEFINE_HCHANNEL;
2571
2572 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
2573
2574 if (hchan == NULL)
2575 origin = hterms;
2576 else
2577 origin = hchan->channel_hterms;
2578
2579 count = hterm_count(origin);
2580
2581 if (count == 0)
2582 {
2583 helpmod_reply(sender, returntype, "Cannot list term usage statistics: No terms available");
2584 return;
2585 }
2586
2587 arr = malloc(sizeof(hterm*) * count);
2588 assert(arr != NULL);
2589
2590 for (i=0;i < count;i++,origin = origin->next)
2591 arr[i] = origin;
2592
2593 qsort(arr, count, sizeof(hterm*), helpmod_cmd_termstats_sort);
2594
2595 if (hchan == NULL)
2596 helpmod_reply(sender, returntype, "10 Most used global terms");
2597 else
2598 helpmod_reply(sender, returntype, "10 Most used terms for channel %s", hchannel_get_name(hchan));
2599
2600 for (i=0;i < 10 && i < count;i++)
2601 helpmod_reply(sender, returntype, "#%02d %32s :%d",i+1, arr[i]->name->content,arr[i]->usage);
2602
2603 free(arr);
2604 }
2605
2606 static int helpmod_cmd_checkchannel_nicksort(const void *left, const void *right)
2607 {
2608 return ci_strcmp(getnickbynumeric(*((unsigned long*)left))->nick, getnickbynumeric(*((unsigned long*)right))->nick);
2609 }
2610
2611 static int helpmod_cmd_checkchannel_statussort(const void *left, const void *right)
2612 {
2613 int level1 = 0, level2 = 0;
2614
2615 if (*((unsigned long*)left) & CUMODE_VOICE)
2616 level1 = 1;
2617 if (*((unsigned long*)left) & CUMODE_OP)
2618 level1 = 2;
2619
2620 if (*((unsigned long*)right) & CUMODE_VOICE)
2621 level2 = 1;
2622 if (*((unsigned long*)right) & CUMODE_OP)
2623 level2 = 2;
2624
2625 return level2 - level1;
2626 }
2627
2628 static void helpmod_cmd_checkchannel(huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2629 {
2630 channel *chan;
2631 nick *nck;
2632 int i, j, nick_count = 0, authed_count = 0, o_limit = 0, v_limit = 0, summary_only = 0;
2633 unsigned long *numeric_array;
2634
2635 if (argc == 0)
2636 {
2637 helpmod_reply(sender, returntype, "Cannot check channel: Channel not defined");
2638 return;
2639 }
2640
2641 chan = findchannel(argv[0]);
2642 if (chan == NULL)
2643 {
2644 helpmod_reply(sender, returntype, "Cannot check channel: Channel %s not found", argv[0]);
2645 return;
2646 }
2647 if (argc > 1 && !ci_strcmp(argv[1], "summary"))
2648 summary_only = 1;
2649
2650 /* first pass - verify validity and count nicks */
2651 for (i=0;i < chan->users->hashsize;i++)
2652 {
2653 nck = getnickbynumeric(chan->users->content[i]);
2654 if (!nck) /* it's a hash, not an array */
2655 continue;
2656
2657 nick_count++;
2658
2659 if (IsAccount(nck))
2660 authed_count++;
2661
2662 if (IsOper(nck) && strlen(nck->nick) > 1 && (IsSecret(chan) || IsPrivate(chan) || IsKey(chan) || IsInviteOnly(chan)))
2663 {
2664 helpmod_reply(sender, returntype, "Cannot check channel: Permission denied. Channel %s has an oper on it and one or more of +i/+k/+p/+s", argv[0]);
2665 return;
2666 }
2667 }
2668
2669 numeric_array = (unsigned long*)malloc(nick_count * sizeof(unsigned long));
2670
2671 /* second pass - construct array */
2672 for (i=0,j=0;i < chan->users->hashsize;i++)
2673 {
2674 if (getnickbynumeric(chan->users->content[i]) == NULL) /* it's a hash, not an array */
2675 continue;
2676
2677 numeric_array[j++] = chan->users->content[i];
2678 }
2679
2680 qsort(numeric_array, nick_count, sizeof(unsigned long), helpmod_cmd_checkchannel_statussort);
2681
2682 /* third pass - find status boundaries */
2683 {
2684 for (;o_limit < nick_count && numeric_array[o_limit] & CUMODE_OP; o_limit++);
2685 v_limit = o_limit;
2686 for(v_limit = o_limit; (v_limit < nick_count) && numeric_array[v_limit] & CUMODE_VOICE; v_limit++);
2687 }
2688
2689 helpmod_reply(sender, returntype, "Information on channel %s", argv[0]);
2690 helpmod_reply(sender, returntype, "Channel created %s ago", helpmod_strtime(time(NULL) - chan->timestamp));
2691 if (!IsKey(chan) && !IsInviteOnly(chan))
2692 helpmod_reply(sender, returntype, "Channel topic: %s", chan->topic?chan->topic->content:"Not set");
2693 helpmod_reply(sender, returntype, "Channel modes: %s", printflags(chan->flags, cmodeflags));
2694
2695
2696 /* sort the sub arrays */
2697
2698 if (o_limit > 0)
2699 qsort(numeric_array, o_limit, sizeof(unsigned long), helpmod_cmd_checkchannel_nicksort);
2700 if (v_limit - o_limit > 0)
2701 qsort(numeric_array + o_limit, v_limit - o_limit, sizeof(unsigned long), helpmod_cmd_checkchannel_nicksort);
2702 if (nick_count - v_limit > 0)
2703 qsort(numeric_array + v_limit, nick_count - v_limit, sizeof(unsigned long), helpmod_cmd_checkchannel_nicksort);
2704
2705 /* fourth pass - print results */
2706 if (!summary_only)
2707 for (i=0;i < nick_count;i++)
2708 {
2709 char buf[256], status;
2710
2711 if (numeric_array[i] & CUMODE_OP)
2712 status = '@';
2713 else if (numeric_array[i] & CUMODE_VOICE)
2714 status = '+';
2715 else
2716 status = ' ';
2717
2718 visiblehostmask(getnickbynumeric(numeric_array[i]), buf);
2719 if (IsAccount(getnickbynumeric(numeric_array[i])))
2720 helpmod_reply(sender, returntype, "%c%s (%s)", status, buf, getnickbynumeric(numeric_array[i])->authname);
2721 else
2722 helpmod_reply(sender, returntype, "%c%s", status, buf);
2723 }
2724
2725 helpmod_reply(sender, returntype, "Users: %d Clones: %d Opped: %d Voiced: %d Authed: %3.0f%%", nick_count, nick_count - countuniquehosts(chan), o_limit, v_limit - o_limit, ((float)authed_count / (float)nick_count) * 100.0);
2726
2727 free(numeric_array);
2728 }
2729
2730 static void helpmod_cmd_statsdump (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2731 {
2732 haccount *hacc = haccounts;
2733 hstat_account *ptr;
2734 int i;
2735
2736 helpmod_reply(sender, returntype, "Account statistics");
2737 for (;hacc;hacc = hacc->next)
2738 for (ptr = hacc->stats;ptr;ptr = ptr->next)
2739 {
2740 helpmod_reply(sender, returntype, "Account %s channel %s short-term", hacc->name->content, hchannel_get_name(ptr->hchan));
2741 for (i = 0;i < 7;i++)
2742 helpmod_reply(sender, returntype, "%d %d %d %d", ptr->week[i].time_spent, ptr->week[i].prime_time_spent, ptr->week[i].lines, ptr->week[i].words);
2743 helpmod_reply(sender, returntype, "Account %s channel %s long-term", hacc->name->content, hchannel_get_name(ptr->hchan));
2744 for (i = 0;i < 10;i++)
2745 helpmod_reply(sender, returntype, "%d %d %d %d", ptr->longterm[i].time_spent, ptr->longterm[i].prime_time_spent, ptr->longterm[i].lines, ptr->longterm[i].words);
2746 }
2747 }
2748
2749 static void helpmod_cmd_statsrepair (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2750 {
2751 haccount *hacc = haccounts;
2752 hstat_account *ptr;
2753 int i;
2754
2755 helpmod_reply(sender, returntype, "Repairing account statistics");
2756 for (;hacc;hacc = hacc->next)
2757 for (ptr = hacc->stats;ptr;ptr = ptr->next)
2758 {
2759 for (i = 0;i < 7;i++)
2760 {
2761 if (ptr->week[i].time_spent > HDEF_d)
2762 {
2763 ptr->week[i].time_spent = 0;
2764 helpmod_reply(sender, returntype, "repaired short term TimeSpent %s @ %s : Greater than one day",hacc->name->content, hchannel_get_name(ptr->hchan));
2765 }
2766 if (ptr->week[i].time_spent < 0)
2767 {
2768 ptr->week[i].time_spent = 0;
2769 helpmod_reply(sender, returntype, "repaired short term TimeSpent %s @ %s : Less than zero",hacc->name->content, hchannel_get_name(ptr->hchan));
2770 }
2771
2772 if (ptr->week[i].prime_time_spent > HDEF_d)
2773 {
2774 ptr->week[i].prime_time_spent = 0;
2775 helpmod_reply(sender, returntype, "repaired short term PrimeTimeSpent %s @ %s : Greater than one day",hacc->name->content, hchannel_get_name(ptr->hchan));
2776 }
2777 if (ptr->week[i].prime_time_spent < 0)
2778 {
2779 ptr->week[i].prime_time_spent = 0;
2780 helpmod_reply(sender, returntype, "repaired short term PrimeTimeSpent %s @ %s : Less than zero",hacc->name->content, hchannel_get_name(ptr->hchan));
2781 }
2782
2783 if (ptr->week[i].lines > 10000)
2784 {
2785 ptr->week[i].lines = 0;
2786 helpmod_reply(sender, returntype, "repaired short term Lines %s @ %s : Greater than 10000",hacc->name->content, hchannel_get_name(ptr->hchan));
2787 }
2788 if (ptr->week[i].lines < 0)
2789 {
2790 ptr->week[i].lines = 0;
2791 helpmod_reply(sender, returntype, "repaired short term Lines %s @ %s : Less than zero",hacc->name->content, hchannel_get_name(ptr->hchan));
2792 }
2793
2794 if (ptr->week[i].words > 50000)
2795 {
2796 ptr->week[i].words = 0;
2797 helpmod_reply(sender, returntype, "repaired short term Words %s @ %s : Greater than 50000",hacc->name->content, hchannel_get_name(ptr->hchan));
2798 }
2799 if (ptr->week[i].words < 0)
2800 {
2801 ptr->week[i].words = 0;
2802 helpmod_reply(sender, returntype, "repaired short term Words %s @ %s : Less than zero",hacc->name->content, hchannel_get_name(ptr->hchan));
2803 }
2804 }
2805 for (i = 0;i < 10;i++)
2806 {
2807 if (ptr->longterm[i].time_spent > HDEF_w)
2808 {
2809 ptr->longterm[i].time_spent = 0;
2810 helpmod_reply(sender, returntype, "repaired long term TimeSpent %s @ %s : Greater than one week",hacc->name->content, hchannel_get_name(ptr->hchan));
2811 }
2812 if (ptr->longterm[i].time_spent < 0)
2813 {
2814 ptr->longterm[i].time_spent = 0;
2815 helpmod_reply(sender, returntype, "repaired long term TimeSpent %s @ %s : Less than zero",hacc->name->content, hchannel_get_name(ptr->hchan));
2816 }
2817
2818 if (ptr->longterm[i].prime_time_spent > HDEF_w)
2819 {
2820 ptr->longterm[i].prime_time_spent = 0;
2821 helpmod_reply(sender, returntype, "repaired long term PrimeTimeSpent %s @ %s : Greater than one week",hacc->name->content, hchannel_get_name(ptr->hchan));
2822 }
2823 if (ptr->longterm[i].prime_time_spent < 0)
2824 {
2825 ptr->longterm[i].prime_time_spent = 0;
2826 helpmod_reply(sender, returntype, "repaired long term PrimeTimeSpent %s @ %s : Less than zero",hacc->name->content, hchannel_get_name(ptr->hchan));
2827 }
2828
2829 if (ptr->longterm[i].lines > 50000)
2830 {
2831 ptr->longterm[i].lines = 0;
2832 helpmod_reply(sender, returntype, "repaired long term Lines %s @ %s : Greater than 50000",hacc->name->content, hchannel_get_name(ptr->hchan));
2833 }
2834 if (ptr->longterm[i].lines < 0)
2835 {
2836 ptr->longterm[i].lines = 0;
2837 helpmod_reply(sender, returntype, "repaired long term Lines %s @ %s : Less than zero",hacc->name->content, hchannel_get_name(ptr->hchan));
2838 }
2839
2840 if (ptr->longterm[i].words > 50000)
2841 {
2842 ptr->longterm[i].words = 0;
2843 helpmod_reply(sender, returntype, "repaired long term Words %s @ %s : Greater than 50000",hacc->name->content, hchannel_get_name(ptr->hchan));
2844 }
2845 if (ptr->longterm[i].words < 0)
2846 {
2847 ptr->longterm[i].words = 0;
2848 helpmod_reply(sender, returntype, "repaired long term Words %s @ %s : Less than zero",hacc->name->content, hchannel_get_name(ptr->hchan));
2849 }
2850 }
2851 }
2852 helpmod_reply(sender, returntype, "Account statistics repaired");
2853
2854 }
2855
2856 static void helpmod_cmd_statsreset (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2857 {
2858 haccount *hacc = haccounts;
2859 hstat_account *ptr;
2860 hchannel *hchan;
2861 int i, short_del, long_del;
2862
2863 if (argc < 2)
2864 {
2865 helpmod_reply(sender, returntype, "Insufficient parameters");
2866 return;
2867 }
2868
2869 if (sscanf(argv[0], "%d", &short_del) == 0)
2870 {
2871 helpmod_reply(sender, returntype, "Invalid parameter");
2872 return;
2873 }
2874 if (sscanf(argv[1], "%d", &long_del) == 0)
2875 {
2876 helpmod_reply(sender, returntype, "Invalid parameter");
2877 return;
2878 }
2879
2880 for (;hacc;hacc = hacc->next)
2881 for (ptr = hacc->stats;ptr;ptr = ptr->next)
2882 {
2883 for (i = 1;i < short_del + 1;i++)
2884 HSTAT_ACCOUNT_ZERO(ptr->week[(hstat_day() + i) % 7]);
2885 for (i = 1;i < long_del + 1;i++)
2886 HSTAT_ACCOUNT_ZERO(ptr->longterm[(hstat_week() + i) % 10]);
2887 }
2888
2889 for (hchan = hchannels;hchan;hchan = hchan->next)
2890 {
2891 for (i = 1;i < short_del + 1;i++)
2892 HSTAT_CHANNEL_ZERO(hchan->stats->week[(hstat_day() + i) % 7]);
2893 for (i = 1;i < long_del + 1;i++)
2894 HSTAT_CHANNEL_ZERO(hchan->stats->longterm[(hstat_week() + i) % 10]);
2895
2896 }
2897
2898 helpmod_reply(sender, returntype, "Statistics reset complete");
2899 }
2900
2901 static void helpmod_cmd_message (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2902 {
2903 hchannel *hchan;
2904
2905 if (argc < 2)
2906 {
2907 helpmod_reply(sender, returntype, "Cannot send a message: Insufficient arguments");
2908 return;
2909 }
2910 hchan = hchannel_get_by_name(argv[0]);
2911 if (hchan == NULL)
2912 {
2913 helpmod_reply(sender, returntype, "Cannot send a message: Invalid channel %s", argv[0]);
2914 return;
2915 }
2916 SKIP_WORD;
2917 helpmod_message_channel(hchan, "(%s) %s", huser_get_nick(sender), ostr);
2918 helpmod_reply(sender, returntype, "Message sent to %s", hchannel_get_name(hchan));
2919 }
2920
2921 static void helpmod_cmd_version (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2922 {
2923 helpmod_reply(sender, returntype, "HelpMod version " HELPMOD_VERSION " by strutsi (strutsi@quakenet.org)");
2924 }
2925
2926 static void helpmod_cmd_ticketmsg (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2927 {
2928 hchannel *hchan;
2929
2930 DEFINE_HCHANNEL;
2931
2932 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
2933
2934 if (hchan == NULL)
2935 {
2936 helpmod_reply(sender, returntype, "Can not view or set ticket message: No channel is specified.");
2937 return;
2938 }
2939
2940 if (argc == 0)
2941 { /* view */
2942 if (hchan->ticket_message == NULL)
2943 helpmod_reply(sender, returntype, "No ticket message is set for channel %s", hchannel_get_name(hchan));
2944 else
2945 helpmod_reply(sender, returntype, "Ticket message for channel %s is: %s", hchannel_get_name(hchan), hchan->ticket_message->content);
2946 return;
2947 }
2948
2949 /* set */
2950 if (hchan->ticket_message != NULL)
2951 freesstring(hchan->ticket_message);
2952
2953 hchan->ticket_message = getsstring(ostr, strlen(ostr));
2954 helpmod_reply(sender, returntype, "Ticket message for channel %s set to: %s", hchannel_get_name(hchan), hchan->ticket_message->content);
2955 }
2956
2957 static void helpmod_cmd_lcedit (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
2958 {
2959 hlc_profile *profile;
2960
2961 if (argc == 0)
2962 {
2963 helpmod_reply(sender, returntype, "Can not handle lamer control profiles: Operation not defined");
2964 return;
2965 }
2966
2967 if (!ci_strcmp(argv[0], "list"))
2968 {
2969 if (hlc_profiles == NULL)
2970 {
2971 helpmod_reply(sender, returntype, "Can not list lamer control profiles: No profiles");
2972 return;
2973 }
2974 helpmod_reply(sender, returntype, "Following lamer control profiles are currently available:");
2975 for (profile = hlc_profiles;profile != NULL;profile = profile->next)
2976 helpmod_reply(sender, returntype, "%s", profile->name->content);
2977 }
2978 else if (!ci_strcmp(argv[0], "add"))
2979 {
2980 if (argc < 2)
2981 {
2982 helpmod_reply(sender, returntype, "Can not add a lamer control profile: Profile name not defined");
2983 return;
2984 }
2985
2986 profile = hlc_get(argv[1]);
2987
2988 if (profile != NULL)
2989 {
2990 helpmod_reply(sender, returntype, "Can not add a lamer control profile: Profile named %s already exists", argv[1]);
2991 return;
2992 }
2993 profile = hlc_add(argv[1]);
2994
2995 { /* set the default values */
2996 profile->caps_max_percentage = 40;
2997 profile->caps_min_count = 20;
2998
2999 profile->repeats_max_count = 3;
3000 profile->repeats_min_length = 7;
3001
3002 profile->symbol_repeat_max_count = 6;
3003 profile->character_repeat_max_count = 7;
3004 profile->symbol_max_count = 9;
3005
3006 profile->tolerance_flood = 5;
3007
3008 profile->tolerance_spam = 0.008;
3009 profile->constant_spam = 10;
3010
3011 profile->tolerance_warn = 1;
3012 profile->tolerance_kick = 3;
3013 profile->tolerance_remove = 5;
3014 }
3015
3016 helpmod_reply(sender, returntype, "Lamer control profile %s added", argv[1]);
3017 }
3018 else if (!ci_strcmp(argv[0], "del"))
3019 {
3020 hchannel *hchan;
3021 if (argc < 2)
3022 {
3023 helpmod_reply(sender, returntype, "Can not delete a lamer control profile: Profile name not defined");
3024 return;
3025 }
3026
3027 profile = hlc_get(argv[1]);
3028
3029 if (profile == NULL)
3030 {
3031 helpmod_reply(sender, returntype, "Can not delete a lamer control profile: Profile named %s does not exist", argv[1]);
3032 return;
3033 }
3034 for (hchan = hchannels;hchan != NULL;hchan = hchan->next)
3035 if (hchan->lc_profile == profile)
3036 {
3037 helpmod_reply(sender, returntype, "Can not delete a lamer control profile: Profile %s is in use", argv[1]);
3038 return;
3039 }
3040 hlc_del(profile);
3041 helpmod_reply(sender, returntype, "Lamer control profile %s deleted", argv[1]);
3042 }
3043 else if (!ci_strcmp(argv[0], "view"))
3044 {
3045 if (argc < 2)
3046 {
3047 helpmod_reply(sender, returntype, "Can not view a lamer control profile: Profile name not defined");
3048 return;
3049 }
3050
3051 profile = hlc_get(argv[1]);
3052
3053 if (profile == NULL)
3054 {
3055 helpmod_reply(sender, returntype, "Can not view a lamer control profile: Profile named %s not found", argv[1]);
3056 return;
3057 }
3058
3059 helpmod_reply(sender, returntype, "Lamer control profile %s:", profile->name->content);
3060 helpmod_reply(sender, returntype, "Maximum caps percentage: %d", profile->caps_max_percentage);
3061 helpmod_reply(sender, returntype, "Caps minimum count: %d", profile->caps_min_count);
3062 helpmod_reply(sender, returntype, "Repeat tolerance: %d", profile->repeats_max_count);
3063 helpmod_reply(sender, returntype, "Repeat minimum length: %d", profile->repeats_min_length);
3064 helpmod_reply(sender, returntype, "Symbol repeat tolerance: %d", profile->symbol_repeat_max_count);
3065 helpmod_reply(sender, returntype, "Character repeat tolerance: %d", profile->character_repeat_max_count);
3066 helpmod_reply(sender, returntype, "Continuous symbol tolerance: %d", profile->symbol_max_count);
3067 helpmod_reply(sender, returntype, "Flood tolerance: %d", profile->tolerance_flood);
3068 helpmod_reply(sender, returntype, "Spam tolerance: %d", profile->tolerance_spam);
3069 helpmod_reply(sender, returntype, "Spam multiplier: %f", profile->constant_spam);
3070 helpmod_reply(sender, returntype, "Warning limit: %d", profile->tolerance_warn);
3071 helpmod_reply(sender, returntype, "Kick limit: %d", profile->tolerance_kick);
3072 helpmod_reply(sender, returntype, "Ban limit: %d", profile->tolerance_remove);
3073 }
3074 else if (!ci_strcmp(argv[0], "edit"))
3075 {
3076 int int_val = -1;
3077 double dbl_val = -1;
3078
3079 if (argc != 4)
3080 {
3081 helpmod_reply(sender, returntype, "Can not edit a lamer control profile: Syntax error");
3082 return;
3083 }
3084
3085 profile = hlc_get(argv[1]);
3086
3087 if (profile == NULL)
3088 {
3089 helpmod_reply(sender, returntype, "Can not edit a lamer control profile: Profile %s not found", argv[1]);
3090 return;
3091 }
3092
3093 sscanf(argv[3], "%d", &int_val);
3094 sscanf(argv[3], "%lf", &dbl_val);
3095
3096 if (dbl_val < 0)
3097 { /* All int values are also valid double values */
3098 helpmod_reply(sender, returntype, "Can not edit a lamer control profile: Invalid argument");
3099 return;
3100 }
3101
3102 if (!ci_strcmp(argv[2], "caps_percentage"))
3103 profile->caps_max_percentage = int_val;
3104 else if (!ci_strcmp(argv[2], "caps_count"))
3105 profile->caps_min_count = int_val;
3106 else if (!ci_strcmp(argv[2], "repeat_tolerance"))
3107 profile->repeats_max_count = int_val;
3108 else if (!ci_strcmp(argv[2], "repeat_length"))
3109 profile->repeats_min_length = int_val;
3110 else if (!ci_strcmp(argv[2], "symbol_repeat"))
3111 profile->symbol_repeat_max_count = int_val;
3112 else if (!ci_strcmp(argv[2], "character_repeat"))
3113 profile->character_repeat_max_count = int_val;
3114 else if (!ci_strcmp(argv[2], "continuous_symbol"))
3115 profile->symbol_max_count = int_val;
3116 else if (!ci_strcmp(argv[2], "flood_tolerance"))
3117 profile->tolerance_flood = int_val;
3118 else if (!ci_strcmp(argv[2], "spam_tolerance"))
3119 profile->tolerance_spam = int_val;
3120 else if (!ci_strcmp(argv[2], "spam_multiplier"))
3121 profile->constant_spam = dbl_val;
3122 else if (!ci_strcmp(argv[2], "warn_limit"))
3123 profile->tolerance_warn = int_val;
3124 else if (!ci_strcmp(argv[2], "kick_limit"))
3125 profile->tolerance_kick = int_val;
3126 else if (!ci_strcmp(argv[2], "ban_limit"))
3127 profile->tolerance_remove = int_val;
3128 else
3129 {
3130 helpmod_reply(sender, returntype, "Can not edit a lamer control profile: No component named %s", argv[2]);
3131 return;
3132 }
3133 helpmod_reply(sender, returntype, "Lamer control profile component value changed succesfully.");
3134 }
3135 }
3136
3137 static void helpmod_cmd_ged (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
3138 {
3139 helpmod_editor *editor;
3140
3141 if (sender->editor == NULL)
3142 { /* Start a new editor */
3143 if (argc == 0)
3144 {
3145 helpmod_reply(sender, returntype, "Can not use ged: Filename not specified");
3146 return;
3147 }
3148 editor = hed_open(sender, argv[0]);
3149 if (editor == NULL)
3150 {
3151 helpmod_reply(sender, returntype, "Can not use ged: Invalid filename %s", argv[0]);
3152 return;
3153 }
3154 if (editor->user != sender)
3155 {
3156 helpmod_reply(sender, returntype, "Can not use ged: File %s is currently being edited by %s", editor->filename, huser_get_nick(editor->user));
3157 return;
3158 }
3159 editor->user = sender;
3160 sender->editor = editor;
3161
3162 helpmod_reply(sender, returntype, "Ged: %d", hed_byte_count(editor));
3163 }
3164 else
3165 {
3166 hed_command(sender, returntype, ostr, argc, argv);
3167 }
3168 }
3169
3170 static void helpmod_cmd_text (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
3171 {
3172 hchannel *hchan;
3173 DEFINE_HCHANNEL;
3174 FILE *in;
3175
3176 if (argc == 0 || !ci_strcmp(argv[0], "list"))
3177 {
3178 DIR *dir;
3179 struct dirent *dent;
3180 char buffer[384], **lines, *start;
3181 int nwritten, bufpos = 0, nlines = 0,i;
3182
3183 dir = opendir(HELPMOD_TEXT_DIR);
3184 assert(dir != NULL);
3185
3186 /* First pass, count */
3187 for (dent = readdir(dir);dent != NULL;dent = readdir(dir))
3188 {
3189 /* Skip stuff like . and .. */
3190 if (!strncmp(dent->d_name, ".", 1))
3191 continue;
3192 nlines++;
3193 }
3194
3195 if (nlines == 0)
3196 {
3197 helpmod_reply(sender, returntype, "No texts are available.");
3198 return;
3199 }
3200
3201 helpmod_reply(sender, returntype, "Following texts are available:");
3202
3203 {
3204 lines = (char **)malloc(sizeof(char*) * nlines);
3205 *lines = (char *)malloc(sizeof(char) * (HED_FILENAME_LENGTH+1) * nlines);
3206 /* We need the start to free this array */
3207 start = *lines;
3208 for(i=0;i < nlines;i++)
3209 lines[i] = &lines[0][(HED_FILENAME_LENGTH+1) * i];
3210 }
3211
3212 /* Second pass, create array */
3213 rewinddir(dir);
3214 for (dent = readdir(dir), i = 0;dent != NULL && i < nlines;dent = readdir(dir))
3215 {
3216 /* Skip stuff like . and .. */
3217 if (!strncmp(dent->d_name, ".", 1))
3218 continue;
3219 strncpy(lines[i], dent->d_name, 64);
3220 i++;
3221 }
3222 /* Sort */
3223 qsort(*lines, nlines, sizeof(char)*(HED_FILENAME_LENGTH+1), (int (*)(const void*, const void*))&strcmp);
3224
3225 for (i = 0;i < nlines;i++)
3226 {
3227 if (bufpos)
3228 {
3229 buffer[bufpos] = ' ';
3230 bufpos++;
3231 }
3232 sprintf(buffer + bufpos, "%s%n", lines[i], &nwritten);
3233 bufpos+=nwritten;
3234
3235 if (bufpos > (384 - (HED_FILENAME_LENGTH+1)))
3236 {
3237 helpmod_reply(sender, returntype, "%s", buffer);
3238 bufpos = 0;
3239 }
3240 }
3241
3242 if (bufpos)
3243 helpmod_reply(sender, returntype, "%s", buffer);
3244
3245 free(start);
3246 free(lines);
3247
3248 return;
3249 }
3250 else if (!ci_strcmp(argv[0], "show"))
3251 {
3252 char fname_buffer[128], buffer[512];
3253 if (argc < 2)
3254 {
3255 helpmod_reply(sender, returntype, "Can not show text: Text not specified");
3256 return;
3257 }
3258 if (!hed_is_valid_filename(argv[1]))
3259 {
3260 helpmod_reply(sender, returntype, "Can not show text: Invalid filename");
3261 return;
3262 }
3263 sprintf(fname_buffer, HELPMOD_TEXT_DIR"/%s" ,argv[1]);
3264 in = fopen(fname_buffer, "rwt");
3265 if (in == NULL)
3266 {
3267 helpmod_reply(sender, returntype, "Can not show text: Text %s not found", argv[1]);
3268 return;
3269 }
3270 while (!feof(in))
3271 {
3272 if (!fgets(buffer, 512, in))
3273 break;
3274 if (returntype != NULL && huser_get_level(sender) >= H_TRIAL)
3275 helpmod_message_channel(hchannel_get_by_channel(returntype), "%s", buffer);
3276 else
3277 helpmod_reply(sender, returntype, "%s", buffer);
3278 }
3279 fclose (in);
3280 return;
3281 }
3282
3283 if (huser_get_level(sender) < H_STAFF)
3284 {
3285 helpmod_reply(sender, returntype, "Can not handle text: Insufficient user level");
3286 return;
3287 }
3288
3289 if (!ci_strcmp(argv[0], "add"))
3290 {
3291 char fname_buffer[128];
3292 if (argc < 2)
3293 {
3294 helpmod_reply(sender, returntype, "Can not add text: Text not specified");
3295 return;
3296 }
3297 if (!hed_is_valid_filename(argv[1]))
3298 {
3299 helpmod_reply(sender, returntype, "Can not add text: Invalid filename");
3300 return;
3301 }
3302 sprintf(fname_buffer, HELPMOD_TEXT_DIR"/%s" ,argv[1]);
3303 if ((in = fopen(fname_buffer, "rt")) != NULL)
3304 {
3305 helpmod_reply(sender, returntype, "Can not add text: Text %s already exists", argv[1]);
3306 return;
3307 }
3308 else
3309 {
3310 if ((in = fopen(fname_buffer, "wt")) == NULL)
3311 {
3312 helpmod_reply(sender, returntype, "Can not add text: Unexpected error, please contact strutsi");
3313 return;
3314 }
3315 fclose(in);
3316 }
3317 helpmod_reply(sender, returntype, "Text %s added succesfully", argv[1]);
3318 }
3319 else if (!ci_strcmp(argv[0], "del"))
3320 {
3321 char fname_buffer[128];
3322 if (argc < 2)
3323 {
3324 helpmod_reply(sender, returntype, "Can not delete text: Text not specified");
3325 return;
3326 }
3327 if (!hed_is_valid_filename(argv[1]))
3328 {
3329 helpmod_reply(sender, returntype, "Can not delete text: Invalid filename");
3330 return;
3331 }
3332 sprintf(fname_buffer, HELPMOD_TEXT_DIR"/%s" ,argv[1]);
3333
3334 if (!remove(fname_buffer))
3335 helpmod_reply(sender, returntype, "Text %s removed", argv[1]);
3336 else
3337 helpmod_reply(sender, returntype, "Can not delete text: Text %s does not exist or can not be deleted", argv[1]);
3338 }
3339 else
3340 {
3341 helpmod_reply(sender, returntype, "Can not handle text: Unknown operation %s", argv[0]);
3342 return;
3343 }
3344 }
3345
3346 static void helpmod_cmd_rating (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
3347 {
3348 hchannel *hchan;
3349 hstat_account_entry sum = {0,0,0,0};
3350 hstat_account *ptr;
3351 int i;
3352
3353 DEFINE_HCHANNEL;
3354
3355 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
3356
3357 if (hchan == NULL)
3358 {
3359 helpmod_reply(sender, returntype, "Can not show rating: Unknown channel");
3360 return;
3361 }
3362 if (sender->account == NULL)
3363 {
3364 helpmod_reply(sender, returntype, "Can not show rating: You do not have an account");
3365 return;
3366 }
3367 for (ptr = sender->account->stats;ptr != NULL;ptr = ptr->next)
3368 if (ptr->hchan == hchan)
3369 {
3370 if (hstat_day() == 0)
3371 { /* Sunday screws the indexing */
3372 for (i = 0;i < 7;i++)
3373 HSTAT_ACCOUNT_SUM(sum, sum, ptr->week[i]);
3374 }
3375 else
3376 { /* Normal case */
3377 for (i = 1;i <= hstat_day();i++)
3378 HSTAT_ACCOUNT_SUM(sum, sum, ptr->week[i]);
3379 }
3380
3381 helpmod_reply(sender, returntype, "Your rating for channel %s for this week is: %s", hchannel_get_name(hchan), helpmod_strtime(sum.time_spent));
3382 return;
3383 }
3384 helpmod_reply(sender, returntype, "Can not show rating: You do not have any statistics for channel %s", hchannel_get_name(hchan));
3385 }
3386
3387 static void helpmod_cmd_writedb (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
3388 {
3389 rename(HELPMOD_DEFAULT_DB, HELPMOD_DEFAULT_DB".old");
3390 helpmod_config_write(HELPMOD_DEFAULT_DB);
3391
3392 helpmod_reply(sender, returntype, "Database written");
3393 }
3394
3395 static void helpmod_cmd_evilhack1 (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
3396 {
3397 int tmp;
3398
3399 if (argc == 0)
3400 helpmod_reply(sender, returntype, "hstat_cycle: %d", hstat_cycle);
3401 else
3402 {
3403 if (!sscanf(argv[0], "%d", &tmp) || tmp < 0)
3404 {
3405 helpmod_reply(sender, returntype, "Invalid argument");
3406 return;
3407 }
3408 hstat_cycle = tmp;
3409 helpmod_reply(sender, returntype, "hstat_cycle is now: %d", hstat_cycle);
3410 }
3411 }
3412
3413 static void helpmod_cmd_evilhack2 (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
3414 {
3415 haccount *hacc = haccounts;
3416 hchannel *hchan;
3417 hstat_account *ptr;
3418 hstat_account_entry tmp_account;
3419 hstat_channel_entry tmp_channel;
3420 int first, second;
3421
3422 if (argc != 2)
3423 {
3424 helpmod_reply(sender, returntype, "Syntax error: evilhack2 <first> <second>");
3425 return;
3426 }
3427
3428 if (!sscanf(argv[0],"%d", &first) || first < 0 || first > 9)
3429 {
3430 helpmod_reply(sender, returntype, "Syntax error: Invalid first");
3431 return;
3432 }
3433
3434 if (!sscanf(argv[1],"%d", &second) || second < 0 || second > 9)
3435 {
3436 helpmod_reply(sender, returntype, "Syntax error: Invalid second");
3437 return;
3438 }
3439
3440 for (;hacc;hacc = hacc->next)
3441 for (ptr = hacc->stats;ptr;ptr = ptr->next)
3442 {
3443 tmp_account = ptr->longterm[first];
3444 ptr->longterm[first] = ptr->longterm[second];
3445 ptr->longterm[second] = tmp_account;
3446 }
3447
3448 for (hchan = hchannels;hchan;hchan = hchan->next)
3449 {
3450 tmp_channel = hchan->stats->longterm[first];
3451 hchan->stats->longterm[first] = hchan->stats->longterm[second];
3452 hchan->stats->longterm[second] = tmp_channel;
3453 }
3454
3455 helpmod_reply(sender, returntype, "Evilhack2 done: Swapped %d and %d", first, second);
3456 }
3457
3458 static void helpmod_cmd_channel (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
3459 {
3460 hchannel *hchan;
3461 hchannel_user *hchanuser;
3462
3463 DEFINE_HCHANNEL;
3464
3465 if (hchan == NULL)
3466 {
3467 helpmod_reply(sender, returntype, "Can not show channel: Channel not specified");
3468 return;
3469 }
3470
3471 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
3472
3473 helpmod_reply(sender, returntype, "Users for channel %s", hchannel_get_name(hchan));
3474 helpmod_reply(sender, returntype, "Nick Account User level Idle time");
3475
3476 for (hchanuser = hchan->channel_users;hchanuser;hchanuser=hchanuser->next)
3477 helpmod_reply(sender, returntype, "%-16s %-16s %-24s %s",hchanuser->husr->real_user->nick,hchanuser->husr->account?hchanuser->husr->account->name->content:"-",hlevel_name(huser_get_level(hchanuser->husr)), helpmod_strtime(time(NULL)-huser_on_channel(hchanuser->husr, hchan)->last_activity));
3478
3479 helpmod_reply(sender, returntype, "Listed %d users for channel %s", hchannel_count_users(hchan, H_ANY), hchannel_get_name(hchan));
3480 }
3481
3482 static void helpmod_cmd_weekstats (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
3483 {
3484 hchannel *hchan;
3485 hstat_accounts_array arr;
3486 int i;
3487 hlevel lvl = H_ANY;
3488
3489 DEFINE_HCHANNEL;
3490
3491 if (hchan == NULL)
3492 {
3493 helpmod_reply(sender, returntype, "Can not list weekly stats: Channel not specified");
3494 return;
3495 }
3496
3497 HCHANNEL_VERIFY_AUTHORITY(hchan, sender);
3498
3499 if (argc >= 1)
3500 {
3501 if (!ci_strcmp(argv[0], "opers") || !ci_strcmp(argv[0], "o"))
3502 lvl = H_OPER;
3503 else if (!ci_strcmp(argv[0], "staff") || !ci_strcmp(argv[0], "s"))
3504 lvl = H_STAFF;
3505 else if (!ci_strcmp(argv[0], "all") || !ci_strcmp(argv[0], "a"))
3506 lvl = H_ANY;
3507 }
3508
3509 arr = create_hstat_account_array(hchan, lvl, HSTAT_ACCOUNT_ARRAY_WEEKSTATS);
3510
3511 helpmod_reply(sender, returntype, "Weekly statistics for %ss on channel %s", hlevel_name(lvl), hchannel_get_name(hchan));
3512
3513 for (i=0;i < arr.arrlen && arr.array[i].time_spent > HDEF_m;i++)
3514 helpmod_reply(sender, returntype, "%-20s %-20s %-20s",((haccount*)(arr.array[i].owner))->name->content, helpmod_strtime(arr.array[i].prime_time_spent), helpmod_strtime(arr.array[i].time_spent));
3515
3516 free(arr.array);
3517 }
3518
3519 /* old H stuff */
3520 void helpmod_cmd_load (huser *sender, channel *returntype, char* arg, int argc, char *argv[])
3521 {
3522 FILE *tmp_file;
3523 char buf[128] = "helpmod/default";
3524
3525 if (!arg)
3526 helpmod_reply(sender, returntype, "Warning: No config specified, using default");
3527 else
3528 {
3529 if (strlen(arg) >= 100)
3530 return;
3531 else
3532 sprintf(buf, "helpmod/%s", arg);
3533 }
3534
3535 if (!(tmp_file = fopen(buf, "rt")))
3536 {
3537 helpmod_reply(sender, returntype, "File %s not found", buf);
3538 return;
3539 }
3540 else
3541 fclose(tmp_file);
3542
3543 helpmod_clear_aliases(&aliases);
3544 helpmod_clear_all_entries();
3545 helpmod_init_entry(&helpmod_base);
3546 huser_reset_states();
3547 helpmod_load_entries(buf);
3548 strcpy(helpmod_db, buf);
3549 helpmod_reply(sender, returntype, "New config loaded and system reset");
3550 }
3551
3552 void helpmod_cmd_status (huser *sender, channel* returntype, char* ostr, int argc, char *argv[])
3553 {
3554 helpmod_reply(sender, returntype, "HelpMod version %s (built %s, up %s)", HELPMOD_VERSION, __DATE__, helpmod_strtime(time(NULL) - helpmod_startup_time));
3555 helpmod_reply(sender, returntype, "Channels %d", hchannel_count());
3556 helpmod_reply(sender, returntype, "Accounts %d", haccount_count(H_ANY));
3557 helpmod_reply(sender, returntype, "Users %d", huser_count());
3558 helpmod_reply(sender, returntype, "Help entries %ld", helpmod_entry_count(helpmod_base));
3559 helpmod_reply(sender, returntype, "Bans %d", hban_count());
3560 helpmod_reply(sender, returntype, "Help provided %ld", helpmod_usage);
3561 helpmod_reply(sender, returntype, "Tickets %d", hticket_count());
3562 }
3563
3564 /* not really a command, but help wants this one */
3565 void helpmod_send_help(huser* target)
3566 {
3567 int i;
3568 helpmod_usage++;
3569 for (i=0;i<target->state->text_lines;i++)
3570 helpmod_reply(target, NULL, "%s", target->state->text[i]->content);
3571 for (i=0;i<target->state->option_count;i++)
3572 helpmod_reply(target, NULL, "%d) %s", i+1, target->state->options[i]->description->content);
3573 if (!target->state->option_count)
3574 {
3575 helpmod_reply(target, NULL, "This concludes the help for this topic, if you want to, you can restart the service with the 'help' command, or return to the previous entry by selecting 0");
3576 }
3577 }
3578
3579 void helpmod_cmd_command(huser* sender, channel* returntype, char* arg, int argc, char *argv[])
3580 {
3581 hcommand *hcom;
3582 char buffer[512], *ptr = argv[0];
3583 FILE *in;
3584
3585 if (argc == 0)
3586 {
3587 helpmod_reply(sender, returntype, "Usage: command [name of the command] for a list see 'showcommands'");
3588 return;
3589 }
3590
3591 hcom = hcommand_get(argv[0], huser_get_level(sender));
3592
3593 if (hcom == NULL)
3594 {
3595 helpmod_reply(sender, returntype, "Unknown command '%s'", argv[0]);
3596 return;
3597 }
3598
3599 /* tolower */
3600 while (*(ptr++))
3601 *ptr = tolower(*ptr);
3602
3603 /* ?,?+.?- is handled like this because windows is shit */
3604 if (!ci_strcmp(argv[0], "?"))
3605 sprintf(buffer, "./helpmod2/commands/questionmark");
3606 else if (!ci_strcmp(argv[0], "?+"))
3607 sprintf(buffer, "./helpmod2/commands/questionmarkplus");
3608 else if (!ci_strcmp(argv[0], "?-"))
3609 sprintf(buffer, "./helpmod2/commands/questionmarkminus");
3610 else
3611 sprintf(buffer, "./helpmod2/commands/%s", argv[0]);
3612
3613 if ((in = fopen(buffer, "rt")) == NULL)
3614 {
3615 helpmod_reply(sender, returntype, "No help available for command '%s' (Ask strutsi to write it)", argv[0]);
3616 return;
3617 }
3618
3619 while (!feof(in))
3620 {
3621 fgets(buffer, 512, in);
3622 if (feof(in))
3623 break;
3624 helpmod_reply(sender, returntype, "%s", buffer);
3625 }
3626
3627 fclose(in);
3628 }
3629
3630 void helpmod_cmd_help (huser* sender, channel* returntype, char* arg, int argc, char *argv[])
3631 {
3632 int hlp_target;
3633
3634 if (helpmod_base == NULL || !helpmod_base->option_count)
3635 {
3636 helpmod_reply(sender, returntype, "The help service is not available at this time, please try again later");
3637 return;
3638 }
3639
3640 if (!argc)
3641 {
3642 sender->state = helpmod_base;
3643 helpmod_send_help(sender);
3644 return;
3645 }
3646 else
3647 if (!sscanf(arg, "%d", &hlp_target))
3648 {
3649 helpmod_entry tmp;
3650
3651 tmp = helpmod_get_alias(arg);
3652 if (!tmp)
3653 helpmod_reply(sender, returntype, "Invalid value. Either use 'help' to restart or give an integer as a valid selection");
3654 else
3655 {
3656 sender->state = tmp;
3657 helpmod_send_help(sender);
3658 }
3659 return;
3660 }
3661
3662 hlp_target--;
3663 if (!helpmod_valid_selection(sender->state, hlp_target))
3664 {
3665 if (!sender->state->option_count)
3666 helpmod_reply(sender, returntype, "There are no more options to choose from, you can restart the service by giving the 'help' command or select 0 to return to the previous entry");
3667 else if (!sender->state->parent)
3668 helpmod_reply(sender, returntype, "Bad selection, please enter your selection as an integer from %d to %d", 1, sender->state->option_count);
3669 else
3670 helpmod_reply(sender, returntype, "Bad selection, please enter your selection as an integer from %d to %d, selecting 0 will take you to the previous entry", 1, sender->state->option_count);
3671 return;
3672 }
3673
3674 sender->state = helpmod_make_selection(sender->state, hlp_target);
3675 helpmod_send_help(sender);
3676
3677 return;
3678 }
3679 /* adds all of the abowe to the system */
3680 void hcommands_add(void)
3681 {
3682 hcommand_add("help", H_PEON, helpmod_cmd_help,"Offers the H1 type help");
3683 hcommand_add("status",H_OPER, helpmod_cmd_status,"Gives service status");
3684 hcommand_add("load", H_OPER, helpmod_cmd_load,"Loads a new help database");
3685 hcommand_add("aliases",H_STAFF, helpmod_cmd_aliases,"Lists all aliases currently in use");
3686 hcommand_add("showcommands", H_LAMER, helpmod_cmd_showcommands,"Lists all commands available to you");
3687
3688 hcommand_add("improper", H_STAFF, helpmod_cmd_improper, "Sets the userlevel of the target to banned (lvl 0). Long term ban.");
3689 hcommand_add("peon", H_STAFF, helpmod_cmd_peon, "Sets the userlevel of the target to peon (lvl 1)");
3690 hcommand_add("friend", H_STAFF, helpmod_cmd_friend, "Sets the userlevel of the target to friend (lvl 2)");
3691 hcommand_add("trial", H_OPER, helpmod_cmd_trial, "Sets the userlevel of the target to trial staff (lvl 3)");
3692 hcommand_add("staff", H_OPER, helpmod_cmd_staff, "Sets the userlevel of the target to staff (lvl 4)");
3693
3694 hcommand_add("oper", H_OPER, helpmod_cmd_oper, "Sets the userlevel of the target to oper (lvl 5)");
3695 hcommand_add("admin", H_ADMIN, helpmod_cmd_admin, "Sets the userlevel of the target to admin (lvl 6)");
3696 hcommand_add("deluser", H_OPER, helpmod_cmd_deluser, "Removes an account from " HELPMOD_NICK);
3697 hcommand_add("listuser", H_STAFF, helpmod_cmd_listuser, "Lists user accounts of " HELPMOD_NICK);
3698
3699 hcommand_add("chanconf", H_STAFF, helpmod_cmd_chanconf, "Channel configuration");
3700 hcommand_add("acconf", H_TRIAL, helpmod_cmd_acconf, "Personalise " HELPMOD_NICK " behaviour");
3701 hcommand_add("welcome", H_STAFF, helpmod_cmd_welcome, "Views or changes the channel welcome message");
3702 hcommand_add("censor", H_STAFF, helpmod_cmd_censor, "Handles the censored patterns for a channel");
3703
3704 hcommand_add("queue", H_TRIAL, helpmod_cmd_queue, "Handles the channel queue");
3705 hcommand_add("next", H_TRIAL, helpmod_cmd_next, "Same as queue next");
3706 hcommand_add("done", H_TRIAL, helpmod_cmd_done, "Same as queue done");
3707 hcommand_add("enqueue", H_TRIAL, helpmod_cmd_enqueue, "Same as queue on or chanconf +3");
3708 hcommand_add("dequeue", H_TRIAL, helpmod_cmd_dequeue, "Same as queue off or chanconf -3");
3709 hcommand_add("autoqueue", H_TRIAL, helpmod_cmd_autoqueue, "Same as queue maintain");
3710
3711 hcommand_add("?", H_PEON, helpmod_cmd_term_find, "Same as term find with multiple targets");
3712 hcommand_add("?+", H_TRIAL, helpmod_cmd_term_find_plus, "Multitarget term find which advances the queue");
3713 hcommand_add("?-", H_TRIAL, helpmod_cmd_term_find_minus, "Multitarget term find which removes users from queue");
3714 hcommand_add("term", H_STAFF, helpmod_cmd_term, "Term handling");
3715
3716 hcommand_add("klingon", H_OPER, helpmod_cmd_klingon, "Phrases in klingon, both targeted and general");
3717 hcommand_add("out", H_STAFF, helpmod_cmd_out, "Sets the userlevel of the target to banned (lvl 0) for a short while");
3718 hcommand_add("kick", H_TRIAL, helpmod_cmd_kick, "Kicks user(s) from a channel");
3719 hcommand_add("ban", H_STAFF, helpmod_cmd_ban, "Handles global bans");
3720 hcommand_add("chanban", H_TRIAL, helpmod_cmd_chanban, "Handles channel bans");
3721 hcommand_add("dnmo", H_STAFF, helpmod_cmd_dnmo, "DoNotMessageOpers informs the luser of his mistake and sets him to the bottom of the queue");
3722 hcommand_add("lamercontrol", H_OPER, helpmod_cmd_lamercontrol, "Views or changes the channel lamercontrol profile");
3723 hcommand_add("topic", H_STAFF, helpmod_cmd_topic, "Handles the topic of a channel");
3724 hcommand_add("idlekick", H_OPER, helpmod_cmd_idlekick, "Views or sets the idle kick time");
3725 hcommand_add("everyoneout", H_STAFF, helpmod_cmd_everyoneout, "Removes all normal users from a channel and enforces +i");
3726
3727 hcommand_add("stats", H_STAFF, helpmod_cmd_stats, "Shows staff activity statistics");
3728 hcommand_add("chanstats", H_STAFF, helpmod_cmd_chanstats, "Shows channel activity statistics");
3729 hcommand_add("activestaff", H_ADMIN, helpmod_cmd_activestaff, "Shows active staff members for a channel");
3730 hcommand_add("top10", H_STAFF, helpmod_cmd_top10, "Shows the top 10 most active staff");
3731 hcommand_add("report", H_OPER, helpmod_cmd_report, "Sets the channel where to report this channels statistics every 5 minutes");
3732
3733 hcommand_add("whoami", H_LAMER, helpmod_cmd_whoami, "Tells who you are to " HELPMOD_NICK);
3734 hcommand_add("whois", H_STAFF, helpmod_cmd_whois, "Tells you who someone is");
3735 hcommand_add("command", H_LAMER, helpmod_cmd_command, "Gives detailed information on a command");
3736 hcommand_add("addchan", H_ADMIN, helpmod_cmd_addchan, "Joins " HELPMOD_NICK " to a new channel");
3737 hcommand_add("delchan", H_ADMIN, helpmod_cmd_delchan, "Removes " HELPMOD_NICK " permanently from a channel");
3738
3739 hcommand_add("seen", H_STAFF, helpmod_cmd_seen, "Tells when a specific user/account has had activity");
3740 hcommand_add("op", H_STAFF, helpmod_cmd_op, "Sets mode +o on channels");
3741 hcommand_add("deop", H_STAFF, helpmod_cmd_deop, "Sets mode -o on channels");
3742 hcommand_add("voice", H_TRIAL, helpmod_cmd_voice, "Sets mode +v on channels");
3743 hcommand_add("devoice", H_TRIAL, helpmod_cmd_devoice, "Sets mode -v on channels");
3744
3745 hcommand_add("invite", H_PEON, helpmod_cmd_invite, "Invites you to a channel");
3746 hcommand_add("ticket", H_TRIAL, helpmod_cmd_ticket, "Gives a ticket to be used with invite");
3747 hcommand_add("resolve", H_STAFF, helpmod_cmd_resolve, "Resolves (deletes) a ticket");
3748 hcommand_add("tickets", H_STAFF, helpmod_cmd_tickets, "Lists all valid tickets for a channel");
3749 hcommand_add("showticket", H_STAFF, helpmod_cmd_showticket, "Shows the ticket for the user");
3750
3751 hcommand_add("termstats", H_OPER, helpmod_cmd_termstats, "Lists usage statistics for terms");
3752 hcommand_add("checkchannel", H_STAFF, helpmod_cmd_checkchannel, "Shows channel information for any channel");
3753 hcommand_add("message", H_TRIAL, helpmod_cmd_message, "Sends a message to a channel");
3754 hcommand_add("version", H_PEON, helpmod_cmd_version, "G version information");
3755 hcommand_add("ticketmsg", H_STAFF, helpmod_cmd_ticketmsg, "Handle the ticket message for a channel");
3756
3757 hcommand_add("lcedit", H_ADMIN, helpmod_cmd_lcedit, "Lamer control profile manager");
3758 hcommand_add("ged", H_STAFF, helpmod_cmd_ged, "Ged IRC text editor");
3759 hcommand_add("text", H_PEON, helpmod_cmd_text, "Lists or shows text files");
3760 hcommand_add("evilhack1", H_ADMIN, helpmod_cmd_evilhack1, "An evil hack, don't use");
3761 hcommand_add("evilhack2", H_ADMIN, helpmod_cmd_evilhack2, "Another evil hack, don't use");
3762
3763 hcommand_add("statsdump", H_ADMIN, helpmod_cmd_statsdump, "Statistics dump command");
3764 hcommand_add("statsrepair", H_ADMIN, helpmod_cmd_statsrepair, "Statistics repair command");
3765 hcommand_add("statsreset", H_ADMIN, helpmod_cmd_statsreset, "Statistics reset command");
3766 hcommand_add("rating", H_TRIAL, helpmod_cmd_rating, "Simple rating for the current week");
3767 hcommand_add("writedb", H_OPER, helpmod_cmd_writedb, "Writes the " HELPMOD_NICK " database to disk");
3768
3769 hcommand_add("channel", H_TRIAL, helpmod_cmd_channel, "Gives a list of all channel users");
3770 hcommand_add("weekstats", H_ADMIN, helpmod_cmd_weekstats, "Gives weekly stats for a channel");
3771 /*hcommand_add("megod", H_PEON, helpmod_cmd_megod, "Gives you userlevel 4, if you see this in the final version, please kill strutsi");*/
3772 /*hcommand_add("test", H_PEON, helpmod_cmd_test, "Gives you userlevel 4, if you see this in the final version, please kill strutsi");*/
3773 }
3774
3775 void helpmod_command(huser *sender, channel* returntype, char *args)
3776 {
3777 int argc = 0, useless_var;
3778 char args_copy[512];
3779 char *parsed_args[H_CMD_MAX_ARGS + 4], *ptr = args_copy;
3780
3781 /* only accept commands from valid sources */
3782 if (huser_get_level(sender) > H_ADMIN)
3783 return;
3784
3785 if (returntype && !strncmp(args, helpmodnick->nick, strlen(helpmodnick->nick)))
3786 {
3787 if (!args[1])
3788 return;
3789 else
3790 args+=strlen(helpmodnick->nick)+1;
3791 }
3792
3793 if (*args == '-' || *args == '?')
3794 args++;
3795
3796 strncpy(args_copy, args, (sizeof(args_copy) - 1));
3797 args_copy[sizeof(args_copy) - 1] = '\0';
3798
3799 /* FIX stringituki */
3800 while (argc < (H_CMD_MAX_ARGS + 4))
3801 {
3802 while (isspace(*ptr) && *ptr)
3803 ptr++;
3804
3805 if (*ptr == '\0')
3806 break;
3807
3808 if (*ptr == '"' && strchr(ptr+1, '"'))
3809 { /* string support */
3810 parsed_args[argc++] = ptr+1;
3811 ptr = strchr(ptr+1, '"');
3812
3813 *(ptr++) = '\0';
3814
3815 while (!isspace(*ptr) && *ptr)
3816 ptr++;
3817
3818 if (*ptr == '\0')
3819 break;
3820 }
3821 else
3822 {
3823 parsed_args[argc++] = ptr;
3824
3825 while (!isspace(*ptr) && *ptr)
3826 ptr++;
3827
3828 if (*ptr == '\0')
3829 break;
3830
3831 *(ptr++) = '\0';
3832 }
3833 }
3834
3835 if (!argc)
3836 return;
3837
3838 /* old H compatibility */
3839 if (sscanf(parsed_args[0], "%d", &useless_var) && returntype == NULL)
3840 {
3841 helpmod_cmd_help(sender, NULL, parsed_args[0], 1, NULL);
3842 return;
3843 }
3844
3845 {
3846 char *ostr = args, **argv = (char**)&parsed_args;
3847 hcommand *hcom = hcommand_get(parsed_args[0], huser_get_level(sender));
3848
3849 if (hcom == NULL)
3850 {
3851 controlwall(NO_DEVELOPER, NL_ALL_COMMANDS, "(G) From: %s!%s@%s%s%s: %s",
3852 sender->real_user->nick, sender->real_user->ident,
3853 sender->real_user->host->name->content, IsAccount(sender->real_user)?"/":"",
3854 IsAccount(sender->real_user)?sender->real_user->authname:"", args);
3855 if ((returntype == NULL) ||
3856 (sender->account != NULL && !(sender->account->flags & H_NO_CMD_ERROR)))
3857 helpmod_reply(sender, returntype, "Unknown command '%s', please see showcommands for a list of all commands available to you", parsed_args[0]);
3858 }
3859 else
3860 {
3861 controlwall(NO_DEVELOPER, NL_ALL_COMMANDS, "(G) From: %s!%s@%s%s%s: %s", sender->real_user->nick, sender->real_user->ident, sender->real_user->host->name->content, IsAccount(sender->real_user)?"/":"", IsAccount(sender->real_user)?sender->real_user->authname:"", args);
3862 SKIP_WORD;
3863 hcom->function(sender, returntype, ostr, argc, argv);
3864 }
3865 }
3866 }
3867
3868 #undef SKIP_WORD
3869 #undef DEFINE_HCHANNEL
3870 #undef HCHANNEL_VERIFY_AUTHORITY