1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/jabber.c

218 lines
5.7 KiB
C
Raw Normal View History

2012-02-05 23:29:09 +00:00
#include <string.h>
2012-02-07 00:08:59 +00:00
#include "jabber.h"
2012-02-05 23:29:09 +00:00
#include "log.h"
2012-02-07 00:08:59 +00:00
#include "windows.h"
2012-02-05 23:29:09 +00:00
2012-02-07 00:08:59 +00:00
// log reference
2012-02-05 23:29:09 +00:00
extern FILE *logp;
2012-02-07 00:08:59 +00:00
// private XMPP structs
static xmpp_log_t *_log;
static xmpp_ctx_t *_ctx;
static xmpp_conn_t *_conn;
2012-02-17 00:42:41 +00:00
// connection status
static int _conn_status = CONNECTING;
2012-02-12 22:10:30 +00:00
void xmpp_file_logger(void * const userdata, const xmpp_log_level_t level,
const char * const area, const char * const msg);
static const xmpp_log_t file_log = { &xmpp_file_logger, XMPP_LEVEL_DEBUG };
xmpp_log_t *xmpp_get_file_logger()
{
return (xmpp_log_t*) &file_log;
}
void xmpp_file_logger(void * const userdata, const xmpp_log_level_t level,
const char * const area, const char * const msg)
{
log_msg(area, msg);
}
2012-02-07 00:08:59 +00:00
// private XMPP handlers
2012-02-10 23:58:57 +00:00
static void _jabber_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);
2012-02-07 00:08:59 +00:00
2012-02-10 23:58:57 +00:00
static int _jabber_message_handler(xmpp_conn_t * const conn,
xmpp_stanza_t * const stanza, void * const userdata);
2012-02-07 00:08:59 +00:00
2012-02-09 02:47:25 +00:00
static int _roster_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
void * const userdata);
2012-02-17 00:42:41 +00:00
int jabber_connection_status(void)
{
return (_conn_status);
}
int jabber_connect(char *user, char *passwd)
2012-02-07 00:08:59 +00:00
{
xmpp_initialize();
2012-02-07 00:08:59 +00:00
_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);
int connect_status = xmpp_connect_client(_conn, NULL, 0, _jabber_conn_handler, _ctx);
2012-02-17 00:42:41 +00:00
if (connect_status == 0) {
2012-02-19 00:43:35 +00:00
cons_good_show("Connecting...");
2012-02-17 00:42:41 +00:00
_conn_status = CONNECTING;
}
else {
2012-02-19 00:43:35 +00:00
cons_bad_show("XMPP connection failure");
2012-02-17 00:42:41 +00:00
_conn_status = DISCONNECTED;
}
return _conn_status;
2012-02-07 00:08:59 +00:00
}
void jabber_disconnect(void)
{
xmpp_conn_release(_conn);
xmpp_ctx_free(_ctx);
xmpp_shutdown();
2012-02-17 00:42:41 +00:00
_conn_status = DISCONNECTED;
2012-02-07 00:08:59 +00:00
}
void jabber_process_events(void)
{
xmpp_run_once(_ctx, 10);
}
2012-02-08 22:46:35 +00:00
void jabber_send(char *msg, char *recipient)
2012-02-07 00:08:59 +00:00
{
xmpp_stanza_t *reply, *body, *text;
reply = xmpp_stanza_new(_ctx);
xmpp_stanza_set_name(reply, "message");
xmpp_stanza_set_type(reply, "chat");
2012-02-08 22:46:35 +00:00
xmpp_stanza_set_attribute(reply, "to", recipient);
2012-02-07 00:08:59 +00:00
body = xmpp_stanza_new(_ctx);
xmpp_stanza_set_name(body, "body");
text = xmpp_stanza_new(_ctx);
xmpp_stanza_set_text(text, msg);
xmpp_stanza_add_child(body, text);
xmpp_stanza_add_child(reply, body);
xmpp_send(_conn, reply);
xmpp_stanza_release(reply);
}
2012-02-05 23:29:09 +00:00
2012-02-09 02:47:25 +00:00
void jabber_roster_request(void)
{
xmpp_stanza_t *iq, *query;
iq = xmpp_stanza_new(_ctx);
xmpp_stanza_set_name(iq, "iq");
xmpp_stanza_set_type(iq, "get");
xmpp_stanza_set_id(iq, "roster");
query = xmpp_stanza_new(_ctx);
xmpp_stanza_set_name(query, "query");
xmpp_stanza_set_ns(query, XMPP_NS_ROSTER);
xmpp_stanza_add_child(iq, query);
xmpp_stanza_release(query);
xmpp_send(_conn, iq);
xmpp_stanza_release(iq);
}
2012-02-10 23:58:57 +00:00
static int _jabber_message_handler(xmpp_conn_t * const conn,
xmpp_stanza_t * const stanza, void * const userdata)
2012-02-05 23:29:09 +00:00
{
2012-02-19 20:04:42 +00:00
xmpp_stanza_t *body = xmpp_stanza_get_child_by_name(stanza, "body");
if(body == NULL)
2012-02-05 23:29:09 +00:00
return 1;
2012-02-19 20:04:42 +00:00
char *type = xmpp_stanza_get_attribute(stanza, "type");
if(strcmp(type, "error") == 0)
return 1;
2012-02-05 23:29:09 +00:00
2012-02-19 20:04:42 +00:00
char *message = xmpp_stanza_get_text(body);
2012-02-05 23:29:09 +00:00
char *from = xmpp_stanza_get_attribute(stanza, "from");
2012-02-12 22:09:07 +00:00
win_show_incomming_msg(from, message);
2012-02-05 23:29:09 +00:00
return 1;
}
2012-02-10 23:58:57 +00:00
static void _jabber_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)
2012-02-05 23:29:09 +00:00
{
xmpp_ctx_t *ctx = (xmpp_ctx_t *)userdata;
if (status == XMPP_CONN_CONNECT) {
2012-02-19 19:42:48 +00:00
const char *jid = xmpp_conn_get_jid(conn);
const char *msg = " logged in successfully.";
char line[strlen(jid) + 1 + strlen(msg) + 1];
2012-02-19 19:42:48 +00:00
sprintf(line, "%s %s", xmpp_conn_get_jid(conn), msg);
2012-02-17 00:42:41 +00:00
title_bar_connected();
2012-02-19 00:43:35 +00:00
cons_good_show(line);
status_bar_print_message(xmpp_conn_get_jid(conn));
status_bar_refresh();
2012-02-05 23:29:09 +00:00
xmpp_stanza_t* pres;
2012-02-07 00:08:59 +00:00
xmpp_handler_add(conn, _jabber_message_handler, NULL, "message", NULL, ctx);
2012-02-09 02:47:25 +00:00
xmpp_id_handler_add(conn, _roster_handler, "roster", ctx);
2012-02-05 23:29:09 +00:00
pres = xmpp_stanza_new(ctx);
xmpp_stanza_set_name(pres, "presence");
xmpp_send(conn, pres);
xmpp_stanza_release(pres);
2012-02-16 23:35:40 +00:00
jabber_roster_request();
2012-02-17 00:42:41 +00:00
_conn_status = CONNECTED;
2012-02-05 23:29:09 +00:00
}
else {
2012-02-19 00:43:35 +00:00
cons_bad_show("Login failed.");
2012-02-07 00:08:59 +00:00
log_msg(CONN, "disconnected");
2012-02-05 23:29:09 +00:00
xmpp_stop(ctx);
2012-02-17 00:42:41 +00:00
_conn_status = DISCONNECTED;
2012-02-05 23:29:09 +00:00
}
}
2012-02-09 02:47:25 +00:00
static int _roster_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
void * const userdata)
{
xmpp_stanza_t *query, *item;
char *type, *name, *jid;
2012-02-09 02:47:25 +00:00
type = xmpp_stanza_get_type(stanza);
if (strcmp(type, "error") == 0)
log_msg(CONN, "ERROR: query failed");
else {
query = xmpp_stanza_get_child_by_name(stanza, "query");
2012-02-19 00:43:35 +00:00
cons_highlight_show("Roster:");
2012-02-19 19:56:03 +00:00
item = xmpp_stanza_get_children(query);
while (item != NULL) {
name = xmpp_stanza_get_attribute(item, "name");
jid = xmpp_stanza_get_attribute(item, "jid");
2012-02-19 19:56:03 +00:00
if (name != NULL) {
char line[2 + strlen(name) + 2 + strlen(jid) + 1 + 1];
sprintf(line, " %s (%s)", name, jid);
2012-02-12 22:23:51 +00:00
cons_show(line);
2012-02-09 02:47:25 +00:00
} else {
char line[2 + strlen(jid) + 1];
sprintf(line, " %s", jid);
2012-02-12 22:23:51 +00:00
cons_show(line);
2012-02-09 02:47:25 +00:00
}
2012-02-19 19:56:03 +00:00
item = xmpp_stanza_get_next(item);
2012-02-09 02:47:25 +00:00
}
}
return 1;
}