catboy/command.c

327 lines
8.1 KiB
C
Raw Normal View History

/* 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-06 03:25:34 +00:00
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
2020-02-06 06:05:09 +00:00
#include <string.h>
#include <unistd.h>
#include "chat.h"
2020-02-06 00:19:01 +00:00
typedef void Command(size_t id, char *params);
2020-02-08 07:33:41 +00:00
static void commandDebug(size_t id, char *params) {
(void)id;
(void)params;
self.debug ^= true;
uiFormat(
Debug, Warm, NULL,
"\3%dDebug is %s", Gray, (self.debug ? "on" : "off")
);
}
2020-02-06 00:19:01 +00:00
static void commandQuote(size_t id, char *params) {
(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
}
static void commandPrivmsg(size_t id, char *params) {
if (!params || !params[0]) return;
2020-02-06 00:19:01 +00:00
ircFormat("PRIVMSG %s :%s\r\n", idNames[id], params);
struct Message msg = {
.nick = self.nick,
.user = self.user,
.cmd = "PRIVMSG",
.params[0] = idNames[id],
.params[1] = params,
};
handle(msg);
}
static void commandNotice(size_t id, char *params) {
if (!params || !params[0]) return;
2020-02-06 00:19:01 +00:00
ircFormat("NOTICE %s :%s\r\n", idNames[id], params);
struct Message msg = {
.nick = self.nick,
.user = self.user,
.cmd = "NOTICE",
.params[0] = idNames[id],
.params[1] = params,
};
handle(msg);
}
static void commandMe(size_t id, char *params) {
char buf[512];
snprintf(buf, sizeof(buf), "\1ACTION %s\1", (params ? params : ""));
2020-02-06 00:19:01 +00:00
commandPrivmsg(id, buf);
}
static void commandMsg(size_t id, char *params) {
(void)id;
char *nick = strsep(&params, " ");
if (!params) return;
commandPrivmsg(idFor(nick), params);
}
2020-02-06 06:05:09 +00:00
static void commandJoin(size_t id, char *params) {
2020-02-08 08:15:17 +00:00
size_t count = 1;
if (params) {
for (char *ch = params; *ch && *ch != ' '; ++ch) {
if (*ch == ',') count++;
}
}
2020-02-06 06:05:09 +00:00
ircFormat("JOIN %s\r\n", (params ? params : idNames[id]));
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-08 06:25:07 +00:00
static void commandPart(size_t id, char *params) {
if (params) {
ircFormat("PART %s :%s\r\n", idNames[id], params);
} else {
ircFormat("PART %s\r\n", idNames[id]);
}
}
2020-02-06 02:57:23 +00:00
static void commandQuit(size_t id, char *params) {
2020-02-06 03:09:29 +00:00
(void)id;
2020-02-06 02:57:23 +00:00
set(&self.quit, (params ? params : "Goodbye"));
}
2020-02-08 05:02:10 +00:00
static void commandNick(size_t id, char *params) {
(void)id;
if (!params) return;
ircFormat("NICK :%s\r\n", params);
}
2020-02-08 08:25:50 +00:00
static void commandTopic(size_t id, char *params) {
if (params) {
ircFormat("TOPIC %s :%s\r\n", idNames[id], params);
} else {
ircFormat("TOPIC %s\r\n", idNames[id]);
replies.topic++;
}
}
2020-02-08 08:19:56 +00:00
static void commandNames(size_t id, char *params) {
(void)params;
ircFormat("NAMES :%s\r\n", idNames[id]);
replies.names++;
}
2020-02-12 07:39:23 +00:00
static void commandList(size_t id, char *params) {
(void)id;
if (params) {
ircFormat("LIST :%s\r\n", params);
} else {
ircFormat("LIST\r\n");
}
replies.list++;
}
2020-02-09 21:45:49 +00:00
static void commandWhois(size_t id, char *params) {
(void)id;
if (!params) return;
ircFormat("WHOIS :%s\r\n", params);
replies.whois++;
}
2020-02-08 06:34:55 +00:00
static void commandQuery(size_t id, char *params) {
if (!params) return;
size_t query = idFor(params);
idColors[query] = completeColor(id, params);
uiShowID(query);
}
2020-02-06 03:09:29 +00:00
static void commandWindow(size_t 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
}
static void commandMove(size_t id, char *params) {
if (!params) return;
char *name = strsep(&params, " ");
if (params) {
id = idFind(name);
if (id) uiMoveID(id, strtoul(params, NULL, 10));
} else {
uiMoveID(id, strtoul(name, NULL, 10));
}
}
2020-02-08 07:26:00 +00:00
static void commandClose(size_t id, char *params) {
if (!params) {
uiCloseID(id);
} else if (isdigit(params[0])) {
uiCloseNum(strtoul(params, NULL, 10));
} else {
id = idFind(params);
if (id) uiCloseID(id);
}
}
2020-02-08 23:29:01 +00:00
static void commandOpen(size_t id, char *params) {
if (!params) {
urlOpenCount(id, 1);
} else if (isdigit(params[0])) {
urlOpenCount(id, strtoul(params, NULL, 10));
} else {
urlOpenMatch(id, params);
}
}
2020-02-09 02:44:50 +00:00
static void commandCopy(size_t id, char *params) {
urlCopyMatch(id, params);
}
2020-02-14 03:22:11 +00:00
static void commandExec(size_t id, char *params) {
execID = id;
pid_t pid = fork();
if (pid < 0) err(EX_OSERR, "fork");
if (pid) return;
const char *shell = getenv("SHELL");
if (!shell) shell = "/bin/sh";
close(STDIN_FILENO);
dup2(execPipe[1], STDOUT_FILENO);
dup2(utilPipe[1], STDERR_FILENO);
execlp(shell, shell, "-c", params, NULL);
warn("%s", shell);
_exit(EX_UNAVAILABLE);
}
static void commandHelp(size_t id, char *params) {
(void)id;
uiHide();
pid_t pid = fork();
if (pid < 0) err(EX_OSERR, "fork");
if (pid) return;
char buf[256];
snprintf(buf, sizeof(buf), "ip%s$", (params ? params : "COMMANDS"));
setenv("LESS", buf, 1);
execlp("man", "man", "1", "catgirl", NULL);
2020-02-14 02:57:55 +00:00
dup2(utilPipe[1], STDERR_FILENO);
warn("man");
_exit(EX_UNAVAILABLE);
}
2020-02-06 00:19:01 +00:00
static const struct Handler {
const char *cmd;
Command *fn;
2020-02-12 03:39:29 +00:00
bool restricted;
2020-02-06 00:19:01 +00:00
} Commands[] = {
2020-02-12 03:39:29 +00:00
{ "/close", .fn = commandClose },
{ "/copy", .fn = commandCopy, .restricted = true },
{ "/debug", .fn = commandDebug, .restricted = true },
2020-02-14 03:22:11 +00:00
{ "/exec", .fn = commandExec, .restricted = true },
2020-02-12 03:39:29 +00:00
{ "/help", .fn = commandHelp },
{ "/join", .fn = commandJoin, .restricted = true },
2020-02-12 07:39:23 +00:00
{ "/list", .fn = commandList },
2020-02-12 03:39:29 +00:00
{ "/me", .fn = commandMe },
{ "/move", .fn = commandMove },
2020-02-12 03:39:29 +00:00
{ "/msg", .fn = commandMsg, .restricted = true },
{ "/names", .fn = commandNames },
{ "/nick", .fn = commandNick },
{ "/notice", .fn = commandNotice },
{ "/open", .fn = commandOpen, .restricted = true },
{ "/part", .fn = commandPart },
{ "/query", .fn = commandQuery, .restricted = true },
{ "/quit", .fn = commandQuit },
{ "/quote", .fn = commandQuote, .restricted = true },
{ "/topic", .fn = commandTopic },
{ "/whois", .fn = commandWhois },
{ "/window", .fn = commandWindow },
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-06 00:00:54 +00:00
const char *commandIsPrivmsg(size_t id, const char *input) {
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;
}
const char *commandIsNotice(size_t id, const char *input) {
if (id == Network || id == Debug) return NULL;
if (strncmp(input, "/notice ", 8)) return NULL;
return &input[8];
}
const char *commandIsAction(size_t id, const char *input) {
if (id == Network || id == Debug) return NULL;
if (strncmp(input, "/me ", 4)) return NULL;
return &input[4];
}
void command(size_t id, char *input) {
2020-02-06 03:09:29 +00:00
if (id == Debug && input[0] != '/') {
2020-02-06 00:19:01 +00:00
commandQuote(id, input);
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-06 03:09:29 +00:00
} else if (input[0] == '/' && isdigit(input[1])) {
commandWindow(id, &input[1]);
2020-02-06 00:19:01 +00:00
} else {
2020-02-08 02:53:50 +00:00
const char *cmd = strsep(&input, " ");
const char *unique = complete(None, cmd);
if (unique && !complete(None, cmd)) {
cmd = unique;
completeReject();
}
2020-02-06 03:09:29 +00:00
const struct Handler *handler = bsearch(
cmd, Commands, ARRAY_LEN(Commands), sizeof(*handler), compar
);
2020-02-12 03:39:29 +00:00
if (self.restricted && handler && handler->restricted) {
handler = NULL;
}
2020-02-06 03:09:29 +00:00
if (handler) {
if (input) {
input += strspn(input, " ");
size_t len = strlen(input);
while (input[len - 1] == ' ') input[--len] = '\0';
if (!input[0]) input = NULL;
}
2020-02-08 06:34:55 +00:00
if (input && !input[0]) input = NULL;
2020-02-06 03:09:29 +00:00
handler->fn(id, input);
} else {
uiFormat(id, Hot, NULL, "No such command %s", cmd);
}
2020-02-06 00:19:01 +00:00
}
}
2020-02-08 02:30:25 +00:00
void commandComplete(void) {
for (size_t i = 0; i < ARRAY_LEN(Commands); ++i) {
completeAdd(None, Commands[i].cmd, Default);
}
}