2020-02-01 06:18:01 +00:00
|
|
|
/* Copyright (C) 2020 C. McEnroe <june@causal.agency>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-02-08 05:25:09 +00:00
|
|
|
#include <assert.h>
|
2020-02-06 09:18:15 +00:00
|
|
|
#include <ctype.h>
|
2020-02-01 06:18:01 +00:00
|
|
|
#include <err.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sysexits.h>
|
|
|
|
|
|
|
|
#include "chat.h"
|
|
|
|
|
2020-02-08 08:15:17 +00:00
|
|
|
struct Replies replies;
|
|
|
|
|
2020-02-01 06:18:01 +00:00
|
|
|
static const char *CapNames[] = {
|
2020-02-01 07:19:55 +00:00
|
|
|
#define X(name, id) [id##Bit] = name,
|
2020-02-01 06:18:01 +00:00
|
|
|
ENUM_CAP
|
|
|
|
#undef X
|
|
|
|
};
|
|
|
|
|
|
|
|
static enum Cap capParse(const char *list) {
|
|
|
|
enum Cap caps = 0;
|
|
|
|
while (*list) {
|
|
|
|
enum Cap cap = 0;
|
|
|
|
size_t len = strcspn(list, " ");
|
|
|
|
for (size_t i = 0; i < ARRAY_LEN(CapNames); ++i) {
|
|
|
|
if (len != strlen(CapNames[i])) continue;
|
|
|
|
if (strncmp(list, CapNames[i], len)) continue;
|
|
|
|
cap = 1 << i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
caps |= cap;
|
|
|
|
list += len;
|
|
|
|
if (*list) list++;
|
|
|
|
}
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *capList(enum Cap caps) {
|
|
|
|
static char buf[1024];
|
|
|
|
buf[0] = '\0';
|
|
|
|
for (size_t i = 0; i < ARRAY_LEN(CapNames); ++i) {
|
|
|
|
if (caps & (1 << i)) {
|
|
|
|
if (buf[0]) strlcat(buf, " ", sizeof(buf));
|
|
|
|
strlcat(buf, CapNames[i], sizeof(buf));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void require(struct Message *msg, bool origin, uint len) {
|
2020-02-02 08:13:50 +00:00
|
|
|
if (origin) {
|
|
|
|
if (!msg->nick) errx(EX_PROTOCOL, "%s missing origin", msg->cmd);
|
|
|
|
if (!msg->user) msg->user = msg->nick;
|
|
|
|
if (!msg->host) msg->host = msg->user;
|
2020-02-01 06:18:01 +00:00
|
|
|
}
|
2020-02-16 03:19:55 +00:00
|
|
|
for (uint i = 0; i < len; ++i) {
|
2020-02-01 06:18:01 +00:00
|
|
|
if (msg->params[i]) continue;
|
2020-02-16 03:19:55 +00:00
|
|
|
errx(EX_PROTOCOL, "%s missing parameter %u", msg->cmd, 1 + i);
|
2020-02-01 06:18:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-03 23:41:52 +00:00
|
|
|
static const time_t *tagTime(const struct Message *msg) {
|
|
|
|
static time_t time;
|
|
|
|
struct tm tm;
|
2020-02-02 06:58:03 +00:00
|
|
|
if (!msg->tags[TagTime]) return NULL;
|
2020-02-03 23:41:52 +00:00
|
|
|
if (!strptime(msg->tags[TagTime], "%FT%T", &tm)) return NULL;
|
|
|
|
time = timegm(&tm);
|
|
|
|
return &time;
|
2020-02-02 06:58:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef void Handler(struct Message *msg);
|
|
|
|
|
2020-02-20 06:38:31 +00:00
|
|
|
static void handleErrorGeneric(struct Message *msg) {
|
|
|
|
require(msg, false, 2);
|
|
|
|
if (msg->params[2]) {
|
|
|
|
size_t len = strlen(msg->params[2]);
|
|
|
|
if (msg->params[2][len - 1] == '.') msg->params[2][len - 1] = '\0';
|
|
|
|
uiFormat(
|
|
|
|
Network, Warm, tagTime(msg),
|
|
|
|
"%s: %s", msg->params[2], msg->params[1]
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
uiFormat(
|
|
|
|
Network, Warm, tagTime(msg),
|
|
|
|
"%s", msg->params[1]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-02 07:30:35 +00:00
|
|
|
static void handleErrorNicknameInUse(struct Message *msg) {
|
|
|
|
require(msg, false, 2);
|
2020-02-20 06:38:31 +00:00
|
|
|
if (!strcmp(self.nick, "*")) {
|
|
|
|
ircFormat("NICK :%s_\r\n", msg->params[1]);
|
|
|
|
} else {
|
|
|
|
handleErrorGeneric(msg);
|
|
|
|
}
|
2020-02-02 07:30:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void handleErrorErroneousNickname(struct Message *msg) {
|
|
|
|
require(msg, false, 3);
|
2020-02-13 00:30:07 +00:00
|
|
|
if (!strcmp(self.nick, "*")) {
|
|
|
|
errx(EX_CONFIG, "%s: %s", msg->params[1], msg->params[2]);
|
|
|
|
} else {
|
2020-02-20 06:38:31 +00:00
|
|
|
handleErrorGeneric(msg);
|
2020-02-13 00:30:07 +00:00
|
|
|
}
|
2020-02-02 07:30:35 +00:00
|
|
|
}
|
|
|
|
|
2020-02-01 06:18:01 +00:00
|
|
|
static void handleCap(struct Message *msg) {
|
|
|
|
require(msg, false, 3);
|
|
|
|
enum Cap caps = capParse(msg->params[2]);
|
|
|
|
if (!strcmp(msg->params[1], "LS")) {
|
|
|
|
caps &= ~CapSASL;
|
2020-02-29 06:03:46 +00:00
|
|
|
if (caps & CapConsumer && self.pos) {
|
|
|
|
ircFormat("CAP REQ %s=%zu\r\n", CapNames[CapConsumerBit], self.pos);
|
|
|
|
caps &= ~CapConsumer;
|
|
|
|
}
|
2020-02-06 08:44:49 +00:00
|
|
|
if (caps) {
|
|
|
|
ircFormat("CAP REQ :%s\r\n", capList(caps));
|
|
|
|
} else {
|
|
|
|
if (!(self.caps & CapSASL)) ircFormat("CAP END\r\n");
|
|
|
|
}
|
2020-02-01 06:18:01 +00:00
|
|
|
} else if (!strcmp(msg->params[1], "ACK")) {
|
|
|
|
self.caps |= caps;
|
|
|
|
if (caps & CapSASL) {
|
|
|
|
ircFormat("AUTHENTICATE %s\r\n", (self.plain ? "PLAIN" : "EXTERNAL"));
|
|
|
|
}
|
|
|
|
if (!(self.caps & CapSASL)) ircFormat("CAP END\r\n");
|
|
|
|
} else if (!strcmp(msg->params[1], "NAK")) {
|
|
|
|
errx(EX_CONFIG, "server does not support %s", msg->params[2]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-11 22:40:08 +00:00
|
|
|
#define BASE64_SIZE(len) (1 + ((len) + 2) / 3 * 4)
|
|
|
|
|
|
|
|
static void base64(char *dst, const byte *src, size_t len) {
|
|
|
|
static const char Base64[64] = {
|
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
|
|
|
|
};
|
|
|
|
size_t i = 0;
|
|
|
|
while (len > 2) {
|
|
|
|
dst[i++] = Base64[0x3F & (src[0] >> 2)];
|
|
|
|
dst[i++] = Base64[0x3F & (src[0] << 4 | src[1] >> 4)];
|
|
|
|
dst[i++] = Base64[0x3F & (src[1] << 2 | src[2] >> 6)];
|
|
|
|
dst[i++] = Base64[0x3F & src[2]];
|
|
|
|
src += 3;
|
|
|
|
len -= 3;
|
|
|
|
}
|
|
|
|
if (len) {
|
|
|
|
dst[i++] = Base64[0x3F & (src[0] >> 2)];
|
|
|
|
if (len > 1) {
|
|
|
|
dst[i++] = Base64[0x3F & (src[0] << 4 | src[1] >> 4)];
|
|
|
|
dst[i++] = Base64[0x3F & (src[1] << 2)];
|
|
|
|
} else {
|
|
|
|
dst[i++] = Base64[0x3F & (src[0] << 4)];
|
|
|
|
dst[i++] = '=';
|
|
|
|
}
|
|
|
|
dst[i++] = '=';
|
|
|
|
}
|
|
|
|
dst[i] = '\0';
|
|
|
|
}
|
|
|
|
|
2020-02-01 06:18:01 +00:00
|
|
|
static void handleAuthenticate(struct Message *msg) {
|
|
|
|
(void)msg;
|
|
|
|
if (!self.plain) {
|
|
|
|
ircFormat("AUTHENTICATE +\r\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
byte buf[299];
|
|
|
|
size_t len = 1 + strlen(self.plain);
|
|
|
|
if (sizeof(buf) < len) errx(EX_CONFIG, "SASL PLAIN is too long");
|
|
|
|
buf[0] = 0;
|
|
|
|
for (size_t i = 0; self.plain[i]; ++i) {
|
|
|
|
buf[1 + i] = (self.plain[i] == ':' ? 0 : self.plain[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
char b64[BASE64_SIZE(sizeof(buf))];
|
|
|
|
base64(b64, buf, len);
|
|
|
|
ircFormat("AUTHENTICATE ");
|
|
|
|
ircSend(b64, BASE64_SIZE(len));
|
|
|
|
ircFormat("\r\n");
|
|
|
|
|
|
|
|
explicit_bzero(b64, sizeof(b64));
|
|
|
|
explicit_bzero(buf, sizeof(buf));
|
|
|
|
explicit_bzero(self.plain, strlen(self.plain));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyLoggedIn(struct Message *msg) {
|
|
|
|
(void)msg;
|
|
|
|
ircFormat("CAP END\r\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleErrorSASLFail(struct Message *msg) {
|
|
|
|
require(msg, false, 2);
|
|
|
|
errx(EX_CONFIG, "%s", msg->params[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyWelcome(struct Message *msg) {
|
|
|
|
require(msg, false, 1);
|
|
|
|
set(&self.nick, msg->params[0]);
|
2020-02-09 07:16:17 +00:00
|
|
|
completeTouch(Network, self.nick, Default);
|
2020-02-08 08:15:17 +00:00
|
|
|
if (self.join) {
|
2020-02-16 03:19:55 +00:00
|
|
|
uint count = 1;
|
2020-02-08 08:15:17 +00:00
|
|
|
for (const char *ch = self.join; *ch && *ch != ' '; ++ch) {
|
|
|
|
if (*ch == ',') count++;
|
|
|
|
}
|
|
|
|
ircFormat("JOIN %s\r\n", self.join);
|
2020-02-11 01:24:07 +00:00
|
|
|
replies.join += count;
|
2020-02-08 08:15:17 +00:00
|
|
|
replies.topic += count;
|
|
|
|
replies.names += count;
|
|
|
|
}
|
2020-02-01 06:18:01 +00:00
|
|
|
}
|
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
static void handleReplyISupport(struct Message *msg) {
|
2020-02-16 03:19:55 +00:00
|
|
|
for (uint i = 1; i < ParamCap; ++i) {
|
2020-02-02 00:37:48 +00:00
|
|
|
if (!msg->params[i]) break;
|
|
|
|
char *key = strsep(&msg->params[i], "=");
|
|
|
|
if (!strcmp(key, "NETWORK")) {
|
2020-02-25 07:24:29 +00:00
|
|
|
if (!msg->params[i]) continue;
|
2020-02-15 09:54:53 +00:00
|
|
|
set(&network.name, msg->params[i]);
|
2020-02-02 06:58:03 +00:00
|
|
|
uiFormat(
|
|
|
|
Network, Cold, tagTime(msg),
|
|
|
|
"You arrive in %s", msg->params[i]
|
|
|
|
);
|
2020-03-23 17:13:43 +00:00
|
|
|
} else if (!strcmp(key, "USERLEN")) {
|
|
|
|
if (!msg->params[i]) continue;
|
|
|
|
network.userLen = strtoul(msg->params[i], NULL, 10);
|
|
|
|
} else if (!strcmp(key, "HOSTLEN")) {
|
|
|
|
if (!msg->params[i]) continue;
|
|
|
|
network.hostLen = strtoul(msg->params[i], NULL, 10);
|
2020-02-02 22:37:36 +00:00
|
|
|
} else if (!strcmp(key, "CHANTYPES")) {
|
2020-02-25 07:24:29 +00:00
|
|
|
if (!msg->params[i]) continue;
|
2020-02-15 09:54:53 +00:00
|
|
|
set(&network.chanTypes, msg->params[i]);
|
2020-02-02 22:37:36 +00:00
|
|
|
} else if (!strcmp(key, "PREFIX")) {
|
2020-02-15 10:29:54 +00:00
|
|
|
strsep(&msg->params[i], "(");
|
2020-04-05 17:11:19 +00:00
|
|
|
char *modes = strsep(&msg->params[i], ")");
|
|
|
|
char *prefixes = msg->params[i];
|
|
|
|
if (!modes || !prefixes || strlen(modes) != strlen(prefixes)) {
|
|
|
|
errx(EX_PROTOCOL, "invalid PREFIX value");
|
|
|
|
}
|
|
|
|
set(&network.prefixModes, modes);
|
|
|
|
set(&network.prefixes, prefixes);
|
2020-02-15 10:29:54 +00:00
|
|
|
} else if (!strcmp(key, "CHANMODES")) {
|
2020-04-05 17:11:19 +00:00
|
|
|
char *list = strsep(&msg->params[i], ",");
|
|
|
|
char *param = strsep(&msg->params[i], ",");
|
|
|
|
char *setParam = strsep(&msg->params[i], ",");
|
|
|
|
char *channel = strsep(&msg->params[i], ",");
|
|
|
|
if (!list || !param || !setParam || !channel) {
|
|
|
|
errx(EX_PROTOCOL, "invalid CHANMODES value");
|
|
|
|
}
|
|
|
|
set(&network.listModes, list);
|
|
|
|
set(&network.paramModes, param);
|
|
|
|
set(&network.setParamModes, setParam);
|
|
|
|
set(&network.channelModes, channel);
|
2020-02-16 23:31:50 +00:00
|
|
|
} else if (!strcmp(key, "EXCEPTS")) {
|
2020-04-03 21:10:52 +00:00
|
|
|
network.excepts = (msg->params[i] ?: "e")[0];
|
2020-02-16 23:31:50 +00:00
|
|
|
} else if (!strcmp(key, "INVEX")) {
|
2020-04-03 21:10:52 +00:00
|
|
|
network.invex = (msg->params[i] ?: "I")[0];
|
2020-02-02 00:37:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyMOTD(struct Message *msg) {
|
|
|
|
require(msg, false, 2);
|
|
|
|
char *line = msg->params[1];
|
2020-02-08 23:29:01 +00:00
|
|
|
urlScan(Network, msg->nick, line);
|
2020-02-05 05:24:54 +00:00
|
|
|
if (!strncmp(line, "- ", 2)) {
|
|
|
|
uiFormat(Network, Cold, tagTime(msg), "\3%d-\3\t%s", Gray, &line[2]);
|
|
|
|
} else {
|
|
|
|
uiFormat(Network, Cold, tagTime(msg), "%s", line);
|
|
|
|
}
|
2020-02-02 06:58:03 +00:00
|
|
|
}
|
|
|
|
|
2020-03-09 07:08:59 +00:00
|
|
|
static void handleErrorNoMOTD(struct Message *msg) {
|
|
|
|
(void)msg;
|
|
|
|
}
|
|
|
|
|
2020-02-02 08:13:50 +00:00
|
|
|
static void handleJoin(struct Message *msg) {
|
|
|
|
require(msg, true, 1);
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id = idFor(msg->params[0]);
|
2020-02-11 22:52:55 +00:00
|
|
|
if (!strcmp(msg->nick, self.nick)) {
|
2020-03-22 18:32:20 +00:00
|
|
|
if (!self.user || strcmp(self.user, msg->user)) {
|
2020-02-05 05:40:24 +00:00
|
|
|
set(&self.user, msg->user);
|
|
|
|
self.color = hash(msg->user);
|
|
|
|
}
|
2020-03-22 18:32:20 +00:00
|
|
|
if (!self.host || strcmp(self.host, msg->host)) {
|
|
|
|
set(&self.host, msg->host);
|
|
|
|
}
|
2020-02-02 08:27:50 +00:00
|
|
|
idColors[id] = hash(msg->params[0]);
|
2020-02-08 04:33:23 +00:00
|
|
|
completeTouch(None, msg->params[0], idColors[id]);
|
2020-02-11 01:24:07 +00:00
|
|
|
if (replies.join) {
|
|
|
|
uiShowID(id);
|
|
|
|
replies.join--;
|
|
|
|
}
|
2020-02-02 08:13:50 +00:00
|
|
|
}
|
2020-02-08 04:33:23 +00:00
|
|
|
completeTouch(id, msg->nick, hash(msg->user));
|
2020-02-09 05:53:55 +00:00
|
|
|
if (msg->params[2] && !strcasecmp(msg->params[2], msg->nick)) {
|
|
|
|
msg->params[2] = NULL;
|
|
|
|
}
|
2020-02-02 08:13:50 +00:00
|
|
|
uiFormat(
|
2020-03-31 18:30:42 +00:00
|
|
|
id, ignoreCheck(Cold, msg), tagTime(msg),
|
2020-02-09 05:53:55 +00:00
|
|
|
"\3%02d%s\3\t%s%s%sarrives in \3%02d%s\3",
|
|
|
|
hash(msg->user), msg->nick,
|
|
|
|
(msg->params[2] ? "(" : ""),
|
2020-04-03 21:10:52 +00:00
|
|
|
(msg->params[2] ?: ""),
|
2020-02-09 05:53:55 +00:00
|
|
|
(msg->params[2] ? ") " : ""),
|
|
|
|
hash(msg->params[0]), msg->params[0]
|
2020-02-02 08:13:50 +00:00
|
|
|
);
|
2020-03-25 22:58:48 +00:00
|
|
|
logFormat(id, tagTime(msg), "%s arrives in %s", msg->nick, msg->params[0]);
|
2020-02-02 08:13:50 +00:00
|
|
|
}
|
|
|
|
|
2020-03-22 18:32:20 +00:00
|
|
|
static void handleChghost(struct Message *msg) {
|
|
|
|
require(msg, true, 2);
|
|
|
|
if (strcmp(msg->nick, self.nick)) return;
|
|
|
|
if (!self.user || strcmp(self.user, msg->params[0])) {
|
|
|
|
set(&self.user, msg->params[0]);
|
|
|
|
self.color = hash(msg->params[0]);
|
|
|
|
}
|
|
|
|
if (!self.host || strcmp(self.host, msg->params[1])) {
|
|
|
|
set(&self.host, msg->params[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-06 06:16:35 +00:00
|
|
|
static void handlePart(struct Message *msg) {
|
|
|
|
require(msg, true, 1);
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id = idFor(msg->params[0]);
|
2020-02-11 22:52:55 +00:00
|
|
|
if (!strcmp(msg->nick, self.nick)) {
|
2020-02-08 04:44:03 +00:00
|
|
|
completeClear(id);
|
|
|
|
}
|
2020-02-08 04:33:23 +00:00
|
|
|
completeRemove(id, msg->nick);
|
2020-02-08 23:29:01 +00:00
|
|
|
urlScan(id, msg->nick, msg->params[1]);
|
2020-02-06 06:16:35 +00:00
|
|
|
uiFormat(
|
2020-03-31 18:30:42 +00:00
|
|
|
id, ignoreCheck(Cold, msg), tagTime(msg),
|
2020-02-06 06:16:35 +00:00
|
|
|
"\3%02d%s\3\tleaves \3%02d%s\3%s%s",
|
2020-02-06 07:07:39 +00:00
|
|
|
hash(msg->user), msg->nick, hash(msg->params[0]), msg->params[0],
|
2020-04-03 21:10:52 +00:00
|
|
|
(msg->params[1] ? ": " : ""), (msg->params[1] ?: "")
|
2020-02-06 06:16:35 +00:00
|
|
|
);
|
2020-03-25 22:58:48 +00:00
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s leaves %s%s%s",
|
|
|
|
msg->nick, msg->params[0],
|
2020-04-03 21:10:52 +00:00
|
|
|
(msg->params[1] ? ": " : ""), (msg->params[1] ?: "")
|
2020-03-25 22:58:48 +00:00
|
|
|
);
|
2020-02-06 06:16:35 +00:00
|
|
|
}
|
|
|
|
|
2020-02-08 05:58:17 +00:00
|
|
|
static void handleKick(struct Message *msg) {
|
|
|
|
require(msg, true, 2);
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id = idFor(msg->params[0]);
|
2020-02-11 22:52:55 +00:00
|
|
|
bool kicked = !strcmp(msg->params[1], self.nick);
|
2020-02-08 05:58:17 +00:00
|
|
|
completeTouch(id, msg->nick, hash(msg->user));
|
2020-02-08 23:29:01 +00:00
|
|
|
urlScan(id, msg->nick, msg->params[2]);
|
2020-02-08 05:58:17 +00:00
|
|
|
uiFormat(
|
|
|
|
id, (kicked ? Hot : Cold), tagTime(msg),
|
|
|
|
"%s\3%02d%s\17\tkicks \3%02d%s\3 out of \3%02d%s\3%s%s",
|
|
|
|
(kicked ? "\26" : ""),
|
|
|
|
hash(msg->user), msg->nick,
|
|
|
|
completeColor(id, msg->params[1]), msg->params[1],
|
|
|
|
hash(msg->params[0]), msg->params[0],
|
2020-04-03 21:10:52 +00:00
|
|
|
(msg->params[2] ? ": " : ""), (msg->params[2] ?: "")
|
2020-02-08 05:58:17 +00:00
|
|
|
);
|
2020-03-25 22:58:48 +00:00
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s kicks %s out of %s%s%s",
|
|
|
|
msg->nick, msg->params[1], msg->params[0],
|
2020-04-03 21:10:52 +00:00
|
|
|
(msg->params[2] ? ": " : ""), (msg->params[2] ?: "")
|
2020-03-25 22:58:48 +00:00
|
|
|
);
|
2020-02-08 05:58:17 +00:00
|
|
|
completeRemove(id, msg->params[1]);
|
|
|
|
if (kicked) completeClear(id);
|
|
|
|
}
|
|
|
|
|
2020-02-08 05:36:23 +00:00
|
|
|
static void handleNick(struct Message *msg) {
|
|
|
|
require(msg, true, 1);
|
2020-02-11 22:52:55 +00:00
|
|
|
if (!strcmp(msg->nick, self.nick)) {
|
2020-02-08 05:36:23 +00:00
|
|
|
set(&self.nick, msg->params[0]);
|
2020-02-10 06:29:30 +00:00
|
|
|
uiRead(); // Update prompt.
|
2020-02-08 05:36:23 +00:00
|
|
|
}
|
2020-03-30 23:44:45 +00:00
|
|
|
for (uint id; (id = completeID(msg->nick));) {
|
2020-02-11 23:23:04 +00:00
|
|
|
if (!strcmp(idNames[id], msg->nick)) {
|
|
|
|
set(&idNames[id], msg->params[0]);
|
|
|
|
}
|
2020-02-08 05:36:23 +00:00
|
|
|
uiFormat(
|
2020-03-31 18:30:42 +00:00
|
|
|
id, ignoreCheck(Cold, msg), tagTime(msg),
|
2020-02-08 05:36:23 +00:00
|
|
|
"\3%02d%s\3\tis now known as \3%02d%s\3",
|
|
|
|
hash(msg->user), msg->nick, hash(msg->user), msg->params[0]
|
|
|
|
);
|
2020-03-25 22:58:48 +00:00
|
|
|
if (id == Network) continue;
|
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s is now known as %s",
|
|
|
|
msg->nick, msg->params[0]
|
|
|
|
);
|
2020-02-08 05:36:23 +00:00
|
|
|
}
|
|
|
|
completeReplace(None, msg->nick, msg->params[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleQuit(struct Message *msg) {
|
|
|
|
require(msg, true, 0);
|
2020-03-30 23:44:45 +00:00
|
|
|
for (uint id; (id = completeID(msg->nick));) {
|
2020-02-08 23:29:01 +00:00
|
|
|
urlScan(id, msg->nick, msg->params[0]);
|
2020-02-08 05:36:23 +00:00
|
|
|
uiFormat(
|
2020-03-31 18:30:42 +00:00
|
|
|
id, ignoreCheck(Cold, msg), tagTime(msg),
|
2020-02-08 05:36:23 +00:00
|
|
|
"\3%02d%s\3\tleaves%s%s",
|
|
|
|
hash(msg->user), msg->nick,
|
2020-04-03 21:10:52 +00:00
|
|
|
(msg->params[0] ? ": " : ""), (msg->params[0] ?: "")
|
2020-02-08 05:36:23 +00:00
|
|
|
);
|
2020-03-25 22:58:48 +00:00
|
|
|
if (id == Network) continue;
|
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s leaves%s%s",
|
|
|
|
msg->nick,
|
2020-04-03 21:10:52 +00:00
|
|
|
(msg->params[0] ? ": " : ""), (msg->params[0] ?: "")
|
2020-03-25 22:58:48 +00:00
|
|
|
);
|
2020-02-08 05:36:23 +00:00
|
|
|
}
|
|
|
|
completeRemove(None, msg->nick);
|
|
|
|
}
|
|
|
|
|
2020-02-20 08:18:48 +00:00
|
|
|
static void handleInvite(struct Message *msg) {
|
|
|
|
require(msg, true, 2);
|
|
|
|
if (!strcmp(msg->params[0], self.nick)) {
|
|
|
|
uiFormat(
|
2020-03-31 18:30:42 +00:00
|
|
|
Network, ignoreCheck(Hot, msg), tagTime(msg),
|
2020-02-20 08:18:48 +00:00
|
|
|
"\3%02d%s\3\tinvites you to \3%02d%s\3",
|
|
|
|
hash(msg->user), msg->nick, hash(msg->params[1]), msg->params[1]
|
|
|
|
);
|
|
|
|
} else {
|
2020-03-25 22:58:48 +00:00
|
|
|
uint id = idFor(msg->params[1]);
|
2020-02-20 08:18:48 +00:00
|
|
|
uiFormat(
|
2020-03-25 22:58:48 +00:00
|
|
|
id, Cold, tagTime(msg),
|
2020-02-20 08:18:48 +00:00
|
|
|
"\3%02d%s\3\tinvites %s to \3%02d%s\3",
|
|
|
|
hash(msg->user), msg->nick,
|
|
|
|
msg->params[0],
|
|
|
|
hash(msg->params[1]), msg->params[1]
|
|
|
|
);
|
2020-03-25 22:58:48 +00:00
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s invites %s to %s",
|
|
|
|
msg->nick, msg->params[0], msg->params[1]
|
|
|
|
);
|
2020-02-20 08:18:48 +00:00
|
|
|
}
|
2020-02-20 06:52:58 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 08:18:48 +00:00
|
|
|
static void handleReplyInviting(struct Message *msg) {
|
|
|
|
require(msg, false, 3);
|
|
|
|
if (self.caps & CapInviteNotify) return;
|
|
|
|
struct Message invite = {
|
|
|
|
.nick = self.nick,
|
|
|
|
.user = self.user,
|
|
|
|
.cmd = "INVITE",
|
|
|
|
.params[0] = msg->params[1],
|
|
|
|
.params[1] = msg->params[2],
|
|
|
|
};
|
|
|
|
handleInvite(&invite);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleErrorUserOnChannel(struct Message *msg) {
|
2020-02-20 07:13:23 +00:00
|
|
|
require(msg, false, 4);
|
2020-02-20 08:18:48 +00:00
|
|
|
uint id = idFor(msg->params[2]);
|
2020-02-20 07:13:23 +00:00
|
|
|
uiFormat(
|
2020-02-20 08:18:48 +00:00
|
|
|
id, Cold, tagTime(msg),
|
|
|
|
"\3%02d%s\3 is already in \3%02d%s\3",
|
|
|
|
completeColor(id, msg->params[1]), msg->params[1],
|
|
|
|
hash(msg->params[2]), msg->params[2]
|
2020-02-20 07:13:23 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-02-08 05:25:09 +00:00
|
|
|
static void handleReplyNames(struct Message *msg) {
|
|
|
|
require(msg, false, 4);
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id = idFor(msg->params[2]);
|
2020-02-17 00:12:19 +00:00
|
|
|
char buf[1024] = "";
|
2020-02-08 05:25:09 +00:00
|
|
|
while (msg->params[3]) {
|
|
|
|
char *name = strsep(&msg->params[3], " ");
|
2020-02-16 03:19:05 +00:00
|
|
|
char *prefixes = strsep(&name, "!");
|
|
|
|
char *nick = &prefixes[strspn(prefixes, network.prefixes)];
|
2020-02-08 05:25:09 +00:00
|
|
|
char *user = strsep(&name, "@");
|
|
|
|
enum Color color = (user ? hash(user) : Default);
|
|
|
|
completeAdd(id, nick, color);
|
2020-02-09 03:55:11 +00:00
|
|
|
if (!replies.names) continue;
|
2020-02-17 00:12:19 +00:00
|
|
|
catf(
|
|
|
|
buf, sizeof(buf), "%s\3%02d%s\3",
|
|
|
|
(buf[0] ? ", " : ""), color, prefixes
|
2020-02-08 05:25:09 +00:00
|
|
|
);
|
|
|
|
}
|
2020-02-09 03:55:11 +00:00
|
|
|
if (!replies.names) return;
|
2020-02-08 05:25:09 +00:00
|
|
|
uiFormat(
|
|
|
|
id, Cold, tagTime(msg),
|
|
|
|
"In \3%02d%s\3 are %s",
|
|
|
|
hash(msg->params[2]), msg->params[2], buf
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-02-08 08:15:17 +00:00
|
|
|
static void handleReplyEndOfNames(struct Message *msg) {
|
|
|
|
(void)msg;
|
|
|
|
if (replies.names) replies.names--;
|
|
|
|
}
|
|
|
|
|
2020-02-06 07:07:39 +00:00
|
|
|
static void handleReplyNoTopic(struct Message *msg) {
|
|
|
|
require(msg, false, 2);
|
2020-02-08 08:15:17 +00:00
|
|
|
if (!replies.topic) return;
|
|
|
|
replies.topic--;
|
2020-02-06 07:07:39 +00:00
|
|
|
uiFormat(
|
|
|
|
idFor(msg->params[1]), Cold, tagTime(msg),
|
|
|
|
"There is no sign in \3%02d%s\3",
|
|
|
|
hash(msg->params[1]), msg->params[1]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyTopic(struct Message *msg) {
|
|
|
|
require(msg, false, 3);
|
2020-02-08 08:15:17 +00:00
|
|
|
if (!replies.topic) return;
|
|
|
|
replies.topic--;
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id = idFor(msg->params[1]);
|
2020-02-08 23:29:01 +00:00
|
|
|
urlScan(id, NULL, msg->params[2]);
|
2020-02-06 07:07:39 +00:00
|
|
|
uiFormat(
|
2020-02-08 23:29:01 +00:00
|
|
|
id, Cold, tagTime(msg),
|
2020-02-06 07:07:39 +00:00
|
|
|
"The sign in \3%02d%s\3 reads: %s",
|
|
|
|
hash(msg->params[1]), msg->params[1], msg->params[2]
|
|
|
|
);
|
2020-03-25 22:58:48 +00:00
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "The sign in %s reads: %s",
|
|
|
|
msg->params[1], msg->params[2]
|
|
|
|
);
|
2020-02-06 07:07:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void handleTopic(struct Message *msg) {
|
|
|
|
require(msg, true, 2);
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id = idFor(msg->params[0]);
|
2020-02-06 07:07:39 +00:00
|
|
|
if (msg->params[1][0]) {
|
2020-02-08 23:29:01 +00:00
|
|
|
urlScan(id, msg->nick, msg->params[1]);
|
2020-02-06 07:07:39 +00:00
|
|
|
uiFormat(
|
2020-02-08 23:29:01 +00:00
|
|
|
id, Warm, tagTime(msg),
|
2020-02-06 07:07:39 +00:00
|
|
|
"\3%02d%s\3\tplaces a new sign in \3%02d%s\3: %s",
|
|
|
|
hash(msg->user), msg->nick, hash(msg->params[0]), msg->params[0],
|
|
|
|
msg->params[1]
|
|
|
|
);
|
2020-03-25 22:58:48 +00:00
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s places a new sign in %s: %s",
|
|
|
|
msg->nick, msg->params[0], msg->params[1]
|
|
|
|
);
|
2020-02-06 07:07:39 +00:00
|
|
|
} else {
|
|
|
|
uiFormat(
|
2020-02-08 23:29:01 +00:00
|
|
|
id, Warm, tagTime(msg),
|
2020-02-06 07:07:39 +00:00
|
|
|
"\3%02d%s\3\tremoves the sign in \3%02d%s\3",
|
|
|
|
hash(msg->user), msg->nick, hash(msg->params[0]), msg->params[0]
|
|
|
|
);
|
2020-03-25 22:58:48 +00:00
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s removes the sign in %s",
|
|
|
|
msg->nick, msg->params[0]
|
|
|
|
);
|
2020-02-06 07:07:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-18 12:33:42 +00:00
|
|
|
static const char *UserModes[256] = {
|
|
|
|
['O'] = "local oper",
|
|
|
|
['i'] = "invisible",
|
|
|
|
['o'] = "oper",
|
|
|
|
['r'] = "registered",
|
|
|
|
['w'] = "wallops",
|
|
|
|
};
|
|
|
|
|
|
|
|
static void handleReplyUserModeIs(struct Message *msg) {
|
|
|
|
require(msg, false, 2);
|
2020-03-23 20:52:24 +00:00
|
|
|
if (!replies.mode) return;
|
|
|
|
replies.mode--;
|
|
|
|
|
2020-03-18 12:33:42 +00:00
|
|
|
char buf[1024] = "";
|
|
|
|
for (char *ch = msg->params[1]; *ch; ++ch) {
|
|
|
|
if (*ch == '+') continue;
|
2020-03-28 16:08:10 +00:00
|
|
|
const char *name = UserModes[(byte)*ch];
|
|
|
|
catf(
|
|
|
|
buf, sizeof(buf), ", +%c%s%s",
|
2020-04-03 21:10:52 +00:00
|
|
|
*ch, (name ? " " : ""), (name ?: "")
|
2020-03-28 16:08:10 +00:00
|
|
|
);
|
2020-03-18 12:33:42 +00:00
|
|
|
}
|
|
|
|
uiFormat(
|
|
|
|
Network, Warm, tagTime(msg),
|
2020-03-22 15:40:58 +00:00
|
|
|
"\3%02d%s\3\tis %s",
|
2020-03-28 16:08:10 +00:00
|
|
|
self.color, self.nick, (buf[0] ? &buf[2] : "modeless")
|
2020-03-18 12:33:42 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-03-22 15:18:21 +00:00
|
|
|
static const char *ChanModes[256] = {
|
|
|
|
['a'] = "protected",
|
|
|
|
['h'] = "halfop",
|
2020-02-25 07:54:15 +00:00
|
|
|
['i'] = "invite-only",
|
|
|
|
['k'] = "key",
|
|
|
|
['l'] = "client limit",
|
|
|
|
['m'] = "moderated",
|
|
|
|
['n'] = "no external messages",
|
|
|
|
['o'] = "operator",
|
2020-03-22 15:18:21 +00:00
|
|
|
['q'] = "founder",
|
2020-02-25 07:54:15 +00:00
|
|
|
['s'] = "secret",
|
|
|
|
['t'] = "protected topic",
|
|
|
|
['v'] = "voice",
|
|
|
|
};
|
|
|
|
|
2020-03-22 15:40:58 +00:00
|
|
|
static void handleReplyChannelModeIs(struct Message *msg) {
|
|
|
|
require(msg, false, 3);
|
2020-03-23 20:52:24 +00:00
|
|
|
if (!replies.mode) return;
|
|
|
|
replies.mode--;
|
|
|
|
|
2020-03-22 15:40:58 +00:00
|
|
|
uint param = 3;
|
|
|
|
char buf[1024] = "";
|
|
|
|
for (char *ch = msg->params[2]; *ch; ++ch) {
|
|
|
|
if (*ch == '+') continue;
|
|
|
|
const char *name = ChanModes[(byte)*ch];
|
|
|
|
if (
|
|
|
|
strchr(network.paramModes, *ch) ||
|
|
|
|
strchr(network.setParamModes, *ch)
|
|
|
|
) {
|
|
|
|
assert(param < ParamCap);
|
|
|
|
catf(
|
2020-03-28 16:08:10 +00:00
|
|
|
buf, sizeof(buf), ", +%c%s%s %s",
|
2020-04-03 21:10:52 +00:00
|
|
|
*ch, (name ? " " : ""), (name ?: ""),
|
2020-03-28 16:08:10 +00:00
|
|
|
msg->params[param++]
|
2020-03-22 15:40:58 +00:00
|
|
|
);
|
|
|
|
} else {
|
2020-03-28 16:08:10 +00:00
|
|
|
catf(
|
|
|
|
buf, sizeof(buf), ", +%c%s%s",
|
2020-04-03 21:10:52 +00:00
|
|
|
*ch, (name ? " " : ""), (name ?: "")
|
2020-03-28 16:08:10 +00:00
|
|
|
);
|
2020-03-22 15:40:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
uiFormat(
|
|
|
|
idFor(msg->params[1]), Cold, tagTime(msg),
|
2020-03-28 16:08:10 +00:00
|
|
|
"\3%02d%s\3\tis %s",
|
2020-03-22 15:40:58 +00:00
|
|
|
hash(msg->params[1]), msg->params[1],
|
2020-03-28 16:08:10 +00:00
|
|
|
(buf[0] ? &buf[2] : "modeless")
|
2020-03-22 15:40:58 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-02-20 09:18:25 +00:00
|
|
|
static void handleMode(struct Message *msg) {
|
|
|
|
require(msg, true, 2);
|
2020-03-22 15:26:16 +00:00
|
|
|
|
2020-02-20 09:18:25 +00:00
|
|
|
if (!strchr(network.chanTypes, msg->params[0][0])) {
|
2020-03-22 15:26:16 +00:00
|
|
|
bool set = true;
|
|
|
|
for (char *ch = msg->params[1]; *ch; ++ch) {
|
|
|
|
if (*ch == '+') { set = true; continue; }
|
|
|
|
if (*ch == '-') { set = false; continue; }
|
|
|
|
const char *name = UserModes[(byte)*ch];
|
2020-03-28 16:08:10 +00:00
|
|
|
uiFormat(
|
|
|
|
Network, Warm, tagTime(msg),
|
|
|
|
"\3%02d%s\3\t%ssets \3%02d%s\3 %c%c%s%s",
|
|
|
|
hash(msg->user), msg->nick,
|
|
|
|
(set ? "" : "un"),
|
|
|
|
self.color, msg->params[0],
|
2020-04-03 21:10:52 +00:00
|
|
|
set["-+"], *ch, (name ? " " : ""), (name ?: "")
|
2020-03-22 15:26:16 +00:00
|
|
|
);
|
|
|
|
}
|
2020-02-20 09:18:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-02-20 09:53:06 +00:00
|
|
|
|
2020-02-20 09:18:25 +00:00
|
|
|
uint id = idFor(msg->params[0]);
|
2020-03-22 15:18:21 +00:00
|
|
|
bool set = true;
|
2020-03-28 16:08:10 +00:00
|
|
|
uint i = 2;
|
2020-02-20 09:18:25 +00:00
|
|
|
for (char *ch = msg->params[1]; *ch; ++ch) {
|
2020-03-22 15:18:21 +00:00
|
|
|
if (*ch == '+') { set = true; continue; }
|
|
|
|
if (*ch == '-') { set = false; continue; }
|
|
|
|
|
2020-03-28 16:08:10 +00:00
|
|
|
const char *verb = (set ? "sets" : "unsets");
|
2020-03-22 15:18:21 +00:00
|
|
|
const char *name = ChanModes[(byte)*ch];
|
|
|
|
if (*ch == network.excepts) name = "except";
|
|
|
|
if (*ch == network.invex) name = "invite";
|
2020-03-28 16:08:10 +00:00
|
|
|
const char *mode = (const char[]) {
|
|
|
|
set["-+"], *ch, (name ? ' ' : '\0'), '\0'
|
|
|
|
};
|
|
|
|
if (!name) name = "";
|
2020-03-22 15:18:21 +00:00
|
|
|
|
|
|
|
if (strchr(network.prefixModes, *ch)) {
|
2020-04-05 17:17:38 +00:00
|
|
|
if (i >= ParamCap || !msg->params[i]) {
|
|
|
|
errx(EX_PROTOCOL, "MODE missing %s parameter", mode);
|
|
|
|
}
|
2020-03-28 16:08:10 +00:00
|
|
|
char *nick = msg->params[i++];
|
2020-03-22 15:18:21 +00:00
|
|
|
char prefix = network.prefixes[
|
|
|
|
strchr(network.prefixModes, *ch) - network.prefixModes
|
|
|
|
];
|
2020-03-28 16:08:10 +00:00
|
|
|
uiFormat(
|
|
|
|
id, Cold, tagTime(msg),
|
|
|
|
"\3%02d%s\3\t%s \3%02d%c%s\3 %s%s in \3%02d%s\3",
|
|
|
|
hash(msg->user), msg->nick, verb,
|
2020-03-22 15:18:21 +00:00
|
|
|
completeColor(id, nick), prefix, nick,
|
2020-03-28 16:08:10 +00:00
|
|
|
mode, name, hash(msg->params[0]), msg->params[0]
|
|
|
|
);
|
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s %s %c%s %s%s in %s",
|
|
|
|
msg->nick, verb, prefix, nick, mode, name, msg->params[0]
|
2020-02-20 09:18:25 +00:00
|
|
|
);
|
2020-03-22 15:18:21 +00:00
|
|
|
}
|
2020-02-20 09:53:06 +00:00
|
|
|
|
2020-03-22 15:18:21 +00:00
|
|
|
if (strchr(network.listModes, *ch)) {
|
2020-04-05 17:17:38 +00:00
|
|
|
if (i >= ParamCap || !msg->params[i]) {
|
|
|
|
errx(EX_PROTOCOL, "MODE missing %s parameter", mode);
|
|
|
|
}
|
2020-03-28 16:08:10 +00:00
|
|
|
char *mask = msg->params[i++];
|
2020-02-20 09:53:06 +00:00
|
|
|
if (*ch == 'b') {
|
2020-03-28 16:08:10 +00:00
|
|
|
verb = (set ? "bans" : "unbans");
|
|
|
|
uiFormat(
|
|
|
|
id, Cold, tagTime(msg),
|
|
|
|
"\3%02d%s\3\t%s %c%c %s from \3%02d%s\3",
|
|
|
|
hash(msg->user), msg->nick, verb, set["-+"], *ch, mask,
|
2020-02-20 09:53:06 +00:00
|
|
|
hash(msg->params[0]), msg->params[0]
|
|
|
|
);
|
2020-03-28 16:08:10 +00:00
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s %s %c%c %s from %s",
|
|
|
|
msg->nick, verb, set["-+"], *ch, mask, msg->params[0]
|
|
|
|
);
|
2020-03-22 15:18:21 +00:00
|
|
|
} else {
|
2020-03-28 16:08:10 +00:00
|
|
|
verb = (set ? "adds" : "removes");
|
|
|
|
const char *to = (set ? "to" : "from");
|
|
|
|
uiFormat(
|
|
|
|
id, Cold, tagTime(msg),
|
|
|
|
"\3%02d%s\3\t%s %s %s the \3%02d%s\3 %s%s list",
|
|
|
|
hash(msg->user), msg->nick, verb, mask, to,
|
|
|
|
hash(msg->params[0]), msg->params[0], mode, name
|
|
|
|
);
|
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s %s %s %s the %s %s%s list",
|
|
|
|
msg->nick, verb, mask, to, msg->params[0], mode, name
|
2020-03-22 15:18:21 +00:00
|
|
|
);
|
2020-02-20 09:53:06 +00:00
|
|
|
}
|
2020-03-22 15:18:21 +00:00
|
|
|
}
|
2020-02-20 09:53:06 +00:00
|
|
|
|
2020-03-22 15:18:21 +00:00
|
|
|
if (strchr(network.paramModes, *ch)) {
|
2020-04-05 17:17:38 +00:00
|
|
|
if (i >= ParamCap || !msg->params[i]) {
|
|
|
|
errx(EX_PROTOCOL, "MODE missing %s parameter", mode);
|
|
|
|
}
|
2020-03-28 16:08:10 +00:00
|
|
|
char *param = msg->params[i++];
|
|
|
|
uiFormat(
|
|
|
|
id, Cold, tagTime(msg),
|
|
|
|
"\3%02d%s\3\t%s \3%02d%s\3 %s%s %s",
|
|
|
|
hash(msg->user), msg->nick, verb,
|
|
|
|
hash(msg->params[0]), msg->params[0], mode, name, param
|
|
|
|
);
|
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s %s %s %s%s %s",
|
|
|
|
msg->nick, verb, msg->params[0], mode, name, param
|
2020-02-25 07:54:15 +00:00
|
|
|
);
|
2020-03-22 15:18:21 +00:00
|
|
|
}
|
2020-02-25 07:54:15 +00:00
|
|
|
|
2020-03-22 15:18:21 +00:00
|
|
|
if (strchr(network.setParamModes, *ch) && set) {
|
2020-04-05 17:17:38 +00:00
|
|
|
if (i >= ParamCap || !msg->params[i]) {
|
|
|
|
errx(EX_PROTOCOL, "MODE missing %s parameter", mode);
|
|
|
|
}
|
2020-03-28 16:08:10 +00:00
|
|
|
char *param = msg->params[i++];
|
|
|
|
uiFormat(
|
|
|
|
id, Cold, tagTime(msg),
|
|
|
|
"\3%02d%s\3\t%s \3%02d%s\3 %s%s %s",
|
|
|
|
hash(msg->user), msg->nick, verb,
|
|
|
|
hash(msg->params[0]), msg->params[0], mode, name, param
|
|
|
|
);
|
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s %s %s %s%s %s",
|
|
|
|
msg->nick, verb, msg->params[0], mode, name, param
|
2020-03-22 15:18:21 +00:00
|
|
|
);
|
2020-02-20 09:18:25 +00:00
|
|
|
} else if (strchr(network.setParamModes, *ch)) {
|
2020-03-28 16:08:10 +00:00
|
|
|
uiFormat(
|
|
|
|
id, Cold, tagTime(msg),
|
|
|
|
"\3%02d%s\3\t%s \3%02d%s\3 %s%s",
|
|
|
|
hash(msg->user), msg->nick, verb,
|
|
|
|
hash(msg->params[0]), msg->params[0], mode, name
|
|
|
|
);
|
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s %s %s %s%s",
|
|
|
|
msg->nick, verb, msg->params[0], mode, name
|
2020-03-22 15:18:21 +00:00
|
|
|
);
|
|
|
|
}
|
2020-02-25 07:54:15 +00:00
|
|
|
|
2020-03-22 15:18:21 +00:00
|
|
|
if (strchr(network.channelModes, *ch)) {
|
2020-03-28 16:08:10 +00:00
|
|
|
uiFormat(
|
|
|
|
id, Cold, tagTime(msg),
|
|
|
|
"\3%02d%s\3\t%s \3%02d%s\3 %s%s",
|
|
|
|
hash(msg->user), msg->nick, verb,
|
|
|
|
hash(msg->params[0]), msg->params[0], mode, name
|
|
|
|
);
|
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s %s %s %s%s",
|
|
|
|
msg->nick, verb, msg->params[0], mode, name
|
2020-02-25 07:54:15 +00:00
|
|
|
);
|
2020-02-20 09:18:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-20 10:04:58 +00:00
|
|
|
static void handleErrorChanopPrivsNeeded(struct Message *msg) {
|
|
|
|
require(msg, false, 3);
|
|
|
|
uiFormat(
|
|
|
|
idFor(msg->params[1]), Cold, tagTime(msg),
|
|
|
|
"%s", msg->params[2]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-02-20 08:18:48 +00:00
|
|
|
static void handleErrorUserNotInChannel(struct Message *msg) {
|
|
|
|
require(msg, false, 4);
|
|
|
|
uiFormat(
|
|
|
|
idFor(msg->params[2]), Cold, tagTime(msg),
|
|
|
|
"%s\tis not in \3%02d%s\3",
|
|
|
|
msg->params[1], hash(msg->params[2]), msg->params[2]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleErrorBanListFull(struct Message *msg) {
|
|
|
|
require(msg, false, 4);
|
|
|
|
uiFormat(
|
|
|
|
idFor(msg->params[1]), Cold, tagTime(msg),
|
2020-04-03 21:10:52 +00:00
|
|
|
"%s", (msg->params[4] ?: msg->params[3])
|
2020-02-20 08:18:48 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-02-20 02:47:16 +00:00
|
|
|
static void handleReplyBanList(struct Message *msg) {
|
|
|
|
require(msg, false, 3);
|
|
|
|
if (!replies.ban) return;
|
|
|
|
uint id = idFor(msg->params[1]);
|
|
|
|
if (msg->params[3] && msg->params[4]) {
|
|
|
|
char since[sizeof("0000-00-00 00:00:00")];
|
|
|
|
time_t time = strtol(msg->params[4], NULL, 10);
|
|
|
|
strftime(since, sizeof(since), "%F %T", localtime(&time));
|
|
|
|
uiFormat(
|
|
|
|
id, Cold, tagTime(msg),
|
2020-02-20 08:44:57 +00:00
|
|
|
"Banned from \3%02d%s\3 since %s by \3%02d%s\3: %s",
|
2020-02-20 02:47:16 +00:00
|
|
|
hash(msg->params[1]), msg->params[1],
|
2020-02-20 08:44:57 +00:00
|
|
|
since, completeColor(id, msg->params[3]), msg->params[3],
|
2020-02-20 02:47:16 +00:00
|
|
|
msg->params[2]
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
uiFormat(
|
|
|
|
id, Cold, tagTime(msg),
|
2020-02-20 08:44:57 +00:00
|
|
|
"Banned from \3%02d%s\3: %s",
|
2020-02-20 02:47:16 +00:00
|
|
|
hash(msg->params[1]), msg->params[1], msg->params[2]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyEndOfBanList(struct Message *msg) {
|
|
|
|
(void)msg;
|
|
|
|
if (replies.ban) replies.ban--;
|
|
|
|
}
|
|
|
|
|
2020-02-25 07:12:35 +00:00
|
|
|
static void onList(const char *list, struct Message *msg) {
|
|
|
|
uint id = idFor(msg->params[1]);
|
|
|
|
if (msg->params[3] && msg->params[4]) {
|
|
|
|
char since[sizeof("0000-00-00 00:00:00")];
|
|
|
|
time_t time = strtol(msg->params[4], NULL, 10);
|
|
|
|
strftime(since, sizeof(since), "%F %T", localtime(&time));
|
|
|
|
uiFormat(
|
|
|
|
id, Cold, tagTime(msg),
|
|
|
|
"On the \3%02d%s\3 %s list since %s by \3%02d%s\3: %s",
|
|
|
|
hash(msg->params[1]), msg->params[1], list,
|
|
|
|
since, completeColor(id, msg->params[3]), msg->params[3],
|
|
|
|
msg->params[2]
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
uiFormat(
|
|
|
|
id, Cold, tagTime(msg),
|
|
|
|
"On the \3%02d%s\3 %s list: %s",
|
|
|
|
hash(msg->params[1]), msg->params[1], list, msg->params[2]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyExceptList(struct Message *msg) {
|
|
|
|
require(msg, false, 3);
|
|
|
|
if (!replies.excepts) return;
|
|
|
|
onList("except", msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyEndOfExceptList(struct Message *msg) {
|
|
|
|
(void)msg;
|
|
|
|
if (replies.excepts) replies.excepts--;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyInviteList(struct Message *msg) {
|
|
|
|
require(msg, false, 3);
|
|
|
|
if (!replies.invex) return;
|
|
|
|
onList("invite", msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyEndOfInviteList(struct Message *msg) {
|
|
|
|
(void)msg;
|
|
|
|
if (replies.invex) replies.invex--;
|
|
|
|
}
|
|
|
|
|
2020-02-12 07:39:23 +00:00
|
|
|
static void handleReplyList(struct Message *msg) {
|
|
|
|
require(msg, false, 4);
|
|
|
|
if (!replies.list) return;
|
|
|
|
uiFormat(
|
|
|
|
Network, Warm, tagTime(msg),
|
|
|
|
"In \3%02d%s\3 are %ld under the banner: %s",
|
|
|
|
hash(msg->params[1]), msg->params[1],
|
|
|
|
strtol(msg->params[2], NULL, 10),
|
|
|
|
msg->params[3]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyListEnd(struct Message *msg) {
|
|
|
|
(void)msg;
|
|
|
|
if (!replies.list) return;
|
|
|
|
replies.list--;
|
|
|
|
}
|
|
|
|
|
2020-02-09 21:45:49 +00:00
|
|
|
static void handleReplyWhoisUser(struct Message *msg) {
|
|
|
|
require(msg, false, 6);
|
|
|
|
if (!replies.whois) return;
|
|
|
|
completeTouch(Network, msg->params[1], hash(msg->params[2]));
|
|
|
|
uiFormat(
|
|
|
|
Network, Warm, tagTime(msg),
|
|
|
|
"\3%02d%s\3\tis %s!%s@%s (%s)",
|
|
|
|
hash(msg->params[2]), msg->params[1],
|
|
|
|
msg->params[1], msg->params[2], msg->params[3], msg->params[5]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyWhoisServer(struct Message *msg) {
|
|
|
|
require(msg, false, 4);
|
|
|
|
if (!replies.whois) return;
|
|
|
|
uiFormat(
|
|
|
|
Network, Warm, tagTime(msg),
|
|
|
|
"\3%02d%s\3\tis connected to %s (%s)",
|
|
|
|
completeColor(Network, msg->params[1]), msg->params[1],
|
|
|
|
msg->params[2], msg->params[3]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyWhoisIdle(struct Message *msg) {
|
|
|
|
require(msg, false, 3);
|
|
|
|
if (!replies.whois) return;
|
|
|
|
unsigned long idle = strtoul(msg->params[2], NULL, 10);
|
|
|
|
const char *unit = "second";
|
2020-02-11 09:00:25 +00:00
|
|
|
if (idle / 60) {
|
|
|
|
idle /= 60; unit = "minute";
|
|
|
|
if (idle / 60) {
|
|
|
|
idle /= 60; unit = "hour";
|
|
|
|
if (idle / 24) {
|
|
|
|
idle /= 24; unit = "day";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-20 02:29:51 +00:00
|
|
|
char signon[sizeof("0000-00-00 00:00:00")];
|
2020-04-03 21:10:52 +00:00
|
|
|
time_t time = strtol((msg->params[3] ?: ""), NULL, 10);
|
2020-02-20 02:29:51 +00:00
|
|
|
strftime(signon, sizeof(signon), "%F %T", localtime(&time));
|
2020-02-09 21:45:49 +00:00
|
|
|
uiFormat(
|
|
|
|
Network, Warm, tagTime(msg),
|
2020-02-20 02:29:51 +00:00
|
|
|
"\3%02d%s\3\tis idle for %lu %s%s%s%s",
|
2020-02-09 21:45:49 +00:00
|
|
|
completeColor(Network, msg->params[1]), msg->params[1],
|
|
|
|
idle, unit, (idle != 1 ? "s" : ""),
|
2020-04-03 21:10:52 +00:00
|
|
|
(msg->params[3] ? ", signed on " : ""), (msg->params[3] ? signon : "")
|
2020-02-09 21:45:49 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyWhoisChannels(struct Message *msg) {
|
|
|
|
require(msg, false, 3);
|
|
|
|
if (!replies.whois) return;
|
2020-02-17 00:12:19 +00:00
|
|
|
char buf[1024] = "";
|
2020-02-09 21:45:49 +00:00
|
|
|
while (msg->params[2]) {
|
|
|
|
char *channel = strsep(&msg->params[2], " ");
|
2020-02-15 10:04:43 +00:00
|
|
|
char *name = &channel[strspn(channel, network.prefixes)];
|
2020-02-17 00:12:19 +00:00
|
|
|
catf(
|
|
|
|
buf, sizeof(buf), "%s\3%02d%s\3",
|
|
|
|
(buf[0] ? ", " : ""), hash(name), channel
|
2020-02-09 21:45:49 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
uiFormat(
|
|
|
|
Network, Warm, tagTime(msg),
|
|
|
|
"\3%02d%s\3\tis in %s",
|
|
|
|
completeColor(Network, msg->params[1]), msg->params[1], buf
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyWhoisGeneric(struct Message *msg) {
|
|
|
|
require(msg, false, 3);
|
|
|
|
if (!replies.whois) return;
|
|
|
|
if (msg->params[3]) {
|
|
|
|
msg->params[0] = msg->params[2];
|
|
|
|
msg->params[2] = msg->params[3];
|
|
|
|
msg->params[3] = msg->params[0];
|
|
|
|
}
|
|
|
|
uiFormat(
|
|
|
|
Network, Warm, tagTime(msg),
|
|
|
|
"\3%02d%s\3\t%s%s%s",
|
|
|
|
completeColor(Network, msg->params[1]), msg->params[1],
|
2020-04-03 21:10:52 +00:00
|
|
|
msg->params[2], (msg->params[3] ? " " : ""), (msg->params[3] ?: "")
|
2020-02-09 21:45:49 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleReplyEndOfWhois(struct Message *msg) {
|
|
|
|
require(msg, false, 2);
|
|
|
|
if (!replies.whois) return;
|
2020-02-11 22:52:55 +00:00
|
|
|
if (strcmp(msg->params[1], self.nick)) {
|
2020-02-09 21:45:49 +00:00
|
|
|
completeRemove(Network, msg->params[1]);
|
|
|
|
}
|
|
|
|
replies.whois--;
|
|
|
|
}
|
|
|
|
|
2020-02-12 05:17:28 +00:00
|
|
|
static void handleReplyAway(struct Message *msg) {
|
|
|
|
require(msg, false, 3);
|
|
|
|
// Might be part of a WHOIS response.
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id;
|
2020-02-12 05:17:28 +00:00
|
|
|
if (completeColor(Network, msg->params[1]) != Default) {
|
|
|
|
id = Network;
|
|
|
|
} else {
|
|
|
|
id = idFor(msg->params[1]);
|
|
|
|
}
|
|
|
|
uiFormat(
|
|
|
|
id, Warm, tagTime(msg),
|
|
|
|
"\3%02d%s\3\tis away: %s",
|
|
|
|
completeColor(id, msg->params[1]), msg->params[1], msg->params[2]
|
|
|
|
);
|
2020-03-25 22:58:48 +00:00
|
|
|
logFormat(
|
|
|
|
id, tagTime(msg), "%s is away: %s",
|
|
|
|
msg->params[1], msg->params[2]
|
|
|
|
);
|
2020-02-12 05:17:28 +00:00
|
|
|
}
|
|
|
|
|
2020-02-15 02:10:40 +00:00
|
|
|
static void handleReplyNowAway(struct Message *msg) {
|
|
|
|
require(msg, false, 2);
|
|
|
|
if (!replies.away) return;
|
|
|
|
uiFormat(Network, Warm, tagTime(msg), "%s", msg->params[1]);
|
|
|
|
replies.away--;
|
|
|
|
}
|
|
|
|
|
2020-02-02 22:26:20 +00:00
|
|
|
static bool isAction(struct Message *msg) {
|
|
|
|
if (strncmp(msg->params[1], "\1ACTION ", 8)) return false;
|
|
|
|
msg->params[1] += 8;
|
|
|
|
size_t len = strlen(msg->params[1]);
|
|
|
|
if (msg->params[1][len - 1] == '\1') msg->params[1][len - 1] = '\0';
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-06 09:18:15 +00:00
|
|
|
static bool isMention(const struct Message *msg) {
|
|
|
|
size_t len = strlen(self.nick);
|
|
|
|
const char *match = msg->params[1];
|
|
|
|
while (NULL != (match = strcasestr(match, self.nick))) {
|
|
|
|
char a = (match > msg->params[1] ? match[-1] : ' ');
|
2020-04-03 21:10:52 +00:00
|
|
|
char b = (match[len] ?: ' ');
|
2020-02-06 09:18:15 +00:00
|
|
|
if ((isspace(a) || ispunct(a)) && (isspace(b) || ispunct(b))) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
match = &match[len];
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static const char *colorMentions(uint id, struct Message *msg) {
|
2020-02-10 08:58:00 +00:00
|
|
|
char *split = strchr(msg->params[1], ':');
|
2020-02-11 23:08:05 +00:00
|
|
|
if (!split) {
|
|
|
|
split = strchr(msg->params[1], ' ');
|
|
|
|
if (split) split = strchr(&split[1], ' ');
|
|
|
|
}
|
2020-02-10 08:58:00 +00:00
|
|
|
if (!split) split = &msg->params[1][strlen(msg->params[1])];
|
|
|
|
for (char *ch = msg->params[1]; ch < split; ++ch) {
|
|
|
|
if (iscntrl(*ch)) return "";
|
2020-02-09 03:51:13 +00:00
|
|
|
}
|
2020-02-10 08:58:00 +00:00
|
|
|
char delimit = *split;
|
|
|
|
char *mention = msg->params[1];
|
|
|
|
msg->params[1] = (delimit ? &split[1] : split);
|
|
|
|
*split = '\0';
|
2020-02-09 03:51:13 +00:00
|
|
|
|
|
|
|
static char buf[1024];
|
2020-02-17 00:12:19 +00:00
|
|
|
buf[0] = '\0';
|
2020-02-09 03:51:13 +00:00
|
|
|
while (*mention) {
|
2020-02-11 01:58:14 +00:00
|
|
|
size_t skip = strspn(mention, ",<> ");
|
2020-02-17 00:12:19 +00:00
|
|
|
catf(buf, sizeof(buf), "%.*s", (int)skip, mention);
|
2020-02-09 03:51:13 +00:00
|
|
|
mention += skip;
|
|
|
|
|
2020-02-11 01:58:14 +00:00
|
|
|
size_t len = strcspn(mention, ",<> ");
|
2020-02-09 04:29:32 +00:00
|
|
|
char punct = mention[len];
|
|
|
|
mention[len] = '\0';
|
2020-02-11 23:15:25 +00:00
|
|
|
enum Color color = completeColor(id, mention);
|
|
|
|
if (color != Default) {
|
2020-02-17 00:12:19 +00:00
|
|
|
catf(buf, sizeof(buf), "\3%02d%s\3", color, mention);
|
2020-02-11 23:15:25 +00:00
|
|
|
} else {
|
2020-02-17 00:12:19 +00:00
|
|
|
catf(buf, sizeof(buf), "%s", mention);
|
2020-02-11 23:15:25 +00:00
|
|
|
}
|
2020-02-09 04:29:32 +00:00
|
|
|
mention[len] = punct;
|
|
|
|
mention += len;
|
2020-02-09 03:51:13 +00:00
|
|
|
}
|
2020-02-17 00:12:19 +00:00
|
|
|
catf(buf, sizeof(buf), "%c", delimit);
|
2020-02-09 03:51:13 +00:00
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2020-02-02 08:43:18 +00:00
|
|
|
static void handlePrivmsg(struct Message *msg) {
|
|
|
|
require(msg, true, 2);
|
2020-02-15 09:54:53 +00:00
|
|
|
bool query = !strchr(network.chanTypes, msg->params[0][0]);
|
|
|
|
bool server = strchr(msg->nick, '.');
|
2020-02-11 22:52:55 +00:00
|
|
|
bool mine = !strcmp(msg->nick, self.nick);
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id;
|
2020-02-15 09:54:53 +00:00
|
|
|
if (query && server) {
|
2020-02-06 09:01:11 +00:00
|
|
|
id = Network;
|
|
|
|
} else if (query && !mine) {
|
|
|
|
id = idFor(msg->nick);
|
|
|
|
idColors[id] = hash(msg->user);
|
|
|
|
} else {
|
|
|
|
id = idFor(msg->params[0]);
|
|
|
|
}
|
|
|
|
|
2020-02-02 22:26:20 +00:00
|
|
|
bool notice = (msg->cmd[0] == 'N');
|
|
|
|
bool action = isAction(msg);
|
2020-02-06 09:18:15 +00:00
|
|
|
bool mention = !mine && isMention(msg);
|
2020-02-08 04:33:23 +00:00
|
|
|
if (!notice && !mine) completeTouch(id, msg->nick, hash(msg->user));
|
2020-02-08 23:29:01 +00:00
|
|
|
urlScan(id, msg->nick, msg->params[1]);
|
2020-02-07 03:59:49 +00:00
|
|
|
if (notice) {
|
2020-03-25 22:58:48 +00:00
|
|
|
if (id != Network) {
|
|
|
|
logFormat(id, tagTime(msg), "-%s- %s", msg->nick, msg->params[1]);
|
|
|
|
}
|
2020-02-07 03:59:49 +00:00
|
|
|
uiFormat(
|
2020-03-31 18:30:42 +00:00
|
|
|
id, ignoreCheck(Warm, msg), tagTime(msg),
|
2020-02-11 22:52:55 +00:00
|
|
|
"\3%d-%s-\3%d\t%s",
|
|
|
|
hash(msg->user), msg->nick, LightGray, msg->params[1]
|
2020-02-07 03:59:49 +00:00
|
|
|
);
|
|
|
|
} else if (action) {
|
2020-03-25 22:58:48 +00:00
|
|
|
logFormat(id, tagTime(msg), "* %s %s", msg->nick, msg->params[1]);
|
2020-02-16 10:22:28 +00:00
|
|
|
const char *mentions = colorMentions(id, msg);
|
2020-02-07 03:59:49 +00:00
|
|
|
uiFormat(
|
2020-03-31 18:30:42 +00:00
|
|
|
id, ignoreCheck((mention || query ? Hot : Warm), msg), tagTime(msg),
|
2020-02-16 10:22:28 +00:00
|
|
|
"%s\35\3%d* %s\17\35\t%s%s",
|
|
|
|
(mention ? "\26" : ""), hash(msg->user), msg->nick,
|
|
|
|
mentions, msg->params[1]
|
2020-02-07 03:59:49 +00:00
|
|
|
);
|
|
|
|
} else {
|
2020-03-25 22:58:48 +00:00
|
|
|
logFormat(id, tagTime(msg), "<%s> %s", msg->nick, msg->params[1]);
|
2020-02-09 03:51:13 +00:00
|
|
|
const char *mentions = colorMentions(id, msg);
|
2020-02-07 03:59:49 +00:00
|
|
|
uiFormat(
|
2020-03-31 18:30:42 +00:00
|
|
|
id, ignoreCheck((mention || query ? Hot : Warm), msg), tagTime(msg),
|
2020-02-09 03:51:13 +00:00
|
|
|
"%s\3%d<%s>\17\t%s%s",
|
|
|
|
(mention ? "\26" : ""), hash(msg->user), msg->nick,
|
|
|
|
mentions, msg->params[1]
|
2020-02-07 03:59:49 +00:00
|
|
|
);
|
|
|
|
}
|
2020-02-02 08:43:18 +00:00
|
|
|
}
|
|
|
|
|
2020-02-02 06:58:03 +00:00
|
|
|
static void handlePing(struct Message *msg) {
|
|
|
|
require(msg, false, 1);
|
|
|
|
ircFormat("PONG :%s\r\n", msg->params[0]);
|
2020-02-02 00:37:48 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 04:27:43 +00:00
|
|
|
static void handleError(struct Message *msg) {
|
|
|
|
require(msg, false, 1);
|
|
|
|
errx(EX_UNAVAILABLE, "%s", msg->params[0]);
|
|
|
|
}
|
|
|
|
|
2020-02-01 06:18:01 +00:00
|
|
|
static const struct Handler {
|
|
|
|
const char *cmd;
|
|
|
|
Handler *fn;
|
|
|
|
} Handlers[] = {
|
|
|
|
{ "001", handleReplyWelcome },
|
2020-02-02 00:37:48 +00:00
|
|
|
{ "005", handleReplyISupport },
|
2020-03-18 12:33:42 +00:00
|
|
|
{ "221", handleReplyUserModeIs },
|
2020-02-09 21:45:49 +00:00
|
|
|
{ "276", handleReplyWhoisGeneric },
|
2020-02-12 05:17:28 +00:00
|
|
|
{ "301", handleReplyAway },
|
2020-02-15 02:10:40 +00:00
|
|
|
{ "305", handleReplyNowAway },
|
|
|
|
{ "306", handleReplyNowAway },
|
2020-02-09 21:45:49 +00:00
|
|
|
{ "307", handleReplyWhoisGeneric },
|
|
|
|
{ "311", handleReplyWhoisUser },
|
|
|
|
{ "312", handleReplyWhoisServer },
|
|
|
|
{ "313", handleReplyWhoisGeneric },
|
|
|
|
{ "317", handleReplyWhoisIdle },
|
|
|
|
{ "318", handleReplyEndOfWhois },
|
|
|
|
{ "319", handleReplyWhoisChannels },
|
2020-02-12 07:39:23 +00:00
|
|
|
{ "322", handleReplyList },
|
|
|
|
{ "323", handleReplyListEnd },
|
2020-03-22 15:40:58 +00:00
|
|
|
{ "324", handleReplyChannelModeIs },
|
2020-02-09 21:45:49 +00:00
|
|
|
{ "330", handleReplyWhoisGeneric },
|
2020-02-06 07:07:39 +00:00
|
|
|
{ "331", handleReplyNoTopic },
|
|
|
|
{ "332", handleReplyTopic },
|
2020-02-20 07:32:36 +00:00
|
|
|
{ "341", handleReplyInviting },
|
2020-02-25 07:12:35 +00:00
|
|
|
{ "346", handleReplyInviteList },
|
|
|
|
{ "347", handleReplyEndOfInviteList },
|
|
|
|
{ "348", handleReplyExceptList },
|
|
|
|
{ "349", handleReplyEndOfExceptList },
|
2020-02-08 05:25:09 +00:00
|
|
|
{ "353", handleReplyNames },
|
2020-02-08 08:15:17 +00:00
|
|
|
{ "366", handleReplyEndOfNames },
|
2020-02-20 02:47:16 +00:00
|
|
|
{ "367", handleReplyBanList },
|
|
|
|
{ "368", handleReplyEndOfBanList },
|
2020-02-02 00:37:48 +00:00
|
|
|
{ "372", handleReplyMOTD },
|
2020-02-13 00:14:00 +00:00
|
|
|
{ "378", handleReplyWhoisGeneric },
|
2020-02-16 23:42:38 +00:00
|
|
|
{ "379", handleReplyWhoisGeneric },
|
2020-03-09 07:08:59 +00:00
|
|
|
{ "422", handleErrorNoMOTD },
|
2020-02-02 07:30:35 +00:00
|
|
|
{ "432", handleErrorErroneousNickname },
|
|
|
|
{ "433", handleErrorNicknameInUse },
|
2020-02-20 06:52:58 +00:00
|
|
|
{ "441", handleErrorUserNotInChannel },
|
|
|
|
{ "443", handleErrorUserOnChannel },
|
2020-02-20 07:13:23 +00:00
|
|
|
{ "478", handleErrorBanListFull },
|
2020-02-20 10:04:58 +00:00
|
|
|
{ "482", handleErrorChanopPrivsNeeded },
|
2020-02-09 21:45:49 +00:00
|
|
|
{ "671", handleReplyWhoisGeneric },
|
2020-02-01 06:18:01 +00:00
|
|
|
{ "900", handleReplyLoggedIn },
|
|
|
|
{ "904", handleErrorSASLFail },
|
|
|
|
{ "905", handleErrorSASLFail },
|
|
|
|
{ "906", handleErrorSASLFail },
|
|
|
|
{ "AUTHENTICATE", handleAuthenticate },
|
|
|
|
{ "CAP", handleCap },
|
2020-03-22 18:32:20 +00:00
|
|
|
{ "CHGHOST", handleChghost },
|
2020-02-06 04:27:43 +00:00
|
|
|
{ "ERROR", handleError },
|
2020-02-15 02:36:58 +00:00
|
|
|
{ "INVITE", handleInvite },
|
2020-02-02 08:13:50 +00:00
|
|
|
{ "JOIN", handleJoin },
|
2020-02-08 05:58:17 +00:00
|
|
|
{ "KICK", handleKick },
|
2020-02-20 09:18:25 +00:00
|
|
|
{ "MODE", handleMode },
|
2020-02-08 05:01:59 +00:00
|
|
|
{ "NICK", handleNick },
|
2020-02-02 22:26:20 +00:00
|
|
|
{ "NOTICE", handlePrivmsg },
|
2020-02-06 06:16:35 +00:00
|
|
|
{ "PART", handlePart },
|
2020-02-02 06:58:03 +00:00
|
|
|
{ "PING", handlePing },
|
2020-02-02 08:43:18 +00:00
|
|
|
{ "PRIVMSG", handlePrivmsg },
|
2020-02-08 05:36:23 +00:00
|
|
|
{ "QUIT", handleQuit },
|
2020-02-06 07:07:39 +00:00
|
|
|
{ "TOPIC", handleTopic },
|
2020-02-01 06:18:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int compar(const void *cmd, const void *_handler) {
|
|
|
|
const struct Handler *handler = _handler;
|
|
|
|
return strcmp(cmd, handler->cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void handle(struct Message msg) {
|
|
|
|
if (!msg.cmd) return;
|
2020-03-09 03:15:56 +00:00
|
|
|
if (msg.tags[TagPos]) {
|
|
|
|
self.pos = strtoull(msg.tags[TagPos], NULL, 10);
|
|
|
|
}
|
2020-02-01 06:18:01 +00:00
|
|
|
const struct Handler *handler = bsearch(
|
|
|
|
msg.cmd, Handlers, ARRAY_LEN(Handlers), sizeof(*handler), compar
|
|
|
|
);
|
2020-02-20 06:38:31 +00:00
|
|
|
if (handler) {
|
|
|
|
handler->fn(&msg);
|
2020-02-29 06:03:46 +00:00
|
|
|
} else if (strcmp(msg.cmd, "400") >= 0 && strcmp(msg.cmd, "599") <= 0) {
|
2020-02-20 06:38:31 +00:00
|
|
|
handleErrorGeneric(&msg);
|
|
|
|
}
|
2020-02-01 06:18:01 +00:00
|
|
|
}
|