2018-08-04 17:35:29 +00:00
|
|
|
/* Copyright (C) 2018 Curtis McEnroe <june@causal.agency>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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-08-13 03:55:12 +00:00
|
|
|
static char *param(const char *command, char **params, const char *name) {
|
|
|
|
char *param = strsep(params, " ");
|
|
|
|
if (param) return param;
|
|
|
|
uiFmt(TAG_STATUS, "%s requires a %s", command, name);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
typedef void (*Handler)(struct Tag tag, char *params);
|
2018-08-04 17:35:29 +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) {
|
|
|
|
(void)tag;
|
2018-08-13 03:55:12 +00:00
|
|
|
char *nick = param("/nick", ¶ms, "name");
|
|
|
|
if (!nick) return;
|
|
|
|
ircFmt("NICK %s\r\n", nick);
|
2018-08-04 17:35:29 +00:00
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
static void inputJoin(struct Tag tag, char *params) {
|
|
|
|
(void)tag;
|
2018-08-13 03:55:12 +00:00
|
|
|
char *chan = param("/join", ¶ms, "channel");
|
|
|
|
if (!chan) return;
|
|
|
|
ircFmt("JOIN %s\r\n", chan);
|
2018-08-04 18:33:57 +00:00
|
|
|
}
|
|
|
|
|
2018-08-13 17:49:03 +00:00
|
|
|
static void inputPart(struct Tag tag, char *params) {
|
|
|
|
if (params) {
|
|
|
|
ircFmt("PART %s :%s\r\n", tag.name, params);
|
|
|
|
} else {
|
|
|
|
ircFmt("PART %s :Goodbye\r\n", tag.name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void inputQuery(struct Tag tag, char *params) {
|
|
|
|
(void)tag;
|
|
|
|
char *nick = param("/query", ¶ms, "name");
|
|
|
|
tabTouch(TAG_NONE, nick);
|
|
|
|
uiViewTag(tagFor(nick));
|
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
static void inputWho(struct Tag tag, char *params) {
|
2018-08-13 03:55:12 +00:00
|
|
|
(void)params;
|
2018-08-11 03:31:20 +00:00
|
|
|
ircFmt("WHO %s\r\n", tag.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
static void inputQuit(struct Tag tag, char *params) {
|
|
|
|
(void)tag;
|
2018-08-04 17:35:29 +00:00
|
|
|
if (params) {
|
2018-08-07 19:43:49 +00:00
|
|
|
ircFmt("QUIT :%s\r\n", params);
|
2018-08-04 17:35:29 +00:00
|
|
|
} else {
|
2018-08-04 21:54:46 +00:00
|
|
|
ircFmt("QUIT :Goodbye\r\n");
|
2018-08-04 17:35:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
static void inputUrl(struct Tag tag, char *params) {
|
2018-08-09 04:24:49 +00:00
|
|
|
(void)params;
|
2018-08-11 03:31:20 +00:00
|
|
|
urlList(tag);
|
2018-08-09 04:24:49 +00:00
|
|
|
}
|
2018-08-11 03:31:20 +00:00
|
|
|
static void inputOpen(struct Tag tag, char *params) {
|
2018-08-13 03:44:58 +00:00
|
|
|
size_t at = (params ? strtoul(strsep(¶ms, "-,"), NULL, 0) : 1);
|
|
|
|
size_t to = (params ? strtoul(params, NULL, 0) : at);
|
|
|
|
urlOpen(tag, at - 1, to);
|
2018-08-09 04:24:49 +00:00
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
static void inputView(struct Tag tag, char *params) {
|
2018-08-13 03:55:12 +00:00
|
|
|
(void)tag;
|
|
|
|
char *view = param("/view", ¶ms, "name or number");
|
2018-08-11 03:31:20 +00:00
|
|
|
if (!view) return;
|
2018-08-11 23:30:30 +00:00
|
|
|
int num = strtol(view, &view, 0);
|
2018-08-13 03:55:12 +00:00
|
|
|
if (!view[0]) {
|
2018-08-11 23:30:30 +00:00
|
|
|
uiViewNum(num);
|
2018-08-13 03:55:12 +00:00
|
|
|
} else {
|
|
|
|
struct Tag tag = tagFind(view);
|
|
|
|
if (tag.id != TAG_NONE.id) {
|
|
|
|
uiViewTag(tag);
|
|
|
|
} else {
|
|
|
|
uiFmt(TAG_STATUS, "No view for %s", view);
|
|
|
|
}
|
2018-08-11 23:30:30 +00:00
|
|
|
}
|
2018-08-11 03:31:20 +00:00
|
|
|
}
|
|
|
|
|
2018-08-13 17:49:03 +00:00
|
|
|
static void inputClose(struct Tag tag, char *params) {
|
|
|
|
(void)params;
|
|
|
|
uiCloseTag(tag);
|
|
|
|
tabRemove(TAG_NONE, tag.name);
|
|
|
|
}
|
|
|
|
|
2018-08-04 17:35:29 +00:00
|
|
|
static const struct {
|
2018-08-07 19:43:49 +00:00
|
|
|
const char *command;
|
2018-08-04 17:35:29 +00:00
|
|
|
Handler handler;
|
|
|
|
} COMMANDS[] = {
|
2018-08-13 17:49:03 +00:00
|
|
|
{ "/close", inputClose },
|
2018-08-11 03:31:20 +00:00
|
|
|
{ "/join", inputJoin },
|
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 },
|
|
|
|
{ "/topic", inputTopic },
|
2018-08-09 04:24:49 +00:00
|
|
|
{ "/url", inputUrl },
|
2018-08-11 03:31:20 +00:00
|
|
|
{ "/view", inputView },
|
2018-08-07 19:59:27 +00:00
|
|
|
{ "/who", inputWho },
|
2018-08-04 17:35:29 +00:00
|
|
|
};
|
|
|
|
static const size_t COMMANDS_LEN = sizeof(COMMANDS) / sizeof(COMMANDS[0]);
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void input(struct Tag tag, char *input) {
|
2018-08-04 17:35:29 +00:00
|
|
|
if (input[0] != '/') {
|
2018-08-11 23:30:30 +00:00
|
|
|
if (tag.id == TAG_VERBOSE.id) {
|
|
|
|
ircFmt("%s\r\n", input);
|
|
|
|
} else if (tag.id != TAG_STATUS.id) {
|
|
|
|
privmsg(tag, false, input);
|
|
|
|
}
|
2018-08-04 17:35:29 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-08-07 19:43:49 +00:00
|
|
|
char *command = strsep(&input, " ");
|
2018-08-09 21:49:31 +00:00
|
|
|
if (input && !input[0]) input = NULL;
|
2018-08-04 17:35:29 +00:00
|
|
|
for (size_t i = 0; i < COMMANDS_LEN; ++i) {
|
2018-08-07 19:59:27 +00:00
|
|
|
if (strcasecmp(command, COMMANDS[i].command)) continue;
|
2018-08-11 03:31:20 +00:00
|
|
|
COMMANDS[i].handler(tag, input);
|
2018-08-04 17:35:29 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-08-11 23:30:30 +00:00
|
|
|
uiFmt(TAG_STATUS, "%s isn't a recognized command", command);
|
2018-08-04 17:35:29 +00:00
|
|
|
}
|
2018-08-09 01:48:30 +00:00
|
|
|
|
|
|
|
void inputTab(void) {
|
|
|
|
for (size_t i = 0; i < COMMANDS_LEN; ++i) {
|
2018-08-11 23:30:30 +00:00
|
|
|
tabTouch(TAG_NONE, COMMANDS[i].command);
|
2018-08-09 01:48:30 +00:00
|
|
|
}
|
|
|
|
}
|