catgirl/chat.c

94 lines
2.4 KiB
C
Raw Normal View History

/* 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/>.
*/
#define _WITH_GETLINE
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sysexits.h>
#include <unistd.h>
#include "chat.h"
2018-12-03 04:08:49 +00:00
static void freedup(char **field, const char *str) {
free(*field);
*field = strdup(str);
if (!*field) err(EX_OSERR, "strdup");
}
void selfNick(const char *nick) {
2018-12-03 04:08:49 +00:00
freedup(&self.nick, nick);
}
void selfUser(const char *user) {
2018-12-03 04:08:49 +00:00
freedup(&self.user, user);
}
2018-08-05 01:23:28 +00:00
static char *prompt(const char *prompt) {
char *line = NULL;
size_t cap;
2018-08-03 18:13:41 +00:00
for (;;) {
printf("%s", prompt);
fflush(stdout);
ssize_t len = getline(&line, &cap, stdin);
if (ferror(stdin)) err(EX_IOERR, "getline");
if (feof(stdin)) exit(EX_OK);
if (len < 2) continue;
2018-08-03 23:34:19 +00:00
line[len - 1] = '\0';
return line;
2018-08-03 23:17:29 +00:00
}
}
int main(int argc, char *argv[]) {
char *host = NULL;
2018-11-30 23:06:43 +00:00
char *port = "6697";
char *pass = NULL;
char *webirc = NULL;
int opt;
2018-12-03 04:08:49 +00:00
while (0 < (opt = getopt(argc, argv, "NW:h:j:l:n:p:r:u:vw:"))) {
switch (opt) {
2018-10-28 06:44:09 +00:00
break; case 'N': self.notify = true;
2018-11-30 23:06:43 +00:00
break; case 'W': webirc = strdup(optarg);
break; case 'h': host = strdup(optarg);
2018-12-03 04:08:49 +00:00
break; case 'j': freedup(&self.join, optarg);
break; case 'l': logOpen(optarg);
break; case 'n': selfNick(optarg);
2018-11-30 23:06:43 +00:00
break; case 'p': port = strdup(optarg);
2018-12-03 04:08:49 +00:00
break; case 'r': freedup(&self.real, optarg);
break; case 'u': selfUser(optarg);
break; case 'v': self.verbose = true;
2018-11-30 23:06:43 +00:00
break; case 'w': pass = strdup(optarg);
break; default: return EX_USAGE;
}
}
2018-11-30 23:06:43 +00:00
if (!port) err(EX_OSERR, "strdup");
if (!host) host = prompt("Host: ");
if (!self.nick) self.nick = prompt("Name: ");
if (!self.user) selfUser(self.nick);
2018-12-03 04:08:49 +00:00
if (!self.real) freedup(&self.real, self.nick);
2018-08-09 01:48:30 +00:00
inputTab();
uiInit();
uiDraw();
2018-11-30 23:06:43 +00:00
ircInit(host, port, pass, webirc);
eventLoop();
}