1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 17:37:47 +02:00
toxic/main.c

357 lines
8.0 KiB
C
Raw Normal View History

/*
* Toxic -- Tox Curses Client
*/
#include <curses.h>
2013-08-08 16:00:12 +02:00
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
2013-08-11 02:59:16 +02:00
#include <signal.h>
2013-08-08 16:00:12 +02:00
#ifdef _win32
#include <direct.h>
#else
#include <sys/stat.h>
#include <sys/types.h>
#endif
#include "../../core/Messenger.h"
#include "../../core/network.h"
#include "configdir.h"
#include "windows.h"
2013-08-13 00:50:43 +02:00
#include "prompt.h"
#include "friendlist.h"
2013-08-15 12:11:48 +02:00
/* Export for use in Callbacks */
char *DATA_FILE = NULL;
2013-08-18 17:59:34 +02:00
char dir[256];
2013-08-16 19:11:09 +02:00
void on_window_resize(int sig)
2013-08-11 02:59:16 +02:00
{
endwin();
refresh();
clear();
}
2013-08-18 14:34:50 +02:00
void setdir()
{
2013-08-18 17:59:34 +02:00
#ifdef WIN32
strcpy(dir, "%appdata%/.tox/");
#elif defined(MAC_OSX)
strcpy(dir, "~/Library/Application Support/.tox/");
#elif defined(linux)
strcpy(dir, "~/.tox/");
#endif
2013-08-18 14:34:50 +02:00
}
2013-08-07 00:27:51 +02:00
static void init_term()
{
2013-08-16 19:11:09 +02:00
/* Setup terminal */
signal(SIGWINCH, on_window_resize);
initscr();
cbreak();
keypad(stdscr, 1);
noecho();
timeout(100);
if (has_colors()) {
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);
init_pair(5, COLOR_YELLOW, COLOR_BLACK);
2013-08-18 04:43:10 +02:00
init_pair(6, COLOR_MAGENTA, COLOR_BLACK);
init_pair(7, COLOR_BLACK, COLOR_BLACK);
init_pair(8, COLOR_BLACK, COLOR_WHITE);
2013-08-16 19:11:09 +02:00
}
refresh();
}
2013-08-14 22:02:21 +02:00
static Messenger *init_tox()
2013-08-07 00:27:51 +02:00
{
2013-08-16 19:11:09 +02:00
/* Init core */
Messenger *m = initMessenger();
/* Callbacks */
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-18 17:59:34 +02:00
#ifdef __linux__
setname(m, (uint8_t *) "Cool guy", sizeof("Cool guy"));
#elif defined(WIN32)
setname(m, (uint8_t *) "I should install GNU/Linux", sizeof("I should install GNU/Linux"));
#elif defined(MAC_OSX)
setname(m, (uint8_t *) "Hipster", sizeof("Hipster")); //This used to users of other Unixes are hipsters
#else
setname(m, (uint8_t *) "Registered Minix user #4", sizeof("Registered Minix user #4"));
#endif
2013-08-16 19:11:09 +02:00
return m;
}
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)
{
2013-08-16 19:11:09 +02:00
if (DHT_isconnected())
return 0;
2013-08-18 17:59:34 +02:00
#if WIN32
FILE *fp = fopen("%appdata%/.tox/DHTservers", "r");
#elif MAC_OSX
FILE *fp = fopen("~/Library/Application Support/.tox/DHTservers", "r");
#else
FILE *fp = fopen("~/.tox/DHTservers", "r");
#endif
2013-08-16 19:11:09 +02:00
if (!fp)
return 1;
char servers[MAXSERVERS][MAXLINE];
char line[MAXLINE];
int linecnt = 0;
while (fgets(line, sizeof(line), fp) && linecnt < MAXSERVERS) {
if (strlen(line) > MINLINE)
strcpy(servers[linecnt++], line);
}
if (linecnt < 1) {
fclose(fp);
return 2;
}
2013-08-10 21:46:29 +02:00
fclose(fp);
2013-08-16 19:11:09 +02:00
char *server = servers[rand() % linecnt];
char *ip = strtok(server, " ");
char *port = strtok(NULL, " ");
char *key = strtok(NULL, " ");
if (!ip || !port || !key)
return 3;
IP_Port dht;
dht.port = htons(atoi(port));
uint32_t resolved_address = resolve_addr(ip);
if (resolved_address == 0)
return 0;
dht.ip.i = resolved_address;
unsigned char *binary_string = hex_string_to_bin(key);
DHT_bootstrap(dht, binary_string);
free(binary_string);
2013-08-13 04:34:08 +02:00
return 0;
2013-08-10 21:46:29 +02:00
}
2013-08-16 19:11:09 +02:00
static void do_tox(Messenger *m, ToxWindow *prompt)
2013-08-07 00:27:51 +02:00
{
2013-08-16 19:11:09 +02:00
static int conn_try = 0;
static int conn_err = 0;
static bool dht_on = false;
if (!dht_on && !DHT_isconnected() && !(conn_try++ % 100)) {
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);
}
} else if (!dht_on && DHT_isconnected()) {
dht_on = true;
wprintw(prompt->window, "\nDHT connected.\n");
} else if (dht_on && !DHT_isconnected()) {
dht_on = false;
wprintw(prompt->window, "\nDHT disconnected. Attempting to reconnect.\n");
2013-08-13 04:04:07 +02:00
}
2013-08-16 19:11:09 +02:00
doMessenger(m);
}
int f_loadfromfile;
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
{
if (f_loadfromfile == 0) /*If file loading/saving is disabled*/
return 0;
2013-08-16 19:11:09 +02:00
2013-08-15 12:11:48 +02:00
FILE *fd;
size_t len;
uint8_t *buf;
len = Messenger_size(m);
buf = malloc(len);
2013-08-16 19:11:09 +02:00
2013-08-07 00:27:51 +02:00
if (buf == NULL) {
2013-08-15 12:11:48 +02:00
return 1;
}
2013-08-16 19:11:09 +02:00
Messenger_save(m, buf);
2013-08-03 21:12:02 +02:00
fd = fopen(path, "w");
2013-08-16 19:11:09 +02:00
2013-08-07 00:27:51 +02:00
if (fd == NULL) {
2013-08-15 12:11:48 +02:00
free(buf);
return 2;
}
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)
{
if (f_loadfromfile == 0) /*If file loading/saving is disabled*/
return;
2013-08-16 19:11:09 +02:00
2013-08-15 12:11:48 +02:00
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);
2013-08-16 19:11:09 +02:00
2013-08-15 12:11:48 +02:00
if (buf == NULL) {
fprintf(stderr, "malloc() failed.\n");
fclose(fd);
endwin();
exit(1);
}
2013-08-16 19:11:09 +02:00
2013-08-15 12:11:48 +02:00
if (fread(buf, len, 1, fd) != 1) {
fprintf(stderr, "fread() failed.\n");
free(buf);
fclose(fd);
endwin();
exit(1);
}
2013-08-16 19:11:09 +02:00
2013-08-15 12:11:48 +02:00
Messenger_load(m, buf, len);
uint32_t i;
2013-08-16 19:11:09 +02:00
2013-08-15 12:11:48 +02:00
for (i = 0; i < m->numfriends; i++) {
on_friendadded(m, i);
}
free(buf);
fclose(fd);
} else {
int st;
2013-08-16 19:11:09 +02:00
2013-08-15 12:11:48 +02:00
if ((st = store_data(m, path)) != 0) {
fprintf(stderr, "Store messenger failed with return code: %d\n", st);
endwin();
exit(1);
}
}
}
2013-08-07 00:27:51 +02:00
int main(int argc, char *argv[])
{
2013-08-18 14:34:50 +02:00
setdir();
2013-08-16 19:11:09 +02:00
char *user_config_dir = get_user_config_dir();
int config_err = 0;
f_loadfromfile = 1;
int f_flag = 0;
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)
DATA_FILE = strdup(argv[i + 1]);
else
f_flag = -1;
} else if (argv[i][1] == 'n') {
f_loadfromfile = 0;
}
}
}
if (DATA_FILE == NULL ) {
config_err = create_user_config_dir(user_config_dir);
if (config_err) {
2013-08-18 14:34:50 +02:00
strcat(DATA_FILE, dir);
2013-08-16 19:11:09 +02:00
DATA_FILE = strdup("data");
2013-08-18 14:34:50 +02:00
2013-08-18 17:59:34 +02:00
2013-08-16 19:11:09 +02:00
} else {
DATA_FILE = malloc(strlen(user_config_dir) + strlen(CONFIGDIR) + strlen("data") + 1);
strcpy(DATA_FILE, user_config_dir);
strcat(DATA_FILE, CONFIGDIR);
2013-08-18 14:34:50 +02:00
strcat(DATA_FILE, dir);
DATA_FILE = strdup("data");
2013-08-16 19:11:09 +02:00
}
}
free(user_config_dir);
init_term();
Messenger *m = init_tox();
ToxWindow *prompt = init_windows(m);
if (f_loadfromfile)
load_data(m, DATA_FILE);
if (f_flag == -1) {
attron(COLOR_PAIR(3) | A_BOLD);
wprintw(prompt->window, "You passed '-f' without giving an argument.\n"
"defaulting to 'data' for a keyfile...\n");
attroff(COLOR_PAIR(3) | A_BOLD);
2013-08-03 21:12:02 +02:00
}
if (config_err) {
2013-08-16 19:11:09 +02:00
attron(COLOR_PAIR(3) | A_BOLD);
wprintw(prompt->window, "Unable to determine configuration directory.\n"
"defaulting to 'data' for a keyfile...\n");
attroff(COLOR_PAIR(3) | A_BOLD);
}
while (true) {
/* Update tox */
do_tox(m, prompt);
/* Draw */
draw_active_window(m);
}
2013-08-16 19:11:09 +02:00
cleanupMessenger(m);
free(DATA_FILE);
return 0;
}