2012-02-20 15:07:38 -05:00
|
|
|
/*
|
|
|
|
* jabber.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-02-05 18:29:09 -05:00
|
|
|
#include <string.h>
|
2012-07-03 13:47:16 -04:00
|
|
|
#include <stdlib.h>
|
2012-08-25 20:50:50 -04:00
|
|
|
|
2012-02-25 22:15:42 -05:00
|
|
|
#include <strophe.h>
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2012-08-22 20:08:06 -04:00
|
|
|
#include "common.h"
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "jabber.h"
|
|
|
|
#include "log.h"
|
2012-05-10 17:18:08 -04:00
|
|
|
#include "preferences.h"
|
2012-09-11 17:55:59 -04:00
|
|
|
#include "profanity.h"
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2012-02-27 16:16:54 -05:00
|
|
|
#define PING_INTERVAL 120000 // 2 minutes
|
|
|
|
|
2012-02-26 12:59:04 -05:00
|
|
|
static struct _jabber_conn_t {
|
|
|
|
xmpp_log_t *log;
|
|
|
|
xmpp_ctx_t *ctx;
|
|
|
|
xmpp_conn_t *conn;
|
2012-05-27 14:20:17 -04:00
|
|
|
jabber_conn_status_t conn_status;
|
2012-05-27 14:29:43 -04:00
|
|
|
jabber_presence_t presence;
|
2012-02-26 12:59:04 -05:00
|
|
|
int tls_disabled;
|
|
|
|
} jabber_conn;
|
2012-02-16 19:42:41 -05:00
|
|
|
|
2012-10-02 16:37:55 -04:00
|
|
|
static log_level_t _get_log_level(xmpp_log_level_t xmpp_level);
|
|
|
|
static xmpp_log_level_t _get_xmpp_log_level();
|
|
|
|
static void _xmpp_file_logger(void * const userdata,
|
|
|
|
const xmpp_log_level_t level, const char * const area,
|
|
|
|
const char * const msg);
|
|
|
|
static xmpp_log_t * _xmpp_get_file_logger();
|
2012-08-18 21:44:46 -04:00
|
|
|
|
2012-10-02 16:37:55 -04:00
|
|
|
// XMPP event handlers
|
|
|
|
static void _connection_handler(xmpp_conn_t * const conn,
|
2012-02-10 18:58:57 -05:00
|
|
|
const xmpp_conn_event_t status, const int error,
|
|
|
|
xmpp_stream_error_t * const stream_error, void * const userdata);
|
2012-10-02 16:37:55 -04:00
|
|
|
static int _message_handler(xmpp_conn_t * const conn,
|
2012-02-10 18:58:57 -05:00
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
2012-03-08 20:06:55 -05:00
|
|
|
static int _roster_handler(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
2012-10-02 16:37:55 -04:00
|
|
|
static int _presence_handler(xmpp_conn_t * const conn,
|
2012-02-27 17:53:31 -05:00
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
2012-02-27 16:16:54 -05:00
|
|
|
static int _ping_timed_handler(xmpp_conn_t * const conn, void * const userdata);
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
jabber_init(const int disable_tls)
|
2012-02-26 12:59:04 -05:00
|
|
|
{
|
2012-08-25 19:54:18 -04:00
|
|
|
log_info("Initialising XMPP");
|
2012-02-26 12:59:04 -05:00
|
|
|
jabber_conn.conn_status = JABBER_STARTED;
|
2012-05-27 14:29:43 -04:00
|
|
|
jabber_conn.presence = PRESENCE_OFFLINE;
|
2012-02-26 12:59:04 -05:00
|
|
|
jabber_conn.tls_disabled = disable_tls;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
jabber_conn_status_t
|
|
|
|
jabber_connect(const char * const user,
|
2012-05-27 14:20:17 -04:00
|
|
|
const char * const passwd)
|
2012-02-06 19:08:59 -05:00
|
|
|
{
|
2012-08-25 19:54:18 -04:00
|
|
|
log_info("Connecting as %s", user);
|
2012-02-06 19:08:59 -05:00
|
|
|
xmpp_initialize();
|
2012-02-16 18:28:11 -05:00
|
|
|
|
2012-10-02 16:37:55 -04:00
|
|
|
jabber_conn.log = _xmpp_get_file_logger();
|
2012-02-26 12:59:04 -05:00
|
|
|
jabber_conn.ctx = xmpp_ctx_new(NULL, jabber_conn.log);
|
|
|
|
jabber_conn.conn = xmpp_conn_new(jabber_conn.ctx);
|
2012-02-06 19:08:59 -05:00
|
|
|
|
2012-02-26 12:59:04 -05:00
|
|
|
xmpp_conn_set_jid(jabber_conn.conn, user);
|
|
|
|
xmpp_conn_set_pass(jabber_conn.conn, passwd);
|
2012-02-06 19:08:59 -05:00
|
|
|
|
2012-02-26 12:59:04 -05:00
|
|
|
if (jabber_conn.tls_disabled)
|
|
|
|
xmpp_conn_disable_tls(jabber_conn.conn);
|
2012-02-25 22:15:42 -05:00
|
|
|
|
2012-02-26 12:59:04 -05:00
|
|
|
int connect_status = xmpp_connect_client(jabber_conn.conn, NULL, 0,
|
2012-10-02 16:37:55 -04:00
|
|
|
_connection_handler, jabber_conn.ctx);
|
2012-02-16 18:28:11 -05:00
|
|
|
|
2012-02-26 12:18:03 -05:00
|
|
|
if (connect_status == 0)
|
2012-02-26 12:59:04 -05:00
|
|
|
jabber_conn.conn_status = JABBER_CONNECTING;
|
2012-02-26 12:18:03 -05:00
|
|
|
else
|
2012-02-26 12:59:04 -05:00
|
|
|
jabber_conn.conn_status = JABBER_DISCONNECTED;
|
2012-02-16 19:42:41 -05:00
|
|
|
|
2012-02-26 12:59:04 -05:00
|
|
|
return jabber_conn.conn_status;
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
|
|
|
|
2012-09-11 17:55:59 -04:00
|
|
|
gboolean
|
2012-07-24 18:19:48 -04:00
|
|
|
jabber_disconnect(void)
|
2012-02-06 19:08:59 -05:00
|
|
|
{
|
2012-09-11 17:55:59 -04:00
|
|
|
// if connected, send end stream and wait for response
|
2012-02-26 12:59:04 -05:00
|
|
|
if (jabber_conn.conn_status == JABBER_CONNECTED) {
|
2012-08-25 19:54:18 -04:00
|
|
|
log_info("Closing connection");
|
2012-09-10 20:30:48 -04:00
|
|
|
xmpp_disconnect(jabber_conn.conn);
|
2012-09-11 17:55:59 -04:00
|
|
|
jabber_conn.conn_status = JABBER_DISCONNECTING;
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
// if disconnected dont wait just shutdown
|
|
|
|
} else if (jabber_conn.conn_status == JABBER_DISCONNECTED) {
|
|
|
|
log_info("No connection open");
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
// any other states, just shutdown
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
2012-02-19 20:42:29 -05:00
|
|
|
}
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
jabber_process_events(void)
|
2012-02-06 19:08:59 -05:00
|
|
|
{
|
2012-02-26 12:59:04 -05:00
|
|
|
if (jabber_conn.conn_status == JABBER_CONNECTED
|
2012-09-11 17:55:59 -04:00
|
|
|
|| jabber_conn.conn_status == JABBER_CONNECTING
|
|
|
|
|| jabber_conn.conn_status == JABBER_DISCONNECTING)
|
2012-02-26 12:59:04 -05:00
|
|
|
xmpp_run_once(jabber_conn.ctx, 10);
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
jabber_send(const char * const msg, const char * const recipient)
|
2012-02-06 19:08:59 -05:00
|
|
|
{
|
2012-04-19 17:26:12 -04:00
|
|
|
char *coded_msg = str_replace(msg, "&", "&");
|
2012-07-03 13:47:16 -04:00
|
|
|
char *coded_msg2 = str_replace(coded_msg, "<", "<");
|
|
|
|
char *coded_msg3 = str_replace(coded_msg2, ">", ">");
|
2012-04-19 17:26:12 -04:00
|
|
|
|
2012-08-15 20:08:20 -04:00
|
|
|
xmpp_stanza_t *reply, *body, *text, *active;
|
|
|
|
|
|
|
|
active = xmpp_stanza_new(jabber_conn.ctx);
|
|
|
|
xmpp_stanza_set_name(active, "active");
|
|
|
|
xmpp_stanza_set_ns(active, "http://jabber.org/protocol/chatstates");
|
2012-02-06 19:08:59 -05:00
|
|
|
|
2012-02-26 12:59:04 -05:00
|
|
|
reply = xmpp_stanza_new(jabber_conn.ctx);
|
2012-02-06 19:08:59 -05:00
|
|
|
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
|
|
|
|
2012-02-26 12:59:04 -05:00
|
|
|
body = xmpp_stanza_new(jabber_conn.ctx);
|
2012-02-06 19:08:59 -05:00
|
|
|
xmpp_stanza_set_name(body, "body");
|
|
|
|
|
2012-02-26 12:59:04 -05:00
|
|
|
text = xmpp_stanza_new(jabber_conn.ctx);
|
2012-07-03 13:47:16 -04:00
|
|
|
xmpp_stanza_set_text(text, coded_msg3);
|
2012-08-15 20:08:20 -04:00
|
|
|
xmpp_stanza_add_child(reply, active);
|
2012-02-06 19:08:59 -05:00
|
|
|
xmpp_stanza_add_child(body, text);
|
|
|
|
xmpp_stanza_add_child(reply, body);
|
|
|
|
|
2012-02-26 12:59:04 -05:00
|
|
|
xmpp_send(jabber_conn.conn, reply);
|
2012-02-06 19:08:59 -05:00
|
|
|
xmpp_stanza_release(reply);
|
2012-07-03 13:47:16 -04:00
|
|
|
free(coded_msg);
|
|
|
|
free(coded_msg2);
|
|
|
|
free(coded_msg3);
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
jabber_roster_request(void)
|
2012-02-08 21:47:25 -05:00
|
|
|
{
|
|
|
|
xmpp_stanza_t *iq, *query;
|
|
|
|
|
2012-02-26 12:59:04 -05:00
|
|
|
iq = xmpp_stanza_new(jabber_conn.ctx);
|
2012-02-08 21:47:25 -05:00
|
|
|
xmpp_stanza_set_name(iq, "iq");
|
|
|
|
xmpp_stanza_set_type(iq, "get");
|
|
|
|
xmpp_stanza_set_id(iq, "roster");
|
|
|
|
|
2012-02-26 12:59:04 -05:00
|
|
|
query = xmpp_stanza_new(jabber_conn.ctx);
|
2012-02-08 21:47:25 -05:00
|
|
|
xmpp_stanza_set_name(query, "query");
|
|
|
|
xmpp_stanza_set_ns(query, XMPP_NS_ROSTER);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
2012-02-26 12:59:04 -05:00
|
|
|
xmpp_send(jabber_conn.conn, iq);
|
2012-02-08 21:47:25 -05:00
|
|
|
xmpp_stanza_release(iq);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
jabber_update_presence(jabber_presence_t status, const char * const msg)
|
2012-05-27 14:53:16 -04:00
|
|
|
{
|
|
|
|
jabber_conn.presence = status;
|
2012-05-27 17:33:28 -04:00
|
|
|
|
|
|
|
xmpp_stanza_t *pres, *show;
|
|
|
|
|
|
|
|
pres = xmpp_stanza_new(jabber_conn.ctx);
|
|
|
|
xmpp_stanza_set_name(pres, "presence");
|
|
|
|
|
2012-05-27 18:00:04 -04:00
|
|
|
if (status != PRESENCE_ONLINE) {
|
2012-05-27 17:33:28 -04:00
|
|
|
show = xmpp_stanza_new(jabber_conn.ctx);
|
|
|
|
xmpp_stanza_set_name(show, "show");
|
|
|
|
xmpp_stanza_t *text = xmpp_stanza_new(jabber_conn.ctx);
|
2012-05-27 18:00:04 -04:00
|
|
|
|
|
|
|
if (status == PRESENCE_AWAY)
|
|
|
|
xmpp_stanza_set_text(text, "away");
|
|
|
|
else if (status == PRESENCE_DND)
|
|
|
|
xmpp_stanza_set_text(text, "dnd");
|
|
|
|
else if (status == PRESENCE_CHAT)
|
|
|
|
xmpp_stanza_set_text(text, "chat");
|
|
|
|
else if (status == PRESENCE_XA)
|
|
|
|
xmpp_stanza_set_text(text, "xa");
|
|
|
|
else
|
|
|
|
xmpp_stanza_set_text(text, "online");
|
|
|
|
|
2012-05-27 17:33:28 -04:00
|
|
|
xmpp_stanza_add_child(show, text);
|
|
|
|
xmpp_stanza_add_child(pres, show);
|
|
|
|
xmpp_stanza_release(text);
|
|
|
|
xmpp_stanza_release(show);
|
|
|
|
}
|
|
|
|
|
2012-05-28 18:40:11 -04:00
|
|
|
if (msg != NULL) {
|
|
|
|
xmpp_stanza_t *status = xmpp_stanza_new(jabber_conn.ctx);
|
|
|
|
xmpp_stanza_set_name(status, "status");
|
|
|
|
xmpp_stanza_t *text = xmpp_stanza_new(jabber_conn.ctx);
|
|
|
|
|
|
|
|
xmpp_stanza_set_text(text, msg);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(status, text);
|
|
|
|
xmpp_stanza_add_child(pres, status);
|
|
|
|
xmpp_stanza_release(text);
|
|
|
|
xmpp_stanza_release(status);
|
|
|
|
}
|
|
|
|
|
2012-05-27 17:33:28 -04:00
|
|
|
xmpp_send(jabber_conn.conn, pres);
|
|
|
|
xmpp_stanza_release(pres);
|
2012-05-27 14:53:16 -04:00
|
|
|
}
|
|
|
|
|
2012-10-02 16:37:55 -04:00
|
|
|
jabber_conn_status_t
|
|
|
|
jabber_get_connection_status(void)
|
|
|
|
{
|
|
|
|
return (jabber_conn.conn_status);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
jabber_get_jid(void)
|
|
|
|
{
|
|
|
|
return xmpp_conn_get_jid(jabber_conn.conn);
|
|
|
|
}
|
|
|
|
|
2012-10-16 17:52:19 -04:00
|
|
|
void
|
|
|
|
jabber_free_resources(void)
|
|
|
|
{
|
2012-10-16 18:56:44 -04:00
|
|
|
xmpp_conn_release(jabber_conn.conn);
|
|
|
|
xmpp_ctx_free(jabber_conn.ctx);
|
|
|
|
xmpp_shutdown();
|
2012-10-16 17:52:19 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static int
|
2012-10-02 16:37:55 -04:00
|
|
|
_message_handler(xmpp_conn_t * const conn,
|
2012-02-10 18:58:57 -05:00
|
|
|
xmpp_stanza_t * const stanza, void * const userdata)
|
2012-02-05 18:29:09 -05:00
|
|
|
{
|
2012-10-20 02:19:59 -04:00
|
|
|
char *type;
|
|
|
|
char *from;
|
|
|
|
|
|
|
|
type = xmpp_stanza_get_attribute(stanza, "type");
|
|
|
|
from = xmpp_stanza_get_attribute(stanza, "from");
|
|
|
|
|
|
|
|
if (strcmp(type, "error") == 0) {
|
|
|
|
char *err_msg = NULL;
|
|
|
|
xmpp_stanza_t *error = xmpp_stanza_get_child_by_name(stanza, "error");
|
|
|
|
if (error == NULL) {
|
|
|
|
log_debug("error message without <error/> received");
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
xmpp_stanza_t *err_cond = xmpp_stanza_get_children(error);
|
|
|
|
if (err_cond == NULL) {
|
|
|
|
log_debug("error message without <defined-condition/> received");
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
err_msg = xmpp_stanza_get_name(err_cond);
|
|
|
|
}
|
|
|
|
// TODO: process 'type' attribute from <error/> [RFC6120, 8.3.2]
|
|
|
|
}
|
|
|
|
prof_handle_error_message(from, err_msg);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-02-19 15:04:42 -05:00
|
|
|
xmpp_stanza_t *body = xmpp_stanza_get_child_by_name(stanza, "body");
|
2012-08-15 18:52:54 -04:00
|
|
|
|
|
|
|
// if no message, check for chatstates
|
|
|
|
if (body == NULL) {
|
2012-08-15 19:50:32 -04:00
|
|
|
|
|
|
|
if (prefs_get_typing()) {
|
|
|
|
if (xmpp_stanza_get_child_by_name(stanza, "active") != NULL) {
|
|
|
|
// active
|
|
|
|
} else if (xmpp_stanza_get_child_by_name(stanza, "composing") != NULL) {
|
|
|
|
// composing
|
2012-10-01 18:41:36 -04:00
|
|
|
prof_handle_typing(from);
|
2012-08-15 19:50:32 -04:00
|
|
|
}
|
2012-08-15 18:52:54 -04:00
|
|
|
}
|
|
|
|
|
2012-02-05 18:29:09 -05:00
|
|
|
return 1;
|
2012-08-15 18:52:54 -04:00
|
|
|
}
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2012-08-15 19:50:32 -04:00
|
|
|
// message body recieved
|
2012-02-19 15:04:42 -05:00
|
|
|
char *message = xmpp_stanza_get_text(body);
|
2012-10-01 18:41:36 -04:00
|
|
|
prof_handle_incoming_message(from, message);
|
2012-02-05 18:29:09 -05:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
2012-10-02 16:37:55 -04:00
|
|
|
_connection_handler(xmpp_conn_t * const conn,
|
2012-02-10 18:58:57 -05:00
|
|
|
const xmpp_conn_event_t status, const int error,
|
|
|
|
xmpp_stream_error_t * const stream_error, void * const userdata)
|
2012-02-05 18:29:09 -05:00
|
|
|
{
|
|
|
|
xmpp_ctx_t *ctx = (xmpp_ctx_t *)userdata;
|
|
|
|
|
|
|
|
if (status == XMPP_CONN_CONNECT) {
|
2012-02-19 14:42:48 -05:00
|
|
|
const char *jid = xmpp_conn_get_jid(conn);
|
2012-10-01 18:53:26 -04:00
|
|
|
prof_handle_login_success(jid);
|
2012-02-16 18:28:11 -05:00
|
|
|
|
2012-02-05 18:29:09 -05:00
|
|
|
xmpp_stanza_t* pres;
|
2012-10-02 16:37:55 -04:00
|
|
|
xmpp_handler_add(conn, _message_handler, NULL, "message", NULL, ctx);
|
|
|
|
xmpp_handler_add(conn, _presence_handler, NULL, "presence", NULL, ctx);
|
2012-02-08 21:47:25 -05:00
|
|
|
xmpp_id_handler_add(conn, _roster_handler, "roster", ctx);
|
2012-02-27 16:16:54 -05:00
|
|
|
xmpp_timed_handler_add(conn, _ping_timed_handler, PING_INTERVAL, 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);
|
2012-05-10 17:18:08 -04:00
|
|
|
|
2012-02-26 12:59:04 -05:00
|
|
|
jabber_conn.conn_status = JABBER_CONNECTED;
|
2012-05-27 14:29:43 -04:00
|
|
|
jabber_conn.presence = PRESENCE_ONLINE;
|
2012-10-04 16:31:09 -04:00
|
|
|
jabber_roster_request();
|
2012-09-11 17:55:59 -04:00
|
|
|
} else {
|
|
|
|
|
|
|
|
// received close stream response from server after disconnect
|
|
|
|
if (jabber_conn.conn_status == JABBER_DISCONNECTING) {
|
|
|
|
jabber_conn.conn_status = JABBER_DISCONNECTED;
|
|
|
|
jabber_conn.presence = PRESENCE_OFFLINE;
|
|
|
|
|
|
|
|
// lost connection for unkown reason
|
|
|
|
} else if (jabber_conn.conn_status == JABBER_CONNECTED) {
|
2012-10-01 18:53:26 -04:00
|
|
|
prof_handle_lost_connection();
|
2012-09-11 17:55:59 -04:00
|
|
|
xmpp_stop(ctx);
|
|
|
|
jabber_conn.conn_status = JABBER_DISCONNECTED;
|
|
|
|
jabber_conn.presence = PRESENCE_OFFLINE;
|
|
|
|
|
|
|
|
// login attempt failed
|
2012-04-19 16:03:48 -04:00
|
|
|
} else {
|
2012-10-01 18:53:26 -04:00
|
|
|
prof_handle_failed_login();
|
2012-09-11 17:55:59 -04:00
|
|
|
xmpp_stop(ctx);
|
|
|
|
jabber_conn.conn_status = JABBER_DISCONNECTED;
|
|
|
|
jabber_conn.presence = PRESENCE_OFFLINE;
|
2012-04-19 16:03:48 -04:00
|
|
|
}
|
2012-02-05 18:29:09 -05:00
|
|
|
}
|
|
|
|
}
|
2012-02-08 21:47:25 -05:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static int
|
|
|
|
_roster_handler(xmpp_conn_t * const conn,
|
2012-03-08 20:06:55 -05:00
|
|
|
xmpp_stanza_t * const stanza, void * const userdata)
|
2012-02-08 21:47:25 -05:00
|
|
|
{
|
|
|
|
xmpp_stanza_t *query, *item;
|
2012-10-01 20:04:53 -04:00
|
|
|
char *type = xmpp_stanza_get_type(stanza);
|
2012-02-08 21:47:25 -05:00
|
|
|
|
|
|
|
if (strcmp(type, "error") == 0)
|
2012-08-25 19:54:18 -04:00
|
|
|
log_error("Roster query failed");
|
2012-02-08 21:47:25 -05:00
|
|
|
else {
|
|
|
|
query = xmpp_stanza_get_child_by_name(stanza, "query");
|
2012-10-01 20:04:53 -04:00
|
|
|
GSList *roster = NULL;
|
2012-02-19 14:56:03 -05:00
|
|
|
item = xmpp_stanza_get_children(query);
|
2012-10-01 20:04:53 -04:00
|
|
|
|
2012-02-19 14:56:03 -05:00
|
|
|
while (item != NULL) {
|
2012-10-01 20:04:53 -04:00
|
|
|
const char *name = xmpp_stanza_get_attribute(item, "name");
|
|
|
|
const char *jid = xmpp_stanza_get_attribute(item, "jid");
|
2012-02-19 14:56:03 -05:00
|
|
|
|
2012-10-01 20:04:53 -04:00
|
|
|
jabber_roster_entry *entry = malloc(sizeof(jabber_roster_entry));
|
2012-02-19 14:51:20 -05:00
|
|
|
|
2012-10-01 20:04:53 -04:00
|
|
|
if (name != NULL) {
|
|
|
|
entry->name = strdup(name);
|
2012-02-08 21:47:25 -05:00
|
|
|
} else {
|
2012-10-01 20:04:53 -04:00
|
|
|
entry->name = NULL;
|
2012-02-08 21:47:25 -05:00
|
|
|
}
|
2012-10-01 20:04:53 -04:00
|
|
|
entry->jid = strdup(jid);
|
2012-03-04 19:35:05 -05:00
|
|
|
|
2012-10-01 20:04:53 -04:00
|
|
|
roster = g_slist_append(roster, entry);
|
|
|
|
item = xmpp_stanza_get_next(item);
|
2012-02-08 21:47:25 -05:00
|
|
|
}
|
2012-10-01 20:04:53 -04:00
|
|
|
|
|
|
|
prof_handle_roster(roster);
|
2012-02-08 21:47:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2012-02-27 16:16:54 -05:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static int
|
|
|
|
_ping_timed_handler(xmpp_conn_t * const conn, void * const userdata)
|
2012-02-27 16:16:54 -05:00
|
|
|
{
|
2012-02-27 18:43:46 -05:00
|
|
|
if (jabber_conn.conn_status == JABBER_CONNECTED) {
|
|
|
|
xmpp_ctx_t *ctx = (xmpp_ctx_t *)userdata;
|
|
|
|
|
|
|
|
xmpp_stanza_t *iq, *ping;
|
2012-02-27 16:16:54 -05:00
|
|
|
|
2012-02-27 18:43:46 -05:00
|
|
|
iq = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(iq, "iq");
|
|
|
|
xmpp_stanza_set_type(iq, "get");
|
|
|
|
xmpp_stanza_set_id(iq, "c2s1");
|
2012-02-27 16:16:54 -05:00
|
|
|
|
2012-02-27 18:43:46 -05:00
|
|
|
ping = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(ping, "ping");
|
2012-02-27 16:16:54 -05:00
|
|
|
|
2012-02-27 18:43:46 -05:00
|
|
|
xmpp_stanza_set_ns(ping, "urn:xmpp:ping");
|
2012-02-27 16:16:54 -05:00
|
|
|
|
2012-02-27 18:43:46 -05:00
|
|
|
xmpp_stanza_add_child(iq, ping);
|
|
|
|
xmpp_stanza_release(ping);
|
|
|
|
xmpp_send(conn, iq);
|
|
|
|
xmpp_stanza_release(iq);
|
|
|
|
}
|
2012-02-27 16:16:54 -05:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2012-02-27 17:53:31 -05:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static int
|
2012-10-02 16:37:55 -04:00
|
|
|
_presence_handler(xmpp_conn_t * const conn,
|
2012-02-27 17:53:31 -05:00
|
|
|
xmpp_stanza_t * const stanza, void * const userdata)
|
|
|
|
{
|
2012-03-09 18:48:36 -05:00
|
|
|
const char *jid = xmpp_conn_get_jid(jabber_conn.conn);
|
|
|
|
char jid_cpy[strlen(jid) + 1];
|
|
|
|
strcpy(jid_cpy, jid);
|
|
|
|
char *short_jid = strtok(jid_cpy, "/");
|
|
|
|
|
2012-02-27 17:53:31 -05:00
|
|
|
char *from = xmpp_stanza_get_attribute(stanza, "from");
|
2012-02-27 20:10:46 -05:00
|
|
|
char *short_from = strtok(from, "/");
|
2012-02-27 17:53:31 -05:00
|
|
|
char *type = xmpp_stanza_get_attribute(stanza, "type");
|
|
|
|
|
2012-02-27 18:33:29 -05:00
|
|
|
char *show_str, *status_str;
|
2012-02-27 17:53:31 -05:00
|
|
|
|
2012-02-27 18:33:29 -05:00
|
|
|
xmpp_stanza_t *show = xmpp_stanza_get_child_by_name(stanza, "show");
|
|
|
|
if (show != NULL)
|
|
|
|
show_str = xmpp_stanza_get_text(show);
|
|
|
|
else
|
|
|
|
show_str = NULL;
|
|
|
|
|
|
|
|
xmpp_stanza_t *status = xmpp_stanza_get_child_by_name(stanza, "status");
|
|
|
|
if (status != NULL)
|
|
|
|
status_str = xmpp_stanza_get_text(status);
|
|
|
|
else
|
|
|
|
status_str = NULL;
|
|
|
|
|
2012-03-09 18:48:36 -05:00
|
|
|
if (strcmp(short_jid, short_from) !=0) {
|
2012-10-01 19:03:53 -04:00
|
|
|
if (type == NULL) {
|
|
|
|
prof_handle_contact_online(short_from, show_str, status_str);
|
|
|
|
} else {
|
|
|
|
prof_handle_contact_offline(short_from, show_str, status_str);
|
2012-03-09 18:48:36 -05:00
|
|
|
}
|
|
|
|
}
|
2012-03-04 19:35:05 -05:00
|
|
|
|
2012-02-27 17:53:31 -05:00
|
|
|
return 1;
|
|
|
|
}
|
2012-10-02 16:37:55 -04:00
|
|
|
|
|
|
|
static log_level_t
|
|
|
|
_get_log_level(xmpp_log_level_t xmpp_level)
|
|
|
|
{
|
|
|
|
if (xmpp_level == XMPP_LEVEL_DEBUG) {
|
|
|
|
return PROF_LEVEL_DEBUG;
|
|
|
|
} else if (xmpp_level == XMPP_LEVEL_INFO) {
|
|
|
|
return PROF_LEVEL_INFO;
|
|
|
|
} else if (xmpp_level == XMPP_LEVEL_WARN) {
|
|
|
|
return PROF_LEVEL_WARN;
|
|
|
|
} else {
|
|
|
|
return PROF_LEVEL_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static xmpp_log_level_t
|
|
|
|
_get_xmpp_log_level()
|
|
|
|
{
|
|
|
|
log_level_t prof_level = log_get_filter();
|
|
|
|
|
|
|
|
if (prof_level == PROF_LEVEL_DEBUG) {
|
|
|
|
return XMPP_LEVEL_DEBUG;
|
|
|
|
} else if (prof_level == PROF_LEVEL_INFO) {
|
|
|
|
return XMPP_LEVEL_INFO;
|
|
|
|
} else if (prof_level == PROF_LEVEL_WARN) {
|
|
|
|
return XMPP_LEVEL_WARN;
|
|
|
|
} else {
|
|
|
|
return XMPP_LEVEL_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_xmpp_file_logger(void * const userdata, const xmpp_log_level_t level,
|
|
|
|
const char * const area, const char * const msg)
|
|
|
|
{
|
|
|
|
log_level_t prof_level = _get_log_level(level);
|
|
|
|
log_msg(prof_level, area, msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static xmpp_log_t *
|
|
|
|
_xmpp_get_file_logger()
|
|
|
|
{
|
|
|
|
xmpp_log_level_t level = _get_xmpp_log_level();
|
|
|
|
xmpp_log_t *file_log = malloc(sizeof(xmpp_log_t));
|
|
|
|
|
|
|
|
file_log->handler = _xmpp_file_logger;
|
|
|
|
file_log->userdata = &level;
|
|
|
|
|
|
|
|
return file_log;
|
|
|
|
}
|
|
|
|
|