2019-02-22 20:49:55 +00:00
|
|
|
/* Copyright (C) 2018 C. McEnroe <june@causal.agency>
|
2018-08-04 17:35:29 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-09-11 18:36:30 +00:00
|
|
|
#include <ctype.h>
|
2018-08-04 17:35:29 +00:00
|
|
|
#include <err.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2018-08-07 19:43:49 +00:00
|
|
|
#include <string.h>
|
2018-08-04 17:35:29 +00:00
|
|
|
#include <sysexits.h>
|
|
|
|
|
|
|
|
#include "chat.h"
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
static void privmsg(struct Tag tag, bool action, const char *mesg) {
|
2018-08-04 17:35:29 +00:00
|
|
|
char *line;
|
|
|
|
int send;
|
|
|
|
asprintf(
|
2018-08-07 19:43:49 +00:00
|
|
|
&line, ":%s!%s %nPRIVMSG %s :%s%s%s",
|
2018-08-11 03:31:20 +00:00
|
|
|
self.nick, self.user, &send, tag.name,
|
2018-08-04 17:35:29 +00:00
|
|
|
(action ? "\1ACTION " : ""), mesg, (action ? "\1" : "")
|
|
|
|
);
|
|
|
|
if (!line) err(EX_OSERR, "asprintf");
|
2018-08-04 21:54:46 +00:00
|
|
|
ircFmt("%s\r\n", &line[send]);
|
2018-08-04 17:35:29 +00:00
|
|
|
handle(line);
|
|
|
|
free(line);
|
|
|
|
}
|
|
|
|
|
2018-12-30 06:53:30 +00:00
|
|
|
typedef void Handler(struct Tag tag, char *params);
|
2018-08-04 17:35:29 +00:00
|
|
|
|
2019-02-22 20:49:55 +00:00
|
|
|
static void inputJoin(struct Tag tag, char *params) {
|
2019-02-23 17:44:20 +00:00
|
|
|
char *chan = strsep(¶ms, " ");
|
2019-07-02 22:33:45 +00:00
|
|
|
char *key = strsep(¶ms, " ");
|
|
|
|
if (key) {
|
|
|
|
ircFmt("JOIN %s %s\r\n", chan, key);
|
|
|
|
} else {
|
|
|
|
ircFmt("JOIN %s\r\n", chan ? chan : tag.name);
|
|
|
|
}
|
2018-12-05 20:04:34 +00:00
|
|
|
}
|
|
|
|
|
2019-07-03 02:12:07 +00:00
|
|
|
static void inputList(struct Tag tag, char *params) {
|
|
|
|
(void)tag;
|
|
|
|
char *chan = strsep(¶ms, " ");
|
|
|
|
if (chan) {
|
|
|
|
ircFmt("LIST %s\r\n", chan);
|
|
|
|
} else {
|
|
|
|
ircFmt("LIST\r\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
static void inputMe(struct Tag tag, char *params) {
|
|
|
|
privmsg(tag, true, params ? params : "");
|
2018-08-04 17:35:29 +00:00
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
static void inputNick(struct Tag tag, char *params) {
|
2019-02-23 17:44:20 +00:00
|
|
|
char *nick = strsep(¶ms, " ");
|
2019-07-02 23:34:19 +00:00
|
|
|
if (!nick) {
|
|
|
|
uiLog(tag, UIHot, L"/nick requires a name");
|
|
|
|
return;
|
2019-02-22 20:49:55 +00:00
|
|
|
}
|
2019-07-02 23:34:19 +00:00
|
|
|
ircFmt("NICK %s\r\n", nick);
|
2018-08-04 18:33:57 +00:00
|
|
|
}
|
|
|
|
|
2018-08-13 17:49:03 +00:00
|
|
|
static void inputPart(struct Tag tag, char *params) {
|
2019-02-22 19:11:50 +00:00
|
|
|
ircFmt("PART %s :%s\r\n", tag.name, params ? params : "Goodbye");
|
2018-08-13 17:49:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void inputQuery(struct Tag tag, char *params) {
|
2019-02-22 20:49:55 +00:00
|
|
|
char *nick = strsep(¶ms, " ");
|
2019-07-02 23:34:19 +00:00
|
|
|
if (!nick) {
|
|
|
|
uiLog(tag, UIHot, L"/query requires a nick");
|
|
|
|
return;
|
2019-02-22 20:49:55 +00:00
|
|
|
}
|
2019-07-02 23:34:19 +00:00
|
|
|
tabTouch(TagNone, nick);
|
|
|
|
uiShowTag(tagFor(nick));
|
|
|
|
logReplay(tagFor(nick));
|
2018-08-11 03:31:20 +00:00
|
|
|
}
|
|
|
|
|
2019-02-22 20:49:55 +00:00
|
|
|
static void inputQuit(struct Tag tag, char *params) {
|
2018-11-29 10:37:10 +00:00
|
|
|
(void)tag;
|
2019-02-22 20:49:55 +00:00
|
|
|
ircQuit(params ? params : "Goodbye");
|
2018-11-29 10:37:10 +00:00
|
|
|
}
|
|
|
|
|
2019-07-02 22:57:57 +00:00
|
|
|
static void inputQuote(struct Tag tag, char *params) {
|
|
|
|
(void)tag;
|
|
|
|
if (params) ircFmt("%s\r\n", params);
|
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
static void inputTopic(struct Tag tag, char *params) {
|
2018-08-13 03:55:12 +00:00
|
|
|
if (params) {
|
2018-08-11 03:31:20 +00:00
|
|
|
ircFmt("TOPIC %s :%s\r\n", tag.name, params);
|
2018-08-04 22:43:04 +00:00
|
|
|
} else {
|
2018-08-11 03:31:20 +00:00
|
|
|
ircFmt("TOPIC %s\r\n", tag.name);
|
2018-08-04 22:43:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-22 20:49:55 +00:00
|
|
|
static void inputWho(struct Tag tag, char *params) {
|
|
|
|
(void)params;
|
|
|
|
ircFmt("WHO :%s\r\n", tag.name);
|
2018-08-04 17:35:29 +00:00
|
|
|
}
|
|
|
|
|
2019-02-22 20:49:55 +00:00
|
|
|
static void inputWhois(struct Tag tag, char *params) {
|
2019-02-23 17:44:20 +00:00
|
|
|
char *nick = strsep(¶ms, " ");
|
2019-07-02 23:34:19 +00:00
|
|
|
if (!nick) {
|
2019-02-22 20:49:55 +00:00
|
|
|
uiLog(tag, UIHot, L"/whois requires a nick");
|
2019-07-02 23:34:19 +00:00
|
|
|
return;
|
2019-02-22 20:49:55 +00:00
|
|
|
}
|
2019-07-02 23:34:19 +00:00
|
|
|
ircFmt("WHOIS %s\r\n", nick);
|
2019-02-22 20:49:55 +00:00
|
|
|
}
|
|
|
|
|
2019-02-22 21:07:32 +00:00
|
|
|
static void inputZNC(struct Tag tag, char *params) {
|
|
|
|
(void)tag;
|
|
|
|
ircFmt("ZNC %s\r\n", params ? params : "");
|
|
|
|
}
|
|
|
|
|
2019-02-22 20:49:55 +00:00
|
|
|
static void inputClose(struct Tag tag, char *params) {
|
2018-08-09 04:24:49 +00:00
|
|
|
(void)params;
|
2019-02-22 20:49:55 +00:00
|
|
|
uiCloseTag(tag);
|
|
|
|
tabRemove(TagNone, tag.name);
|
2018-08-09 04:24:49 +00:00
|
|
|
}
|
2019-02-22 20:49:55 +00:00
|
|
|
|
|
|
|
static void inputMan(struct Tag tag, char *params) {
|
|
|
|
(void)tag;
|
|
|
|
(void)params;
|
|
|
|
eventWait((const char *[]) { "man", "1", "catgirl", NULL });
|
|
|
|
}
|
|
|
|
|
2019-02-27 05:17:59 +00:00
|
|
|
static void inputMove(struct Tag tag, char *params) {
|
|
|
|
char *num = strsep(¶ms, " ");
|
2019-07-02 23:34:19 +00:00
|
|
|
if (!num) {
|
2019-02-27 05:17:59 +00:00
|
|
|
uiLog(tag, UIHot, L"/move requires a number");
|
2019-07-02 23:34:19 +00:00
|
|
|
return;
|
2019-02-27 05:17:59 +00:00
|
|
|
}
|
2019-07-02 23:34:19 +00:00
|
|
|
uiMoveTag(tag, strtol(num, NULL, 0), num[0] == '+' || num[0] == '-');
|
2019-02-27 05:17:59 +00:00
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
static void inputOpen(struct Tag tag, char *params) {
|
2018-09-11 18:36:30 +00:00
|
|
|
if (params && !isdigit(params[0])) {
|
|
|
|
urlOpenMatch(tag, params);
|
|
|
|
} else {
|
|
|
|
size_t at = (params ? strtoul(strsep(¶ms, "-,"), NULL, 0) : 1);
|
|
|
|
size_t to = (params ? strtoul(params, NULL, 0) : at);
|
|
|
|
urlOpenRange(tag, at - 1, to);
|
|
|
|
}
|
2018-08-09 04:24:49 +00:00
|
|
|
}
|
|
|
|
|
2019-02-22 20:49:55 +00:00
|
|
|
static void inputRaw(struct Tag tag, char *params) {
|
2018-08-13 03:55:12 +00:00
|
|
|
(void)tag;
|
2019-07-02 22:57:57 +00:00
|
|
|
(void)params;
|
|
|
|
self.raw ^= true;
|
|
|
|
uiFmt(
|
|
|
|
TagRaw, UIWarm, "\3%d%s\3 %s raw mode!",
|
|
|
|
colorGen(self.user), self.nick, (self.raw ? "engages" : "disengages")
|
|
|
|
);
|
2018-08-11 03:31:20 +00:00
|
|
|
}
|
|
|
|
|
2019-02-22 20:49:55 +00:00
|
|
|
static void inputURL(struct Tag tag, char *params) {
|
2018-08-13 17:49:03 +00:00
|
|
|
(void)params;
|
2019-02-22 20:49:55 +00:00
|
|
|
urlList(tag);
|
2018-08-13 17:49:03 +00:00
|
|
|
}
|
|
|
|
|
2019-02-22 20:49:55 +00:00
|
|
|
static void inputWindow(struct Tag tag, char *params) {
|
2019-02-23 17:44:20 +00:00
|
|
|
char *word = strsep(¶ms, " ");
|
|
|
|
if (!word) {
|
2019-02-22 20:49:55 +00:00
|
|
|
uiLog(tag, UIHot, L"/window requires a name or number");
|
|
|
|
return;
|
|
|
|
}
|
2019-02-23 17:44:20 +00:00
|
|
|
bool relative = (word[0] == '+' || word[0] == '-');
|
|
|
|
char *trail;
|
|
|
|
int num = strtol(word, &trail, 0);
|
|
|
|
if (!trail[0]) {
|
2019-02-23 17:24:39 +00:00
|
|
|
uiShowNum(num, relative);
|
2019-02-22 20:49:55 +00:00
|
|
|
} else {
|
2019-02-23 17:44:20 +00:00
|
|
|
struct Tag name = tagFind(word);
|
2019-02-22 20:49:55 +00:00
|
|
|
if (name.id != TagNone.id) {
|
|
|
|
uiShowTag(name);
|
|
|
|
} else {
|
2019-02-23 17:44:20 +00:00
|
|
|
uiFmt(tag, UIHot, "No window for %s", word);
|
2019-02-22 20:49:55 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-10 23:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 17:35:29 +00:00
|
|
|
static const struct {
|
2018-08-07 19:43:49 +00:00
|
|
|
const char *command;
|
2018-12-30 06:53:30 +00:00
|
|
|
Handler *handler;
|
2019-09-16 20:57:50 +00:00
|
|
|
bool limit;
|
2018-09-02 20:13:00 +00:00
|
|
|
} Commands[] = {
|
2019-09-16 20:57:50 +00:00
|
|
|
{ "/close", .handler = inputClose },
|
|
|
|
{ "/help", .handler = inputMan },
|
|
|
|
{ "/join", .handler = inputJoin, .limit = true },
|
|
|
|
{ "/list", .handler = inputList },
|
|
|
|
{ "/man", .handler = inputMan },
|
|
|
|
{ "/me", .handler = inputMe },
|
|
|
|
{ "/move", .handler = inputMove },
|
|
|
|
{ "/names", .handler = inputWho },
|
|
|
|
{ "/nick", .handler = inputNick },
|
|
|
|
{ "/open", .handler = inputOpen },
|
|
|
|
{ "/part", .handler = inputPart },
|
|
|
|
{ "/query", .handler = inputQuery, .limit = true },
|
|
|
|
{ "/quit", .handler = inputQuit },
|
|
|
|
{ "/quote", .handler = inputQuote, .limit = true },
|
|
|
|
{ "/raw", .handler = inputRaw, .limit = true },
|
|
|
|
{ "/topic", .handler = inputTopic },
|
|
|
|
{ "/url", .handler = inputURL },
|
|
|
|
{ "/who", .handler = inputWho },
|
|
|
|
{ "/whois", .handler = inputWhois },
|
|
|
|
{ "/window", .handler = inputWindow },
|
|
|
|
{ "/znc", .handler = inputZNC },
|
2018-08-04 17:35:29 +00:00
|
|
|
};
|
2018-09-02 20:13:00 +00:00
|
|
|
static const size_t CommandsLen = sizeof(Commands) / sizeof(Commands[0]);
|
2018-08-04 17:35:29 +00:00
|
|
|
|
2019-02-22 20:49:55 +00:00
|
|
|
void inputTab(void) {
|
|
|
|
for (size_t i = 0; i < CommandsLen; ++i) {
|
|
|
|
tabTouch(TagNone, Commands[i].command);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void input(struct Tag tag, char *input) {
|
2018-08-17 02:19:23 +00:00
|
|
|
bool slash = (input[0] == '/');
|
|
|
|
if (slash) {
|
|
|
|
char *space = strchr(&input[1], ' ');
|
|
|
|
char *extra = strchr(&input[1], '/');
|
|
|
|
if (extra && (!space || extra < space)) slash = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!slash) {
|
2018-12-05 19:46:34 +00:00
|
|
|
if (tag.id == TagRaw.id) {
|
2018-08-11 23:30:30 +00:00
|
|
|
ircFmt("%s\r\n", input);
|
2019-02-22 20:49:55 +00:00
|
|
|
} else if (tag.id != TagStatus.id) {
|
2018-08-11 23:30:30 +00:00
|
|
|
privmsg(tag, false, input);
|
|
|
|
}
|
2018-08-04 17:35:29 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-08-17 02:19:23 +00:00
|
|
|
|
2018-08-19 00:17:08 +00:00
|
|
|
char *word = strsep(&input, " ");
|
2018-08-09 21:49:31 +00:00
|
|
|
if (input && !input[0]) input = NULL;
|
2018-08-18 22:31:51 +00:00
|
|
|
|
|
|
|
char *trail;
|
2018-08-19 00:17:08 +00:00
|
|
|
strtol(&word[1], &trail, 0);
|
2018-08-18 22:31:51 +00:00
|
|
|
if (!trail[0]) {
|
2019-02-22 04:16:20 +00:00
|
|
|
inputWindow(tag, &word[1]);
|
2018-08-19 00:17:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *command = word;
|
2018-09-02 20:13:00 +00:00
|
|
|
const char *uniq = tabNext(TagNone, command);
|
2019-02-22 20:49:55 +00:00
|
|
|
if (uniq && tabNext(TagNone, command) == uniq) {
|
2018-08-19 00:17:08 +00:00
|
|
|
command = uniq;
|
|
|
|
tabAccept();
|
2018-08-18 22:31:51 +00:00
|
|
|
} else {
|
2018-08-19 00:17:08 +00:00
|
|
|
tabReject();
|
|
|
|
}
|
|
|
|
|
2018-09-02 20:13:00 +00:00
|
|
|
for (size_t i = 0; i < CommandsLen; ++i) {
|
|
|
|
if (strcasecmp(command, Commands[i].command)) continue;
|
2019-09-16 20:57:50 +00:00
|
|
|
if (self.limit && Commands[i].limit) {
|
|
|
|
uiFmt(tag, UIHot, "%s isn't available in restricted mode", command);
|
|
|
|
return;
|
|
|
|
}
|
2018-09-02 20:13:00 +00:00
|
|
|
Commands[i].handler(tag, input);
|
2018-08-19 00:17:08 +00:00
|
|
|
return;
|
2018-08-18 22:31:51 +00:00
|
|
|
}
|
2019-02-22 20:49:55 +00:00
|
|
|
uiFmt(tag, UIHot, "%s isn't a recognized command", command);
|
2018-08-09 01:48:30 +00:00
|
|
|
}
|