2012-02-05 18:29:09 -05:00
|
|
|
#include <string.h>
|
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
#include "jabber.h"
|
2012-02-05 18:29:09 -05:00
|
|
|
#include "log.h"
|
2012-02-06 19:08:59 -05:00
|
|
|
#include "windows.h"
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
// log reference
|
2012-02-05 18:29:09 -05:00
|
|
|
extern FILE *logp;
|
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
// private XMPP structs
|
|
|
|
static xmpp_log_t *_log;
|
|
|
|
static xmpp_ctx_t *_ctx;
|
|
|
|
static xmpp_conn_t *_conn;
|
|
|
|
|
|
|
|
// private XMPP handlers
|
|
|
|
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);
|
|
|
|
|
|
|
|
static int _jabber_message_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|
|
|
void * const userdata);
|
|
|
|
|
2012-02-08 21:47:25 -05:00
|
|
|
static int _roster_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|
|
|
void * const userdata);
|
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
void jabber_connect(char *user, char *passwd)
|
|
|
|
{
|
|
|
|
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, _jabber_conn_handler, _ctx);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void jabber_disconnect(void)
|
|
|
|
{
|
|
|
|
xmpp_conn_release(_conn);
|
|
|
|
xmpp_ctx_free(_ctx);
|
|
|
|
xmpp_shutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
void jabber_process_events(void)
|
|
|
|
{
|
|
|
|
xmpp_run_once(_ctx, 10);
|
|
|
|
}
|
|
|
|
|
2012-02-08 17:46:35 -05:00
|
|
|
void jabber_send(char *msg, char *recipient)
|
2012-02-06 19:08:59 -05: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 17:46:35 -05:00
|
|
|
xmpp_stanza_set_attribute(reply, "to", recipient);
|
2012-02-06 19:08:59 -05: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 18:29:09 -05:00
|
|
|
|
2012-02-08 21:47:25 -05: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-06 19:08:59 -05:00
|
|
|
static int _jabber_message_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
2012-02-05 18:29:09 -05:00
|
|
|
void * const userdata)
|
|
|
|
{
|
2012-02-06 17:29:05 -05:00
|
|
|
char *message;
|
2012-02-05 18:29:09 -05:00
|
|
|
|
|
|
|
if(!xmpp_stanza_get_child_by_name(stanza, "body"))
|
|
|
|
return 1;
|
|
|
|
if(!strcmp(xmpp_stanza_get_attribute(stanza, "type"), "error"))
|
|
|
|
return 1;
|
|
|
|
|
2012-02-06 17:29:05 -05:00
|
|
|
message = xmpp_stanza_get_text(xmpp_stanza_get_child_by_name(stanza, "body"));
|
2012-02-05 18:29:09 -05:00
|
|
|
|
|
|
|
char *from = xmpp_stanza_get_attribute(stanza, "from");
|
2012-02-08 17:46:35 -05:00
|
|
|
show_incomming_msg(from, message);
|
2012-02-05 18:29:09 -05:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
static void _jabber_conn_handler(xmpp_conn_t * const conn, const xmpp_conn_event_t status,
|
2012-02-05 18:29:09 -05:00
|
|
|
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;
|
2012-02-06 19:08:59 -05:00
|
|
|
log_msg(CONN, "connected");
|
|
|
|
xmpp_handler_add(conn, _jabber_message_handler, NULL, "message", NULL, ctx);
|
2012-02-08 21:47:25 -05:00
|
|
|
xmpp_id_handler_add(conn, _roster_handler, "roster", ctx);
|
2012-02-05 18:29:09 -05:00
|
|
|
|
|
|
|
pres = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(pres, "presence");
|
|
|
|
xmpp_send(conn, pres);
|
|
|
|
xmpp_stanza_release(pres);
|
|
|
|
}
|
|
|
|
else {
|
2012-02-06 19:08:59 -05:00
|
|
|
log_msg(CONN, "disconnected");
|
2012-02-05 18:29:09 -05:00
|
|
|
xmpp_stop(ctx);
|
|
|
|
}
|
|
|
|
}
|
2012-02-08 21:47:25 -05: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;
|
|
|
|
|
|
|
|
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");
|
|
|
|
cons_show("Roster:");
|
|
|
|
for (item = xmpp_stanza_get_children(query); item;
|
|
|
|
item = xmpp_stanza_get_next(item)) {
|
|
|
|
if ((name = xmpp_stanza_get_attribute(item, "name"))) {
|
|
|
|
char line[200];
|
2012-02-09 15:52:56 -05:00
|
|
|
sprintf(line, " %s (%s)", name,
|
|
|
|
xmpp_stanza_get_attribute(item, "jid"));
|
2012-02-08 21:47:25 -05:00
|
|
|
cons_show(line);
|
|
|
|
} else {
|
|
|
|
char line[200];
|
2012-02-09 15:52:56 -05:00
|
|
|
sprintf(line, " %s",
|
|
|
|
xmpp_stanza_get_attribute(item, "jid"));
|
2012-02-08 21:47:25 -05:00
|
|
|
cons_show(line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|