2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2012-02-20 15:07:38 -05:00
|
|
|
* jabber.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-02-20 15:07:38 -05:00
|
|
|
* 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-10-29 21:38:08 -04:00
|
|
|
#include "chat_session.h"
|
2012-08-22 20:08:06 -04:00
|
|
|
#include "common.h"
|
2012-10-28 16:52:30 -04:00
|
|
|
#include "contact_list.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-11-04 18:31:49 -05:00
|
|
|
#include "room_chat.h"
|
2012-11-08 18:07:00 -05:00
|
|
|
#include "stanza.h"
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2012-11-26 17:00:57 -05:00
|
|
|
#define PING_INTERVAL 5000 // 2 minutes
|
2012-02-27 16:16:54 -05:00
|
|
|
|
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-11-13 05:51:28 -05:00
|
|
|
char *status;
|
2012-02-26 12:59:04 -05:00
|
|
|
int tls_disabled;
|
2012-11-13 05:51:28 -05:00
|
|
|
int priority;
|
2012-02-26 12:59:04 -05:00
|
|
|
} jabber_conn;
|
2012-02-16 19:42:41 -05:00
|
|
|
|
2012-11-24 21:14:38 -05:00
|
|
|
// for auto reconnect
|
|
|
|
static char *saved_user;
|
|
|
|
static char *saved_password;
|
|
|
|
static GTimer *reconnect_timer;
|
|
|
|
|
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();
|
2012-10-21 15:02:20 -04:00
|
|
|
static void _xmpp_file_logger(void * const userdata,
|
|
|
|
const xmpp_log_level_t level, const char * const area,
|
2012-10-02 16:37:55 -04:00
|
|
|
const char * const msg);
|
|
|
|
static xmpp_log_t * _xmpp_get_file_logger();
|
2012-08-18 21:44:46 -04:00
|
|
|
|
2012-10-28 16:52:30 -04:00
|
|
|
static void _jabber_roster_request(void);
|
|
|
|
|
2012-10-02 16:37:55 -04:00
|
|
|
// XMPP event handlers
|
2012-10-21 15:02:20 -04:00
|
|
|
static void _connection_handler(xmpp_conn_t * const conn,
|
|
|
|
const xmpp_conn_event_t status, const int error,
|
2012-02-10 18:58:57 -05:00
|
|
|
xmpp_stream_error_t * const stream_error, void * const userdata);
|
2012-11-06 19:38:31 -05:00
|
|
|
|
2012-10-21 15:02:20 -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-11-06 19:42:12 -05:00
|
|
|
static int _groupchat_message_handler(xmpp_stanza_t * const stanza);
|
2012-11-09 20:39:42 -05:00
|
|
|
static int _error_handler(xmpp_stanza_t * const stanza);
|
2012-11-06 19:42:12 -05:00
|
|
|
static int _chat_message_handler(xmpp_stanza_t * const stanza);
|
2012-11-06 19:38:31 -05:00
|
|
|
|
2012-10-21 15:02:20 -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-10-21 15:02:20 -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-11-13 05:51:28 -05:00
|
|
|
jabber_conn.status = NULL;
|
2012-02-26 12:59:04 -05:00
|
|
|
jabber_conn.tls_disabled = disable_tls;
|
|
|
|
}
|
|
|
|
|
2012-10-27 13:12:04 -04:00
|
|
|
void
|
|
|
|
jabber_restart(void)
|
|
|
|
{
|
|
|
|
jabber_conn.conn_status = JABBER_STARTED;
|
|
|
|
jabber_conn.presence = PRESENCE_OFFLINE;
|
2012-11-13 05:51:28 -05:00
|
|
|
if (jabber_conn.status != NULL)
|
|
|
|
free(jabber_conn.status);
|
|
|
|
jabber_conn.status = NULL;
|
2012-10-27 13:12:04 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
jabber_conn_status_t
|
2012-10-21 15:02:20 -04:00
|
|
|
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-11-24 21:14:38 -05:00
|
|
|
if (saved_user == NULL) {
|
|
|
|
saved_user = strdup(user);
|
|
|
|
}
|
|
|
|
if (saved_password == NULL) {
|
|
|
|
saved_password = strdup(passwd);
|
|
|
|
}
|
|
|
|
|
|
|
|
log_info("Connecting as %s", saved_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-11-24 21:14:38 -05:00
|
|
|
xmpp_conn_set_jid(jabber_conn.conn, saved_user);
|
|
|
|
xmpp_conn_set_pass(jabber_conn.conn, saved_password);
|
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-10-21 15:02:20 -04: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-10-21 15:02:20 -04: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-10-27 13:26:57 -04:00
|
|
|
void
|
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;
|
|
|
|
|
2012-10-27 13:26:57 -04:00
|
|
|
while (jabber_get_connection_status() == JABBER_DISCONNECTING) {
|
|
|
|
jabber_process_events();
|
|
|
|
}
|
|
|
|
jabber_free_resources();
|
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-11-24 21:14:38 -05:00
|
|
|
// run xmpp event loop if connected, connecting or disconnecting
|
2012-10-21 15:02:20 -04:00
|
|
|
if (jabber_conn.conn_status == JABBER_CONNECTED
|
2012-09-11 17:55:59 -04:00
|
|
|
|| jabber_conn.conn_status == JABBER_CONNECTING
|
2012-11-24 21:14:38 -05:00
|
|
|
|| jabber_conn.conn_status == JABBER_DISCONNECTING) {
|
2012-02-26 12:59:04 -05:00
|
|
|
xmpp_run_once(jabber_conn.ctx, 10);
|
2012-11-24 21:14:38 -05:00
|
|
|
|
|
|
|
// check timer and reconnect if disconnected and timer set
|
2012-11-26 17:00:57 -05:00
|
|
|
} else if (prefs_get_reconnect() != 0) {
|
|
|
|
if ((jabber_conn.conn_status == JABBER_DISCONNECTED) &&
|
2012-11-24 21:14:38 -05:00
|
|
|
(reconnect_timer != NULL)) {
|
2012-11-26 17:00:57 -05:00
|
|
|
if (g_timer_elapsed(reconnect_timer, NULL) > (prefs_get_reconnect() * 1.0)) {
|
2012-11-26 17:03:05 -05:00
|
|
|
log_debug("Attempting reconnect as %s", saved_user);
|
2012-11-26 17:00:57 -05:00
|
|
|
jabber_connect(saved_user, saved_password);
|
|
|
|
}
|
2012-11-24 21:14:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-10-31 18:08:00 -04:00
|
|
|
if (prefs_get_states()) {
|
|
|
|
if (!chat_session_exists(recipient)) {
|
|
|
|
chat_session_start(recipient, TRUE);
|
|
|
|
}
|
2012-10-29 21:50:39 -04:00
|
|
|
}
|
|
|
|
|
2012-11-08 18:31:21 -05:00
|
|
|
xmpp_stanza_t *message;
|
|
|
|
if (prefs_get_states() && chat_session_get_recipient_supports(recipient)) {
|
|
|
|
chat_session_set_active(recipient);
|
2012-11-08 19:51:32 -05:00
|
|
|
message = stanza_create_message(jabber_conn.ctx, recipient, STANZA_TYPE_CHAT,
|
|
|
|
msg, STANZA_NAME_ACTIVE);
|
2012-11-08 18:31:21 -05:00
|
|
|
} else {
|
2012-11-08 19:51:32 -05:00
|
|
|
message = stanza_create_message(jabber_conn.ctx, recipient, STANZA_TYPE_CHAT,
|
2012-11-08 18:35:11 -05:00
|
|
|
msg, NULL);
|
2012-10-29 21:50:39 -04:00
|
|
|
}
|
|
|
|
|
2012-11-08 18:31:21 -05:00
|
|
|
xmpp_send(jabber_conn.conn, message);
|
|
|
|
xmpp_stanza_release(message);
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2012-11-05 18:24:29 -05:00
|
|
|
void
|
|
|
|
jabber_send_groupchat(const char * const msg, const char * const recipient)
|
|
|
|
{
|
2012-11-08 18:44:09 -05:00
|
|
|
xmpp_stanza_t *message = stanza_create_message(jabber_conn.ctx, recipient,
|
2012-11-08 19:51:32 -05:00
|
|
|
STANZA_TYPE_GROUPCHAT, msg, NULL);
|
2012-11-05 18:24:29 -05:00
|
|
|
|
2012-11-08 18:44:09 -05:00
|
|
|
xmpp_send(jabber_conn.conn, message);
|
|
|
|
xmpp_stanza_release(message);
|
2012-11-05 18:24:29 -05:00
|
|
|
}
|
|
|
|
|
2012-10-30 21:36:52 -04:00
|
|
|
void
|
2012-11-06 18:03:05 -05:00
|
|
|
jabber_send_composing(const char * const recipient)
|
2012-10-30 21:36:52 -04:00
|
|
|
{
|
2012-11-08 18:07:00 -05:00
|
|
|
xmpp_stanza_t *stanza = stanza_create_chat_state(jabber_conn.ctx, recipient,
|
2012-11-08 19:51:32 -05:00
|
|
|
STANZA_NAME_COMPOSING);
|
2012-11-08 18:07:00 -05:00
|
|
|
|
|
|
|
xmpp_send(jabber_conn.conn, stanza);
|
|
|
|
xmpp_stanza_release(stanza);
|
|
|
|
chat_session_set_sent(recipient);
|
2012-10-31 19:08:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-11-06 18:03:05 -05:00
|
|
|
jabber_send_paused(const char * const recipient)
|
2012-10-31 19:08:26 -04:00
|
|
|
{
|
2012-11-08 18:07:00 -05:00
|
|
|
xmpp_stanza_t *stanza = stanza_create_chat_state(jabber_conn.ctx, recipient,
|
2012-11-08 19:51:32 -05:00
|
|
|
STANZA_NAME_PAUSED);
|
2012-11-08 18:07:00 -05:00
|
|
|
|
|
|
|
xmpp_send(jabber_conn.conn, stanza);
|
|
|
|
xmpp_stanza_release(stanza);
|
|
|
|
chat_session_set_sent(recipient);
|
2012-10-31 19:08:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-11-06 18:03:05 -05:00
|
|
|
jabber_send_inactive(const char * const recipient)
|
2012-10-31 19:08:26 -04:00
|
|
|
{
|
2012-11-08 18:07:00 -05:00
|
|
|
xmpp_stanza_t *stanza = stanza_create_chat_state(jabber_conn.ctx, recipient,
|
2012-11-08 19:51:32 -05:00
|
|
|
STANZA_NAME_INACTIVE);
|
2012-11-08 18:07:00 -05:00
|
|
|
|
|
|
|
xmpp_send(jabber_conn.conn, stanza);
|
|
|
|
xmpp_stanza_release(stanza);
|
|
|
|
chat_session_set_sent(recipient);
|
2012-10-30 21:36:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
jabber_send_gone(const char * const recipient)
|
|
|
|
{
|
2012-11-08 18:07:00 -05:00
|
|
|
xmpp_stanza_t *stanza = stanza_create_chat_state(jabber_conn.ctx, recipient,
|
2012-11-08 19:51:32 -05:00
|
|
|
STANZA_NAME_GONE);
|
2012-11-08 18:07:00 -05:00
|
|
|
|
|
|
|
xmpp_send(jabber_conn.conn, stanza);
|
|
|
|
xmpp_stanza_release(stanza);
|
|
|
|
chat_session_set_sent(recipient);
|
2012-10-30 21:36:52 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2012-11-11 07:00:21 -05:00
|
|
|
jabber_subscription(const char * const jid, jabber_subscr_t action)
|
2012-02-08 21:47:25 -05:00
|
|
|
{
|
2012-10-28 14:51:13 -04:00
|
|
|
xmpp_stanza_t *presence;
|
2012-11-11 07:00:21 -05:00
|
|
|
char *type, *jid_cpy, *bare_jid;
|
|
|
|
|
|
|
|
// jid must be a bare JID
|
|
|
|
jid_cpy = strdup(jid);
|
|
|
|
bare_jid = strtok(jid_cpy, "/");
|
|
|
|
|
|
|
|
if (action == PRESENCE_SUBSCRIBE)
|
|
|
|
type = STANZA_TYPE_SUBSCRIBE;
|
|
|
|
else if (action == PRESENCE_SUBSCRIBED)
|
|
|
|
type = STANZA_TYPE_SUBSCRIBED;
|
|
|
|
else if (action == PRESENCE_UNSUBSCRIBED)
|
|
|
|
type = STANZA_TYPE_UNSUBSCRIBED;
|
|
|
|
else // unknown action
|
|
|
|
return;
|
2012-10-28 14:51:13 -04:00
|
|
|
|
|
|
|
presence = xmpp_stanza_new(jabber_conn.ctx);
|
2012-11-08 19:51:32 -05:00
|
|
|
xmpp_stanza_set_name(presence, STANZA_NAME_PRESENCE);
|
2012-11-11 07:00:21 -05:00
|
|
|
xmpp_stanza_set_type(presence, type);
|
|
|
|
xmpp_stanza_set_attribute(presence, STANZA_ATTR_TO, bare_jid);
|
2012-10-28 14:51:13 -04:00
|
|
|
xmpp_send(jabber_conn.conn, presence);
|
|
|
|
xmpp_stanza_release(presence);
|
2012-11-11 07:00:21 -05:00
|
|
|
free(jid_cpy);
|
2012-02-08 21:47:25 -05:00
|
|
|
}
|
|
|
|
|
2012-11-04 17:59:52 -05:00
|
|
|
void
|
2012-11-10 13:28:45 -05:00
|
|
|
jabber_join(const char * const room, const char * const nick)
|
2012-11-04 17:59:52 -05:00
|
|
|
{
|
2012-11-10 13:51:50 -05:00
|
|
|
char *full_room_jid = room_create_full_room_jid(room, nick);
|
2012-11-09 19:19:49 -05:00
|
|
|
xmpp_stanza_t *presence = stanza_create_room_join_presence(jabber_conn.ctx,
|
2012-11-10 13:51:50 -05:00
|
|
|
full_room_jid);
|
2012-11-04 17:59:52 -05:00
|
|
|
xmpp_send(jabber_conn.conn, presence);
|
|
|
|
xmpp_stanza_release(presence);
|
2012-11-04 18:31:49 -05:00
|
|
|
|
2012-11-10 13:28:45 -05:00
|
|
|
room_join(room, nick);
|
2012-11-10 13:51:50 -05:00
|
|
|
|
|
|
|
free(full_room_jid);
|
2012-11-04 17:59:52 -05:00
|
|
|
}
|
|
|
|
|
2012-11-18 13:36:17 -05:00
|
|
|
void
|
|
|
|
jabber_change_room_nick(const char * const room, const char * const nick)
|
|
|
|
{
|
|
|
|
char *full_room_jid = room_create_full_room_jid(room, nick);
|
|
|
|
xmpp_stanza_t *presence = stanza_create_room_newnick_presence(jabber_conn.ctx,
|
|
|
|
full_room_jid);
|
|
|
|
xmpp_send(jabber_conn.conn, presence);
|
|
|
|
xmpp_stanza_release(presence);
|
|
|
|
|
|
|
|
free(full_room_jid);
|
|
|
|
}
|
|
|
|
|
2012-11-05 19:00:25 -05:00
|
|
|
void
|
|
|
|
jabber_leave_chat_room(const char * const room_jid)
|
|
|
|
{
|
|
|
|
char *nick = room_get_nick_for_room(room_jid);
|
|
|
|
|
2012-11-09 19:19:49 -05:00
|
|
|
xmpp_stanza_t *presence = stanza_create_room_leave_presence(jabber_conn.ctx,
|
2012-11-08 20:36:53 -05:00
|
|
|
room_jid, nick);
|
2012-11-05 19:00:25 -05:00
|
|
|
xmpp_send(jabber_conn.conn, presence);
|
|
|
|
xmpp_stanza_release(presence);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2012-11-13 17:18:54 -05:00
|
|
|
int pri;
|
2012-11-13 05:51:28 -05:00
|
|
|
char *show;
|
|
|
|
|
2012-11-13 17:18:54 -05:00
|
|
|
// don't send presence when disconnected
|
|
|
|
if (jabber_conn.conn_status != JABBER_CONNECTED)
|
|
|
|
return;
|
|
|
|
|
|
|
|
pri = prefs_get_priority();
|
2012-11-13 05:51:28 -05:00
|
|
|
if (pri < -128 || pri > 127)
|
|
|
|
pri = 0;
|
|
|
|
|
2012-05-27 14:53:16 -04:00
|
|
|
jabber_conn.presence = status;
|
2012-11-13 05:51:28 -05:00
|
|
|
jabber_conn.priority = pri;
|
2012-05-27 17:33:28 -04:00
|
|
|
|
2012-11-09 19:16:56 -05:00
|
|
|
switch(status)
|
|
|
|
{
|
|
|
|
case PRESENCE_AWAY:
|
|
|
|
show = STANZA_TEXT_AWAY;
|
|
|
|
break;
|
|
|
|
case PRESENCE_DND:
|
|
|
|
show = STANZA_TEXT_DND;
|
|
|
|
break;
|
|
|
|
case PRESENCE_CHAT:
|
|
|
|
show = STANZA_TEXT_CHAT;
|
|
|
|
break;
|
|
|
|
case PRESENCE_XA:
|
|
|
|
show = STANZA_TEXT_XA;
|
|
|
|
break;
|
2012-11-13 05:51:28 -05:00
|
|
|
default: // PRESENCE_ONLINE
|
|
|
|
show = NULL;
|
2012-11-09 19:16:56 -05:00
|
|
|
break;
|
2012-05-27 17:33:28 -04:00
|
|
|
}
|
|
|
|
|
2012-11-17 18:46:45 -05:00
|
|
|
if (jabber_conn.status != NULL) {
|
2012-11-13 05:51:28 -05:00
|
|
|
free(jabber_conn.status);
|
2012-11-17 18:46:45 -05:00
|
|
|
jabber_conn.status = NULL;
|
|
|
|
}
|
2012-11-13 05:51:28 -05:00
|
|
|
if (msg != NULL)
|
|
|
|
jabber_conn.status = strdup(msg);
|
|
|
|
|
2012-11-09 19:16:56 -05:00
|
|
|
xmpp_stanza_t *presence = stanza_create_presence(jabber_conn.ctx, show, msg);
|
2012-11-13 05:51:28 -05:00
|
|
|
if (pri != 0) {
|
|
|
|
xmpp_stanza_t *priority, *value;
|
2012-11-13 10:57:27 -05:00
|
|
|
char pri_str[10];
|
2012-11-13 05:51:28 -05:00
|
|
|
|
2012-11-13 10:57:27 -05:00
|
|
|
snprintf(pri_str, sizeof(pri_str), "%d", pri);
|
2012-11-13 05:51:28 -05:00
|
|
|
priority = xmpp_stanza_new(jabber_conn.ctx);
|
|
|
|
value = xmpp_stanza_new(jabber_conn.ctx);
|
|
|
|
xmpp_stanza_set_name(priority, STANZA_NAME_PRIORITY);
|
|
|
|
xmpp_stanza_set_text(value, pri_str);
|
|
|
|
xmpp_stanza_add_child(priority, value);
|
|
|
|
xmpp_stanza_add_child(presence, priority);
|
|
|
|
}
|
2012-11-09 19:16:56 -05:00
|
|
|
xmpp_send(jabber_conn.conn, presence);
|
2012-11-19 19:33:11 -05:00
|
|
|
|
|
|
|
// send presence for each room
|
|
|
|
GList *rooms = room_get_rooms();
|
|
|
|
while (rooms != NULL) {
|
|
|
|
char *room = rooms->data;
|
|
|
|
char *nick = room_get_nick_for_room(room);
|
|
|
|
char *full_room_jid = room_create_full_room_jid(room, nick);
|
|
|
|
|
|
|
|
xmpp_stanza_set_attribute(presence, STANZA_ATTR_TO, full_room_jid);
|
|
|
|
xmpp_send(jabber_conn.conn, presence);
|
|
|
|
|
|
|
|
rooms = g_list_next(rooms);
|
|
|
|
}
|
|
|
|
g_list_free(rooms);
|
|
|
|
|
2012-11-09 19:16:56 -05:00
|
|
|
xmpp_stanza_release(presence);
|
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-11-13 05:51:28 -05:00
|
|
|
int
|
|
|
|
jabber_get_priority(void)
|
|
|
|
{
|
|
|
|
return jabber_conn.priority;
|
|
|
|
}
|
|
|
|
|
|
|
|
jabber_presence_t
|
|
|
|
jabber_get_presence(void)
|
|
|
|
{
|
|
|
|
return jabber_conn.presence;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
jabber_get_status(void)
|
|
|
|
{
|
|
|
|
if (jabber_conn.status == NULL)
|
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
return strdup(jabber_conn.status);
|
|
|
|
}
|
|
|
|
|
2012-10-16 17:52:19 -04:00
|
|
|
void
|
|
|
|
jabber_free_resources(void)
|
|
|
|
{
|
2012-11-24 21:14:38 -05:00
|
|
|
saved_user = NULL;
|
|
|
|
saved_password = NULL;
|
2012-10-29 21:38:08 -04:00
|
|
|
chat_sessions_clear();
|
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-10-28 16:52:30 -04:00
|
|
|
static void
|
|
|
|
_jabber_roster_request(void)
|
|
|
|
{
|
2012-11-09 19:25:42 -05:00
|
|
|
xmpp_stanza_t *iq = stanza_create_roster_iq(jabber_conn.ctx);
|
2012-10-28 16:52:30 -04:00
|
|
|
xmpp_send(jabber_conn.conn, iq);
|
|
|
|
xmpp_stanza_release(iq);
|
|
|
|
}
|
|
|
|
|
2012-11-09 19:43:09 -05:00
|
|
|
static int
|
|
|
|
_message_handler(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata)
|
|
|
|
{
|
|
|
|
gchar *type = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_TYPE);
|
|
|
|
|
|
|
|
if (type == NULL) {
|
|
|
|
log_error("Message stanza received with no type attribute");
|
|
|
|
return 1;
|
|
|
|
} else if (strcmp(type, STANZA_TYPE_ERROR) == 0) {
|
2012-11-09 20:39:42 -05:00
|
|
|
return _error_handler(stanza);
|
2012-11-09 19:43:09 -05:00
|
|
|
} else if (strcmp(type, STANZA_TYPE_GROUPCHAT) == 0) {
|
|
|
|
return _groupchat_message_handler(stanza);
|
|
|
|
} else if (strcmp(type, STANZA_TYPE_CHAT) == 0) {
|
|
|
|
return _chat_message_handler(stanza);
|
|
|
|
} else {
|
|
|
|
log_error("Message stanza received with unknown type: %s", type);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static int
|
2012-11-06 19:42:12 -05:00
|
|
|
_groupchat_message_handler(xmpp_stanza_t * const stanza)
|
2012-02-05 18:29:09 -05:00
|
|
|
{
|
2012-11-06 20:10:05 -05:00
|
|
|
char *room = NULL;
|
|
|
|
char *nick = NULL;
|
2012-11-09 22:30:27 -05:00
|
|
|
char *message = NULL;
|
2012-11-08 19:51:32 -05:00
|
|
|
gchar *room_jid = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
2012-11-09 22:30:27 -05:00
|
|
|
|
2012-11-19 17:15:53 -05:00
|
|
|
// handle room broadcasts
|
|
|
|
if (room_from_jid_is_room(room_jid)) {
|
|
|
|
xmpp_stanza_t *subject = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_SUBJECT);
|
2012-11-09 22:30:27 -05:00
|
|
|
|
2012-11-19 17:15:53 -05:00
|
|
|
// handle subject
|
|
|
|
if (subject != NULL) {
|
|
|
|
message = xmpp_stanza_get_text(subject);
|
|
|
|
if (message != NULL) {
|
|
|
|
room = room_get_room_from_full_jid(room_jid);
|
|
|
|
prof_handle_room_subject(room, message);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
// handle other room broadcasts
|
|
|
|
} else {
|
|
|
|
xmpp_stanza_t *body = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_BODY);
|
|
|
|
if (body != NULL) {
|
|
|
|
message = xmpp_stanza_get_text(body);
|
|
|
|
if (message != NULL) {
|
|
|
|
prof_handle_room_broadcast(room_jid, message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2012-11-09 22:30:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// room jid not of form room/nick
|
2012-11-06 20:10:05 -05:00
|
|
|
if (!room_parse_room_jid(room_jid, &room, &nick)) {
|
|
|
|
log_error("Could not parse room jid: %s", room_jid);
|
|
|
|
g_free(room);
|
|
|
|
g_free(nick);
|
2012-11-06 19:42:12 -05:00
|
|
|
|
2012-11-06 20:10:05 -05:00
|
|
|
return 1;
|
|
|
|
}
|
2012-11-06 17:46:28 -05:00
|
|
|
|
2012-11-09 22:30:27 -05:00
|
|
|
// room not active in profanity
|
2012-11-06 20:10:05 -05:00
|
|
|
if (!room_is_active(room_jid)) {
|
|
|
|
log_error("Message recieved for inactive groupchat: %s", room_jid);
|
|
|
|
g_free(room);
|
|
|
|
g_free(nick);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-11-19 15:41:35 -05:00
|
|
|
// determine if the notifications happened whilst offline
|
|
|
|
GTimeVal tv_stamp;
|
|
|
|
gboolean delayed = stanza_get_delay(stanza, &tv_stamp);
|
2012-11-08 19:51:32 -05:00
|
|
|
xmpp_stanza_t *body = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_BODY);
|
2012-11-09 22:30:27 -05:00
|
|
|
|
2012-11-19 15:41:35 -05:00
|
|
|
// check for and deal with message
|
2012-11-06 20:10:05 -05:00
|
|
|
if (body != NULL) {
|
2012-11-19 15:41:35 -05:00
|
|
|
char *message = xmpp_stanza_get_text(body);
|
|
|
|
if (delayed) {
|
|
|
|
prof_handle_room_history(room, nick, tv_stamp, message);
|
2012-11-06 20:10:05 -05:00
|
|
|
} else {
|
|
|
|
prof_handle_room_message(room, nick, message);
|
|
|
|
}
|
2012-11-06 19:19:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2012-11-09 20:39:42 -05:00
|
|
|
_error_handler(xmpp_stanza_t * const stanza)
|
2012-11-06 19:19:02 -05:00
|
|
|
{
|
2012-11-09 21:28:38 -05:00
|
|
|
gchar *err_msg = NULL;
|
|
|
|
gchar *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
|
|
|
xmpp_stanza_t *error_stanza = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_ERROR);
|
|
|
|
xmpp_stanza_t *text_stanza =
|
|
|
|
xmpp_stanza_get_child_by_name(error_stanza, STANZA_NAME_TEXT);
|
2012-11-05 16:48:13 -05:00
|
|
|
|
2012-11-09 21:28:38 -05:00
|
|
|
if (error_stanza == NULL) {
|
2012-11-06 19:34:43 -05:00
|
|
|
log_debug("error message without <error/> received");
|
2012-11-05 15:29:57 -05:00
|
|
|
} else {
|
|
|
|
|
2012-11-09 21:28:38 -05:00
|
|
|
// check for text
|
|
|
|
if (text_stanza != NULL) {
|
|
|
|
err_msg = xmpp_stanza_get_text(text_stanza);
|
|
|
|
prof_handle_error_message(from, err_msg);
|
|
|
|
|
|
|
|
// TODO : process 'type' attribute from <error/> [RFC6120, 8.3.2]
|
|
|
|
|
|
|
|
// otherwise show defined-condition
|
2012-11-06 19:34:43 -05:00
|
|
|
} else {
|
2012-11-09 21:28:38 -05:00
|
|
|
xmpp_stanza_t *err_cond = xmpp_stanza_get_children(error_stanza);
|
2012-08-15 18:52:54 -04:00
|
|
|
|
2012-11-09 21:28:38 -05:00
|
|
|
if (err_cond == NULL) {
|
|
|
|
log_debug("error message without <defined-condition/> or <text/> received");
|
2012-10-31 17:19:08 -04:00
|
|
|
|
2012-11-09 21:28:38 -05:00
|
|
|
} else {
|
|
|
|
err_msg = xmpp_stanza_get_name(err_cond);
|
|
|
|
prof_handle_error_message(from, err_msg);
|
|
|
|
|
|
|
|
// TODO : process 'type' attribute from <error/> [RFC6120, 8.3.2]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-10-31 17:19:08 -04:00
|
|
|
|
2012-11-06 19:34:43 -05:00
|
|
|
return 1;
|
|
|
|
}
|
2012-10-31 17:19:08 -04:00
|
|
|
|
2012-11-06 19:34:43 -05:00
|
|
|
static int
|
2012-11-06 19:42:12 -05:00
|
|
|
_chat_message_handler(xmpp_stanza_t * const stanza)
|
2012-11-06 19:34:43 -05:00
|
|
|
{
|
2012-11-13 19:04:08 -05:00
|
|
|
gboolean priv = FALSE;
|
2012-11-08 19:51:32 -05:00
|
|
|
gchar *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
2012-11-06 19:48:59 -05:00
|
|
|
|
2012-11-06 19:34:43 -05:00
|
|
|
char from_cpy[strlen(from) + 1];
|
|
|
|
strcpy(from_cpy, from);
|
|
|
|
char *short_from = strtok(from_cpy, "/");
|
2012-11-12 18:26:09 -05:00
|
|
|
char *jid = NULL;
|
|
|
|
|
|
|
|
// private message from chat room use full jid (room/nick)
|
|
|
|
if (room_is_active(short_from)) {
|
|
|
|
jid = strdup(from);
|
2012-11-13 19:04:08 -05:00
|
|
|
priv = TRUE;
|
2012-11-12 18:26:09 -05:00
|
|
|
// standard chat message, use jid without resource
|
|
|
|
} else {
|
|
|
|
jid = strdup(short_from);
|
2012-11-13 19:04:08 -05:00
|
|
|
priv = FALSE;
|
2012-11-12 18:26:09 -05:00
|
|
|
}
|
2012-11-06 19:34:43 -05:00
|
|
|
|
2012-11-09 19:43:09 -05:00
|
|
|
// determine chatstate support of recipient
|
2012-11-06 19:34:43 -05:00
|
|
|
gboolean recipient_supports = FALSE;
|
2012-11-09 19:43:09 -05:00
|
|
|
if (stanza_contains_chat_state(stanza)) {
|
2012-11-06 19:34:43 -05:00
|
|
|
recipient_supports = TRUE;
|
|
|
|
}
|
2012-10-31 17:19:08 -04:00
|
|
|
|
2012-11-06 19:48:59 -05:00
|
|
|
// create or update chat session
|
2012-11-12 18:26:09 -05:00
|
|
|
if (!chat_session_exists(jid)) {
|
|
|
|
chat_session_start(jid, recipient_supports);
|
2012-11-06 19:34:43 -05:00
|
|
|
} else {
|
2012-11-12 18:26:09 -05:00
|
|
|
chat_session_set_recipient_supports(jid, recipient_supports);
|
2012-11-06 19:34:43 -05:00
|
|
|
}
|
2012-08-15 19:50:32 -04:00
|
|
|
|
2012-11-08 16:04:07 -05:00
|
|
|
// determine if the notifications happened whilst offline
|
2012-11-18 13:02:55 -05:00
|
|
|
GTimeVal tv_stamp;
|
|
|
|
gboolean delayed = stanza_get_delay(stanza, &tv_stamp);
|
2012-11-08 16:04:07 -05:00
|
|
|
|
2012-11-06 20:15:26 -05:00
|
|
|
// deal with chat states if recipient supports them
|
2012-11-18 13:02:55 -05:00
|
|
|
if (recipient_supports && (!delayed)) {
|
2012-11-08 19:51:32 -05:00
|
|
|
if (xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_COMPOSING) != NULL) {
|
2012-11-06 19:34:43 -05:00
|
|
|
if (prefs_get_notify_typing() || prefs_get_intype()) {
|
2012-11-12 18:26:09 -05:00
|
|
|
prof_handle_typing(jid);
|
2012-11-06 19:34:43 -05:00
|
|
|
}
|
2012-11-08 19:51:32 -05:00
|
|
|
} else if (xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_GONE) != NULL) {
|
2012-11-12 18:26:09 -05:00
|
|
|
prof_handle_gone(jid);
|
2012-11-08 19:51:32 -05:00
|
|
|
} else if (xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_PAUSED) != NULL) {
|
2012-11-06 19:34:43 -05:00
|
|
|
// do something
|
2012-11-08 19:51:32 -05:00
|
|
|
} else if (xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_INACTIVE) != NULL) {
|
2012-11-06 19:34:43 -05:00
|
|
|
// do something
|
2012-11-06 19:48:59 -05:00
|
|
|
} else { // handle <active/>
|
2012-11-06 19:34:43 -05:00
|
|
|
// do something
|
2012-11-05 15:29:57 -05:00
|
|
|
}
|
2012-10-31 17:19:08 -04:00
|
|
|
}
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2012-11-06 19:34:43 -05:00
|
|
|
// check for and deal with message
|
2012-11-08 19:51:32 -05:00
|
|
|
xmpp_stanza_t *body = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_BODY);
|
2012-11-06 19:34:43 -05:00
|
|
|
if (body != NULL) {
|
|
|
|
char *message = xmpp_stanza_get_text(body);
|
2012-11-18 13:02:55 -05:00
|
|
|
if (delayed) {
|
|
|
|
prof_handle_delayed_message(jid, message, tv_stamp, priv);
|
2012-11-08 17:14:41 -05:00
|
|
|
} else {
|
2012-11-13 19:04:08 -05:00
|
|
|
prof_handle_incoming_message(jid, message, priv);
|
2012-11-08 17:14:41 -05:00
|
|
|
}
|
2012-11-06 19:34:43 -05:00
|
|
|
}
|
|
|
|
|
2012-11-12 18:26:09 -05:00
|
|
|
g_free(jid);
|
|
|
|
|
2012-02-05 18:29:09 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
2012-10-21 15:02:20 -04:00
|
|
|
_connection_handler(xmpp_conn_t * const conn,
|
|
|
|
const xmpp_conn_event_t status, const int error,
|
2012-02-10 18:58:57 -05:00
|
|
|
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;
|
|
|
|
|
2012-11-24 21:14:38 -05:00
|
|
|
// login success
|
2012-02-05 18:29:09 -05:00
|
|
|
if (status == XMPP_CONN_CONNECT) {
|
2012-02-19 14:42:48 -05:00
|
|
|
const char *jid = xmpp_conn_get_jid(conn);
|
2012-10-21 15:02:20 -04:00
|
|
|
prof_handle_login_success(jid);
|
2012-10-29 21:38:08 -04:00
|
|
|
chat_sessions_init();
|
2012-02-16 18:28:11 -05:00
|
|
|
|
2012-11-08 19:51:32 -05:00
|
|
|
xmpp_handler_add(conn, _message_handler, NULL, STANZA_NAME_MESSAGE, NULL, ctx);
|
|
|
|
xmpp_handler_add(conn, _presence_handler, NULL, STANZA_NAME_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
|
|
|
|
2012-10-28 16:52:30 -04:00
|
|
|
_jabber_roster_request();
|
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-11-24 21:14:38 -05:00
|
|
|
|
2012-11-26 17:00:57 -05:00
|
|
|
if (prefs_get_reconnect() != 0) {
|
|
|
|
if (reconnect_timer != NULL) {
|
|
|
|
g_timer_destroy(reconnect_timer);
|
|
|
|
reconnect_timer = NULL;
|
|
|
|
}
|
2012-11-24 21:14:38 -05:00
|
|
|
}
|
|
|
|
|
2012-09-11 17:55:59 -04:00
|
|
|
} else {
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-09-11 17:55:59 -04:00
|
|
|
// 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;
|
2012-11-24 21:14:38 -05:00
|
|
|
if (saved_user != NULL) {
|
|
|
|
free(saved_user);
|
|
|
|
saved_user = NULL;
|
|
|
|
}
|
|
|
|
if (saved_password != NULL) {
|
|
|
|
free(saved_password);
|
|
|
|
saved_password = NULL;
|
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-09-11 17:55:59 -04:00
|
|
|
// lost connection for unkown reason
|
|
|
|
} else if (jabber_conn.conn_status == JABBER_CONNECTED) {
|
2012-10-21 15:02:20 -04:00
|
|
|
prof_handle_lost_connection();
|
2012-11-26 17:00:57 -05:00
|
|
|
if (prefs_get_reconnect() != 0) {
|
|
|
|
reconnect_timer = g_timer_new();
|
|
|
|
}
|
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-11-24 21:14:38 -05:00
|
|
|
if (reconnect_timer == NULL) {
|
|
|
|
prof_handle_failed_login();
|
|
|
|
if (saved_user != NULL) {
|
|
|
|
free(saved_user);
|
|
|
|
saved_user = NULL;
|
|
|
|
}
|
|
|
|
if (saved_password != NULL) {
|
|
|
|
free(saved_password);
|
|
|
|
saved_password = NULL;
|
|
|
|
}
|
|
|
|
xmpp_stop(ctx);
|
|
|
|
jabber_conn.conn_status = JABBER_DISCONNECTED;
|
|
|
|
jabber_conn.presence = PRESENCE_OFFLINE;
|
|
|
|
} else {
|
|
|
|
xmpp_stop(ctx);
|
2012-11-26 17:00:57 -05:00
|
|
|
if (prefs_get_reconnect() != 0) {
|
|
|
|
g_timer_start(reconnect_timer);
|
|
|
|
}
|
2012-11-24 21:14:38 -05:00
|
|
|
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
|
2012-10-21 15:02:20 -04:00
|
|
|
_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-10-21 15:02:20 -04:00
|
|
|
|
2012-11-08 19:51:32 -05:00
|
|
|
if (strcmp(type, STANZA_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 {
|
2012-11-08 19:51:32 -05:00
|
|
|
query = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_QUERY);
|
2012-02-19 14:56:03 -05:00
|
|
|
item = xmpp_stanza_get_children(query);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-02-19 14:56:03 -05:00
|
|
|
while (item != NULL) {
|
2012-11-08 19:51:32 -05:00
|
|
|
const char *jid = xmpp_stanza_get_attribute(item, STANZA_ATTR_JID);
|
|
|
|
const char *name = xmpp_stanza_get_attribute(item, STANZA_ATTR_NAME);
|
|
|
|
const char *sub = xmpp_stanza_get_attribute(item, STANZA_ATTR_SUBSCRIPTION);
|
2012-10-29 18:55:17 -04:00
|
|
|
gboolean added = contact_list_add(jid, name, "offline", NULL, sub);
|
2012-02-19 14:56:03 -05:00
|
|
|
|
2012-10-29 18:55:17 -04:00
|
|
|
if (!added) {
|
|
|
|
log_warning("Attempt to add contact twice: %s", jid);
|
2012-02-08 21:47:25 -05:00
|
|
|
}
|
2012-03-04 19:35:05 -05:00
|
|
|
|
2012-10-01 20:04:53 -04:00
|
|
|
item = xmpp_stanza_get_next(item);
|
2012-02-08 21:47:25 -05:00
|
|
|
}
|
2012-11-13 05:51:28 -05:00
|
|
|
|
|
|
|
/* TODO: Save somehow last presence show and use it for initial
|
2012-11-13 19:04:08 -05:00
|
|
|
* presence rather than PRESENCE_ONLINE. It will be helpful
|
2012-11-13 05:51:28 -05:00
|
|
|
* when I set dnd status and reconnect for some reason */
|
|
|
|
// send initial presence
|
|
|
|
jabber_update_presence(PRESENCE_ONLINE, NULL);
|
2012-02-08 21:47:25 -05:00
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
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;
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-11-09 19:43:09 -05:00
|
|
|
xmpp_stanza_t *iq = stanza_create_ping_iq(ctx);
|
2012-02-27 18:43:46 -05:00
|
|
|
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-11-07 17:49:38 -05:00
|
|
|
static int
|
2012-11-07 19:05:32 -05:00
|
|
|
_room_presence_handler(const char * const jid, xmpp_stanza_t * const stanza)
|
2012-11-07 17:49:38 -05:00
|
|
|
{
|
|
|
|
char *room = NULL;
|
|
|
|
char *nick = NULL;
|
|
|
|
|
|
|
|
if (!room_parse_room_jid(jid, &room, &nick)) {
|
|
|
|
log_error("Could not parse room jid: %s", room);
|
|
|
|
g_free(room);
|
|
|
|
g_free(nick);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-11-09 20:17:16 -05:00
|
|
|
// handle self presence
|
2012-11-19 15:41:35 -05:00
|
|
|
if (stanza_is_muc_self_presence(stanza, jabber_get_jid())) {
|
2012-11-09 20:17:16 -05:00
|
|
|
char *type = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_TYPE);
|
2012-11-18 17:49:01 -05:00
|
|
|
gboolean nick_change = stanza_is_room_nick_change(stanza);
|
|
|
|
|
|
|
|
if ((type != NULL) && (strcmp(type, STANZA_TYPE_UNAVAILABLE) == 0)) {
|
2012-11-09 20:17:16 -05:00
|
|
|
|
2012-11-18 17:49:01 -05:00
|
|
|
// leave room if not self nick change
|
|
|
|
if (nick_change) {
|
|
|
|
room_set_pending_nick_change(room);
|
|
|
|
} else {
|
2012-11-09 20:17:16 -05:00
|
|
|
prof_handle_leave_room(room);
|
|
|
|
}
|
|
|
|
|
2012-11-18 17:49:01 -05:00
|
|
|
// handle self nick change
|
|
|
|
} else if (room_is_pending_nick_change(room)) {
|
|
|
|
room_change_nick(room, nick);
|
|
|
|
prof_handle_room_nick_change(room, nick);
|
|
|
|
|
|
|
|
// handle roster complete
|
2012-11-19 19:33:11 -05:00
|
|
|
} else if (!room_get_roster_received(room)) {
|
2012-11-09 20:17:16 -05:00
|
|
|
prof_handle_room_roster_complete(room);
|
2012-11-19 19:33:11 -05:00
|
|
|
|
2012-11-09 20:17:16 -05:00
|
|
|
}
|
2012-11-07 19:05:32 -05:00
|
|
|
|
|
|
|
// handle presence from room members
|
2012-11-07 17:49:38 -05:00
|
|
|
} else {
|
2012-11-18 16:46:58 -05:00
|
|
|
char *type = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_TYPE);
|
|
|
|
char *show_str, *status_str;
|
2012-11-07 19:05:32 -05:00
|
|
|
|
2012-11-18 16:46:58 -05:00
|
|
|
xmpp_stanza_t *status = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_STATUS);
|
|
|
|
if (status != NULL) {
|
|
|
|
status_str = xmpp_stanza_get_text(status);
|
2012-11-07 19:05:32 -05:00
|
|
|
} else {
|
2012-11-18 16:46:58 -05:00
|
|
|
status_str = NULL;
|
|
|
|
}
|
2012-11-07 19:05:32 -05:00
|
|
|
|
2012-11-18 16:46:58 -05:00
|
|
|
if ((type != NULL) && (strcmp(type, STANZA_TYPE_UNAVAILABLE) == 0)) {
|
2012-11-18 17:07:26 -05:00
|
|
|
|
|
|
|
// handle nickname change
|
2012-11-18 16:46:58 -05:00
|
|
|
if (stanza_is_room_nick_change(stanza)) {
|
|
|
|
char *new_nick = stanza_get_new_nick(stanza);
|
|
|
|
room_add_pending_nick_change(room, new_nick, nick);
|
2012-11-07 19:05:32 -05:00
|
|
|
} else {
|
|
|
|
prof_handle_room_member_offline(room, nick, "offline", status_str);
|
2012-11-18 16:46:58 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
xmpp_stanza_t *show = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_SHOW);
|
|
|
|
if (show != NULL) {
|
|
|
|
show_str = xmpp_stanza_get_text(show);
|
|
|
|
} else {
|
|
|
|
show_str = "online";
|
|
|
|
}
|
|
|
|
if (!room_get_roster_received(room)) {
|
|
|
|
room_add_to_roster(room, nick, show_str, status_str);
|
2012-11-07 19:05:32 -05:00
|
|
|
} else {
|
2012-11-18 16:46:58 -05:00
|
|
|
char *old_nick = room_complete_pending_nick_change(room, nick);
|
|
|
|
|
|
|
|
if (old_nick != NULL) {
|
|
|
|
room_add_to_roster(room, nick, show_str, status_str);
|
|
|
|
prof_handle_room_member_nick_change(room, old_nick, nick);
|
2012-11-07 19:05:32 -05:00
|
|
|
} else {
|
2012-11-18 19:26:31 -05:00
|
|
|
if (!room_nick_in_roster(room, nick)) {
|
|
|
|
prof_handle_room_member_online(room, nick, show_str, status_str);
|
|
|
|
} else {
|
|
|
|
prof_handle_room_member_presence(room, nick, show_str, status_str);
|
|
|
|
}
|
2012-11-07 19:05:32 -05:00
|
|
|
}
|
|
|
|
}
|
2012-11-07 17:59:48 -05:00
|
|
|
}
|
2012-11-07 17:49:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static int
|
2012-10-21 15:02:20 -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-10-21 15:02:20 -04:00
|
|
|
|
2012-11-08 19:51:32 -05:00
|
|
|
char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
2012-11-09 20:39:42 -05:00
|
|
|
char *type = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_TYPE);
|
|
|
|
|
|
|
|
if ((type != NULL) && (strcmp(type, STANZA_TYPE_ERROR) == 0)) {
|
|
|
|
return _error_handler(stanza);
|
|
|
|
}
|
2012-02-27 18:33:29 -05:00
|
|
|
|
2012-11-07 17:24:50 -05:00
|
|
|
// handle chat room presence
|
2012-11-06 19:02:43 -05:00
|
|
|
if (room_is_active(from)) {
|
2012-11-07 19:05:32 -05:00
|
|
|
return _room_presence_handler(from, stanza);
|
2012-11-07 17:24:50 -05:00
|
|
|
|
|
|
|
// handle regular presence
|
2012-10-28 21:27:37 -04:00
|
|
|
} else {
|
2012-11-05 15:29:57 -05:00
|
|
|
char *short_from = strtok(from, "/");
|
2012-11-08 19:51:32 -05:00
|
|
|
char *type = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_TYPE);
|
2012-11-05 15:29:57 -05:00
|
|
|
char *show_str, *status_str;
|
2012-10-28 21:27:37 -04:00
|
|
|
|
2012-11-08 19:51:32 -05:00
|
|
|
xmpp_stanza_t *status = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_STATUS);
|
2012-11-05 15:29:57 -05:00
|
|
|
if (status != NULL)
|
|
|
|
status_str = xmpp_stanza_get_text(status);
|
2012-10-28 21:27:37 -04:00
|
|
|
else
|
2012-11-05 15:29:57 -05:00
|
|
|
status_str = NULL;
|
2012-10-28 21:27:37 -04:00
|
|
|
|
2012-11-11 07:00:21 -05:00
|
|
|
if (type == NULL) { // available
|
2012-11-08 19:51:32 -05:00
|
|
|
xmpp_stanza_t *show = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_SHOW);
|
2012-11-05 15:29:57 -05:00
|
|
|
if (show != NULL)
|
|
|
|
show_str = xmpp_stanza_get_text(show);
|
|
|
|
else
|
|
|
|
show_str = "online";
|
|
|
|
|
|
|
|
if (strcmp(short_jid, short_from) !=0) {
|
|
|
|
prof_handle_contact_online(short_from, show_str, status_str);
|
|
|
|
}
|
2012-11-11 07:00:21 -05:00
|
|
|
} else if (strcmp(type, STANZA_TYPE_UNAVAILABLE) == 0) {
|
|
|
|
if (strcmp(short_jid, short_from) !=0) {
|
|
|
|
prof_handle_contact_offline(short_from, "offline", status_str);
|
|
|
|
}
|
|
|
|
} else if (strcmp(type, STANZA_TYPE_SUBSCRIBE) == 0) {
|
|
|
|
prof_handle_subscription(short_from, PRESENCE_SUBSCRIBE);
|
|
|
|
} else if (strcmp(type, STANZA_TYPE_SUBSCRIBED) == 0) {
|
|
|
|
prof_handle_subscription(short_from, PRESENCE_SUBSCRIBED);
|
|
|
|
} else if (strcmp(type, STANZA_TYPE_UNSUBSCRIBED) == 0) {
|
|
|
|
prof_handle_subscription(short_from, PRESENCE_UNSUBSCRIBED);
|
|
|
|
} else { /* unknown type */
|
|
|
|
log_debug("Received presence with unknown type '%s'", type);
|
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;
|
|
|
|
}
|
|
|
|
|