zynk/cmd_tell.h

53 lines
1.8 KiB
C
Raw Permalink Normal View History

#ifndef CMD_TELL_H
#define CMD_TELL_H
#include "zynk.h"
/*
* cmd_tell - Handle the "!tell <nick> <message>" command.
*
* Stores a pending message in the tell table to be delivered to the
* target nick when they next speak. Validates that the sender is not
* trying to tell themselves something. Confirms with "Ok, I'll tell
* <nick> when they're around." Rate-limited.
*
* Parameters:
* s - The IRC session.
* msg - The raw IRC message text.
* reply_target - Channel or nick to send the response to.
* src_nick - The nick of the user who issued the command.
*
* Returns: 1 if the command was matched, 0 otherwise.
*/
int cmd_tell(Session *s, const char *msg, const char *reply_target, const char *src_nick) {
if (strncmp(msg, "!tell", 5) != 0) return 0;
if (msg[5] != ' ') return 0;
2026-07-25 20:37:07 +02:00
if (rate_limit_check(src_nick, reply_target, current_userhost) < 0) return 1;
const char *rest = msg + 6;
while (*rest == ' ') rest++;
if (!*rest) {
irc_reply(s, reply_target, src_nick, "Usage: !tell <nick> <message>");
return 1;
}
char target[32];
int i = 0;
while (*rest && *rest != ' ' && i < 31) target[i++] = *rest++;
target[i] = 0;
while (*rest == ' ') rest++;
if (!*rest) {
irc_reply(s, reply_target, src_nick, "Usage: !tell <nick> <message>");
return 1;
}
if (strcasecmp(target, src_nick) == 0) {
irc_reply(s, reply_target, src_nick, "You can't tell yourself something!");
return 1;
}
tell_add(src_nick, target, rest);
char resp[256];
snprintf(resp, sizeof resp, "Ok, I'll tell %s when they're around.", target);
irc_reply(s, reply_target, src_nick, resp);
log_stamp(); fprintf(stderr, CLR_CYAN "TELL %s from %s in %s:" CLR_RESET " -> %s: %s\n", reply_target, src_nick, reply_target, target, rest);
return 1;
}
#endif