2013-07-30 01:32:39 +02:00
|
|
|
/*
|
|
|
|
* Toxic -- Tox Curses Client
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <curses.h>
|
2013-08-08 16:00:12 +02:00
|
|
|
#include <errno.h>
|
2013-07-30 01:32:39 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
2013-08-11 02:59:16 +02:00
|
|
|
#include <signal.h>
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-08 16:00:12 +02:00
|
|
|
#ifdef _win32
|
|
|
|
#include <direct.h>
|
|
|
|
#else
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
|
2013-07-30 01:32:39 +02:00
|
|
|
#include "../../core/Messenger.h"
|
|
|
|
#include "../../core/network.h"
|
|
|
|
|
2013-08-08 10:15:07 +02:00
|
|
|
#include "configdir.h"
|
2013-07-30 01:32:39 +02:00
|
|
|
#include "windows.h"
|
2013-08-13 00:50:43 +02:00
|
|
|
#include "prompt.h"
|
|
|
|
#include "friendlist.h"
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-15 12:11:48 +02:00
|
|
|
/* Export for use in Callbacks */
|
|
|
|
char *DATA_FILE = NULL;
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-11 02:59:16 +02:00
|
|
|
void on_window_resize(int sig)
|
|
|
|
{
|
|
|
|
endwin();
|
|
|
|
refresh();
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
static void init_term()
|
|
|
|
{
|
|
|
|
/* Setup terminal */
|
2013-08-11 02:59:16 +02:00
|
|
|
signal(SIGWINCH, on_window_resize);
|
2013-07-30 01:32:39 +02:00
|
|
|
initscr();
|
|
|
|
cbreak();
|
|
|
|
keypad(stdscr, 1);
|
|
|
|
noecho();
|
2013-08-04 12:27:36 +02:00
|
|
|
timeout(100);
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
if (has_colors()) {
|
2013-07-30 01:32:39 +02:00
|
|
|
start_color();
|
|
|
|
init_pair(1, COLOR_GREEN, COLOR_BLACK);
|
|
|
|
init_pair(2, COLOR_CYAN, COLOR_BLACK);
|
|
|
|
init_pair(3, COLOR_RED, COLOR_BLACK);
|
|
|
|
init_pair(4, COLOR_BLUE, COLOR_BLACK);
|
2013-08-13 01:50:50 +02:00
|
|
|
init_pair(5, COLOR_YELLOW, COLOR_BLACK);
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
2013-08-14 22:02:21 +02:00
|
|
|
static Messenger *init_tox()
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
|
|
|
/* Init core */
|
2013-08-12 23:34:46 +02:00
|
|
|
Messenger *m = initMessenger();
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
/* Callbacks */
|
2013-08-12 14:23:46 +02:00
|
|
|
m_callback_friendrequest(m, on_request, NULL);
|
|
|
|
m_callback_friendmessage(m, on_message, NULL);
|
|
|
|
m_callback_namechange(m, on_nickchange, NULL);
|
|
|
|
m_callback_statusmessage(m, on_statuschange, NULL);
|
|
|
|
m_callback_action(m, on_action, NULL);
|
2013-08-13 13:39:04 +02:00
|
|
|
#ifdef __linux__
|
|
|
|
setname(m, (uint8_t*) "Cool guy", sizeof("Cool guy"));
|
|
|
|
#elif WIN32
|
|
|
|
setname(m, (uint8_t*) "I should install GNU/Linux", sizeof("I should install GNU/Linux"));
|
|
|
|
#else
|
|
|
|
setname(m, (uint8_t*) "Hipster", sizeof("Hipster"));
|
|
|
|
#endif
|
2013-08-12 23:34:46 +02:00
|
|
|
return m;
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-10 21:46:29 +02:00
|
|
|
#define MAXLINE 90 /* Approx max number of chars in a sever line (IP + port + key) */
|
2013-08-11 06:55:09 +02:00
|
|
|
#define MINLINE 70
|
2013-08-10 21:46:29 +02:00
|
|
|
#define MAXSERVERS 50
|
|
|
|
|
|
|
|
/* Connects to a random DHT server listed in the DHTservers file */
|
|
|
|
int init_connection(void)
|
|
|
|
{
|
|
|
|
if (DHT_isconnected())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
FILE *fp = fopen("../../../other/DHTservers", "r");
|
2013-08-11 06:55:09 +02:00
|
|
|
if (!fp)
|
2013-08-10 21:46:29 +02:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
char servers[MAXSERVERS][MAXLINE];
|
|
|
|
char line[MAXLINE];
|
|
|
|
int linecnt = 0;
|
|
|
|
while (fgets(line, sizeof(line), fp) && linecnt < MAXSERVERS) {
|
2013-08-12 09:10:47 +02:00
|
|
|
if (strlen(line) > MINLINE)
|
2013-08-10 21:46:29 +02:00
|
|
|
strcpy(servers[linecnt++], line);
|
|
|
|
}
|
|
|
|
if (linecnt < 1) {
|
|
|
|
fclose(fp);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
|
2013-08-11 06:55:09 +02:00
|
|
|
char *server = servers[rand() % linecnt];
|
2013-08-10 21:46:29 +02:00
|
|
|
char *ip = strtok(server, " ");
|
|
|
|
char *port = strtok(NULL, " ");
|
|
|
|
char *key = strtok(NULL, " ");
|
2013-08-11 06:55:09 +02:00
|
|
|
if (!ip || !port || !key)
|
|
|
|
return 3;
|
2013-08-10 21:46:29 +02:00
|
|
|
|
|
|
|
IP_Port dht;
|
|
|
|
dht.port = htons(atoi(port));
|
|
|
|
uint32_t resolved_address = resolve_addr(ip);
|
|
|
|
if (resolved_address == 0)
|
2013-08-13 04:34:08 +02:00
|
|
|
return 0;
|
2013-08-10 21:46:29 +02:00
|
|
|
dht.ip.i = resolved_address;
|
|
|
|
unsigned char *binary_string = hex_string_to_bin(key);
|
|
|
|
DHT_bootstrap(dht, binary_string);
|
|
|
|
free(binary_string);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-13 02:21:03 +02:00
|
|
|
static void do_tox(Messenger *m, ToxWindow * prompt)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-08-12 11:59:08 +02:00
|
|
|
static int conn_try = 0;
|
2013-08-13 04:04:07 +02:00
|
|
|
static int conn_err = 0;
|
2013-07-30 01:32:39 +02:00
|
|
|
static bool dht_on = false;
|
2013-08-12 11:59:08 +02:00
|
|
|
if (!dht_on && !DHT_isconnected() && !(conn_try++ % 100)) {
|
2013-08-13 04:04:07 +02:00
|
|
|
if (!conn_err) {
|
|
|
|
conn_err = init_connection();
|
|
|
|
wprintw(prompt->window, "\nEstablishing connection...\n");
|
|
|
|
if (conn_err)
|
|
|
|
wprintw(prompt->window, "\nAuto-connect failed with error code %d\n", conn_err);
|
|
|
|
}
|
2013-08-12 09:10:47 +02:00
|
|
|
}
|
|
|
|
else if (!dht_on && DHT_isconnected()) {
|
2013-07-30 01:32:39 +02:00
|
|
|
dht_on = true;
|
2013-08-10 21:46:29 +02:00
|
|
|
wprintw(prompt->window, "\nDHT connected.\n");
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
2013-08-07 00:27:51 +02:00
|
|
|
else if (dht_on && !DHT_isconnected()) {
|
2013-07-30 01:32:39 +02:00
|
|
|
dht_on = false;
|
2013-08-12 09:10:47 +02:00
|
|
|
wprintw(prompt->window, "\nDHT disconnected. Attempting to reconnect.\n");
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
2013-08-11 05:24:11 +02:00
|
|
|
doMessenger(m);
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-15 12:11:48 +02:00
|
|
|
/*
|
|
|
|
* Store Messenger to given location
|
|
|
|
* Return 0 stored successfully
|
|
|
|
* Return 1 malloc failed
|
|
|
|
* Return 2 opening path failed
|
|
|
|
* Return 3 fwrite failed
|
|
|
|
*/
|
|
|
|
int store_data(Messenger *m, char *path)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-08-15 12:11:48 +02:00
|
|
|
FILE *fd;
|
|
|
|
size_t len;
|
|
|
|
uint8_t *buf;
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-11 05:24:11 +02:00
|
|
|
len = Messenger_size(m);
|
2013-07-30 01:32:39 +02:00
|
|
|
buf = malloc(len);
|
2013-08-07 00:27:51 +02:00
|
|
|
if (buf == NULL) {
|
2013-08-15 12:11:48 +02:00
|
|
|
return 1;
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
2013-08-11 05:24:11 +02:00
|
|
|
Messenger_save(m, buf);
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-03 21:12:02 +02:00
|
|
|
fd = fopen(path, "w");
|
2013-08-07 00:27:51 +02:00
|
|
|
if (fd == NULL) {
|
2013-08-15 12:11:48 +02:00
|
|
|
free(buf);
|
|
|
|
return 2;
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-15 12:11:48 +02:00
|
|
|
if (fwrite(buf, len, 1, fd) != 1) {
|
|
|
|
free(buf);
|
|
|
|
fclose(fd);
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
fclose(fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void load_data(Messenger *m, char *path)
|
|
|
|
{
|
|
|
|
FILE *fd;
|
|
|
|
size_t len;
|
|
|
|
uint8_t *buf;
|
|
|
|
|
|
|
|
if ((fd = fopen(path, "r")) != NULL) {
|
|
|
|
fseek(fd, 0, SEEK_END);
|
|
|
|
len = ftell(fd);
|
|
|
|
fseek(fd, 0, SEEK_SET);
|
|
|
|
|
|
|
|
buf = malloc(len);
|
|
|
|
if (buf == NULL) {
|
|
|
|
fprintf(stderr, "malloc() failed.\n");
|
|
|
|
fclose(fd);
|
|
|
|
endwin();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (fread(buf, len, 1, fd) != 1) {
|
|
|
|
fprintf(stderr, "fread() failed.\n");
|
|
|
|
free(buf);
|
|
|
|
fclose(fd);
|
|
|
|
endwin();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
Messenger_load(m, buf, len);
|
|
|
|
|
|
|
|
uint32_t i;
|
|
|
|
for (i = 0; i < m->numfriends; i++) {
|
|
|
|
on_friendadded(m, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
fclose(fd);
|
|
|
|
} else {
|
|
|
|
int st;
|
|
|
|
if ((st = store_data(m, path)) != 0) {
|
|
|
|
fprintf(stderr, "Store messenger failed with return code: %d\n", st);
|
|
|
|
endwin();
|
|
|
|
exit(1);
|
|
|
|
}
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2013-08-08 16:00:12 +02:00
|
|
|
char *user_config_dir = get_user_config_dir();
|
2013-08-14 19:21:36 +02:00
|
|
|
int config_err = 0;
|
2013-08-10 21:46:29 +02:00
|
|
|
|
|
|
|
int f_loadfromfile = 1;
|
|
|
|
int f_flag = 0;
|
2013-08-07 00:27:51 +02:00
|
|
|
int i = 0;
|
|
|
|
for (i = 0; i < argc; ++i) {
|
|
|
|
if (argv[i] == NULL)
|
|
|
|
break;
|
|
|
|
else if (argv[i][0] == '-') {
|
|
|
|
if (argv[i][1] == 'f') {
|
|
|
|
if (argv[i + 1] != NULL)
|
2013-08-14 17:40:26 +02:00
|
|
|
DATA_FILE = strdup(argv[i + 1]);
|
2013-08-07 00:27:51 +02:00
|
|
|
else
|
|
|
|
f_flag = -1;
|
2013-08-09 00:50:29 +02:00
|
|
|
} else if (argv[i][1] == 'n') {
|
2013-08-10 21:46:29 +02:00
|
|
|
f_loadfromfile = 0;
|
2013-08-07 00:27:51 +02:00
|
|
|
}
|
2013-08-03 21:12:02 +02:00
|
|
|
}
|
2013-08-07 00:27:51 +02:00
|
|
|
}
|
2013-08-03 21:12:02 +02:00
|
|
|
|
2013-08-14 19:21:36 +02:00
|
|
|
if (DATA_FILE == NULL ) {
|
|
|
|
config_err = create_user_config_dir(user_config_dir);
|
|
|
|
if (config_err) {
|
|
|
|
DATA_FILE = strdup("data");
|
|
|
|
} else {
|
|
|
|
DATA_FILE = malloc(strlen(user_config_dir) + strlen(CONFIGDIR) + strlen("data") + 1);
|
|
|
|
strcpy(DATA_FILE, user_config_dir);
|
|
|
|
strcat(DATA_FILE, CONFIGDIR);
|
|
|
|
strcat(DATA_FILE, "data");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(user_config_dir);
|
|
|
|
|
2013-07-30 01:32:39 +02:00
|
|
|
init_term();
|
2013-08-12 23:34:46 +02:00
|
|
|
Messenger *m = init_tox();
|
2013-08-14 22:02:21 +02:00
|
|
|
ToxWindow *prompt = init_windows(m);
|
2013-08-05 08:48:59 +02:00
|
|
|
init_window_status();
|
2013-08-11 06:55:09 +02:00
|
|
|
|
2013-08-11 00:00:54 +02:00
|
|
|
if(f_loadfromfile)
|
2013-08-12 23:34:46 +02:00
|
|
|
load_data(m, DATA_FILE);
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
if (f_flag == -1) {
|
2013-08-03 22:12:02 +02:00
|
|
|
attron(COLOR_PAIR(3) | A_BOLD);
|
2013-08-10 21:46:29 +02:00
|
|
|
wprintw(prompt->window, "You passed '-f' without giving an argument.\n"
|
2013-08-03 22:12:02 +02:00
|
|
|
"defaulting to 'data' for a keyfile...\n");
|
|
|
|
attroff(COLOR_PAIR(3) | A_BOLD);
|
|
|
|
}
|
2013-08-08 16:00:12 +02:00
|
|
|
|
|
|
|
if(config_err) {
|
|
|
|
attron(COLOR_PAIR(3) | A_BOLD);
|
2013-08-10 21:46:29 +02:00
|
|
|
wprintw(prompt->window, "Unable to determine configuration directory.\n"
|
2013-08-08 16:00:12 +02:00
|
|
|
"defaulting to 'data' for a keyfile...\n");
|
|
|
|
attroff(COLOR_PAIR(3) | A_BOLD);
|
|
|
|
}
|
2013-07-30 01:32:39 +02:00
|
|
|
while(true) {
|
2013-08-07 00:27:51 +02:00
|
|
|
/* Update tox */
|
2013-08-13 02:21:03 +02:00
|
|
|
do_tox(m, prompt);
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
/* Draw */
|
2013-08-13 02:21:03 +02:00
|
|
|
draw_active_window(m);
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
2013-08-15 12:11:48 +02:00
|
|
|
|
2013-08-11 05:24:11 +02:00
|
|
|
cleanupMessenger(m);
|
2013-08-15 12:11:48 +02:00
|
|
|
free(DATA_FILE);
|
2013-07-30 01:32:39 +02:00
|
|
|
return 0;
|
|
|
|
}
|