2013-01-28 17:24:47 -05:00
|
|
|
/*
|
2013-02-02 14:47:41 -05:00
|
|
|
* presence.c
|
2013-01-28 17:24:47 -05:00
|
|
|
*
|
2014-03-08 20:18:19 -05:00
|
|
|
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com>
|
2013-01-28 17:24:47 -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/>.
|
|
|
|
*
|
2014-08-24 15:57:39 -04:00
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link the code of portions of this program with the OpenSSL library under
|
|
|
|
* certain conditions as described in each individual source file, and
|
|
|
|
* distribute linked combinations including the two.
|
|
|
|
*
|
|
|
|
* You must obey the GNU General Public License in all respects for all of the
|
|
|
|
* code used other than OpenSSL. If you modify file(s) with this exception, you
|
|
|
|
* may extend this exception to your version of the file(s), but you are not
|
|
|
|
* obligated to do so. If you do not wish to do so, delete this exception
|
|
|
|
* statement from your version. If you delete this exception statement from all
|
|
|
|
* source files in the program, then also delete it here.
|
|
|
|
*
|
2013-01-28 17:24:47 -05:00
|
|
|
*/
|
|
|
|
|
2013-02-10 18:29:37 -05:00
|
|
|
#include <assert.h>
|
2013-01-28 17:24:47 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
2013-03-07 13:37:44 -05:00
|
|
|
#include <glib/gprintf.h>
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2013-01-28 17:55:26 -05:00
|
|
|
#include "common.h"
|
2013-02-02 16:59:29 -05:00
|
|
|
#include "config/preferences.h"
|
2013-01-28 17:24:47 -05:00
|
|
|
#include "log.h"
|
|
|
|
#include "muc.h"
|
|
|
|
#include "profanity.h"
|
2014-01-05 16:48:04 -05:00
|
|
|
#include "server_events.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "xmpp/capabilities.h"
|
2013-02-03 17:40:54 -05:00
|
|
|
#include "xmpp/connection.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "xmpp/stanza.h"
|
|
|
|
#include "xmpp/xmpp.h"
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2013-05-05 18:20:27 -04:00
|
|
|
static Autocomplete sub_requests_ac;
|
2013-01-28 19:04:49 -05:00
|
|
|
|
2013-02-10 18:29:37 -05:00
|
|
|
#define HANDLE(ns, type, func) xmpp_handler_add(conn, func, ns, \
|
|
|
|
STANZA_NAME_PRESENCE, type, ctx)
|
2013-01-28 19:04:49 -05:00
|
|
|
|
2013-02-10 14:39:19 -05:00
|
|
|
static int _unavailable_handler(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
|
|
|
static int _subscribe_handler(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
|
|
|
static int _subscribed_handler(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
|
|
|
static int _unsubscribed_handler(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
|
|
|
static int _available_handler(xmpp_conn_t * const conn,
|
2013-01-28 19:04:49 -05:00
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
2014-01-25 16:29:17 -05:00
|
|
|
static int _muc_user_handler(xmpp_conn_t * const conn,
|
2013-02-10 14:39:19 -05:00
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
2014-01-27 16:42:34 -05:00
|
|
|
static int _presence_error_handler(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2013-03-17 19:04:36 -04:00
|
|
|
void _send_caps_request(char *node, char *caps_key, char *id, char *from);
|
2014-09-20 19:22:03 -04:00
|
|
|
static void _send_room_presence(xmpp_conn_t *conn, xmpp_stanza_t *presence);
|
2013-02-10 18:29:37 -05:00
|
|
|
|
2013-01-28 17:24:47 -05:00
|
|
|
void
|
2013-05-05 19:33:33 -04:00
|
|
|
presence_sub_requests_init(void)
|
2013-01-28 17:24:47 -05:00
|
|
|
{
|
2013-05-05 18:20:27 -04:00
|
|
|
sub_requests_ac = autocomplete_new();
|
2013-01-28 17:24:47 -05:00
|
|
|
}
|
|
|
|
|
2013-01-28 19:04:49 -05:00
|
|
|
void
|
|
|
|
presence_add_handlers(void)
|
|
|
|
{
|
2013-02-03 17:40:54 -05:00
|
|
|
xmpp_conn_t * const conn = connection_get_conn();
|
|
|
|
xmpp_ctx_t * const ctx = connection_get_ctx();
|
2013-02-10 14:39:19 -05:00
|
|
|
|
2014-01-27 16:42:34 -05:00
|
|
|
HANDLE(NULL, STANZA_TYPE_ERROR, _presence_error_handler);
|
2014-01-25 16:29:17 -05:00
|
|
|
HANDLE(STANZA_NS_MUC_USER, NULL, _muc_user_handler);
|
2013-02-10 18:29:37 -05:00
|
|
|
HANDLE(NULL, STANZA_TYPE_UNAVAILABLE, _unavailable_handler);
|
|
|
|
HANDLE(NULL, STANZA_TYPE_SUBSCRIBE, _subscribe_handler);
|
|
|
|
HANDLE(NULL, STANZA_TYPE_SUBSCRIBED, _subscribed_handler);
|
|
|
|
HANDLE(NULL, STANZA_TYPE_UNSUBSCRIBED, _unsubscribed_handler);
|
|
|
|
HANDLE(NULL, NULL, _available_handler);
|
2013-01-28 19:04:49 -05:00
|
|
|
}
|
|
|
|
|
2013-12-18 15:16:55 -05:00
|
|
|
static void
|
|
|
|
_presence_subscription(const char * const jid, const jabber_subscr_t action)
|
2013-01-28 17:24:47 -05:00
|
|
|
{
|
2013-02-10 18:29:37 -05:00
|
|
|
assert(jid != NULL);
|
|
|
|
|
|
|
|
xmpp_ctx_t * const ctx = connection_get_ctx();
|
|
|
|
xmpp_conn_t * const conn = connection_get_conn();
|
|
|
|
const char *type = NULL;
|
|
|
|
|
|
|
|
Jid *jidp = jid_create(jid);
|
2013-05-05 18:20:27 -04:00
|
|
|
|
|
|
|
autocomplete_remove(sub_requests_ac, jidp->barejid);
|
2013-02-10 18:29:37 -05:00
|
|
|
|
|
|
|
switch (action)
|
|
|
|
{
|
|
|
|
case PRESENCE_SUBSCRIBE:
|
|
|
|
log_debug("Sending presence subscribe: %s", jid);
|
|
|
|
type = STANZA_TYPE_SUBSCRIBE;
|
|
|
|
break;
|
|
|
|
case PRESENCE_SUBSCRIBED:
|
|
|
|
log_debug("Sending presence subscribed: %s", jid);
|
|
|
|
type = STANZA_TYPE_SUBSCRIBED;
|
|
|
|
break;
|
|
|
|
case PRESENCE_UNSUBSCRIBED:
|
|
|
|
log_debug("Sending presence usubscribed: %s", jid);
|
|
|
|
type = STANZA_TYPE_UNSUBSCRIBED;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
log_warning("Attempt to send unknown subscription action: %s", jid);
|
|
|
|
break;
|
2013-01-28 17:24:47 -05:00
|
|
|
}
|
|
|
|
|
2013-02-10 18:29:37 -05:00
|
|
|
xmpp_stanza_t *presence = xmpp_stanza_new(ctx);
|
2014-06-15 16:49:34 -04:00
|
|
|
char *id = create_unique_id("sub");
|
2014-01-28 15:55:02 -05:00
|
|
|
xmpp_stanza_set_id(presence, id);
|
2013-01-28 17:24:47 -05:00
|
|
|
xmpp_stanza_set_name(presence, STANZA_NAME_PRESENCE);
|
|
|
|
xmpp_stanza_set_type(presence, type);
|
2013-02-10 18:29:37 -05:00
|
|
|
xmpp_stanza_set_attribute(presence, STANZA_ATTR_TO, jidp->barejid);
|
2013-01-28 17:24:47 -05:00
|
|
|
xmpp_send(conn, presence);
|
|
|
|
xmpp_stanza_release(presence);
|
2013-02-10 18:29:37 -05:00
|
|
|
|
|
|
|
jid_destroy(jidp);
|
2014-06-15 15:56:24 -04:00
|
|
|
free(id);
|
2013-01-28 17:24:47 -05:00
|
|
|
}
|
|
|
|
|
2013-12-18 15:16:55 -05:00
|
|
|
static GSList *
|
|
|
|
_presence_get_subscription_requests(void)
|
2013-01-28 17:24:47 -05:00
|
|
|
{
|
2014-09-25 19:06:50 -04:00
|
|
|
return autocomplete_create_list(sub_requests_ac);
|
2013-01-28 17:24:47 -05:00
|
|
|
}
|
|
|
|
|
2013-12-18 15:16:55 -05:00
|
|
|
static gint
|
|
|
|
_presence_sub_request_count(void)
|
2013-04-27 18:57:51 -04:00
|
|
|
{
|
2013-05-05 18:20:27 -04:00
|
|
|
return autocomplete_length(sub_requests_ac);
|
2013-04-27 18:57:51 -04:00
|
|
|
}
|
|
|
|
|
2013-05-05 19:33:33 -04:00
|
|
|
void
|
|
|
|
presence_clear_sub_requests(void)
|
|
|
|
{
|
|
|
|
autocomplete_clear(sub_requests_ac);
|
|
|
|
}
|
|
|
|
|
2013-12-18 15:16:55 -05:00
|
|
|
static char *
|
|
|
|
_presence_sub_request_find(char * search_str)
|
2013-05-05 18:42:11 -04:00
|
|
|
{
|
2014-07-09 15:23:47 -04:00
|
|
|
return autocomplete_complete(sub_requests_ac, search_str, TRUE);
|
2013-05-05 18:42:11 -04:00
|
|
|
}
|
|
|
|
|
2013-12-18 15:16:55 -05:00
|
|
|
static gboolean
|
|
|
|
_presence_sub_request_exists(const char * const bare_jid)
|
2013-06-01 18:27:46 -04:00
|
|
|
{
|
2013-08-03 07:38:38 -04:00
|
|
|
gboolean result = FALSE;
|
2014-09-25 19:06:50 -04:00
|
|
|
GSList *requests_p = autocomplete_create_list(sub_requests_ac);
|
2013-08-03 07:38:38 -04:00
|
|
|
GSList *requests = requests_p;
|
|
|
|
|
2013-06-01 18:27:46 -04:00
|
|
|
while (requests != NULL) {
|
|
|
|
if (strcmp(requests->data, bare_jid) == 0) {
|
2013-08-03 07:38:38 -04:00
|
|
|
result = TRUE;
|
|
|
|
break;
|
2013-06-01 18:27:46 -04:00
|
|
|
}
|
|
|
|
requests = g_slist_next(requests);
|
|
|
|
}
|
2013-08-03 07:38:38 -04:00
|
|
|
|
|
|
|
if (requests_p != NULL) {
|
|
|
|
g_slist_free_full(requests_p, free);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2013-06-01 18:27:46 -04:00
|
|
|
}
|
|
|
|
|
2013-12-18 15:16:55 -05:00
|
|
|
static void
|
|
|
|
_presence_reset_sub_request_search(void)
|
2013-05-05 18:42:11 -04:00
|
|
|
{
|
|
|
|
autocomplete_reset(sub_requests_ac);
|
|
|
|
}
|
|
|
|
|
2013-12-18 15:16:55 -05:00
|
|
|
static void
|
|
|
|
_presence_update(const resource_presence_t presence_type, const char * const msg,
|
2013-02-10 18:29:37 -05:00
|
|
|
const int idle)
|
2013-01-28 17:55:26 -05:00
|
|
|
{
|
2013-02-10 18:29:37 -05:00
|
|
|
if (jabber_get_connection_status() != JABBER_CONNECTED) {
|
|
|
|
log_warning("Error setting presence, not connected.");
|
2013-01-28 17:55:26 -05:00
|
|
|
return;
|
2013-02-10 18:29:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (msg != NULL) {
|
|
|
|
log_debug("Updating presence: %s, \"%s\"",
|
|
|
|
string_from_resource_presence(presence_type), msg);
|
|
|
|
} else {
|
|
|
|
log_debug("Updating presence: %s",
|
|
|
|
string_from_resource_presence(presence_type));
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_ctx_t * const ctx = connection_get_ctx();
|
|
|
|
xmpp_conn_t * const conn = connection_get_conn();
|
|
|
|
const int pri =
|
|
|
|
accounts_get_priority_for_presence_type(jabber_get_account_name(),
|
|
|
|
presence_type);
|
|
|
|
const char *show = stanza_get_presence_string_from_type(presence_type);
|
2013-01-28 17:55:26 -05:00
|
|
|
|
2013-02-03 17:40:54 -05:00
|
|
|
connection_set_presence_message(msg);
|
|
|
|
connection_set_priority(pri);
|
2013-01-28 17:55:26 -05:00
|
|
|
|
2013-02-03 21:19:31 -05:00
|
|
|
xmpp_stanza_t *presence = stanza_create_presence(ctx);
|
2014-06-15 16:49:34 -04:00
|
|
|
char *id = create_unique_id("presence");
|
2014-01-28 15:55:02 -05:00
|
|
|
xmpp_stanza_set_id(presence, id);
|
2013-02-03 21:19:31 -05:00
|
|
|
stanza_attach_show(ctx, presence, show);
|
|
|
|
stanza_attach_status(ctx, presence, msg);
|
2013-02-03 15:09:56 -05:00
|
|
|
stanza_attach_priority(ctx, presence, pri);
|
|
|
|
stanza_attach_last_activity(ctx, presence, idle);
|
|
|
|
stanza_attach_caps(ctx, presence);
|
2013-01-28 17:55:26 -05:00
|
|
|
xmpp_send(conn, presence);
|
2013-02-10 18:29:37 -05:00
|
|
|
_send_room_presence(conn, presence);
|
|
|
|
xmpp_stanza_release(presence);
|
2013-01-28 17:55:26 -05:00
|
|
|
|
2013-02-10 18:29:37 -05:00
|
|
|
// set last presence for account
|
|
|
|
const char *last = show;
|
|
|
|
if (last == NULL) {
|
|
|
|
last = STANZA_TEXT_ONLINE;
|
|
|
|
}
|
|
|
|
accounts_set_last_presence(jabber_get_account_name(), last);
|
2014-06-15 15:56:24 -04:00
|
|
|
free(id);
|
2013-02-10 18:29:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_send_room_presence(xmpp_conn_t *conn, xmpp_stanza_t *presence)
|
|
|
|
{
|
2014-09-28 17:09:20 -04:00
|
|
|
GList *rooms_p = muc_rooms();
|
2013-08-03 07:38:38 -04:00
|
|
|
GList *rooms = rooms_p;
|
|
|
|
|
2013-01-28 17:55:26 -05:00
|
|
|
while (rooms != NULL) {
|
2013-02-10 18:29:37 -05:00
|
|
|
const char *room = rooms->data;
|
2014-09-28 17:09:20 -04:00
|
|
|
const char *nick = muc_nick(room);
|
2013-01-28 17:55:26 -05:00
|
|
|
|
2013-08-03 07:38:38 -04:00
|
|
|
if (nick != NULL) {
|
|
|
|
char *full_room_jid = create_fulljid(room, nick);
|
|
|
|
|
|
|
|
xmpp_stanza_set_attribute(presence, STANZA_ATTR_TO, full_room_jid);
|
|
|
|
log_debug("Sending presence to room: %s", full_room_jid);
|
|
|
|
xmpp_send(conn, presence);
|
|
|
|
free(full_room_jid);
|
|
|
|
}
|
2013-01-28 17:55:26 -05:00
|
|
|
|
|
|
|
rooms = g_list_next(rooms);
|
|
|
|
}
|
2013-08-03 07:38:38 -04:00
|
|
|
|
|
|
|
if (rooms_p != NULL) {
|
|
|
|
g_list_free(rooms_p);
|
|
|
|
}
|
2013-01-28 17:55:26 -05:00
|
|
|
}
|
|
|
|
|
2013-12-18 15:16:55 -05:00
|
|
|
static void
|
2014-03-08 16:10:23 -05:00
|
|
|
_presence_join_room(char *room, char *nick, char * passwd)
|
2013-02-03 15:09:56 -05:00
|
|
|
{
|
2014-03-08 16:10:23 -05:00
|
|
|
Jid *jid = jid_create_from_bare_and_resource(room, nick);
|
2013-02-10 18:29:37 -05:00
|
|
|
|
|
|
|
log_debug("Sending room join presence to: %s", jid->fulljid);
|
2013-02-03 17:40:54 -05:00
|
|
|
xmpp_ctx_t *ctx = connection_get_ctx();
|
|
|
|
xmpp_conn_t *conn = connection_get_conn();
|
2013-12-27 14:50:43 -05:00
|
|
|
resource_presence_t presence_type =
|
2013-02-10 18:29:37 -05:00
|
|
|
accounts_get_last_presence(jabber_get_account_name());
|
2013-02-03 17:18:40 -05:00
|
|
|
const char *show = stanza_get_presence_string_from_type(presence_type);
|
2013-02-03 18:46:20 -05:00
|
|
|
char *status = jabber_get_presence_message();
|
2013-02-03 15:09:56 -05:00
|
|
|
int pri = accounts_get_priority_for_presence_type(jabber_get_account_name(),
|
|
|
|
presence_type);
|
|
|
|
|
2014-02-27 00:31:10 -05:00
|
|
|
xmpp_stanza_t *presence = stanza_create_room_join_presence(ctx, jid->fulljid, passwd);
|
2013-02-03 21:19:31 -05:00
|
|
|
stanza_attach_show(ctx, presence, show);
|
|
|
|
stanza_attach_status(ctx, presence, status);
|
2013-02-03 15:09:56 -05:00
|
|
|
stanza_attach_priority(ctx, presence, pri);
|
|
|
|
stanza_attach_caps(ctx, presence);
|
|
|
|
|
|
|
|
xmpp_send(conn, presence);
|
|
|
|
xmpp_stanza_release(presence);
|
|
|
|
|
2014-03-08 16:10:23 -05:00
|
|
|
jid_destroy(jid);
|
2013-02-03 15:09:56 -05:00
|
|
|
}
|
|
|
|
|
2013-12-18 15:16:55 -05:00
|
|
|
static void
|
|
|
|
_presence_change_room_nick(const char * const room, const char * const nick)
|
2013-02-03 15:09:56 -05:00
|
|
|
{
|
2013-02-10 18:29:37 -05:00
|
|
|
assert(room != NULL);
|
|
|
|
assert(nick != NULL);
|
|
|
|
|
|
|
|
log_debug("Sending room nickname change to: %s, nick: %s", room, nick);
|
2013-02-03 17:40:54 -05:00
|
|
|
xmpp_ctx_t *ctx = connection_get_ctx();
|
|
|
|
xmpp_conn_t *conn = connection_get_conn();
|
2013-12-27 14:50:43 -05:00
|
|
|
resource_presence_t presence_type =
|
2013-02-10 18:29:37 -05:00
|
|
|
accounts_get_last_presence(jabber_get_account_name());
|
2013-02-03 21:33:25 -05:00
|
|
|
const char *show = stanza_get_presence_string_from_type(presence_type);
|
|
|
|
char *status = jabber_get_presence_message();
|
|
|
|
int pri = accounts_get_priority_for_presence_type(jabber_get_account_name(),
|
|
|
|
presence_type);
|
|
|
|
|
2013-02-03 15:09:56 -05:00
|
|
|
char *full_room_jid = create_fulljid(room, nick);
|
2013-02-10 18:29:37 -05:00
|
|
|
xmpp_stanza_t *presence =
|
|
|
|
stanza_create_room_newnick_presence(ctx, full_room_jid);
|
2013-02-03 21:33:25 -05:00
|
|
|
stanza_attach_show(ctx, presence, show);
|
|
|
|
stanza_attach_status(ctx, presence, status);
|
|
|
|
stanza_attach_priority(ctx, presence, pri);
|
|
|
|
stanza_attach_caps(ctx, presence);
|
|
|
|
|
2013-02-03 15:09:56 -05:00
|
|
|
xmpp_send(conn, presence);
|
|
|
|
xmpp_stanza_release(presence);
|
|
|
|
|
|
|
|
free(full_room_jid);
|
|
|
|
}
|
|
|
|
|
2013-12-18 15:16:55 -05:00
|
|
|
static void
|
|
|
|
_presence_leave_chat_room(const char * const room_jid)
|
2013-02-03 15:09:56 -05:00
|
|
|
{
|
2013-02-10 18:29:37 -05:00
|
|
|
assert(room_jid != NULL);
|
|
|
|
|
|
|
|
log_debug("Sending room leave presence to: %s", room_jid);
|
2013-02-03 17:40:54 -05:00
|
|
|
xmpp_ctx_t *ctx = connection_get_ctx();
|
|
|
|
xmpp_conn_t *conn = connection_get_conn();
|
2014-09-28 17:09:20 -04:00
|
|
|
char *nick = muc_nick(room_jid);
|
2013-02-03 15:09:56 -05:00
|
|
|
|
2013-09-21 20:26:40 -04:00
|
|
|
if (nick != NULL) {
|
|
|
|
xmpp_stanza_t *presence = stanza_create_room_leave_presence(ctx, room_jid,
|
|
|
|
nick);
|
|
|
|
xmpp_send(conn, presence);
|
|
|
|
xmpp_stanza_release(presence);
|
|
|
|
}
|
2013-02-03 15:09:56 -05:00
|
|
|
}
|
|
|
|
|
2014-01-27 16:42:34 -05:00
|
|
|
static int
|
|
|
|
_presence_error_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|
|
|
void * const userdata)
|
|
|
|
{
|
2014-01-27 17:35:04 -05:00
|
|
|
char *id = xmpp_stanza_get_id(stanza);
|
|
|
|
char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
2014-01-27 16:42:34 -05:00
|
|
|
xmpp_stanza_t *error_stanza = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_ERROR);
|
2014-04-20 19:37:04 -04:00
|
|
|
xmpp_stanza_t *x = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_X);
|
2014-05-05 17:01:27 -04:00
|
|
|
char *xmlns = NULL;
|
|
|
|
if (x != NULL) {
|
|
|
|
xmlns = xmpp_stanza_get_ns(x);
|
|
|
|
}
|
2014-01-27 17:35:04 -05:00
|
|
|
char *type = NULL;
|
|
|
|
if (error_stanza != NULL) {
|
|
|
|
type = xmpp_stanza_get_attribute(error_stanza, STANZA_ATTR_TYPE);
|
|
|
|
}
|
2014-01-27 16:42:34 -05:00
|
|
|
|
2014-04-20 19:37:04 -04:00
|
|
|
// handle MUC join errors
|
|
|
|
if (g_strcmp0(xmlns, STANZA_NS_MUC) == 0) {
|
|
|
|
Jid *fulljid = jid_create(from);
|
|
|
|
|
|
|
|
char *error_cond = NULL;
|
|
|
|
xmpp_stanza_t *reason_st = xmpp_stanza_get_child_by_ns(error_stanza, STANZA_NS_STANZAS);
|
|
|
|
if (reason_st != NULL) {
|
|
|
|
error_cond = xmpp_stanza_get_name(reason_st);
|
|
|
|
}
|
|
|
|
if (error_cond == NULL) {
|
|
|
|
error_cond = "unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
log_info("Error joining room: %s, reason: %s", fulljid->barejid, error_cond);
|
|
|
|
handle_room_join_error(fulljid->barejid, error_cond);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-01-27 17:35:04 -05:00
|
|
|
// stanza_get_error never returns NULL
|
|
|
|
char *err_msg = stanza_get_error_message(stanza);
|
2014-01-27 16:42:34 -05:00
|
|
|
|
2014-01-27 17:35:04 -05:00
|
|
|
GString *log_msg = g_string_new("presence stanza error received");
|
|
|
|
if (id != NULL) {
|
|
|
|
g_string_append(log_msg, " id=");
|
|
|
|
g_string_append(log_msg, id);
|
|
|
|
}
|
|
|
|
if (from != NULL) {
|
|
|
|
g_string_append(log_msg, " from=");
|
|
|
|
g_string_append(log_msg, from);
|
|
|
|
}
|
|
|
|
if (type != NULL) {
|
|
|
|
g_string_append(log_msg, " type=");
|
|
|
|
g_string_append(log_msg, type);
|
|
|
|
}
|
|
|
|
g_string_append(log_msg, " error=");
|
|
|
|
g_string_append(log_msg, err_msg);
|
2014-01-27 16:42:34 -05:00
|
|
|
|
2014-01-27 17:35:04 -05:00
|
|
|
log_info(log_msg->str);
|
2014-01-27 16:42:34 -05:00
|
|
|
|
2014-01-27 17:35:04 -05:00
|
|
|
g_string_free(log_msg, TRUE);
|
2014-01-27 16:42:34 -05:00
|
|
|
|
2014-01-30 17:20:57 -05:00
|
|
|
handle_presence_error(from, type, err_msg);
|
2014-01-27 16:42:34 -05:00
|
|
|
|
2014-01-27 17:35:04 -05:00
|
|
|
free(err_msg);
|
2014-01-27 16:42:34 -05:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-10 14:39:19 -05:00
|
|
|
static int
|
|
|
|
_unsubscribed_handler(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata)
|
|
|
|
{
|
|
|
|
char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
|
|
|
Jid *from_jid = jid_create(from);
|
2013-02-10 18:29:37 -05:00
|
|
|
log_debug("Unsubscribed presence handler fired for %s", from);
|
2013-02-10 14:39:19 -05:00
|
|
|
|
2014-01-05 16:48:04 -05:00
|
|
|
handle_subscription(from_jid->barejid, PRESENCE_UNSUBSCRIBED);
|
2013-05-05 18:20:27 -04:00
|
|
|
autocomplete_remove(sub_requests_ac, from_jid->barejid);
|
2013-02-10 14:39:19 -05:00
|
|
|
|
|
|
|
jid_destroy(from_jid);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
_subscribed_handler(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata)
|
|
|
|
{
|
|
|
|
char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
|
|
|
Jid *from_jid = jid_create(from);
|
2013-02-10 18:29:37 -05:00
|
|
|
log_debug("Subscribed presence handler fired for %s", from);
|
2013-02-10 14:39:19 -05:00
|
|
|
|
2014-01-05 16:48:04 -05:00
|
|
|
handle_subscription(from_jid->barejid, PRESENCE_SUBSCRIBED);
|
2013-05-05 18:20:27 -04:00
|
|
|
autocomplete_remove(sub_requests_ac, from_jid->barejid);
|
2013-02-10 14:39:19 -05:00
|
|
|
|
|
|
|
jid_destroy(from_jid);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
_subscribe_handler(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata)
|
|
|
|
{
|
|
|
|
char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
2013-02-10 18:29:37 -05:00
|
|
|
log_debug("Subscribe presence handler fired for %s", from);
|
2013-02-10 14:39:19 -05:00
|
|
|
|
2013-08-03 07:38:38 -04:00
|
|
|
Jid *from_jid = jid_create(from);
|
|
|
|
if (from_jid == NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-01-05 16:48:04 -05:00
|
|
|
handle_subscription(from_jid->barejid, PRESENCE_SUBSCRIBE);
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(sub_requests_ac, from_jid->barejid);
|
2013-02-10 14:39:19 -05:00
|
|
|
|
|
|
|
jid_destroy(from_jid);
|
2013-02-03 15:09:56 -05:00
|
|
|
|
2013-02-10 14:39:19 -05:00
|
|
|
return 1;
|
|
|
|
}
|
2013-01-28 17:55:26 -05:00
|
|
|
|
2013-01-28 19:04:49 -05:00
|
|
|
static int
|
2013-02-10 14:39:19 -05:00
|
|
|
_unavailable_handler(xmpp_conn_t * const conn,
|
2013-01-28 17:24:47 -05:00
|
|
|
xmpp_stanza_t * const stanza, void * const userdata)
|
|
|
|
{
|
|
|
|
const char *jid = xmpp_conn_get_jid(conn);
|
|
|
|
char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
2013-02-10 18:29:37 -05:00
|
|
|
log_debug("Unavailable presence handler fired for %s", from);
|
2013-01-28 17:24:47 -05:00
|
|
|
|
|
|
|
Jid *my_jid = jid_create(jid);
|
|
|
|
Jid *from_jid = jid_create(from);
|
2013-08-03 07:38:38 -04:00
|
|
|
if (my_jid == NULL || from_jid == NULL) {
|
|
|
|
jid_destroy(my_jid);
|
|
|
|
jid_destroy(from_jid);
|
|
|
|
return 1;
|
|
|
|
}
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2013-03-17 18:21:05 -04:00
|
|
|
char *status_str = stanza_get_status(stanza, NULL);
|
2013-02-10 14:39:19 -05:00
|
|
|
|
|
|
|
if (strcmp(my_jid->barejid, from_jid->barejid) !=0) {
|
2013-02-24 10:18:15 -05:00
|
|
|
if (from_jid->resourcepart != NULL) {
|
2014-01-05 16:48:04 -05:00
|
|
|
handle_contact_offline(from_jid->barejid, from_jid->resourcepart, status_str);
|
2013-04-07 14:19:02 -04:00
|
|
|
|
|
|
|
// hack for servers that do not send full jid with unavailable presence
|
|
|
|
} else {
|
2014-01-05 16:48:04 -05:00
|
|
|
handle_contact_offline(from_jid->barejid, "__prof_default", status_str);
|
2013-02-24 10:18:15 -05:00
|
|
|
}
|
2013-02-18 17:51:05 -05:00
|
|
|
} else {
|
2013-02-24 10:18:15 -05:00
|
|
|
if (from_jid->resourcepart != NULL) {
|
|
|
|
connection_remove_available_resource(from_jid->resourcepart);
|
|
|
|
}
|
2013-01-28 17:24:47 -05:00
|
|
|
}
|
|
|
|
|
2013-08-03 07:27:07 -04:00
|
|
|
free(status_str);
|
2013-02-10 14:39:19 -05:00
|
|
|
jid_destroy(my_jid);
|
|
|
|
jid_destroy(from_jid);
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2013-02-10 14:39:19 -05:00
|
|
|
return 1;
|
|
|
|
}
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2014-09-20 20:57:09 -04:00
|
|
|
static void
|
|
|
|
_handle_caps(xmpp_stanza_t *const stanza)
|
|
|
|
{
|
|
|
|
char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
|
|
|
|
|
|
|
if (from) {
|
|
|
|
char *hash = stanza_caps_get_hash(stanza);
|
|
|
|
|
|
|
|
// hash supported xep-0115
|
|
|
|
if (g_strcmp0(hash, "sha-1") == 0) {
|
|
|
|
log_info("Hash %s supported");
|
|
|
|
|
|
|
|
char *ver = stanza_get_caps_ver(stanza);
|
|
|
|
if (ver) {
|
|
|
|
if (caps_contains(ver)) {
|
|
|
|
log_info("Capabilities cached: %s", ver);
|
|
|
|
caps_map(from, ver);
|
|
|
|
} else {
|
|
|
|
log_info("Capabilities not cached: %s, sending service discovery request", ver);
|
|
|
|
char *node = stanza_caps_get_node(stanza);
|
|
|
|
char *id = create_unique_id("caps");
|
|
|
|
|
|
|
|
iq_send_caps_request(from, id, node, ver);
|
2014-09-23 19:48:28 -04:00
|
|
|
|
|
|
|
free(id);
|
2014-09-20 20:57:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// no hash, or not supported
|
|
|
|
} else {
|
|
|
|
if (hash) {
|
|
|
|
log_info("Hash %s not supported, not sending service discovery request");
|
|
|
|
// send service discovery request, cache against from full jid
|
|
|
|
} else {
|
|
|
|
log_info("No hash specified, not sending service discovery request");
|
|
|
|
// do legacy
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-10 14:39:19 -05:00
|
|
|
static int
|
|
|
|
_available_handler(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata)
|
|
|
|
{
|
|
|
|
// handler still fires if error
|
|
|
|
if (g_strcmp0(xmpp_stanza_get_type(stanza), STANZA_TYPE_ERROR) == 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2013-02-10 14:39:19 -05:00
|
|
|
// handler still fires if other types
|
|
|
|
if ((g_strcmp0(xmpp_stanza_get_type(stanza), STANZA_TYPE_UNAVAILABLE) == 0) ||
|
|
|
|
(g_strcmp0(xmpp_stanza_get_type(stanza), STANZA_TYPE_SUBSCRIBE) == 0) ||
|
|
|
|
(g_strcmp0(xmpp_stanza_get_type(stanza), STANZA_TYPE_SUBSCRIBED) == 0) ||
|
|
|
|
(g_strcmp0(xmpp_stanza_get_type(stanza), STANZA_TYPE_UNSUBSCRIBED) == 0)) {
|
|
|
|
return 1;
|
|
|
|
}
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2013-02-10 18:29:37 -05:00
|
|
|
// handler still fires for muc presence
|
|
|
|
if (stanza_is_muc_presence(stanza)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-09-20 20:04:53 -04:00
|
|
|
char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
|
|
|
if (from) {
|
|
|
|
log_info("Available presence handler fired for: %s", from);
|
|
|
|
} else {
|
|
|
|
log_info("Available presence handler fired");
|
|
|
|
}
|
|
|
|
|
2014-09-18 16:36:43 -04:00
|
|
|
// exit when no from attribute
|
|
|
|
if (!from) {
|
|
|
|
log_warning("No from attribute found.");
|
|
|
|
return 1;
|
|
|
|
}
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2014-09-18 16:36:43 -04:00
|
|
|
// own jid is invalid
|
|
|
|
const char *my_jid_str = xmpp_conn_get_jid(conn);
|
|
|
|
Jid *my_jid = jid_create(my_jid_str);
|
|
|
|
if (!my_jid) {
|
|
|
|
if (my_jid_str) {
|
|
|
|
log_error("Could not parse account JID: %s", my_jid_str);
|
|
|
|
} else {
|
|
|
|
log_error("Could not parse account JID: NULL");
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// contact jid invalud
|
2013-02-10 14:39:19 -05:00
|
|
|
Jid *from_jid = jid_create(from);
|
2014-09-18 16:36:43 -04:00
|
|
|
if (!from_jid) {
|
|
|
|
log_warning("Could not parse contact JID: %s", from);
|
2013-08-03 07:38:38 -04:00
|
|
|
jid_destroy(my_jid);
|
|
|
|
return 1;
|
|
|
|
}
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2014-09-18 16:36:43 -04:00
|
|
|
// presence properties
|
2013-03-17 18:21:05 -04:00
|
|
|
char *show_str = stanza_get_show(stanza, "online");
|
|
|
|
char *status_str = stanza_get_status(stanza, NULL);
|
2014-09-18 16:36:43 -04:00
|
|
|
|
|
|
|
// presence last activity
|
2013-02-10 14:39:19 -05:00
|
|
|
int idle_seconds = stanza_get_idle_time(stanza);
|
|
|
|
GDateTime *last_activity = NULL;
|
|
|
|
if (idle_seconds > 0) {
|
|
|
|
GDateTime *now = g_date_time_new_now_local();
|
|
|
|
last_activity = g_date_time_add_seconds(now, 0 - idle_seconds);
|
|
|
|
g_date_time_unref(now);
|
|
|
|
}
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2014-09-18 16:36:43 -04:00
|
|
|
// priority
|
2013-02-14 17:06:25 -05:00
|
|
|
int priority = 0;
|
2014-09-18 16:36:43 -04:00
|
|
|
xmpp_stanza_t *priority_stanza = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_PRIORITY);
|
2013-02-14 17:06:25 -05:00
|
|
|
if (priority_stanza != NULL) {
|
|
|
|
char *priority_str = xmpp_stanza_get_text(priority_stanza);
|
|
|
|
if (priority_str != NULL) {
|
|
|
|
priority = atoi(priority_str);
|
|
|
|
}
|
2014-06-15 15:39:50 -04:00
|
|
|
free(priority_str);
|
2013-02-14 17:06:25 -05:00
|
|
|
}
|
|
|
|
|
2014-09-18 19:49:48 -04:00
|
|
|
// send disco info for capabilities, if not cached
|
2014-09-18 20:28:44 -04:00
|
|
|
if ((g_strcmp0(my_jid->fulljid, from_jid->fulljid) != 0) && (stanza_contains_caps(stanza))) {
|
2014-09-18 19:49:48 -04:00
|
|
|
log_info("Presence contains capabilities.");
|
2014-09-20 20:57:09 -04:00
|
|
|
_handle_caps(stanza);
|
2014-09-18 16:36:43 -04:00
|
|
|
}
|
2013-04-07 14:19:02 -04:00
|
|
|
|
2014-09-18 16:36:43 -04:00
|
|
|
// create Resource
|
|
|
|
Resource *resource = NULL;
|
|
|
|
resource_presence_t presence = resource_presence_from_string(show_str);
|
|
|
|
if (from_jid->resourcepart == NULL) { // hack for servers that do not send full jid
|
2014-09-20 18:50:19 -04:00
|
|
|
resource = resource_new("__prof_default", presence, status_str, priority);
|
2013-04-07 14:19:02 -04:00
|
|
|
} else {
|
2014-09-20 18:50:19 -04:00
|
|
|
resource = resource_new(from_jid->resourcepart, presence, status_str, priority);
|
2013-04-07 14:19:02 -04:00
|
|
|
}
|
2014-09-18 16:36:43 -04:00
|
|
|
free(status_str);
|
|
|
|
free(show_str);
|
2013-03-17 17:53:34 -04:00
|
|
|
|
2014-09-18 16:36:43 -04:00
|
|
|
// check for self presence
|
|
|
|
if (g_strcmp0(my_jid->barejid, from_jid->barejid) == 0) {
|
2013-04-07 14:19:02 -04:00
|
|
|
connection_add_available_resource(resource);
|
2013-03-17 17:53:34 -04:00
|
|
|
|
2013-04-07 14:19:02 -04:00
|
|
|
// contact presence
|
|
|
|
} else {
|
2014-09-18 16:36:43 -04:00
|
|
|
handle_contact_online(from_jid->barejid, resource, last_activity);
|
2013-02-10 14:39:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (last_activity != NULL) {
|
|
|
|
g_date_time_unref(last_activity);
|
2013-01-28 17:24:47 -05:00
|
|
|
}
|
|
|
|
|
2014-09-18 16:36:43 -04:00
|
|
|
jid_destroy(my_jid);
|
|
|
|
jid_destroy(from_jid);
|
|
|
|
|
2013-01-28 17:24:47 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-03-17 19:04:36 -04:00
|
|
|
void
|
|
|
|
_send_caps_request(char *node, char *caps_key, char *id, char *from)
|
|
|
|
{
|
|
|
|
xmpp_ctx_t *ctx = connection_get_ctx();
|
|
|
|
xmpp_conn_t *conn = connection_get_conn();
|
|
|
|
|
|
|
|
if (node != NULL) {
|
|
|
|
log_debug("Node string: %s.", node);
|
|
|
|
if (!caps_contains(caps_key)) {
|
|
|
|
log_debug("Capabilities not cached for '%s', sending discovery IQ.", from);
|
|
|
|
xmpp_stanza_t *iq = stanza_create_disco_info_iq(ctx, id, from, node);
|
|
|
|
xmpp_send(conn, iq);
|
|
|
|
xmpp_stanza_release(iq);
|
|
|
|
} else {
|
|
|
|
log_debug("Capabilities already cached, for %s", caps_key);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log_debug("No node string, not sending discovery IQ.");
|
|
|
|
}
|
|
|
|
}
|
2013-01-28 17:24:47 -05:00
|
|
|
static int
|
2014-01-25 16:29:17 -05:00
|
|
|
_muc_user_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
2013-02-10 14:39:19 -05:00
|
|
|
void * const userdata)
|
2013-01-28 17:24:47 -05:00
|
|
|
{
|
2013-02-10 14:39:19 -05:00
|
|
|
// handler still fires if error
|
|
|
|
if (g_strcmp0(xmpp_stanza_get_type(stanza), STANZA_TYPE_ERROR) == 0) {
|
2013-01-28 17:24:47 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-02-10 14:39:19 -05:00
|
|
|
char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
|
|
|
Jid *from_jid = jid_create(from);
|
2013-08-03 07:27:07 -04:00
|
|
|
if (from_jid == NULL || from_jid->resourcepart == NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
2013-02-10 14:39:19 -05:00
|
|
|
|
2014-05-06 17:07:44 -04:00
|
|
|
char *from_room = from_jid->barejid;
|
|
|
|
char *from_nick = from_jid->resourcepart;
|
2013-02-10 14:39:19 -05:00
|
|
|
|
2013-01-28 17:24:47 -05:00
|
|
|
// handle self presence
|
2013-05-21 17:00:42 -04:00
|
|
|
if (stanza_is_muc_self_presence(stanza, jabber_get_fulljid())) {
|
2013-01-28 17:24:47 -05:00
|
|
|
char *type = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_TYPE);
|
2013-08-05 18:08:30 -04:00
|
|
|
char *new_nick = stanza_get_new_nick(stanza);
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2014-09-27 20:55:24 -04:00
|
|
|
// self unavailable
|
2013-01-28 17:24:47 -05:00
|
|
|
if ((type != NULL) && (strcmp(type, STANZA_TYPE_UNAVAILABLE) == 0)) {
|
|
|
|
|
|
|
|
// leave room if not self nick change
|
2013-08-05 16:20:07 -04:00
|
|
|
if (new_nick != NULL) {
|
2014-09-28 17:09:20 -04:00
|
|
|
muc_nick_change_start(from_room, new_nick);
|
2013-01-28 17:24:47 -05:00
|
|
|
} else {
|
2014-10-05 15:52:34 -04:00
|
|
|
GSList *status_codes = stanza_get_status_codes_by_ns(stanza, STANZA_NS_MUC_USER);
|
|
|
|
|
|
|
|
// room destroyed
|
|
|
|
if (stanza_room_destroyed(stanza)) {
|
|
|
|
char *new_jid = stanza_get_muc_destroy_alternative_room(stanza);
|
|
|
|
char *password = stanza_get_muc_destroy_alternative_password(stanza);
|
|
|
|
char *reason = stanza_get_muc_destroy_reason(stanza);
|
|
|
|
handle_room_destroyed(from_room, new_jid, password, reason);
|
|
|
|
free(password);
|
|
|
|
free(reason);
|
|
|
|
|
|
|
|
// kicked from room
|
|
|
|
} else if (g_slist_find_custom(status_codes, "307", (GCompareFunc)g_strcmp0) != NULL) {
|
|
|
|
char *actor = stanza_get_kick_actor(stanza);
|
|
|
|
char *reason = stanza_get_kick_reason(stanza);
|
|
|
|
handle_room_kicked(from_room, actor, reason);
|
|
|
|
free(reason);
|
|
|
|
|
|
|
|
// normal exit
|
|
|
|
} else {
|
|
|
|
handle_leave_room(from_room);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free(status_codes);
|
2013-01-28 17:24:47 -05:00
|
|
|
}
|
|
|
|
|
2014-09-27 20:55:24 -04:00
|
|
|
// self online
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// handle self nick change
|
2014-09-28 17:09:20 -04:00
|
|
|
if (muc_nick_change_pending(from_room)) {
|
2014-09-27 20:55:24 -04:00
|
|
|
handle_room_nick_change(from_room, from_nick);
|
|
|
|
|
|
|
|
// handle roster complete
|
2014-09-28 17:09:20 -04:00
|
|
|
} else if (!muc_roster_complete(from_room)) {
|
2014-09-27 20:55:24 -04:00
|
|
|
handle_room_roster_complete(from_room);
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2014-09-27 20:55:24 -04:00
|
|
|
// room configuration required
|
|
|
|
if (stanza_muc_requires_config(stanza)) {
|
|
|
|
handle_room_requires_config(from_room);
|
|
|
|
}
|
|
|
|
}
|
2014-09-02 19:23:04 -04:00
|
|
|
|
2014-09-27 20:55:24 -04:00
|
|
|
// set own affiliation and role
|
|
|
|
xmpp_stanza_t *x = xmpp_stanza_get_child_by_ns(stanza, STANZA_NS_MUC_USER);
|
|
|
|
if (x) {
|
|
|
|
xmpp_stanza_t *item = xmpp_stanza_get_child_by_name(x, STANZA_NAME_ITEM);
|
|
|
|
if (item) {
|
|
|
|
char *role = xmpp_stanza_get_attribute(item, "role");
|
|
|
|
muc_set_role(from_room, role);
|
|
|
|
char *affiliation = xmpp_stanza_get_attribute(item, "affiliation");
|
|
|
|
muc_set_affiliation(from_room, affiliation);
|
|
|
|
}
|
2014-09-02 19:23:04 -04:00
|
|
|
}
|
2013-01-28 17:24:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// handle presence from room members
|
|
|
|
} else {
|
|
|
|
char *type = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_TYPE);
|
2013-08-03 07:27:07 -04:00
|
|
|
char *status_str;
|
2013-03-17 19:04:36 -04:00
|
|
|
|
2013-02-10 14:39:19 -05:00
|
|
|
log_debug("Room presence received from %s", from_jid->fulljid);
|
2013-02-03 13:28:54 -05:00
|
|
|
|
2013-03-17 18:21:05 -04:00
|
|
|
status_str = stanza_get_status(stanza, NULL);
|
2013-01-28 17:24:47 -05:00
|
|
|
|
|
|
|
if ((type != NULL) && (strcmp(type, STANZA_TYPE_UNAVAILABLE) == 0)) {
|
|
|
|
|
|
|
|
// handle nickname change
|
|
|
|
if (stanza_is_room_nick_change(stanza)) {
|
|
|
|
char *new_nick = stanza_get_new_nick(stanza);
|
2013-08-03 07:27:07 -04:00
|
|
|
if (new_nick != NULL) {
|
2014-09-28 17:09:20 -04:00
|
|
|
muc_roster_nick_change_start(from_room, new_nick, from_nick);
|
2013-08-03 07:27:07 -04:00
|
|
|
free(new_nick);
|
|
|
|
}
|
2013-01-28 17:24:47 -05:00
|
|
|
} else {
|
2014-10-05 15:52:34 -04:00
|
|
|
GSList *status_codes = stanza_get_status_codes_by_ns(stanza, STANZA_NS_MUC_USER);
|
|
|
|
|
|
|
|
// kicked from room
|
|
|
|
if (g_slist_find_custom(status_codes, "307", (GCompareFunc)g_strcmp0) != NULL) {
|
|
|
|
char *actor = stanza_get_kick_actor(stanza);
|
|
|
|
char *reason = stanza_get_kick_reason(stanza);
|
|
|
|
handle_room_occupent_kicked(from_room, from_nick, actor, reason);
|
|
|
|
free(reason);
|
|
|
|
|
|
|
|
// normal exit
|
|
|
|
} else {
|
|
|
|
handle_room_member_offline(from_room, from_nick, "offline", status_str);
|
|
|
|
}
|
2013-01-28 17:24:47 -05:00
|
|
|
}
|
|
|
|
} else {
|
2014-09-21 11:51:35 -04:00
|
|
|
// send disco info for capabilities, if not cached
|
|
|
|
if (stanza_contains_caps(stanza)) {
|
|
|
|
log_info("Presence contains capabilities.");
|
|
|
|
_handle_caps(stanza);
|
|
|
|
}
|
|
|
|
|
2013-08-03 07:27:07 -04:00
|
|
|
char *show_str = stanza_get_show(stanza, "online");
|
2014-10-01 08:27:01 -04:00
|
|
|
char *jid = NULL;
|
2014-09-30 14:46:35 -04:00
|
|
|
char *role = NULL;
|
|
|
|
char *affiliation = NULL;
|
|
|
|
|
|
|
|
xmpp_stanza_t *x = xmpp_stanza_get_child_by_ns(stanza, STANZA_NS_MUC_USER);
|
|
|
|
if (x) {
|
|
|
|
xmpp_stanza_t *item = xmpp_stanza_get_child_by_name(x, STANZA_NAME_ITEM);
|
|
|
|
if (item) {
|
2014-10-01 08:27:01 -04:00
|
|
|
jid = xmpp_stanza_get_attribute(item, "jid");
|
2014-09-30 14:46:35 -04:00
|
|
|
role = xmpp_stanza_get_attribute(item, "role");
|
|
|
|
affiliation = xmpp_stanza_get_attribute(item, "affiliation");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-28 17:09:20 -04:00
|
|
|
if (!muc_roster_complete(from_room)) {
|
2014-10-01 08:27:01 -04:00
|
|
|
muc_roster_add(from_room, from_nick, jid, role, affiliation, show_str, status_str);
|
2013-01-28 17:24:47 -05:00
|
|
|
} else {
|
2014-09-28 17:09:20 -04:00
|
|
|
char *old_nick = muc_roster_nick_change_complete(from_room, from_nick);
|
2013-01-28 17:24:47 -05:00
|
|
|
|
|
|
|
if (old_nick != NULL) {
|
2014-10-01 08:27:01 -04:00
|
|
|
muc_roster_add(from_room, from_nick, jid, role, affiliation, show_str, status_str);
|
2014-05-06 17:07:44 -04:00
|
|
|
handle_room_member_nick_change(from_room, old_nick, from_nick);
|
2013-08-03 07:38:38 -04:00
|
|
|
free(old_nick);
|
2013-01-28 17:24:47 -05:00
|
|
|
} else {
|
2014-09-28 17:09:20 -04:00
|
|
|
if (!muc_roster_contains_nick(from_room, from_nick)) {
|
2014-10-01 08:27:01 -04:00
|
|
|
handle_room_member_online(from_room, from_nick, jid, role, affiliation, show_str, status_str);
|
2013-01-28 17:24:47 -05:00
|
|
|
} else {
|
2014-10-01 08:27:01 -04:00
|
|
|
handle_room_member_presence(from_room, from_nick, jid, role, affiliation, show_str, status_str);
|
2013-01-28 17:24:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-06-09 11:52:28 -04:00
|
|
|
|
2013-08-03 07:27:07 -04:00
|
|
|
free(show_str);
|
2013-01-28 17:24:47 -05:00
|
|
|
}
|
2013-06-09 11:52:28 -04:00
|
|
|
|
2013-08-03 07:27:07 -04:00
|
|
|
free(status_str);
|
2013-01-28 17:24:47 -05:00
|
|
|
}
|
|
|
|
|
2013-02-10 14:39:19 -05:00
|
|
|
jid_destroy(from_jid);
|
2013-01-28 17:24:47 -05:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2013-12-22 18:31:49 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
presence_init_module(void)
|
|
|
|
{
|
|
|
|
presence_subscription = _presence_subscription;
|
|
|
|
presence_get_subscription_requests = _presence_get_subscription_requests;
|
|
|
|
presence_sub_request_count = _presence_sub_request_count;
|
|
|
|
presence_sub_request_find = _presence_sub_request_find;
|
|
|
|
presence_sub_request_exists = _presence_sub_request_exists;
|
|
|
|
presence_reset_sub_request_search = _presence_reset_sub_request_search;
|
|
|
|
presence_update = _presence_update;
|
|
|
|
presence_join_room = _presence_join_room;
|
|
|
|
presence_change_room_nick = _presence_change_room_nick;
|
|
|
|
presence_leave_chat_room = _presence_leave_chat_room;
|
|
|
|
}
|