2020-02-05 05:20:39 +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-03-22 19:13:33 +00:00
|
|
|
#include <assert.h>
|
2020-02-06 03:25:34 +00:00
|
|
|
#include <ctype.h>
|
2020-02-05 05:20:39 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2020-02-06 06:05:09 +00:00
|
|
|
#include <string.h>
|
2020-02-09 19:09:27 +00:00
|
|
|
#include <unistd.h>
|
2020-02-05 05:20:39 +00:00
|
|
|
|
|
|
|
#include "chat.h"
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
typedef void Command(uint id, char *params);
|
2020-02-06 00:19:01 +00:00
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandDebug(uint id, char *params) {
|
2020-02-08 07:33:41 +00:00
|
|
|
(void)id;
|
|
|
|
(void)params;
|
|
|
|
self.debug ^= true;
|
|
|
|
uiFormat(
|
|
|
|
Debug, Warm, NULL,
|
|
|
|
"\3%dDebug is %s", Gray, (self.debug ? "on" : "off")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandQuote(uint id, char *params) {
|
2020-02-06 00:19:01 +00:00
|
|
|
(void)id;
|
2020-02-06 03:18:11 +00:00
|
|
|
if (params) ircFormat("%s\r\n", params);
|
2020-02-06 00:19:01 +00:00
|
|
|
}
|
|
|
|
|
2020-02-17 04:05:43 +00:00
|
|
|
static void echoMessage(char *cmd, uint id, char *params) {
|
2020-03-22 18:38:22 +00:00
|
|
|
if (!params) return;
|
2020-02-17 04:05:43 +00:00
|
|
|
ircFormat("%s %s :%s\r\n", cmd, idNames[id], params);
|
2020-02-06 00:19:01 +00:00
|
|
|
struct Message msg = {
|
|
|
|
.nick = self.nick,
|
|
|
|
.user = self.user,
|
2020-02-17 04:05:43 +00:00
|
|
|
.cmd = cmd,
|
2020-02-06 00:19:01 +00:00
|
|
|
.params[0] = idNames[id],
|
|
|
|
.params[1] = params,
|
|
|
|
};
|
|
|
|
handle(msg);
|
|
|
|
}
|
|
|
|
|
2020-03-22 19:13:33 +00:00
|
|
|
static void splitMessage(char *cmd, uint id, char *params) {
|
|
|
|
if (!params) return;
|
|
|
|
int overhead = snprintf(
|
2020-03-23 17:13:43 +00:00
|
|
|
NULL, 0, ":%s!%*s@%*s %s %s :\r\n",
|
|
|
|
self.nick,
|
2020-04-03 21:10:52 +00:00
|
|
|
(self.user ? 0 : network.userLen), (self.user ?: "*"),
|
|
|
|
(self.host ? 0 : network.hostLen), (self.host ?: "*"),
|
2020-03-23 17:13:43 +00:00
|
|
|
cmd, idNames[id]
|
2020-03-22 19:13:33 +00:00
|
|
|
);
|
|
|
|
assert(overhead > 0 && overhead < 512);
|
|
|
|
int chunk = 512 - overhead;
|
2020-03-23 18:54:46 +00:00
|
|
|
if (strlen(params) <= (size_t)chunk && !strchr(params, '\n')) {
|
2020-03-22 19:13:33 +00:00
|
|
|
echoMessage(cmd, id, params);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (*params) {
|
|
|
|
int len = 0;
|
2020-03-23 18:54:46 +00:00
|
|
|
for (int n = 0; params[len] != '\n' && len + n <= chunk; len += n) {
|
2020-03-22 19:13:33 +00:00
|
|
|
n = mblen(¶ms[len], 1 + strlen(¶ms[len]));
|
|
|
|
if (n < 0) {
|
|
|
|
n = 1;
|
|
|
|
mblen(NULL, 0);
|
|
|
|
}
|
|
|
|
if (!n) break;
|
|
|
|
}
|
|
|
|
char ch = params[len];
|
|
|
|
params[len] = '\0';
|
|
|
|
echoMessage(cmd, id, params);
|
|
|
|
params[len] = ch;
|
|
|
|
params += len;
|
2020-03-23 18:54:46 +00:00
|
|
|
if (ch == '\n') params++;
|
2020-03-22 19:13:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-17 04:05:43 +00:00
|
|
|
static void commandPrivmsg(uint id, char *params) {
|
2020-03-22 19:13:33 +00:00
|
|
|
splitMessage("PRIVMSG", id, params);
|
2020-02-17 04:05:43 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandNotice(uint id, char *params) {
|
2020-03-22 19:13:33 +00:00
|
|
|
splitMessage("NOTICE", id, params);
|
2020-02-06 00:19:01 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandMe(uint id, char *params) {
|
2020-02-06 00:19:01 +00:00
|
|
|
char buf[512];
|
2020-04-03 21:10:52 +00:00
|
|
|
snprintf(buf, sizeof(buf), "\1ACTION %s\1", (params ?: ""));
|
2020-02-17 04:05:43 +00:00
|
|
|
echoMessage("PRIVMSG", id, buf);
|
2020-02-06 00:19:01 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandMsg(uint id, char *params) {
|
2020-02-17 04:05:43 +00:00
|
|
|
id = idFor(strsep(¶ms, " "));
|
2020-03-22 19:13:33 +00:00
|
|
|
splitMessage("PRIVMSG", id, params);
|
2020-02-09 20:35:02 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandJoin(uint id, char *params) {
|
2020-02-17 04:05:43 +00:00
|
|
|
if (!params) params = idNames[id];
|
2020-02-16 03:19:55 +00:00
|
|
|
uint count = 1;
|
2020-02-17 04:05:43 +00:00
|
|
|
for (char *ch = params; *ch && *ch != ' '; ++ch) {
|
|
|
|
if (*ch == ',') count++;
|
2020-02-08 08:15:17 +00:00
|
|
|
}
|
2020-02-17 04:05:43 +00:00
|
|
|
ircFormat("JOIN %s\r\n", params);
|
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-06 06:05:09 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandPart(uint id, char *params) {
|
2020-02-08 06:25:07 +00:00
|
|
|
if (params) {
|
|
|
|
ircFormat("PART %s :%s\r\n", idNames[id], params);
|
|
|
|
} else {
|
|
|
|
ircFormat("PART %s\r\n", idNames[id]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandQuit(uint id, char *params) {
|
2020-02-06 03:09:29 +00:00
|
|
|
(void)id;
|
2020-04-03 21:10:52 +00:00
|
|
|
set(&self.quit, (params ?: "nyaa~"));
|
2020-02-06 02:57:23 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandNick(uint id, char *params) {
|
2020-02-08 05:02:10 +00:00
|
|
|
(void)id;
|
|
|
|
if (!params) return;
|
|
|
|
ircFormat("NICK :%s\r\n", params);
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandAway(uint id, char *params) {
|
2020-02-15 02:10:40 +00:00
|
|
|
(void)id;
|
|
|
|
if (params) {
|
|
|
|
ircFormat("AWAY :%s\r\n", params);
|
|
|
|
} else {
|
|
|
|
ircFormat("AWAY\r\n");
|
|
|
|
}
|
|
|
|
replies.away++;
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandTopic(uint id, char *params) {
|
2020-02-08 08:25:50 +00:00
|
|
|
if (params) {
|
|
|
|
ircFormat("TOPIC %s :%s\r\n", idNames[id], params);
|
|
|
|
} else {
|
|
|
|
ircFormat("TOPIC %s\r\n", idNames[id]);
|
|
|
|
replies.topic++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandNames(uint id, char *params) {
|
2020-02-08 08:19:56 +00:00
|
|
|
(void)params;
|
2020-02-17 04:05:43 +00:00
|
|
|
ircFormat("NAMES %s\r\n", idNames[id]);
|
2020-02-08 08:19:56 +00:00
|
|
|
replies.names++;
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandInvite(uint id, char *params) {
|
2020-02-15 02:36:58 +00:00
|
|
|
if (!params) return;
|
|
|
|
char *nick = strsep(¶ms, " ");
|
|
|
|
ircFormat("INVITE %s %s\r\n", nick, idNames[id]);
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandKick(uint id, char *params) {
|
2020-02-15 02:43:27 +00:00
|
|
|
if (!params) return;
|
|
|
|
char *nick = strsep(¶ms, " ");
|
|
|
|
if (params) {
|
|
|
|
ircFormat("KICK %s %s :%s\r\n", idNames[id], nick, params);
|
|
|
|
} else {
|
|
|
|
ircFormat("KICK %s %s\r\n", idNames[id], nick);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-25 07:12:35 +00:00
|
|
|
static void commandMode(uint id, char *params) {
|
|
|
|
if (id == Network) {
|
|
|
|
if (params) {
|
|
|
|
ircFormat("MODE %s %s\r\n", self.nick, params);
|
|
|
|
} else {
|
|
|
|
ircFormat("MODE %s\r\n", self.nick);
|
2020-03-23 20:52:24 +00:00
|
|
|
replies.mode++;
|
2020-02-25 07:12:35 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (params) {
|
|
|
|
ircFormat("MODE %s %s\r\n", idNames[id], params);
|
|
|
|
} else {
|
|
|
|
ircFormat("MODE %s\r\n", idNames[id]);
|
2020-03-23 20:52:24 +00:00
|
|
|
replies.mode++;
|
2020-02-25 07:12:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 20:09:49 +00:00
|
|
|
static void channelListMode(uint id, char pm, char l, const char *params) {
|
2020-02-25 07:12:35 +00:00
|
|
|
int count = 1;
|
2020-04-06 20:09:49 +00:00
|
|
|
for (const char *ch = params; *ch; ++ch) {
|
2020-02-25 07:12:35 +00:00
|
|
|
if (*ch == ' ') count++;
|
|
|
|
}
|
|
|
|
char modes[ParamCap - 2] = { l, l, l, l, l, l, l, l, l, l, l, l, l };
|
|
|
|
ircFormat("MODE %s %c%.*s %s\r\n", idNames[id], pm, count, modes, params);
|
|
|
|
}
|
|
|
|
|
2020-03-29 16:43:53 +00:00
|
|
|
static void commandOp(uint id, char *params) {
|
2020-04-06 20:09:49 +00:00
|
|
|
if (params) {
|
|
|
|
channelListMode(id, '+', 'o', params);
|
|
|
|
} else {
|
|
|
|
ircFormat("PRIVMSG ChanServ :OP %s\r\n", idNames[id]);
|
|
|
|
}
|
2020-03-29 16:43:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void commandDeop(uint id, char *params) {
|
2020-04-06 20:09:49 +00:00
|
|
|
channelListMode(id, '-', 'o', (params ?: self.nick));
|
2020-03-29 16:43:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void commandVoice(uint id, char *params) {
|
2020-04-06 20:30:03 +00:00
|
|
|
if (params) {
|
|
|
|
channelListMode(id, '+', 'v', params);
|
|
|
|
} else {
|
|
|
|
ircFormat("PRIVMSG ChanServ :VOICE %s\r\n", idNames[id]);
|
|
|
|
}
|
2020-03-29 16:43:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void commandDevoice(uint id, char *params) {
|
2020-04-06 20:30:03 +00:00
|
|
|
channelListMode(id, '-', 'v', (params ?: self.nick));
|
2020-03-29 16:43:53 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 02:47:16 +00:00
|
|
|
static void commandBan(uint id, char *params) {
|
|
|
|
if (params) {
|
2020-02-25 07:12:35 +00:00
|
|
|
channelListMode(id, '+', 'b', params);
|
2020-02-20 02:47:16 +00:00
|
|
|
} else {
|
2020-02-20 08:48:26 +00:00
|
|
|
ircFormat("MODE %s b\r\n", idNames[id]);
|
2020-02-20 02:47:16 +00:00
|
|
|
replies.ban++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void commandUnban(uint id, char *params) {
|
|
|
|
if (!params) return;
|
2020-02-25 07:12:35 +00:00
|
|
|
channelListMode(id, '-', 'b', params);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void commandExcept(uint id, char *params) {
|
|
|
|
if (params) {
|
|
|
|
channelListMode(id, '+', network.excepts, params);
|
|
|
|
} else {
|
|
|
|
ircFormat("MODE %s %c\r\n", idNames[id], network.excepts);
|
|
|
|
replies.excepts++;
|
2020-02-20 02:47:16 +00:00
|
|
|
}
|
2020-02-25 07:12:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void commandUnexcept(uint id, char *params) {
|
|
|
|
if (!params) return;
|
|
|
|
channelListMode(id, '-', network.excepts, params);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void commandInvex(uint id, char *params) {
|
|
|
|
if (params) {
|
|
|
|
channelListMode(id, '+', network.invex, params);
|
|
|
|
} else {
|
|
|
|
ircFormat("MODE %s %c\r\n", idNames[id], network.invex);
|
|
|
|
replies.invex++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void commandUninvex(uint id, char *params) {
|
|
|
|
if (!params) return;
|
|
|
|
channelListMode(id, '-', network.invex, params);
|
2020-02-20 02:47:16 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandList(uint id, char *params) {
|
2020-02-12 07:39:23 +00:00
|
|
|
(void)id;
|
|
|
|
if (params) {
|
|
|
|
ircFormat("LIST :%s\r\n", params);
|
|
|
|
} else {
|
|
|
|
ircFormat("LIST\r\n");
|
|
|
|
}
|
|
|
|
replies.list++;
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandWhois(uint id, char *params) {
|
2020-02-09 21:45:49 +00:00
|
|
|
(void)id;
|
|
|
|
if (!params) return;
|
|
|
|
ircFormat("WHOIS :%s\r\n", params);
|
|
|
|
replies.whois++;
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandNS(uint id, char *params) {
|
2020-02-15 09:47:46 +00:00
|
|
|
(void)id;
|
2020-02-17 04:05:43 +00:00
|
|
|
if (params) ircFormat("PRIVMSG NickServ :%s\r\n", params);
|
2020-02-15 09:47:46 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandCS(uint id, char *params) {
|
2020-02-15 09:47:46 +00:00
|
|
|
(void)id;
|
2020-02-17 04:05:43 +00:00
|
|
|
if (params) ircFormat("PRIVMSG ChanServ :%s\r\n", params);
|
2020-02-15 09:47:46 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandQuery(uint id, char *params) {
|
2020-02-08 06:34:55 +00:00
|
|
|
if (!params) return;
|
2020-02-16 03:19:55 +00:00
|
|
|
uint query = idFor(params);
|
2020-02-08 06:34:55 +00:00
|
|
|
idColors[query] = completeColor(id, params);
|
|
|
|
uiShowID(query);
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandWindow(uint id, char *params) {
|
2020-02-06 03:25:34 +00:00
|
|
|
if (!params) return;
|
|
|
|
if (isdigit(params[0])) {
|
|
|
|
uiShowNum(strtoul(params, NULL, 10));
|
|
|
|
} else {
|
|
|
|
id = idFind(params);
|
|
|
|
if (id) uiShowID(id);
|
|
|
|
}
|
2020-02-06 03:09:29 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandMove(uint id, char *params) {
|
2020-02-13 10:05:53 +00:00
|
|
|
if (!params) return;
|
|
|
|
char *name = strsep(¶ms, " ");
|
|
|
|
if (params) {
|
|
|
|
id = idFind(name);
|
|
|
|
if (id) uiMoveID(id, strtoul(params, NULL, 10));
|
|
|
|
} else {
|
|
|
|
uiMoveID(id, strtoul(name, NULL, 10));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandClose(uint id, char *params) {
|
2020-02-08 07:26:00 +00:00
|
|
|
if (!params) {
|
|
|
|
uiCloseID(id);
|
|
|
|
} else if (isdigit(params[0])) {
|
|
|
|
uiCloseNum(strtoul(params, NULL, 10));
|
|
|
|
} else {
|
|
|
|
id = idFind(params);
|
|
|
|
if (id) uiCloseID(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandOpen(uint id, char *params) {
|
2020-02-08 23:29:01 +00:00
|
|
|
if (!params) {
|
|
|
|
urlOpenCount(id, 1);
|
2020-04-03 19:16:49 +00:00
|
|
|
} else if (isdigit(params[0]) && !params[1]) {
|
|
|
|
urlOpenCount(id, params[0] - '0');
|
2020-02-08 23:29:01 +00:00
|
|
|
} else {
|
|
|
|
urlOpenMatch(id, params);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandCopy(uint id, char *params) {
|
2020-02-09 02:44:50 +00:00
|
|
|
urlCopyMatch(id, params);
|
|
|
|
}
|
|
|
|
|
2020-03-31 18:30:42 +00:00
|
|
|
static void commandIgnore(uint id, char *params) {
|
|
|
|
if (params) {
|
|
|
|
const char *pattern = ignoreAdd(params);
|
|
|
|
uiFormat(
|
|
|
|
id, Cold, NULL, "Ignoring \3%02d%s\3",
|
|
|
|
Brown, pattern
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
for (size_t i = 0; i < ignore.len; ++i) {
|
|
|
|
uiFormat(
|
|
|
|
Network, Warm, NULL, "Ignoring \3%02d%s\3",
|
|
|
|
Brown, ignore.patterns[i]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void commandUnignore(uint id, char *params) {
|
|
|
|
if (!params) return;
|
|
|
|
if (ignoreRemove(params)) {
|
|
|
|
uiFormat(
|
|
|
|
id, Cold, NULL, "No longer ignoring \3%02d%s\3",
|
|
|
|
Brown, params
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
uiFormat(id, Cold, NULL, "Not ignoring \3%02d%s\3", Brown, params);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandExec(uint id, char *params) {
|
2020-02-14 03:22:11 +00:00
|
|
|
execID = id;
|
|
|
|
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid < 0) err(EX_OSERR, "fork");
|
|
|
|
if (pid) return;
|
|
|
|
|
|
|
|
close(STDIN_FILENO);
|
|
|
|
dup2(execPipe[1], STDOUT_FILENO);
|
|
|
|
dup2(utilPipe[1], STDERR_FILENO);
|
2020-04-03 21:10:52 +00:00
|
|
|
|
|
|
|
const char *shell = getenv("SHELL") ?: "/bin/sh";
|
2020-02-14 03:22:11 +00:00
|
|
|
execlp(shell, shell, "-c", params, NULL);
|
|
|
|
warn("%s", shell);
|
|
|
|
_exit(EX_UNAVAILABLE);
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void commandHelp(uint id, char *params) {
|
2020-02-09 19:09:27 +00:00
|
|
|
(void)id;
|
|
|
|
uiHide();
|
|
|
|
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid < 0) err(EX_OSERR, "fork");
|
|
|
|
if (pid) return;
|
|
|
|
|
|
|
|
char buf[256];
|
2020-04-03 21:10:52 +00:00
|
|
|
snprintf(buf, sizeof(buf), "ip%s$", (params ?: "COMMANDS"));
|
2020-02-09 19:09:27 +00:00
|
|
|
setenv("LESS", buf, 1);
|
|
|
|
execlp("man", "man", "1", "catgirl", NULL);
|
2020-02-14 02:57:55 +00:00
|
|
|
dup2(utilPipe[1], STDERR_FILENO);
|
2020-02-09 19:09:27 +00:00
|
|
|
warn("man");
|
|
|
|
_exit(EX_UNAVAILABLE);
|
|
|
|
}
|
|
|
|
|
2020-03-23 18:54:46 +00:00
|
|
|
enum Flag {
|
|
|
|
BIT(Multiline),
|
|
|
|
BIT(Restricted),
|
|
|
|
};
|
|
|
|
|
2020-02-06 00:19:01 +00:00
|
|
|
static const struct Handler {
|
|
|
|
const char *cmd;
|
|
|
|
Command *fn;
|
2020-03-23 18:54:46 +00:00
|
|
|
enum Flag flags;
|
2020-02-06 00:19:01 +00:00
|
|
|
} Commands[] = {
|
2020-03-23 18:54:46 +00:00
|
|
|
{ "/away", commandAway, 0 },
|
|
|
|
{ "/ban", commandBan, 0 },
|
|
|
|
{ "/close", commandClose, 0 },
|
|
|
|
{ "/copy", commandCopy, Restricted },
|
|
|
|
{ "/cs", commandCS, 0 },
|
|
|
|
{ "/debug", commandDebug, Restricted },
|
2020-03-29 16:43:53 +00:00
|
|
|
{ "/deop", commandDeop, 0 },
|
|
|
|
{ "/devoice", commandDevoice, 0 },
|
2020-03-23 18:54:46 +00:00
|
|
|
{ "/except", commandExcept, 0 },
|
|
|
|
{ "/exec", commandExec, Multiline | Restricted },
|
|
|
|
{ "/help", commandHelp, 0 },
|
2020-03-31 18:30:42 +00:00
|
|
|
{ "/ignore", commandIgnore, 0 },
|
2020-03-23 18:54:46 +00:00
|
|
|
{ "/invex", commandInvex, 0 },
|
|
|
|
{ "/invite", commandInvite, 0 },
|
|
|
|
{ "/join", commandJoin, Restricted },
|
|
|
|
{ "/kick", commandKick, 0 },
|
|
|
|
{ "/list", commandList, 0 },
|
|
|
|
{ "/me", commandMe, 0 },
|
|
|
|
{ "/mode", commandMode, 0 },
|
|
|
|
{ "/move", commandMove, 0 },
|
|
|
|
{ "/msg", commandMsg, Multiline | Restricted },
|
|
|
|
{ "/names", commandNames, 0 },
|
|
|
|
{ "/nick", commandNick, 0 },
|
|
|
|
{ "/notice", commandNotice, Multiline },
|
|
|
|
{ "/ns", commandNS, 0 },
|
2020-03-30 15:15:44 +00:00
|
|
|
{ "/o", commandOpen, Restricted },
|
2020-03-29 16:43:53 +00:00
|
|
|
{ "/op", commandOp, 0 },
|
2020-03-23 18:54:46 +00:00
|
|
|
{ "/open", commandOpen, Restricted },
|
|
|
|
{ "/part", commandPart, 0 },
|
|
|
|
{ "/query", commandQuery, Restricted },
|
|
|
|
{ "/quit", commandQuit, 0 },
|
|
|
|
{ "/quote", commandQuote, Multiline | Restricted },
|
|
|
|
{ "/say", commandPrivmsg, Multiline },
|
|
|
|
{ "/topic", commandTopic, 0 },
|
|
|
|
{ "/unban", commandUnban, 0 },
|
|
|
|
{ "/unexcept", commandUnexcept, 0 },
|
2020-03-31 18:30:42 +00:00
|
|
|
{ "/unignore", commandUnignore, 0 },
|
2020-03-23 18:54:46 +00:00
|
|
|
{ "/uninvex", commandUninvex, 0 },
|
2020-03-29 16:43:53 +00:00
|
|
|
{ "/voice", commandVoice, 0 },
|
2020-03-23 18:54:46 +00:00
|
|
|
{ "/whois", commandWhois, 0 },
|
|
|
|
{ "/window", commandWindow, 0 },
|
2020-02-06 00:19:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int compar(const void *cmd, const void *_handler) {
|
|
|
|
const struct Handler *handler = _handler;
|
|
|
|
return strcmp(cmd, handler->cmd);
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
const char *commandIsPrivmsg(uint id, const char *input) {
|
2020-02-06 00:00:54 +00:00
|
|
|
if (id == Network || id == Debug) return NULL;
|
|
|
|
if (input[0] != '/') return input;
|
|
|
|
const char *space = strchr(&input[1], ' ');
|
|
|
|
const char *slash = strchr(&input[1], '/');
|
|
|
|
if (slash && (!space || slash < space)) return input;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
const char *commandIsNotice(uint id, const char *input) {
|
2020-02-06 00:00:54 +00:00
|
|
|
if (id == Network || id == Debug) return NULL;
|
|
|
|
if (strncmp(input, "/notice ", 8)) return NULL;
|
|
|
|
return &input[8];
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
const char *commandIsAction(uint id, const char *input) {
|
2020-02-06 00:00:54 +00:00
|
|
|
if (id == Network || id == Debug) return NULL;
|
|
|
|
if (strncmp(input, "/me ", 4)) return NULL;
|
|
|
|
return &input[4];
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
void command(uint id, char *input) {
|
2020-03-03 00:17:42 +00:00
|
|
|
if (id == Debug && input[0] != '/' && !self.restricted) {
|
2020-02-06 00:19:01 +00:00
|
|
|
commandQuote(id, input);
|
2020-02-17 04:05:43 +00:00
|
|
|
return;
|
2020-03-22 18:38:22 +00:00
|
|
|
} else if (!input[0]) {
|
|
|
|
return;
|
2020-02-06 03:09:29 +00:00
|
|
|
} else if (commandIsPrivmsg(id, input)) {
|
2020-02-06 00:19:01 +00:00
|
|
|
commandPrivmsg(id, input);
|
2020-02-17 04:05:43 +00:00
|
|
|
return;
|
2020-02-06 03:09:29 +00:00
|
|
|
} else if (input[0] == '/' && isdigit(input[1])) {
|
|
|
|
commandWindow(id, &input[1]);
|
2020-02-17 04:05:43 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *cmd = strsep(&input, " ");
|
|
|
|
const char *unique = complete(None, cmd);
|
|
|
|
if (unique && !complete(None, cmd)) {
|
|
|
|
cmd = unique;
|
|
|
|
completeReject();
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct Handler *handler = bsearch(
|
|
|
|
cmd, Commands, ARRAY_LEN(Commands), sizeof(*handler), compar
|
|
|
|
);
|
|
|
|
if (!handler) {
|
|
|
|
uiFormat(id, Warm, NULL, "No such command %s", cmd);
|
|
|
|
return;
|
|
|
|
}
|
2020-03-23 18:54:46 +00:00
|
|
|
if (self.restricted && handler->flags & Restricted) {
|
2020-02-17 04:05:43 +00:00
|
|
|
uiFormat(id, Warm, NULL, "Command %s is restricted", cmd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (input) {
|
2020-03-23 19:47:56 +00:00
|
|
|
if (!(handler->flags & Multiline)) {
|
|
|
|
input[strcspn(input, "\n")] = '\0';
|
|
|
|
}
|
2020-02-17 04:05:43 +00:00
|
|
|
input += strspn(input, " ");
|
|
|
|
size_t len = strlen(input);
|
|
|
|
while (input[len - 1] == ' ') input[--len] = '\0';
|
|
|
|
if (!input[0]) input = NULL;
|
2020-02-06 00:19:01 +00:00
|
|
|
}
|
2020-02-17 04:05:43 +00:00
|
|
|
handler->fn(id, input);
|
2020-02-05 05:20:39 +00:00
|
|
|
}
|
2020-02-08 02:30:25 +00:00
|
|
|
|
2020-03-30 18:56:26 +00:00
|
|
|
void commandCompleteAdd(void) {
|
2020-02-08 02:30:25 +00:00
|
|
|
for (size_t i = 0; i < ARRAY_LEN(Commands); ++i) {
|
|
|
|
completeAdd(None, Commands[i].cmd, Default);
|
|
|
|
}
|
|
|
|
}
|