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