#include #include #include #include #include #include "log.h" // refernce to log extern FILE *logp; // area for log message in profanity static const char *prof = "prof"; // static windows static WINDOW *title_bar; static WINDOW *cmd_bar; static WINDOW *cmd_win; static WINDOW *main_win; // message handlers int in_message_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, void * const userdata); int out_message_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, void * const userdata); // connection handler void conn_handler(xmpp_conn_t * const conn, const xmpp_conn_event_t status, const int error, xmpp_stream_error_t * const stream_error, void * const userdata); // curses functions void init(void); void create_title_bar(void); void create_command_bar(void); void create_command_window(void); void create_main_window(void); int main_runner(WINDOW *win, void* data) ; struct receiver { xmpp_ctx_t *ctx; xmpp_conn_t *conn; }; int main(void) { char cmd[50]; xmpp_ctx_t *ctx; xmpp_conn_t *conn; xmpp_log_t *log; logp = fopen("profanity.log", "a"); logmsg(prof, "Starting Profanity..."); // initialise curses init(); refresh(); // create windows create_title_bar(); wrefresh(title_bar); create_command_bar(); wrefresh(cmd_bar); create_command_window(); wrefresh(cmd_win); create_main_window(); wrefresh(main_win); // set cursor in command window and loop in input wmove(cmd_win, 0, 0); while (TRUE) { wgetstr(cmd_win, cmd); // handle quit if (strcmp(cmd, "/quit") == 0) { break; // handle connect } else if (strncmp(cmd, "/connect ", 9) == 0) { char *user; char passwd[20]; user = strndup(cmd+9, strlen(cmd)-9); mvwprintw(cmd_bar, 0, 0, "Enter password:"); wrefresh(cmd_bar); wclear(cmd_win); noecho(); mvwgetstr(cmd_win, 0, 0, passwd); echo(); wprintw(main_win, "Connecting as: %s/%s\n", user, passwd); wrefresh(main_win); wclear(cmd_win); wclear(cmd_bar); wrefresh(cmd_bar); wmove(cmd_win, 0, 0); wrefresh(cmd_win); char loginmsg[100]; sprintf(loginmsg, "User <%s> logged in", user); logmsg(prof, loginmsg); xmpp_initialize(); log = xmpp_get_file_logger(); ctx = xmpp_ctx_new(NULL, log); conn = xmpp_conn_new(ctx); xmpp_conn_set_jid(conn, user); xmpp_conn_set_pass(conn, passwd); xmpp_connect_client(conn, NULL, 0, conn_handler, ctx); struct receiver a_receiver; a_receiver.ctx = ctx; a_receiver.conn = conn; use_window(main_win, &main_runner, &a_receiver); wprintw(cmd_win, "WORKED!"); wrefresh(cmd_win); } else { // echo ignore wclear(cmd_win); wmove(cmd_win, 0, 0); } } endwin(); fclose(logp); return 0; } int main_runner(WINDOW *win, void* data) { struct receiver *rec = (struct receiver*) data; xmpp_run(rec->ctx); xmpp_conn_release(rec->conn); xmpp_ctx_free(rec->ctx); xmpp_shutdown(); return 1; } void wait_command(void) { wclear(cmd_win); wmove(cmd_win, 0, 0); } int in_message_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, void * const userdata) { char *intext; if(!xmpp_stanza_get_child_by_name(stanza, "body")) return 1; if(!strcmp(xmpp_stanza_get_attribute(stanza, "type"), "error")) return 1; intext = xmpp_stanza_get_text(xmpp_stanza_get_child_by_name(stanza, "body")); char in_line[200]; sprintf(in_line, "%s: %s\n", xmpp_stanza_get_attribute(stanza, "from"), intext); wprintw(main_win, in_line); wrefresh(main_win); wmove(cmd_win, 0, 0); wrefresh(cmd_win); return 1; } int out_message_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, void * const userdata) { char replytxt[100];; echo(); wgetstr(cmd_win, replytxt); wclear(cmd_win); wmove(cmd_win, 0, 0); wrefresh(cmd_win); xmpp_stanza_t *reply, *body, *text; xmpp_ctx_t *ctx = (xmpp_ctx_t*)userdata; reply = xmpp_stanza_new(ctx); xmpp_stanza_set_name(reply, "message"); xmpp_stanza_set_type(reply, xmpp_stanza_get_type(stanza)?xmpp_stanza_get_type(stanza):"chat"); xmpp_stanza_set_attribute(reply, "to", xmpp_stanza_get_attribute(stanza, "from")); body = xmpp_stanza_new(ctx); xmpp_stanza_set_name(body, "body"); text = xmpp_stanza_new(ctx); xmpp_stanza_set_text(text, replytxt); xmpp_stanza_add_child(body, text); xmpp_stanza_add_child(reply, body); xmpp_send(conn, reply); xmpp_stanza_release(reply); wprintw(main_win, "me: %s\n", replytxt); wrefresh(main_win); wmove(cmd_win, 0, 0); return 1; } void conn_handler(xmpp_conn_t * const conn, const xmpp_conn_event_t status, const int error, xmpp_stream_error_t * const stream_error, void * const userdata) { xmpp_ctx_t *ctx = (xmpp_ctx_t *)userdata; if (status == XMPP_CONN_CONNECT) { xmpp_stanza_t* pres; fprintf(logp, "DEBUG: connected\n"); xmpp_handler_add(conn,in_message_handler, NULL, "message", NULL, ctx); // xmpp_handler_add(conn,out_message_handler, NULL, "message", NULL, ctx); pres = xmpp_stanza_new(ctx); xmpp_stanza_set_name(pres, "presence"); xmpp_send(conn, pres); xmpp_stanza_release(pres); } else { fprintf(logp, "DEBUG: disconnected\n"); xmpp_stop(ctx); } } void init(void) { initscr(); cbreak(); keypad(stdscr, TRUE); start_color(); init_color(COLOR_WHITE, 1000, 1000, 1000); init_pair(1, COLOR_WHITE, COLOR_BLACK); init_pair(2, COLOR_GREEN, COLOR_BLACK); init_color(COLOR_BLUE, 0, 0, 250); init_pair(3, COLOR_WHITE, COLOR_BLUE); attron(A_BOLD); attron(COLOR_PAIR(1)); } void create_title_bar(void) { char *title = "Profanity"; int rows, cols; getmaxyx(stdscr, rows, cols); title_bar = newwin(1, cols, 0, 0); wbkgd(title_bar, COLOR_PAIR(3)); mvwprintw(title_bar, 0, 0, title); } void create_command_bar(void) { int rows, cols; getmaxyx(stdscr, rows, cols); cmd_bar = newwin(1, cols, rows-2, 0); wbkgd(cmd_bar, COLOR_PAIR(3)); } void create_command_window(void) { int rows, cols; getmaxyx(stdscr, rows, cols); cmd_win = newwin(1, cols, rows-1, 0); } void create_main_window(void) { int rows, cols; getmaxyx(stdscr, rows, cols); main_win = newwin(rows-3, cols, 1, 0); }