core_binds.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*
  2. * core_binds.c -- handles:
  3. *
  4. * binds for the CORE
  5. *
  6. */
  7. #include "common.h"
  8. #include "dccutil.h"
  9. #include "userrec.h"
  10. #include "main.h"
  11. #include "settings.h"
  12. #include "users.h"
  13. #include "misc.h"
  14. #include "tclhash.h"
  15. #include "cfg.h"
  16. extern cmd_t C_dcc[];
  17. static bind_table_t *BT_away = NULL, *BT_dcc = NULL;
  18. static bind_table_t *BT_note = NULL;
  19. static bind_table_t *BT_bot = NULL, *BT_nkch = NULL, *BT_chon = NULL;
  20. static bind_table_t *BT_time = NULL;
  21. void core_binds_init()
  22. {
  23. BT_away = bind_table_add("away", 3, "sis", MATCH_MASK, BIND_STACKABLE);
  24. BT_bot = bind_table_add("bot", 3, "sss", MATCH_EXACT, 0);
  25. BT_chon = bind_table_add("chon", 2, "si", MATCH_MASK | MATCH_FLAGS, BIND_STACKABLE);
  26. BT_dcc = bind_table_add("dcc", 2, "is", MATCH_PARTIAL | MATCH_FLAGS, 0);
  27. add_builtins("dcc", C_dcc);
  28. BT_nkch = bind_table_add("nkch", 2, "ss", MATCH_MASK, BIND_STACKABLE);
  29. BT_note = bind_table_add("note", 3 , "sss", MATCH_EXACT, 0);
  30. BT_time = bind_table_add("time", 5, "iiiii", MATCH_MASK, BIND_STACKABLE);
  31. }
  32. void check_bind_dcc(const char *cmd, int idx, const char *text)
  33. {
  34. struct flag_record fr = {FR_GLOBAL | FR_CHAN, 0, 0, 0 };
  35. bind_entry_t *entry = NULL;
  36. bind_table_t *table = NULL;
  37. char *args = strdup(text);
  38. get_user_flagrec(dcc[idx].user, &fr, dcc[idx].u.chat->con_chan);
  39. table = bind_table_lookup("dcc");
  40. for (entry = table->entries; entry && entry->next; entry = entry->next) {
  41. if (!egg_strcasecmp(cmd, entry->mask)) {
  42. if (has_cmd_pass(cmd)) {
  43. if (flagrec_ok(&entry->user_flags, &fr)) {
  44. char *p = NULL, work[1024] = "", pass[128] = "";
  45. p = strchr(args, ' ');
  46. if (p)
  47. *p = 0;
  48. strlcpy(pass, args, sizeof(pass));
  49. if (check_cmd_pass(cmd, pass)) {
  50. if (p)
  51. *p = ' ';
  52. strlcpy(work, args, sizeof(work));
  53. p = work;
  54. newsplit(&p);
  55. strcpy(args, p);
  56. } else {
  57. dprintf(idx, "Invalid command password.\nUse: $b%scommand <password> [arguments]$b\n", settings.dcc_prefix);
  58. putlog(LOG_CMDS, "*", "$ #%s# %s %s", dcc[idx].nick, cmd, args);
  59. putlog(LOG_MISC, "*", "%s attempted %s%s with missing or incorrect command password", dcc[idx].nick, settings.dcc_prefix, cmd);
  60. free(args);
  61. return;
  62. }
  63. } else {
  64. putlog(LOG_CMDS, "*", "! #%s# %s %s", dcc[idx].nick, cmd, args);
  65. dprintf(idx, "What? You need '%shelp'\n", settings.dcc_prefix);
  66. free(args);
  67. return;
  68. }
  69. }
  70. break;
  71. }
  72. }
  73. int hits = 0;
  74. check_bind_hits(BT_dcc, cmd, &fr, &hits, idx, args);
  75. if (hits != 1)
  76. putlog(LOG_CMDS, "*", "! #%s# %s %s", dcc[idx].nick, cmd, args);
  77. if (hits == 0)
  78. dprintf(idx, "What? You need '%shelp'\n", settings.dcc_prefix);
  79. else if (hits > 1)
  80. dprintf(idx, "Ambiguous command.\n");
  81. free(args);
  82. }
  83. void check_bind_bot(const char *nick, const char *code, const char *param)
  84. {
  85. char *mynick = NULL, *myparam = NULL, *p1 = NULL, *p2 = NULL;
  86. mynick = p1 = strdup(nick);
  87. myparam = p2 = strdup(param);
  88. check_bind(BT_bot, code, NULL, mynick, code, myparam);
  89. free(p1);
  90. free(p2);
  91. }
  92. void check_bind_chon(char *hand, int idx)
  93. {
  94. struct flag_record fr = {FR_GLOBAL | FR_CHAN, 0, 0, 0 };
  95. struct userrec *u = NULL;
  96. u = get_user_by_handle(userlist, hand);
  97. touch_laston(u, "partyline", now);
  98. get_user_flagrec(u, &fr, NULL);
  99. check_bind(BT_chon, hand, &fr, hand, idx);
  100. }
  101. void check_bind_chof(char *hand, int idx)
  102. {
  103. struct userrec *u = NULL;
  104. u = get_user_by_handle(userlist, hand);
  105. touch_laston(u, "partyline", now);
  106. }
  107. void check_bind_nkch(const char *ohand, const char *nhand)
  108. {
  109. check_bind(BT_nkch, ohand, NULL, ohand, nhand);
  110. }
  111. int check_bind_note(const char *from, const char *to, const char *text)
  112. {
  113. return check_bind(BT_note, to, NULL, from, to, text);
  114. }
  115. void check_bind_away(const char *bot, int idx, const char *msg)
  116. {
  117. check_bind(BT_away, bot, NULL, bot, idx, msg);
  118. }
  119. void check_bind_time(struct tm *tm)
  120. {
  121. char full[32] = "";
  122. egg_snprintf(full, sizeof(full), "%02d %02d %02d %02d %04d", tm->tm_min, tm->tm_hour, tm->tm_mday, tm->tm_mon, tm->tm_year + 1900);
  123. check_bind(BT_time, full, NULL, tm->tm_min, tm->tm_hour, tm->tm_mday, tm->tm_mon, tm->tm_year + 1900);
  124. }