2012-11-08 18:07:00 -05:00
|
|
|
/*
|
2013-02-02 14:47:41 -05:00
|
|
|
* stanza.c
|
2012-11-08 18:07:00 -05:00
|
|
|
*
|
2014-03-08 20:18:19 -05:00
|
|
|
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com>
|
2012-11-08 18:07:00 -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-12-08 22:07:33 -05:00
|
|
|
#include <stdlib.h>
|
2012-11-09 19:16:56 -05:00
|
|
|
#include <string.h>
|
|
|
|
|
2012-11-18 13:02:55 -05:00
|
|
|
#include <glib.h>
|
2012-11-08 18:07:00 -05:00
|
|
|
#include <strophe.h>
|
|
|
|
|
2012-11-08 18:35:11 -05:00
|
|
|
#include "common.h"
|
2014-01-28 15:55:02 -05:00
|
|
|
#include "log.h"
|
2013-03-12 15:08:50 -04:00
|
|
|
#include "xmpp/connection.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "xmpp/stanza.h"
|
2013-02-03 15:09:56 -05:00
|
|
|
#include "xmpp/capabilities.h"
|
2012-11-08 18:35:11 -05:00
|
|
|
|
2013-08-05 16:20:07 -04:00
|
|
|
#include "muc.h"
|
|
|
|
|
2013-01-20 13:23:29 -05:00
|
|
|
static int _field_compare(FormField *f1, FormField *f2);
|
|
|
|
|
2014-03-29 19:15:51 -04:00
|
|
|
#if 0
|
2013-06-30 11:59:38 -04:00
|
|
|
xmpp_stanza_t *
|
2014-04-12 20:01:53 -04:00
|
|
|
stanza_create_bookmarks_pubsub_request(xmpp_ctx_t *ctx)
|
2013-06-30 11:59:38 -04:00
|
|
|
{
|
|
|
|
xmpp_stanza_t *iq, *pubsub, *items;
|
|
|
|
|
|
|
|
/* TODO: check pointers for NULL */
|
|
|
|
iq = xmpp_stanza_new(ctx);
|
|
|
|
pubsub = xmpp_stanza_new(ctx);
|
|
|
|
items = xmpp_stanza_new(ctx);
|
|
|
|
|
|
|
|
xmpp_stanza_set_name(iq, STANZA_NAME_IQ);
|
|
|
|
xmpp_stanza_set_type(iq, STANZA_TYPE_GET);
|
|
|
|
|
|
|
|
xmpp_stanza_set_name(pubsub, STANZA_NAME_PUBSUB);
|
|
|
|
xmpp_stanza_set_ns(pubsub, STANZA_NS_PUBSUB);
|
|
|
|
|
|
|
|
xmpp_stanza_set_name(items, STANZA_NAME_ITEMS);
|
|
|
|
xmpp_stanza_set_attribute(items, "node", "storage:bookmarks");
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(pubsub, items);
|
|
|
|
xmpp_stanza_add_child(iq, pubsub);
|
|
|
|
xmpp_stanza_release(items);
|
|
|
|
xmpp_stanza_release(pubsub);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
2014-03-29 19:15:51 -04:00
|
|
|
#endif
|
2013-06-30 11:59:38 -04:00
|
|
|
|
|
|
|
xmpp_stanza_t *
|
2014-04-12 20:01:53 -04:00
|
|
|
stanza_create_bookmarks_storage_request(xmpp_ctx_t *ctx)
|
2013-06-30 11:59:38 -04:00
|
|
|
{
|
|
|
|
xmpp_stanza_t *iq, *query, *storage;
|
|
|
|
|
|
|
|
/* TODO: check pointers for NULL */
|
|
|
|
iq = xmpp_stanza_new(ctx);
|
|
|
|
query = xmpp_stanza_new(ctx);
|
|
|
|
storage = xmpp_stanza_new(ctx);
|
|
|
|
|
|
|
|
xmpp_stanza_set_name(iq, STANZA_NAME_IQ);
|
|
|
|
xmpp_stanza_set_type(iq, STANZA_TYPE_GET);
|
|
|
|
xmpp_stanza_set_ns(iq, "jabber:client");
|
|
|
|
|
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, "jabber:iq:private");
|
|
|
|
|
|
|
|
xmpp_stanza_set_name(storage, STANZA_NAME_STORAGE);
|
|
|
|
xmpp_stanza_set_ns(storage, "storage:bookmarks");
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(query, storage);
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(storage);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2014-04-12 20:01:53 -04:00
|
|
|
#if 0
|
|
|
|
xmpp_stanza_t *
|
|
|
|
stanza_create_bookmarks_pubsub_add(xmpp_ctx_t *ctx, const char * const jid,
|
|
|
|
const gboolean autojoin, const char * const nick)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t *stanza = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(stanza, STANZA_NAME_IQ);
|
|
|
|
char *id = generate_unique_id("bookmark_add");
|
|
|
|
xmpp_stanza_set_id(stanza, id);
|
|
|
|
xmpp_stanza_set_type(stanza, STANZA_TYPE_SET);
|
|
|
|
|
|
|
|
xmpp_stanza_t *pubsub = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(pubsub, STANZA_NAME_PUBSUB);
|
|
|
|
xmpp_stanza_set_ns(pubsub, STANZA_NS_PUBSUB);
|
|
|
|
xmpp_stanza_add_child(stanza, pubsub);
|
|
|
|
|
|
|
|
xmpp_stanza_t *publish = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(publish, STANZA_NAME_PUBLISH);
|
|
|
|
xmpp_stanza_set_attribute(publish, STANZA_ATTR_NODE, "storage:bookmarks");
|
|
|
|
xmpp_stanza_add_child(pubsub, publish);
|
|
|
|
|
|
|
|
xmpp_stanza_t *item = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(item, STANZA_NAME_ITEM);
|
|
|
|
xmpp_stanza_add_child(publish, item);
|
|
|
|
|
|
|
|
xmpp_stanza_t *conference = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(conference, STANZA_NAME_CONFERENCE);
|
|
|
|
xmpp_stanza_set_ns(conference, "storage:bookmarks");
|
|
|
|
xmpp_stanza_set_attribute(conference, STANZA_ATTR_JID, jid);
|
|
|
|
|
|
|
|
if (autojoin) {
|
|
|
|
xmpp_stanza_set_attribute(conference, STANZA_ATTR_AUTOJOIN, "true");
|
|
|
|
} else {
|
|
|
|
xmpp_stanza_set_attribute(conference, STANZA_ATTR_AUTOJOIN, "false");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nick != NULL) {
|
|
|
|
xmpp_stanza_t *nick_st = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(nick_st, STANZA_NAME_NICK);
|
|
|
|
xmpp_stanza_set_text(nick_st, nick);
|
|
|
|
xmpp_stanza_add_child(conference, nick_st);
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(item, conference);
|
|
|
|
|
|
|
|
xmpp_stanza_t *publish_options = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(publish_options, STANZA_NAME_PUBLISH_OPTIONS);
|
|
|
|
xmpp_stanza_add_child(pubsub, publish_options);
|
|
|
|
|
|
|
|
xmpp_stanza_t *x = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(x, STANZA_NAME_X);
|
|
|
|
xmpp_stanza_set_ns(x, STANZA_NS_DATA);
|
|
|
|
xmpp_stanza_set_attribute(x, STANZA_ATTR_TYPE, "submit");
|
|
|
|
xmpp_stanza_add_child(publish_options, x);
|
|
|
|
|
|
|
|
xmpp_stanza_t *form_type = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(form_type, STANZA_NAME_FIELD);
|
|
|
|
xmpp_stanza_set_attribute(form_type, STANZA_ATTR_VAR, "FORM_TYPE");
|
|
|
|
xmpp_stanza_set_attribute(form_type, STANZA_ATTR_TYPE, "hidden");
|
|
|
|
xmpp_stanza_t *form_type_value = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(form_type_value, STANZA_NAME_VALUE);
|
|
|
|
xmpp_stanza_t *form_type_value_text = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_text(form_type_value_text, "http://jabber.org/protocol/pubsub#publish-options");
|
|
|
|
xmpp_stanza_add_child(form_type_value, form_type_value_text);
|
|
|
|
xmpp_stanza_add_child(form_type, form_type_value);
|
|
|
|
xmpp_stanza_add_child(x, form_type);
|
|
|
|
|
|
|
|
xmpp_stanza_t *persist_items = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(persist_items, STANZA_NAME_FIELD);
|
|
|
|
xmpp_stanza_set_attribute(persist_items, STANZA_ATTR_VAR, "pubsub#persist_items");
|
|
|
|
xmpp_stanza_t *persist_items_value = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(persist_items_value, STANZA_NAME_VALUE);
|
|
|
|
xmpp_stanza_t *persist_items_value_text = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_text(persist_items_value_text, "true");
|
|
|
|
xmpp_stanza_add_child(persist_items_value, persist_items_value_text);
|
|
|
|
xmpp_stanza_add_child(persist_items, persist_items_value);
|
|
|
|
xmpp_stanza_add_child(x, persist_items);
|
|
|
|
|
|
|
|
xmpp_stanza_t *access_model = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(access_model, STANZA_NAME_FIELD);
|
|
|
|
xmpp_stanza_set_attribute(access_model, STANZA_ATTR_VAR, "pubsub#access_model");
|
|
|
|
xmpp_stanza_t *access_model_value = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(access_model_value, STANZA_NAME_VALUE);
|
|
|
|
xmpp_stanza_t *access_model_value_text = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_text(access_model_value_text, "whitelist");
|
|
|
|
xmpp_stanza_add_child(access_model_value, access_model_value_text);
|
|
|
|
xmpp_stanza_add_child(access_model, access_model_value);
|
|
|
|
xmpp_stanza_add_child(x, access_model);
|
|
|
|
|
|
|
|
return stanza;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-11-08 18:07:00 -05:00
|
|
|
xmpp_stanza_t *
|
|
|
|
stanza_create_chat_state(xmpp_ctx_t *ctx, const char * const recipient,
|
|
|
|
const char * const state)
|
|
|
|
{
|
2012-11-08 18:31:21 -05:00
|
|
|
xmpp_stanza_t *msg, *chat_state;
|
2012-11-08 18:07:00 -05:00
|
|
|
|
2012-11-08 18:31:21 -05:00
|
|
|
msg = xmpp_stanza_new(ctx);
|
2012-11-08 19:51:32 -05:00
|
|
|
xmpp_stanza_set_name(msg, STANZA_NAME_MESSAGE);
|
|
|
|
xmpp_stanza_set_type(msg, STANZA_TYPE_CHAT);
|
|
|
|
xmpp_stanza_set_attribute(msg, STANZA_ATTR_TO, recipient);
|
2014-01-26 09:15:04 -05:00
|
|
|
char *id = generate_unique_id(NULL);
|
|
|
|
xmpp_stanza_set_id(msg, id);
|
2012-11-08 18:07:00 -05:00
|
|
|
|
|
|
|
chat_state = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(chat_state, state);
|
2012-11-08 19:51:32 -05:00
|
|
|
xmpp_stanza_set_ns(chat_state, STANZA_NS_CHATSTATES);
|
2012-11-08 18:31:21 -05:00
|
|
|
xmpp_stanza_add_child(msg, chat_state);
|
2013-06-09 07:20:48 -04:00
|
|
|
xmpp_stanza_release(chat_state);
|
2012-11-08 18:07:00 -05:00
|
|
|
|
2012-11-08 18:31:21 -05:00
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_t *
|
|
|
|
stanza_create_message(xmpp_ctx_t *ctx, const char * const recipient,
|
|
|
|
const char * const type, const char * const message,
|
2014-01-25 20:07:11 -05:00
|
|
|
const char * const state)
|
2012-11-08 18:31:21 -05:00
|
|
|
{
|
|
|
|
xmpp_stanza_t *msg, *body, *text;
|
|
|
|
|
|
|
|
msg = xmpp_stanza_new(ctx);
|
2012-11-08 19:51:32 -05:00
|
|
|
xmpp_stanza_set_name(msg, STANZA_NAME_MESSAGE);
|
2012-11-08 18:44:09 -05:00
|
|
|
xmpp_stanza_set_type(msg, type);
|
2012-11-08 19:51:32 -05:00
|
|
|
xmpp_stanza_set_attribute(msg, STANZA_ATTR_TO, recipient);
|
2014-01-25 20:07:11 -05:00
|
|
|
char *id = generate_unique_id(NULL);
|
|
|
|
xmpp_stanza_set_id(msg, id);
|
2012-11-08 18:31:21 -05:00
|
|
|
|
|
|
|
body = xmpp_stanza_new(ctx);
|
2012-11-08 19:51:32 -05:00
|
|
|
xmpp_stanza_set_name(body, STANZA_NAME_BODY);
|
2012-11-08 18:31:21 -05:00
|
|
|
|
|
|
|
text = xmpp_stanza_new(ctx);
|
2013-07-22 15:35:43 -04:00
|
|
|
xmpp_stanza_set_text(text, message);
|
2012-11-08 18:31:21 -05:00
|
|
|
xmpp_stanza_add_child(body, text);
|
2013-06-09 07:20:48 -04:00
|
|
|
xmpp_stanza_release(text);
|
2012-11-08 18:31:21 -05:00
|
|
|
xmpp_stanza_add_child(msg, body);
|
2013-06-09 07:20:48 -04:00
|
|
|
xmpp_stanza_release(body);
|
2012-11-08 18:31:21 -05:00
|
|
|
|
|
|
|
if (state != NULL) {
|
|
|
|
xmpp_stanza_t *chat_state = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(chat_state, state);
|
2012-11-08 19:51:32 -05:00
|
|
|
xmpp_stanza_set_ns(chat_state, STANZA_NS_CHATSTATES);
|
2012-11-08 18:31:21 -05:00
|
|
|
xmpp_stanza_add_child(msg, chat_state);
|
2013-08-03 07:27:07 -04:00
|
|
|
xmpp_stanza_release(chat_state);
|
2012-11-08 18:31:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return msg;
|
2012-11-08 18:07:00 -05:00
|
|
|
}
|
|
|
|
|
2013-06-01 19:06:05 -04:00
|
|
|
xmpp_stanza_t *
|
|
|
|
stanza_create_roster_remove_set(xmpp_ctx_t *ctx, const char * const barejid)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t *iq = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(iq, STANZA_NAME_IQ);
|
|
|
|
xmpp_stanza_set_type(iq, STANZA_TYPE_SET);
|
|
|
|
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, XMPP_NS_ROSTER);
|
|
|
|
|
|
|
|
xmpp_stanza_t *item = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(item, STANZA_NAME_ITEM);
|
|
|
|
xmpp_stanza_set_attribute(item, STANZA_ATTR_JID, barejid);
|
|
|
|
xmpp_stanza_set_attribute(item, STANZA_ATTR_SUBSCRIPTION, "remove");
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(query, item);
|
2013-06-09 07:20:48 -04:00
|
|
|
xmpp_stanza_release(item);
|
2013-06-01 19:06:05 -04:00
|
|
|
xmpp_stanza_add_child(iq, query);
|
2013-06-09 07:20:48 -04:00
|
|
|
xmpp_stanza_release(query);
|
2013-06-01 19:06:05 -04:00
|
|
|
|
|
|
|
return iq;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-05-18 21:07:01 -04:00
|
|
|
xmpp_stanza_t *
|
2013-06-23 12:38:30 -04:00
|
|
|
stanza_create_roster_set(xmpp_ctx_t *ctx, const char * const id,
|
|
|
|
const char * const jid, const char * const handle, GSList *groups)
|
2013-05-18 21:07:01 -04:00
|
|
|
{
|
|
|
|
xmpp_stanza_t *iq = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(iq, STANZA_NAME_IQ);
|
|
|
|
xmpp_stanza_set_type(iq, STANZA_TYPE_SET);
|
2013-06-23 12:38:30 -04:00
|
|
|
if (id != NULL) {
|
|
|
|
xmpp_stanza_set_id(iq, id);
|
|
|
|
}
|
2013-05-18 21:07:01 -04:00
|
|
|
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, XMPP_NS_ROSTER);
|
|
|
|
|
|
|
|
xmpp_stanza_t *item = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(item, STANZA_NAME_ITEM);
|
|
|
|
xmpp_stanza_set_attribute(item, STANZA_ATTR_JID, jid);
|
2013-05-22 18:38:52 -04:00
|
|
|
|
2013-05-18 22:27:59 -04:00
|
|
|
if (handle != NULL) {
|
|
|
|
xmpp_stanza_set_attribute(item, STANZA_ATTR_NAME, handle);
|
|
|
|
} else {
|
|
|
|
xmpp_stanza_set_attribute(item, STANZA_ATTR_NAME, "");
|
|
|
|
}
|
2013-05-18 21:07:01 -04:00
|
|
|
|
2013-05-22 18:38:52 -04:00
|
|
|
while (groups != NULL) {
|
|
|
|
xmpp_stanza_t *group = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_t *groupname = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(group, STANZA_NAME_GROUP);
|
|
|
|
xmpp_stanza_set_text(groupname, groups->data);
|
|
|
|
xmpp_stanza_add_child(group, groupname);
|
2013-06-09 07:20:48 -04:00
|
|
|
xmpp_stanza_release(groupname);
|
2013-05-22 18:38:52 -04:00
|
|
|
xmpp_stanza_add_child(item, group);
|
2013-06-09 07:20:48 -04:00
|
|
|
xmpp_stanza_release(group);
|
2013-05-22 18:38:52 -04:00
|
|
|
groups = g_slist_next(groups);
|
|
|
|
}
|
|
|
|
|
2013-05-18 21:07:01 -04:00
|
|
|
xmpp_stanza_add_child(query, item);
|
2013-06-09 07:20:48 -04:00
|
|
|
xmpp_stanza_release(item);
|
2013-05-18 21:07:01 -04:00
|
|
|
xmpp_stanza_add_child(iq, query);
|
2013-06-09 07:20:48 -04:00
|
|
|
xmpp_stanza_release(query);
|
2013-05-18 21:07:01 -04:00
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2013-04-20 15:18:13 -04:00
|
|
|
xmpp_stanza_t *
|
|
|
|
stanza_create_invite(xmpp_ctx_t *ctx, const char * const room,
|
|
|
|
const char * const contact, const char * const reason)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t *message, *x;
|
|
|
|
|
|
|
|
message = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(message, STANZA_NAME_MESSAGE);
|
|
|
|
xmpp_stanza_set_attribute(message, STANZA_ATTR_TO, contact);
|
2014-01-26 09:10:45 -05:00
|
|
|
char *id = generate_unique_id(NULL);
|
|
|
|
xmpp_stanza_set_id(message, id);
|
2013-04-20 15:18:13 -04:00
|
|
|
|
|
|
|
x = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(x, STANZA_NAME_X);
|
|
|
|
xmpp_stanza_set_ns(x, STANZA_NS_CONFERENCE);
|
|
|
|
|
|
|
|
xmpp_stanza_set_attribute(x, STANZA_ATTR_JID, room);
|
|
|
|
if (reason != NULL) {
|
|
|
|
xmpp_stanza_set_attribute(x, STANZA_ATTR_REASON, reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(message, x);
|
2013-06-09 07:20:48 -04:00
|
|
|
xmpp_stanza_release(x);
|
2013-04-20 15:18:13 -04:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2012-11-08 20:04:32 -05:00
|
|
|
xmpp_stanza_t *
|
2013-02-03 21:19:31 -05:00
|
|
|
stanza_create_room_join_presence(xmpp_ctx_t * const ctx,
|
2014-02-27 00:31:10 -05:00
|
|
|
const char * const full_room_jid, const char * const passwd)
|
2012-11-08 20:04:32 -05:00
|
|
|
{
|
|
|
|
xmpp_stanza_t *presence = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(presence, STANZA_NAME_PRESENCE);
|
2012-11-10 13:51:50 -05:00
|
|
|
xmpp_stanza_set_attribute(presence, STANZA_ATTR_TO, full_room_jid);
|
2014-01-28 15:55:02 -05:00
|
|
|
char *id = generate_unique_id("join");
|
|
|
|
xmpp_stanza_set_id(presence, id);
|
2012-11-08 20:04:32 -05:00
|
|
|
|
|
|
|
xmpp_stanza_t *x = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(x, STANZA_NAME_X);
|
|
|
|
xmpp_stanza_set_ns(x, STANZA_NS_MUC);
|
2014-02-27 00:31:10 -05:00
|
|
|
|
|
|
|
// if a password was given
|
|
|
|
if (passwd != NULL) {
|
|
|
|
xmpp_stanza_t *pass = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(pass, "password");
|
|
|
|
xmpp_stanza_t *text = xmpp_stanza_new(ctx);
|
2014-02-27 00:40:31 -05:00
|
|
|
xmpp_stanza_set_text(text, strdup(passwd));
|
2014-02-27 00:31:10 -05:00
|
|
|
xmpp_stanza_add_child(pass, text);
|
|
|
|
xmpp_stanza_add_child(x, pass);
|
|
|
|
xmpp_stanza_release(text);
|
|
|
|
xmpp_stanza_release(pass);
|
|
|
|
}
|
|
|
|
|
2012-11-08 20:04:32 -05:00
|
|
|
xmpp_stanza_add_child(presence, x);
|
2013-06-09 07:20:48 -04:00
|
|
|
xmpp_stanza_release(x);
|
2012-11-08 20:04:32 -05:00
|
|
|
|
|
|
|
return presence;
|
|
|
|
}
|
2012-11-08 20:36:53 -05:00
|
|
|
|
2012-11-18 13:36:17 -05:00
|
|
|
xmpp_stanza_t *
|
|
|
|
stanza_create_room_newnick_presence(xmpp_ctx_t *ctx,
|
|
|
|
const char * const full_room_jid)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t *presence = xmpp_stanza_new(ctx);
|
2014-01-28 15:55:02 -05:00
|
|
|
char *id = generate_unique_id("sub");
|
|
|
|
xmpp_stanza_set_id(presence, id);
|
2012-11-18 13:36:17 -05:00
|
|
|
xmpp_stanza_set_name(presence, STANZA_NAME_PRESENCE);
|
|
|
|
xmpp_stanza_set_attribute(presence, STANZA_ATTR_TO, full_room_jid);
|
|
|
|
|
|
|
|
return presence;
|
|
|
|
}
|
|
|
|
|
2012-11-08 20:31:52 -05:00
|
|
|
xmpp_stanza_t *
|
2012-11-09 19:19:49 -05:00
|
|
|
stanza_create_room_leave_presence(xmpp_ctx_t *ctx, const char * const room,
|
2012-11-08 20:31:52 -05:00
|
|
|
const char * const nick)
|
|
|
|
{
|
|
|
|
GString *full_jid = g_string_new(room);
|
|
|
|
g_string_append(full_jid, "/");
|
|
|
|
g_string_append(full_jid, nick);
|
2012-11-08 20:04:32 -05:00
|
|
|
|
2012-11-08 20:31:52 -05:00
|
|
|
xmpp_stanza_t *presence = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(presence, STANZA_NAME_PRESENCE);
|
|
|
|
xmpp_stanza_set_type(presence, STANZA_TYPE_UNAVAILABLE);
|
2012-11-08 20:36:53 -05:00
|
|
|
xmpp_stanza_set_attribute(presence, STANZA_ATTR_TO, full_jid->str);
|
2014-01-28 15:55:02 -05:00
|
|
|
char *id = generate_unique_id("leave");
|
|
|
|
xmpp_stanza_set_id(presence, id);
|
2012-11-08 20:31:52 -05:00
|
|
|
|
|
|
|
g_string_free(full_jid, TRUE);
|
2012-11-08 20:36:53 -05:00
|
|
|
|
|
|
|
return presence;
|
2012-11-08 20:31:52 -05:00
|
|
|
}
|
2012-11-09 19:16:56 -05:00
|
|
|
|
|
|
|
xmpp_stanza_t *
|
2013-02-03 21:19:31 -05:00
|
|
|
stanza_create_presence(xmpp_ctx_t * const ctx)
|
2012-11-09 19:16:56 -05:00
|
|
|
{
|
|
|
|
xmpp_stanza_t *presence = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(presence, STANZA_NAME_PRESENCE);
|
|
|
|
|
|
|
|
return presence;
|
|
|
|
}
|
2012-11-09 19:25:42 -05:00
|
|
|
|
2013-02-16 21:10:56 -05:00
|
|
|
xmpp_stanza_t *
|
|
|
|
stanza_create_software_version_iq(xmpp_ctx_t *ctx, const char * const fulljid)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t *iq = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(iq, STANZA_NAME_IQ);
|
|
|
|
xmpp_stanza_set_type(iq, STANZA_TYPE_GET);
|
|
|
|
xmpp_stanza_set_id(iq, "sv");
|
|
|
|
xmpp_stanza_set_attribute(iq, "to", fulljid);
|
|
|
|
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_VERSION);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2012-11-09 19:25:42 -05:00
|
|
|
xmpp_stanza_t *
|
|
|
|
stanza_create_roster_iq(xmpp_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t *iq = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(iq, STANZA_NAME_IQ);
|
|
|
|
xmpp_stanza_set_type(iq, STANZA_TYPE_GET);
|
|
|
|
xmpp_stanza_set_id(iq, "roster");
|
|
|
|
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, XMPP_NS_ROSTER);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
2012-11-09 19:43:09 -05:00
|
|
|
|
2013-01-19 20:29:15 -05:00
|
|
|
xmpp_stanza_t *
|
2013-03-14 16:50:09 -04:00
|
|
|
stanza_create_disco_info_iq(xmpp_ctx_t *ctx, const char * const id, const char * const to,
|
2013-01-19 20:29:15 -05:00
|
|
|
const char * const node)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t *iq = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(iq, STANZA_NAME_IQ);
|
|
|
|
xmpp_stanza_set_type(iq, STANZA_TYPE_GET);
|
|
|
|
xmpp_stanza_set_attribute(iq, STANZA_ATTR_TO, to);
|
2013-01-20 17:39:52 -05:00
|
|
|
xmpp_stanza_set_id(iq, id);
|
2013-01-19 20:29:15 -05:00
|
|
|
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, XMPP_NS_DISCO_INFO);
|
2013-03-14 16:50:09 -04:00
|
|
|
if (node != NULL) {
|
|
|
|
xmpp_stanza_set_attribute(query, STANZA_ATTR_NODE, node);
|
|
|
|
}
|
2013-01-19 20:29:15 -05:00
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2013-03-13 19:38:26 -04:00
|
|
|
xmpp_stanza_t *
|
|
|
|
stanza_create_disco_items_iq(xmpp_ctx_t *ctx, const char * const id,
|
|
|
|
const char * const jid)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t *iq = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(iq, STANZA_NAME_IQ);
|
|
|
|
xmpp_stanza_set_type(iq, STANZA_TYPE_GET);
|
|
|
|
xmpp_stanza_set_attribute(iq, STANZA_ATTR_TO, jid);
|
|
|
|
xmpp_stanza_set_id(iq, id);
|
|
|
|
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, XMPP_NS_DISCO_ITEMS);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2012-11-09 19:43:09 -05:00
|
|
|
gboolean
|
|
|
|
stanza_contains_chat_state(xmpp_stanza_t *stanza)
|
|
|
|
{
|
|
|
|
return ((xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_ACTIVE) != NULL) ||
|
|
|
|
(xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_COMPOSING) != NULL) ||
|
|
|
|
(xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_PAUSED) != NULL) ||
|
|
|
|
(xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_GONE) != NULL) ||
|
|
|
|
(xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_INACTIVE) != NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_t *
|
|
|
|
stanza_create_ping_iq(xmpp_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t *iq = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(iq, STANZA_NAME_IQ);
|
|
|
|
xmpp_stanza_set_type(iq, STANZA_TYPE_GET);
|
2014-01-25 19:18:15 -05:00
|
|
|
char *id = generate_unique_id("ping");
|
|
|
|
xmpp_stanza_set_id(iq, id);
|
2012-11-09 19:43:09 -05:00
|
|
|
|
|
|
|
xmpp_stanza_t *ping = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(ping, STANZA_NAME_PING);
|
|
|
|
|
|
|
|
xmpp_stanza_set_ns(ping, STANZA_NS_PING);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, ping);
|
|
|
|
xmpp_stanza_release(ping);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
2012-11-18 13:02:55 -05:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
stanza_get_delay(xmpp_stanza_t * const stanza, GTimeVal *tv_stamp)
|
|
|
|
{
|
|
|
|
// first check for XEP-0203 delayed delivery
|
|
|
|
xmpp_stanza_t *delay = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_DELAY);
|
|
|
|
if (delay != NULL) {
|
|
|
|
char *xmlns = xmpp_stanza_get_attribute(delay, STANZA_ATTR_XMLNS);
|
|
|
|
if ((xmlns != NULL) && (strcmp(xmlns, "urn:xmpp:delay") == 0)) {
|
|
|
|
char *stamp = xmpp_stanza_get_attribute(delay, STANZA_ATTR_STAMP);
|
|
|
|
if ((stamp != NULL) && (g_time_val_from_iso8601(stamp, tv_stamp))) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise check for XEP-0091 legacy delayed delivery
|
|
|
|
// stanp format : CCYYMMDDThh:mm:ss
|
|
|
|
xmpp_stanza_t *x = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_X);
|
|
|
|
if (x != NULL) {
|
|
|
|
char *xmlns = xmpp_stanza_get_attribute(x, STANZA_ATTR_XMLNS);
|
|
|
|
if ((xmlns != NULL) && (strcmp(xmlns, "jabber:x:delay") == 0)) {
|
|
|
|
char *stamp = xmpp_stanza_get_attribute(x, STANZA_ATTR_STAMP);
|
|
|
|
if ((stamp != NULL) && (g_time_val_from_iso8601(stamp, tv_stamp))) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2012-11-18 16:46:58 -05:00
|
|
|
|
2013-03-17 18:21:05 -04:00
|
|
|
char *
|
|
|
|
stanza_get_status(xmpp_stanza_t *stanza, char *def)
|
|
|
|
{
|
2013-06-09 11:52:28 -04:00
|
|
|
xmpp_ctx_t *ctx = connection_get_ctx();
|
2013-03-17 18:21:05 -04:00
|
|
|
xmpp_stanza_t *status =
|
|
|
|
xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_STATUS);
|
|
|
|
|
|
|
|
if (status != NULL) {
|
2013-06-09 11:52:28 -04:00
|
|
|
// xmpp_free and free may be different functions so convert all to
|
|
|
|
// libc malloc
|
|
|
|
char *s1, *s2 = NULL;
|
|
|
|
s1 = xmpp_stanza_get_text(status);
|
|
|
|
if (s1 != NULL) {
|
|
|
|
s2 = strdup(s1);
|
|
|
|
xmpp_free(ctx, s1);
|
|
|
|
}
|
|
|
|
return s2;
|
|
|
|
} else if (def != NULL) {
|
|
|
|
return strdup(def);
|
2013-03-17 18:21:05 -04:00
|
|
|
} else {
|
2013-06-09 11:52:28 -04:00
|
|
|
return NULL;
|
2013-03-17 18:21:05 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
stanza_get_show(xmpp_stanza_t *stanza, char *def)
|
|
|
|
{
|
2013-06-09 11:52:28 -04:00
|
|
|
xmpp_ctx_t *ctx = connection_get_ctx();
|
2013-03-17 18:21:05 -04:00
|
|
|
xmpp_stanza_t *show =
|
|
|
|
xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_SHOW);
|
|
|
|
|
|
|
|
if (show != NULL) {
|
2013-06-09 11:52:28 -04:00
|
|
|
// xmpp_free and free may be different functions so convert all to
|
|
|
|
// libc malloc
|
|
|
|
char *s1, *s2 = NULL;
|
|
|
|
s1 = xmpp_stanza_get_text(show);
|
|
|
|
if (s1 != NULL) {
|
|
|
|
s2 = strdup(s1);
|
|
|
|
xmpp_free(ctx, s1);
|
|
|
|
}
|
|
|
|
return s2;
|
|
|
|
} else if (def != NULL) {
|
|
|
|
return strdup(def);
|
2013-03-17 18:21:05 -04:00
|
|
|
} else {
|
2013-06-09 11:52:28 -04:00
|
|
|
return NULL;
|
2013-03-17 18:21:05 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-10 18:29:37 -05:00
|
|
|
gboolean
|
|
|
|
stanza_is_muc_presence(xmpp_stanza_t * const stanza)
|
|
|
|
{
|
|
|
|
if (stanza == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (strcmp(xmpp_stanza_get_name(stanza), STANZA_NAME_PRESENCE) != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_t *x = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_X);
|
|
|
|
|
|
|
|
if (x == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *ns = xmpp_stanza_get_ns(x);
|
|
|
|
if (ns == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (strcmp(ns, STANZA_NS_MUC_USER) != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-11-18 16:46:58 -05:00
|
|
|
gboolean
|
2012-11-19 15:41:35 -05:00
|
|
|
stanza_is_muc_self_presence(xmpp_stanza_t * const stanza,
|
|
|
|
const char * const self_jid)
|
2012-11-18 16:46:58 -05:00
|
|
|
{
|
|
|
|
if (stanza == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (strcmp(xmpp_stanza_get_name(stanza), STANZA_NAME_PRESENCE) != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_t *x = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_X);
|
|
|
|
|
|
|
|
if (x == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *ns = xmpp_stanza_get_ns(x);
|
|
|
|
if (ns == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (strcmp(ns, STANZA_NS_MUC_USER) != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_t *x_children = xmpp_stanza_get_children(x);
|
|
|
|
if (x_children == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (x_children != NULL) {
|
|
|
|
if (strcmp(xmpp_stanza_get_name(x_children), STANZA_NAME_STATUS) == 0) {
|
|
|
|
char *code = xmpp_stanza_get_attribute(x_children, STANZA_ATTR_CODE);
|
|
|
|
if (strcmp(code, "110") == 0) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x_children = xmpp_stanza_get_next(x_children);
|
|
|
|
}
|
|
|
|
|
2012-11-19 15:41:35 -05:00
|
|
|
// for older server that don't send status 110
|
2012-11-19 16:25:00 -05:00
|
|
|
x_children = xmpp_stanza_get_children(x);
|
2012-11-19 15:41:35 -05:00
|
|
|
while (x_children != NULL) {
|
|
|
|
if (strcmp(xmpp_stanza_get_name(x_children), STANZA_NAME_ITEM) == 0) {
|
|
|
|
char *jid = xmpp_stanza_get_attribute(x_children, STANZA_ATTR_JID);
|
|
|
|
if (jid != NULL) {
|
|
|
|
if (g_str_has_prefix(jid, self_jid)) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x_children = xmpp_stanza_get_next(x_children);
|
|
|
|
}
|
|
|
|
|
2013-08-05 16:20:07 -04:00
|
|
|
// for servers that don't send status 110 or Jid property
|
2013-08-05 17:55:11 -04:00
|
|
|
|
|
|
|
// first check if 'from' attribute identifies this user
|
2013-08-05 16:20:07 -04:00
|
|
|
char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
|
|
|
if (from != NULL) {
|
|
|
|
Jid *jidp = jid_create(from);
|
2014-03-08 16:20:26 -05:00
|
|
|
if (muc_room_is_active(jidp->barejid)) {
|
2013-08-05 16:20:07 -04:00
|
|
|
char *nick = muc_get_room_nick(jidp->barejid);
|
2013-08-05 17:55:11 -04:00
|
|
|
if (g_strcmp0(jidp->resourcepart, nick) == 0) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jid_destroy(jidp);
|
|
|
|
}
|
|
|
|
|
|
|
|
// secondly check if the new nickname maps to a pending nick change for this user
|
|
|
|
if (from != NULL) {
|
|
|
|
Jid *jidp = jid_create(from);
|
|
|
|
if (muc_is_room_pending_nick_change(jidp->barejid)) {
|
|
|
|
char *new_nick = jidp->resourcepart;
|
|
|
|
if (new_nick != NULL) {
|
|
|
|
char *nick = muc_get_room_nick(jidp->barejid);
|
|
|
|
char *old_nick = muc_get_old_nick(jidp->barejid, new_nick);
|
|
|
|
if (g_strcmp0(old_nick, nick) == 0) {
|
2013-08-05 16:20:07 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-05 18:12:10 -04:00
|
|
|
jid_destroy(jidp);
|
2013-08-05 16:20:07 -04:00
|
|
|
}
|
|
|
|
|
2012-11-18 16:46:58 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
stanza_is_room_nick_change(xmpp_stanza_t * const stanza)
|
|
|
|
{
|
|
|
|
if (stanza == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (strcmp(xmpp_stanza_get_name(stanza), STANZA_NAME_PRESENCE) != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_t *x = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_X);
|
|
|
|
|
|
|
|
if (x == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *ns = xmpp_stanza_get_ns(x);
|
|
|
|
if (ns == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (strcmp(ns, STANZA_NS_MUC_USER) != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_t *x_children = xmpp_stanza_get_children(x);
|
|
|
|
if (x_children == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (x_children != NULL) {
|
|
|
|
if (strcmp(xmpp_stanza_get_name(x_children), STANZA_NAME_STATUS) == 0) {
|
|
|
|
char *code = xmpp_stanza_get_attribute(x_children, STANZA_ATTR_CODE);
|
|
|
|
if (strcmp(code, "303") == 0) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x_children = xmpp_stanza_get_next(x_children);
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
stanza_get_new_nick(xmpp_stanza_t * const stanza)
|
|
|
|
{
|
|
|
|
if (!stanza_is_room_nick_change(stanza)) {
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
xmpp_stanza_t *x = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_X);
|
|
|
|
xmpp_stanza_t *x_children = xmpp_stanza_get_children(x);
|
|
|
|
|
|
|
|
while (x_children != NULL) {
|
|
|
|
if (strcmp(xmpp_stanza_get_name(x_children), STANZA_NAME_ITEM) == 0) {
|
|
|
|
char *nick = xmpp_stanza_get_attribute(x_children, STANZA_ATTR_NICK);
|
|
|
|
if (nick != NULL) {
|
|
|
|
return strdup(nick);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x_children = xmpp_stanza_get_next(x_children);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2012-12-08 22:07:33 -05:00
|
|
|
|
|
|
|
int
|
|
|
|
stanza_get_idle_time(xmpp_stanza_t * const stanza)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_QUERY);
|
|
|
|
|
|
|
|
if (query == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *ns = xmpp_stanza_get_ns(query);
|
|
|
|
if (ns == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(ns, STANZA_NS_LASTACTIVITY) != 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *seconds_str = xmpp_stanza_get_attribute(query, STANZA_ATTR_SECONDS);
|
|
|
|
if (seconds_str == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int result = atoi(seconds_str);
|
|
|
|
if (result < 1) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
2013-01-19 18:52:50 -05:00
|
|
|
|
2013-01-20 16:01:30 -05:00
|
|
|
gboolean
|
|
|
|
stanza_contains_caps(xmpp_stanza_t * const stanza)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t *caps = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_C);
|
|
|
|
|
|
|
|
if (caps == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(xmpp_stanza_get_ns(caps), STANZA_NS_CAPS) != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-01-21 17:05:30 -05:00
|
|
|
gboolean
|
|
|
|
stanza_is_version_request(xmpp_stanza_t * const stanza)
|
|
|
|
{
|
|
|
|
char *type = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_TYPE);
|
|
|
|
|
|
|
|
if (g_strcmp0(type, STANZA_TYPE_GET) != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_QUERY);
|
|
|
|
|
|
|
|
if (query == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *ns = xmpp_stanza_get_ns(query);
|
|
|
|
|
|
|
|
if (ns == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(ns, STANZA_NS_VERSION) != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-01-20 21:18:03 -05:00
|
|
|
gboolean
|
|
|
|
stanza_is_caps_request(xmpp_stanza_t * const stanza)
|
|
|
|
{
|
|
|
|
char *type = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_TYPE);
|
|
|
|
|
|
|
|
if (g_strcmp0(type, STANZA_TYPE_GET) != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_QUERY);
|
|
|
|
|
|
|
|
if (query == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *ns = xmpp_stanza_get_ns(query);
|
|
|
|
|
|
|
|
if (ns == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(ns, XMPP_NS_DISCO_INFO) != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-01-20 17:39:52 -05:00
|
|
|
char *
|
|
|
|
stanza_caps_get_hash(xmpp_stanza_t * const stanza)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t *caps = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_C);
|
|
|
|
|
|
|
|
if (caps == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(xmpp_stanza_get_ns(caps), STANZA_NS_CAPS) != 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *result = xmpp_stanza_get_attribute(caps, STANZA_ATTR_HASH);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-01-20 08:56:50 -05:00
|
|
|
char *
|
|
|
|
stanza_get_caps_str(xmpp_stanza_t * const stanza)
|
2013-01-19 18:52:50 -05:00
|
|
|
{
|
|
|
|
xmpp_stanza_t *caps = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_C);
|
|
|
|
|
|
|
|
if (caps == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(xmpp_stanza_get_ns(caps), STANZA_NS_CAPS) != 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-01-20 08:56:50 -05:00
|
|
|
char *node = xmpp_stanza_get_attribute(caps, STANZA_ATTR_NODE);
|
|
|
|
char *ver = xmpp_stanza_get_attribute(caps, STANZA_ATTR_VER);
|
|
|
|
|
|
|
|
if ((node == NULL) || (ver == NULL)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
GString *caps_gstr = g_string_new(node);
|
|
|
|
g_string_append(caps_gstr, "#");
|
|
|
|
g_string_append(caps_gstr, ver);
|
|
|
|
char *caps_str = caps_gstr->str;
|
|
|
|
g_string_free(caps_gstr, FALSE);
|
|
|
|
|
|
|
|
return caps_str;
|
2013-01-19 18:52:50 -05:00
|
|
|
}
|
2013-01-20 13:23:29 -05:00
|
|
|
|
2014-01-26 13:30:34 -05:00
|
|
|
char *
|
|
|
|
stanza_get_error_message(xmpp_stanza_t *stanza)
|
|
|
|
{
|
|
|
|
xmpp_ctx_t *ctx = connection_get_ctx();
|
|
|
|
xmpp_stanza_t *error_stanza = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_ERROR);
|
|
|
|
|
|
|
|
// return nothing if no error stanza
|
|
|
|
if (error_stanza == NULL) {
|
|
|
|
return strdup("unknown");
|
|
|
|
} else {
|
|
|
|
xmpp_stanza_t *text_stanza = xmpp_stanza_get_child_by_name(error_stanza, STANZA_NAME_TEXT);
|
|
|
|
|
|
|
|
// check for text
|
|
|
|
if (text_stanza != NULL) {
|
|
|
|
gchar *err_msg = xmpp_stanza_get_text(text_stanza);
|
|
|
|
if (err_msg != NULL) {
|
|
|
|
char *result = strdup(err_msg);
|
|
|
|
xmpp_free(ctx, err_msg);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise check each defined-condition RFC-6120 8.3.3
|
|
|
|
} else {
|
|
|
|
xmpp_stanza_t *cond_stanza = NULL;
|
|
|
|
|
|
|
|
gchar *defined_conditions[] = {
|
|
|
|
STANZA_NAME_BAD_REQUEST,
|
|
|
|
STANZA_NAME_CONFLICT,
|
|
|
|
STANZA_NAME_FEATURE_NOT_IMPLEMENTED,
|
|
|
|
STANZA_NAME_FORBIDDEN,
|
|
|
|
STANZA_NAME_GONE,
|
|
|
|
STANZA_NAME_INTERNAL_SERVER_ERROR,
|
|
|
|
STANZA_NAME_ITEM_NOT_FOUND,
|
|
|
|
STANZA_NAME_JID_MALFORMED,
|
|
|
|
STANZA_NAME_NOT_ACCEPTABLE,
|
|
|
|
STANZA_NAME_NOT_ALLOWED,
|
|
|
|
STANZA_NAME_NOT_AUTHORISED,
|
|
|
|
STANZA_NAME_POLICY_VIOLATION,
|
|
|
|
STANZA_NAME_RECIPIENT_UNAVAILABLE,
|
|
|
|
STANZA_NAME_REDIRECT,
|
|
|
|
STANZA_NAME_REGISTRATION_REQUIRED,
|
|
|
|
STANZA_NAME_REMOTE_SERVER_NOT_FOUND,
|
|
|
|
STANZA_NAME_REMOTE_SERVER_TIMEOUT,
|
|
|
|
STANZA_NAME_RESOURCE_CONSTRAINT,
|
|
|
|
STANZA_NAME_SERVICE_UNAVAILABLE,
|
|
|
|
STANZA_NAME_SUBSCRIPTION_REQUIRED,
|
|
|
|
STANZA_NAME_UNEXPECTED_REQUEST
|
|
|
|
};
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(defined_conditions); i++) {
|
|
|
|
cond_stanza = xmpp_stanza_get_child_by_name(error_stanza, defined_conditions[i]);
|
|
|
|
if (cond_stanza != NULL) {
|
|
|
|
char *result = strdup(xmpp_stanza_get_name(cond_stanza));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if undefined-condition or no condition, return nothing
|
|
|
|
return strdup("unknown");
|
|
|
|
}
|
|
|
|
|
2013-01-20 13:23:29 -05:00
|
|
|
DataForm *
|
2013-01-22 19:21:05 -05:00
|
|
|
stanza_create_form(xmpp_stanza_t * const stanza)
|
2013-01-20 13:23:29 -05:00
|
|
|
{
|
|
|
|
DataForm *result = NULL;
|
2013-03-12 15:08:50 -04:00
|
|
|
xmpp_ctx_t *ctx = connection_get_ctx();
|
2013-01-20 13:23:29 -05:00
|
|
|
|
|
|
|
xmpp_stanza_t *child = xmpp_stanza_get_children(stanza);
|
|
|
|
|
|
|
|
if (child != NULL) {
|
2013-06-09 07:20:48 -04:00
|
|
|
result = malloc(sizeof(DataForm));
|
2013-01-20 13:23:29 -05:00
|
|
|
result->form_type = NULL;
|
|
|
|
result->fields = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//handle fields
|
|
|
|
while (child != NULL) {
|
|
|
|
char *var = xmpp_stanza_get_attribute(child, "var");
|
|
|
|
|
|
|
|
// handle FORM_TYPE
|
2013-02-03 12:19:10 -05:00
|
|
|
if (g_strcmp0(var, "FORM_TYPE") == 0) {
|
2013-01-20 13:23:29 -05:00
|
|
|
xmpp_stanza_t *value = xmpp_stanza_get_child_by_name(child, "value");
|
|
|
|
char *value_text = xmpp_stanza_get_text(value);
|
|
|
|
result->form_type = strdup(value_text);
|
2013-06-09 11:52:28 -04:00
|
|
|
xmpp_free(ctx, value_text);
|
2013-01-20 13:23:29 -05:00
|
|
|
|
|
|
|
// handle regular fields
|
|
|
|
} else {
|
2013-06-09 07:20:48 -04:00
|
|
|
FormField *field = malloc(sizeof(FormField));
|
2013-01-20 13:23:29 -05:00
|
|
|
field->var = strdup(var);
|
|
|
|
field->values = NULL;
|
|
|
|
xmpp_stanza_t *value = xmpp_stanza_get_children(child);
|
|
|
|
|
|
|
|
// handle values
|
|
|
|
while (value != NULL) {
|
|
|
|
char *text = xmpp_stanza_get_text(value);
|
2013-03-12 15:08:50 -04:00
|
|
|
if (text != NULL) {
|
2013-08-25 19:42:01 -04:00
|
|
|
field->values = g_slist_insert_sorted(field->values, strdup(text), (GCompareFunc)strcmp);
|
2013-03-12 15:08:50 -04:00
|
|
|
xmpp_free(ctx, text);
|
|
|
|
}
|
2013-01-20 13:23:29 -05:00
|
|
|
value = xmpp_stanza_get_next(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
result->fields = g_slist_insert_sorted(result->fields, field, (GCompareFunc)_field_compare);
|
|
|
|
}
|
|
|
|
|
|
|
|
child = xmpp_stanza_get_next(child);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-01-23 17:24:54 -05:00
|
|
|
void
|
|
|
|
stanza_destroy_form(DataForm *form)
|
|
|
|
{
|
|
|
|
if (form != NULL) {
|
|
|
|
if (form->fields != NULL) {
|
|
|
|
GSList *curr_field = form->fields;
|
|
|
|
while (curr_field != NULL) {
|
|
|
|
FormField *field = curr_field->data;
|
2013-08-03 07:27:07 -04:00
|
|
|
free(field->var);
|
2013-01-23 17:24:54 -05:00
|
|
|
if ((field->values) != NULL) {
|
|
|
|
g_slist_free_full(field->values, free);
|
|
|
|
}
|
2013-06-09 07:20:48 -04:00
|
|
|
curr_field = curr_field->next;
|
2013-01-23 17:24:54 -05:00
|
|
|
}
|
2013-06-09 07:20:48 -04:00
|
|
|
g_slist_free_full(form->fields, free);
|
2013-01-23 17:24:54 -05:00
|
|
|
}
|
|
|
|
|
2013-08-03 07:27:07 -04:00
|
|
|
free(form->form_type);
|
2013-06-09 07:20:48 -04:00
|
|
|
free(form);
|
2013-01-23 17:24:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-03 15:09:56 -05:00
|
|
|
void
|
2013-02-03 21:19:31 -05:00
|
|
|
stanza_attach_priority(xmpp_ctx_t * const ctx, xmpp_stanza_t * const presence,
|
|
|
|
const int pri)
|
2013-02-03 15:09:56 -05:00
|
|
|
{
|
|
|
|
if (pri != 0) {
|
|
|
|
xmpp_stanza_t *priority, *value;
|
|
|
|
char pri_str[10];
|
|
|
|
|
|
|
|
snprintf(pri_str, sizeof(pri_str), "%d", pri);
|
|
|
|
priority = xmpp_stanza_new(ctx);
|
|
|
|
value = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(priority, STANZA_NAME_PRIORITY);
|
|
|
|
xmpp_stanza_set_text(value, pri_str);
|
|
|
|
xmpp_stanza_add_child(priority, value);
|
2013-06-09 07:20:48 -04:00
|
|
|
xmpp_stanza_release(value);
|
2013-02-03 15:09:56 -05:00
|
|
|
xmpp_stanza_add_child(presence, priority);
|
|
|
|
xmpp_stanza_release(priority);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-02-03 21:19:31 -05:00
|
|
|
stanza_attach_show(xmpp_ctx_t * const ctx, xmpp_stanza_t * const presence,
|
|
|
|
const char * const show)
|
|
|
|
{
|
|
|
|
if (show != NULL) {
|
|
|
|
xmpp_stanza_t *show_stanza = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(show_stanza, STANZA_NAME_SHOW);
|
|
|
|
xmpp_stanza_t *text = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_text(text, show);
|
|
|
|
xmpp_stanza_add_child(show_stanza, text);
|
|
|
|
xmpp_stanza_add_child(presence, show_stanza);
|
|
|
|
xmpp_stanza_release(text);
|
|
|
|
xmpp_stanza_release(show_stanza);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
stanza_attach_status(xmpp_ctx_t * const ctx, xmpp_stanza_t * const presence,
|
|
|
|
const char * const status)
|
|
|
|
{
|
|
|
|
if (status != NULL) {
|
|
|
|
xmpp_stanza_t *status_stanza = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(status_stanza, STANZA_NAME_STATUS);
|
|
|
|
xmpp_stanza_t *text = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_text(text, status);
|
|
|
|
xmpp_stanza_add_child(status_stanza, text);
|
|
|
|
xmpp_stanza_add_child(presence, status_stanza);
|
|
|
|
xmpp_stanza_release(text);
|
|
|
|
xmpp_stanza_release(status_stanza);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
stanza_attach_last_activity(xmpp_ctx_t * const ctx,
|
|
|
|
xmpp_stanza_t * const presence, const int idle)
|
2013-02-03 15:09:56 -05:00
|
|
|
{
|
|
|
|
if (idle > 0) {
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_LASTACTIVITY);
|
|
|
|
char idle_str[10];
|
|
|
|
snprintf(idle_str, sizeof(idle_str), "%d", idle);
|
|
|
|
xmpp_stanza_set_attribute(query, STANZA_ATTR_SECONDS, idle_str);
|
|
|
|
xmpp_stanza_add_child(presence, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-02-03 21:19:31 -05:00
|
|
|
stanza_attach_caps(xmpp_ctx_t * const ctx, xmpp_stanza_t * const presence)
|
2013-02-03 15:09:56 -05:00
|
|
|
{
|
|
|
|
xmpp_stanza_t *caps = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(caps, STANZA_NAME_C);
|
|
|
|
xmpp_stanza_set_ns(caps, STANZA_NS_CAPS);
|
|
|
|
xmpp_stanza_t *query = caps_create_query_response_stanza(ctx);
|
|
|
|
|
|
|
|
char *sha1 = caps_create_sha1_str(query);
|
|
|
|
xmpp_stanza_set_attribute(caps, STANZA_ATTR_HASH, "sha-1");
|
|
|
|
xmpp_stanza_set_attribute(caps, STANZA_ATTR_NODE, "http://www.profanity.im");
|
|
|
|
xmpp_stanza_set_attribute(caps, STANZA_ATTR_VER, sha1);
|
|
|
|
xmpp_stanza_add_child(presence, caps);
|
|
|
|
xmpp_stanza_release(caps);
|
|
|
|
xmpp_stanza_release(query);
|
2013-08-03 07:27:07 -04:00
|
|
|
g_free(sha1);
|
2013-02-03 15:09:56 -05:00
|
|
|
}
|
|
|
|
|
2013-02-03 17:18:40 -05:00
|
|
|
const char *
|
2013-02-10 12:13:19 -05:00
|
|
|
stanza_get_presence_string_from_type(resource_presence_t presence_type)
|
2013-02-03 17:18:40 -05:00
|
|
|
{
|
|
|
|
switch(presence_type)
|
|
|
|
{
|
2013-02-10 12:13:19 -05:00
|
|
|
case RESOURCE_AWAY:
|
2013-02-03 17:18:40 -05:00
|
|
|
return STANZA_TEXT_AWAY;
|
2013-02-10 12:13:19 -05:00
|
|
|
case RESOURCE_DND:
|
2013-02-03 17:18:40 -05:00
|
|
|
return STANZA_TEXT_DND;
|
2013-02-10 12:13:19 -05:00
|
|
|
case RESOURCE_CHAT:
|
2013-02-03 17:18:40 -05:00
|
|
|
return STANZA_TEXT_CHAT;
|
2013-02-10 12:13:19 -05:00
|
|
|
case RESOURCE_XA:
|
2013-02-03 17:18:40 -05:00
|
|
|
return STANZA_TEXT_XA;
|
2013-02-10 12:13:19 -05:00
|
|
|
default:
|
2013-02-03 17:18:40 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-20 13:23:29 -05:00
|
|
|
static int
|
|
|
|
_field_compare(FormField *f1, FormField *f2)
|
|
|
|
{
|
2013-08-25 19:42:01 -04:00
|
|
|
return strcmp(f1->var, f2->var);
|
2013-01-20 13:23:29 -05:00
|
|
|
}
|