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, " ");
|
|
|
|
ircFmt("JOIN :%s\r\n", chan ? chan : tag.name);
|
2018-12-05 20:04:34 +00:00
|
|
|
}
|
|
|
|
|
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, " ");
|
|
|
|
if (nick) {
|
|
|
|
ircFmt("NICK :%s\r\n", nick);
|
2019-02-22 20:49:55 +00:00
|
|
|
} else {
|
|
|
|
uiLog(tag, UIHot, L"/nick requires a nickname");
|
|
|
|
}
|
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, " ");
|
|
|
|
if (nick) {
|
|
|
|
tabTouch(TagNone, nick);
|
2019-02-25 21:02:41 +00:00
|
|
|
uiShowTag(tagFor(nick, IRCDefault));
|
|
|
|
logReplay(tagFor(nick, IRCDefault));
|
2019-02-22 20:49:55 +00:00
|
|
|
} else {
|
|
|
|
uiLog(tag, UIHot, L"/query requires a nickname");
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
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, " ");
|
|
|
|
if (nick) {
|
|
|
|
ircFmt("WHOIS :%s\r\n", nick);
|
2019-02-22 20:49:55 +00:00
|
|
|
} else {
|
|
|
|
uiLog(tag, UIHot, L"/whois requires a nick");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 });
|
|
|
|
}
|
|
|
|
|
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-02-22 20:49:55 +00:00
|
|
|
if (!self.raw || !params) {
|
|
|
|
self.raw ^= true;
|
|
|
|
uiFmt(
|
|
|
|
TagRaw, UIWarm, "%s window is %s",
|
|
|
|
TagRaw.name, (self.raw ? "enabled" : "disabled")
|
|
|
|
);
|
2018-08-11 23:30:30 +00:00
|
|
|
}
|
2019-02-22 20:49:55 +00:00
|
|
|
if (params) ircFmt("%s\r\n", params);
|
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;
|
2018-09-02 20:13:00 +00:00
|
|
|
} Commands[] = {
|
2018-08-13 17:49:03 +00:00
|
|
|
{ "/close", inputClose },
|
2018-09-11 20:10:49 +00:00
|
|
|
{ "/help", inputMan },
|
2018-08-11 03:31:20 +00:00
|
|
|
{ "/join", inputJoin },
|
2018-09-10 23:18:26 +00:00
|
|
|
{ "/man", inputMan },
|
2018-08-07 19:59:27 +00:00
|
|
|
{ "/me", inputMe },
|
|
|
|
{ "/names", inputWho },
|
|
|
|
{ "/nick", inputNick },
|
2018-08-09 04:24:49 +00:00
|
|
|
{ "/open", inputOpen },
|
2018-08-13 17:49:03 +00:00
|
|
|
{ "/part", inputPart },
|
|
|
|
{ "/query", inputQuery },
|
2018-08-07 19:59:27 +00:00
|
|
|
{ "/quit", inputQuit },
|
2018-12-05 20:04:34 +00:00
|
|
|
{ "/raw", inputRaw },
|
2018-08-07 19:59:27 +00:00
|
|
|
{ "/topic", inputTopic },
|
2018-11-29 10:37:10 +00:00
|
|
|
{ "/url", inputURL },
|
2018-08-07 19:59:27 +00:00
|
|
|
{ "/who", inputWho },
|
2018-11-29 10:37:10 +00:00
|
|
|
{ "/whois", inputWhois },
|
2019-02-22 04:16:20 +00:00
|
|
|
{ "/window", inputWindow },
|
2019-02-22 21:07:32 +00:00
|
|
|
{ "/znc", 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;
|
|
|
|
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
|
|
|
}
|