1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 16:27:46 +02:00
toxic/main.c

495 lines
11 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-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"
extern ToxWindow new_prompt();
extern ToxWindow new_friendlist();
extern int friendlist_onFriendAdded(Messenger *m, int num);
extern void disable_chatwin(int f_num);
2013-08-07 00:27:51 +02:00
extern int add_req(uint8_t *public_key); // XXX
2013-08-10 21:46:29 +02:00
extern unsigned char *hex_string_to_bin(char hex_string[]);
2013-08-07 00:27:51 +02:00
/* Holds status of chat windows */
char WINDOW_STATUS[MAX_WINDOW_SLOTS];
2013-08-08 16:59:22 +02:00
#ifndef TOXICVER
#define TOXICVER "NOVER" //Use the -D flag to set this
#endif
static ToxWindow windows[MAX_WINDOW_SLOTS];
static ToxWindow* prompt;
2013-08-07 00:27:51 +02:00
int w_num;
int active_window;
2013-08-07 00:27:51 +02:00
/* CALLBACKS START */
void on_request(uint8_t *public_key, uint8_t *data, uint16_t length, void* userdata)
2013-08-07 00:27:51 +02:00
{
int n = add_req(public_key);
wprintw(prompt->window, "\nFriend request from:\n");
2013-08-07 00:27:51 +02:00
int i;
2013-08-08 10:51:58 +02:00
for (i = 0; i < KEY_SIZE_BYTES; ++i) {
wprintw(prompt->window, "%02x", public_key[i] & 0xff);
}
2013-08-08 21:01:33 +02:00
wprintw(prompt->window, "\nWith the message: %s\n", data);
wprintw(prompt->window, "\nUse \"accept %d\" to accept it.\n", n);
2013-08-07 00:27:51 +02:00
for (i = 0; i < MAX_WINDOW_SLOTS; ++i) {
if (windows[i].onFriendRequest != NULL)
2013-07-31 19:20:03 +02:00
windows[i].onFriendRequest(&windows[i], public_key, data, length);
}
}
void on_message(Messenger *m, int friendnumber, uint8_t *string, uint16_t length, void* userdata)
2013-08-07 00:27:51 +02:00
{
int i;
for (i = 0; i < MAX_WINDOW_SLOTS; ++i) {
if (windows[i].onMessage != NULL)
windows[i].onMessage(&windows[i], m, friendnumber, string, length);
2013-07-31 19:20:03 +02:00
}
}
void on_action(Messenger *m, int friendnumber, uint8_t *string, uint16_t length, void* userdata)
2013-08-08 21:01:33 +02:00
{
int i;
for (i = 0; i < MAX_WINDOW_SLOTS; ++i) {
if (windows[i].onAction != NULL)
windows[i].onAction(&windows[i], m, friendnumber, string, length);
2013-08-08 21:01:33 +02:00
}
}
void on_nickchange(Messenger *m, int friendnumber, uint8_t *string, uint16_t length, void* userdata)
2013-08-07 00:27:51 +02:00
{
2013-08-09 06:25:45 +02:00
wprintw(prompt->window, "\n(nickchange) %d: %s\n", friendnumber, string);
2013-08-07 00:27:51 +02:00
int i;
for (i = 0; i < MAX_WINDOW_SLOTS; ++i) {
if (windows[i].onNickChange != NULL)
2013-07-31 19:20:03 +02:00
windows[i].onNickChange(&windows[i], friendnumber, string, length);
}
}
void on_statuschange(Messenger *m, int friendnumber, uint8_t *string, uint16_t length, void* userdata)
2013-08-07 00:27:51 +02:00
{
2013-08-06 02:08:05 +02:00
wprintw(prompt->window, "\n(statuschange) %d: %s\n", friendnumber, string);
2013-08-07 00:27:51 +02:00
int i;
for (i=0; i<MAX_WINDOW_SLOTS; ++i) {
if (windows[i].onStatusChange != NULL)
2013-07-31 19:20:03 +02:00
windows[i].onStatusChange(&windows[i], friendnumber, string, length);
}
}
void on_friendadded(Messenger *m, int friendnumber)
2013-08-07 00:27:51 +02:00
{
friendlist_onFriendAdded(m, friendnumber);
}
2013-08-07 00:27:51 +02:00
/* CALLBACKS END */
2013-08-07 00:27:51 +02:00
static void init_term()
{
/* Setup terminal */
initscr();
cbreak();
keypad(stdscr, 1);
noecho();
timeout(100);
2013-08-07 00:27:51 +02:00
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);
2013-08-13 01:50:50 +02:00
init_pair(5, COLOR_YELLOW, COLOR_BLACK);
}
refresh();
}
static Messenger * init_tox()
2013-08-07 00:27:51 +02:00
{
/* Init core */
Messenger *m = initMessenger();
2013-08-07 00:27:51 +02:00
/* 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);
#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
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)
{
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-07 00:27:51 +02:00
void init_window_status()
{
/* Default window values decrement from -2 */
int i;
2013-08-07 00:27:51 +02:00
for (i = 0; i < N_DEFAULT_WINS; ++i)
WINDOW_STATUS[i] = -(i+2);
int j;
for (j = N_DEFAULT_WINS; j < MAX_WINDOW_SLOTS; j++)
WINDOW_STATUS[j] = -1;
}
int add_window(Messenger *m, ToxWindow w, int n)
2013-08-07 00:27:51 +02:00
{
if (w_num >= TOXWINDOWS_MAX_NUM)
return -1;
2013-08-07 00:27:51 +02:00
if (LINES < 2)
return -1;
w.window = newwin(LINES - 2, COLS, 0, 0);
2013-08-07 00:27:51 +02:00
if (w.window == NULL)
return -1;
windows[n] = w;
w.onInit(&w, m);
w_num++;
return n;
2013-07-31 19:20:03 +02:00
}
/* Deletes window w and cleans up */
2013-08-07 00:27:51 +02:00
void del_window(ToxWindow *w, int f_num)
{
delwin(w->window);
int i;
2013-08-07 00:27:51 +02:00
for (i = N_DEFAULT_WINS; i < MAX_WINDOW_SLOTS; ++i) {
if (WINDOW_STATUS[i] == f_num) {
WINDOW_STATUS[i] = -1;
disable_chatwin(f_num);
break;
}
}
clear();
refresh();
}
static void init_windows(Messenger *m)
2013-08-07 00:27:51 +02:00
{
w_num = 0;
int n_prompt = 0;
int n_friendslist = 1;
if (add_window(m, new_prompt(), n_prompt) == -1
|| add_window(m, new_friendlist(), n_friendslist) == -1) {
fprintf(stderr, "add_window() failed.\n");
endwin();
exit(1);
}
prompt = &windows[n_prompt];
}
static void do_tox(Messenger *m)
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;
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()) {
dht_on = true;
2013-08-10 21:46:29 +02:00
wprintw(prompt->window, "\nDHT connected.\n");
}
2013-08-07 00:27:51 +02:00
else if (dht_on && !DHT_isconnected()) {
dht_on = false;
2013-08-12 09:10:47 +02:00
wprintw(prompt->window, "\nDHT disconnected. Attempting to reconnect.\n");
}
doMessenger(m);
}
static void load_data(Messenger *m, char *path)
2013-08-07 00:27:51 +02:00
{
FILE *fd;
size_t len;
2013-08-07 00:27:51 +02:00
uint8_t *buf;
2013-08-07 00:27:51 +02:00
if ((fd = fopen(path, "r")) != NULL) {
fseek(fd, 0, SEEK_END);
len = ftell(fd);
fseek(fd, 0, SEEK_SET);
buf = malloc(len);
2013-08-07 00:27:51 +02:00
if (buf == NULL) {
fprintf(stderr, "malloc() failed.\n");
fclose(fd);
endwin();
exit(1);
}
2013-08-07 00:27:51 +02:00
if (fread(buf, len, 1, fd) != 1){
fprintf(stderr, "fread() failed.\n");
free(buf);
fclose(fd);
endwin();
exit(1);
}
Messenger_load(m, buf, len);
}
else {
len = Messenger_size(m);
buf = malloc(len);
2013-08-07 00:27:51 +02:00
if (buf == NULL) {
fprintf(stderr, "malloc() failed.\n");
endwin();
exit(1);
}
Messenger_save(m, buf);
2013-08-03 21:12:02 +02:00
fd = fopen(path, "w");
2013-08-07 00:27:51 +02:00
if (fd == NULL) {
fprintf(stderr, "fopen() failed.\n");
free(buf);
endwin();
exit(1);
}
2013-08-07 00:27:51 +02:00
if (fwrite(buf, len, 1, fd) != 1){
fprintf(stderr, "fwrite() failed.\n");
free(buf);
fclose(fd);
endwin();
exit(1);
}
}
free(buf);
fclose(fd);
}
2013-08-07 00:27:51 +02:00
static void draw_bar()
{
static int odd = 0;
2013-08-07 08:34:55 +02:00
int blinkrate = 30;
attron(COLOR_PAIR(4));
mvhline(LINES - 2, 0, '_', COLS);
attroff(COLOR_PAIR(4));
move(LINES - 1, 0);
attron(COLOR_PAIR(4) | A_BOLD);
printw(" TOXIC " TOXICVER "|");
attroff(COLOR_PAIR(4) | A_BOLD);
int i;
2013-08-07 00:27:51 +02:00
for (i = 0; i < (MAX_WINDOW_SLOTS); ++i) {
if (WINDOW_STATUS[i] != -1) {
2013-08-07 00:27:51 +02:00
if (i == active_window)
attron(A_BOLD);
2013-08-07 08:34:55 +02:00
odd = (odd+1) % blinkrate;
2013-08-08 21:01:33 +02:00
if (windows[i].blink && (odd < (blinkrate/2)))
attron(COLOR_PAIR(3));
2013-08-08 21:01:33 +02:00
printw(" %s", windows[i].title);
2013-08-08 21:01:33 +02:00
if (windows[i].blink && (odd < (blinkrate/2)))
2013-08-07 08:34:55 +02:00
attroff(COLOR_PAIR(3));
2013-08-08 21:01:33 +02:00
2013-08-07 00:27:51 +02:00
if (i == active_window) {
attroff(A_BOLD);
}
}
}
refresh();
}
2013-08-07 00:27:51 +02:00
void prepare_window(WINDOW *w)
{
mvwin(w, 0, 0);
wresize(w, LINES-2, COLS);
}
/* Shows next window when tab or back-tab is pressed */
2013-08-07 00:27:51 +02:00
void set_active_window(int ch)
{
int f_inf = 0;
int max = MAX_WINDOW_SLOTS-1;
if (ch == '\t') {
2013-08-07 00:27:51 +02:00
int i = (active_window + 1) % max;
while (true) {
if (WINDOW_STATUS[i] != -1) {
2013-08-07 00:27:51 +02:00
active_window = i;
return;
}
i = (i + 1) % max;
2013-08-07 00:27:51 +02:00
if (f_inf++ > max) { // infinite loop check
endwin();
exit(2);
}
}
}else {
2013-08-07 00:27:51 +02:00
int i = active_window - 1;
if (i < 0) i = max;
while (true) {
if (WINDOW_STATUS[i] != -1) {
2013-08-07 00:27:51 +02:00
active_window = i;
return;
}
if (--i < 0) i = max;
if (f_inf++ > max) {
endwin();
exit(2);
}
}
}
}
2013-08-07 00:27:51 +02:00
int main(int argc, char *argv[])
{
int ch;
2013-08-10 21:46:29 +02:00
ToxWindow* a;
2013-08-08 16:00:12 +02:00
char *user_config_dir = get_user_config_dir();
2013-08-10 21:46:29 +02:00
char *DATA_FILE;
2013-08-08 16:00:12 +02:00
int config_err = create_user_config_dir(user_config_dir);
if(config_err) {
2013-08-10 21:46:29 +02:00
DATA_FILE = "data";
} else {
2013-08-10 21:46:29 +02:00
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");
}
2013-08-11 17:51:10 +02:00
free(user_config_dir);
2013-08-10 21:46:29 +02:00
/* This is broken */
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-10 21:46:29 +02:00
DATA_FILE = argv[i + 1];
2013-08-07 00:27:51 +02:00
else
f_flag = -1;
} 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
init_term();
Messenger *m = init_tox();
init_windows(m);
2013-08-05 08:48:59 +02:00
init_window_status();
2013-08-11 06:55:09 +02:00
if(f_loadfromfile)
load_data(m, DATA_FILE);
free(DATA_FILE);
2013-08-07 00:27:51 +02:00
if (f_flag == -1) {
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"
"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);
}
while(true) {
2013-08-07 00:27:51 +02:00
/* Update tox */
do_tox(m);
2013-08-07 00:27:51 +02:00
/* Draw */
a = &windows[active_window];
prepare_window(a->window);
a->blink = false;
draw_bar();
a->onDraw(a);
2013-08-07 00:27:51 +02:00
/* Handle input */
ch = getch();
2013-08-07 00:27:51 +02:00
if (ch == '\t' || ch == KEY_BTAB)
set_active_window(ch);
2013-08-07 08:34:55 +02:00
else if (ch != ERR)
a->onKey(a, m, ch);
}
cleanupMessenger(m);
return 0;
}