2012-11-08 18:07:00 -05:00
|
|
|
/*
|
2013-02-02 14:47:41 -05:00
|
|
|
* stanza.c
|
2019-11-13 06:11:05 -05:00
|
|
|
* vim: expandtab:ts=4:sts=4:sw=4
|
2012-11-08 18:07:00 -05:00
|
|
|
*
|
2019-01-22 05:31:45 -05:00
|
|
|
* Copyright (C) 2012 - 2019 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
|
2016-07-23 20:14:49 -04:00
|
|
|
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
|
2012-11-08 18:07:00 -05:00
|
|
|
*
|
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.
|
|
|
|
*
|
2012-11-08 18:07:00 -05:00
|
|
|
*/
|
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#include "config.h"
|
2015-09-21 16:40:04 -04:00
|
|
|
|
2016-08-13 18:43:54 -04:00
|
|
|
#ifdef HAVE_GIT_VERSION
|
|
|
|
#include "gitversion.h"
|
|
|
|
#endif
|
|
|
|
|
2012-12-08 22:07:33 -05:00
|
|
|
#include <stdlib.h>
|
2012-11-09 19:16:56 -05:00
|
|
|
#include <string.h>
|
2020-07-07 07:53:30 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <libgen.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <assert.h>
|
2012-11-09 19:16:56 -05:00
|
|
|
|
2012-11-18 13:02:55 -05:00
|
|
|
#include <glib.h>
|
2015-09-21 16:40:04 -04:00
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBMESODE
|
2015-09-21 16:40:04 -04:00
|
|
|
#include <mesode.h>
|
|
|
|
#endif
|
2016-07-24 10:43:51 -04:00
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBSTROPHE
|
2012-11-08 18:07:00 -05:00
|
|
|
#include <strophe.h>
|
2015-09-21 16:40:04 -04:00
|
|
|
#endif
|
2012-11-08 18:07:00 -05:00
|
|
|
|
2012-11-08 18:35:11 -05:00
|
|
|
#include "common.h"
|
2014-01-28 15:55:02 -05:00
|
|
|
#include "log.h"
|
2020-07-07 07:53:30 -04:00
|
|
|
#include "xmpp/session.h"
|
|
|
|
#include "xmpp/stanza.h"
|
2013-02-03 15:09:56 -05:00
|
|
|
#include "xmpp/capabilities.h"
|
2016-05-05 19:53:03 -04:00
|
|
|
#include "xmpp/connection.h"
|
2014-09-10 18:05:35 -04:00
|
|
|
#include "xmpp/form.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "xmpp/muc.h"
|
2013-08-05 16:20:07 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
static void _stanza_add_unique_id(xmpp_stanza_t* stanza);
|
|
|
|
static char* _stanza_create_sha1_hash(char* str);
|
2016-08-12 19:12:46 -04:00
|
|
|
|
2014-03-29 19:15:51 -04:00
|
|
|
#if 0
|
2015-10-25 20:14:23 -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
|
|
|
{
|
2016-08-20 15:20:38 -04:00
|
|
|
xmpp_stanza_t *iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, NULL);
|
2013-06-30 11:59:38 -04:00
|
|
|
|
2016-08-12 19:12:46 -04:00
|
|
|
xmpp_stanza_t *pubsub = xmpp_stanza_new(ctx);
|
2013-06-30 11:59:38 -04:00
|
|
|
xmpp_stanza_set_name(pubsub, STANZA_NAME_PUBSUB);
|
|
|
|
xmpp_stanza_set_ns(pubsub, STANZA_NS_PUBSUB);
|
|
|
|
|
2016-08-12 19:12:46 -04:00
|
|
|
xmpp_stanza_t *items = xmpp_stanza_new(ctx);
|
2013-06-30 11:59:38 -04:00
|
|
|
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
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_bookmarks_storage_request(xmpp_ctx_t* ctx)
|
2013-06-30 11:59:38 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, NULL);
|
2013-06-30 11:59:38 -04:00
|
|
|
xmpp_stanza_set_ns(iq, "jabber:client");
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2013-06-30 11:59:38 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, "jabber:iq:private");
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* storage = xmpp_stanza_new(ctx);
|
2013-06-30 11:59:38 -04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-05-01 14:39:39 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_blocked_list_request(xmpp_ctx_t* ctx)
|
2016-05-01 14:39:39 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, NULL);
|
2016-05-01 14:39:39 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* blocklist = xmpp_stanza_new(ctx);
|
2016-05-01 14:39:39 -04:00
|
|
|
xmpp_stanza_set_name(blocklist, STANZA_NAME_BLOCKLIST);
|
|
|
|
xmpp_stanza_set_ns(blocklist, STANZA_NS_BLOCKING);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, blocklist);
|
|
|
|
xmpp_stanza_release(blocklist);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2014-04-12 20:01:53 -04:00
|
|
|
#if 0
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
|
|
|
stanza_create_bookmarks_pubsub_add(xmpp_ctx_t *ctx, const char *const jid,
|
|
|
|
const gboolean autojoin, const char *const nick)
|
2014-04-12 20:01:53 -04:00
|
|
|
{
|
2019-10-17 09:40:40 -04:00
|
|
|
char *id = connection_create_stanza_id();
|
2016-08-20 15:20:38 -04:00
|
|
|
xmpp_stanza_t *stanza = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
|
|
|
free(id);
|
2014-04-12 20:01:53 -04:00
|
|
|
|
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
2015-05-04 18:23:55 -04:00
|
|
|
if (nick) {
|
2014-04-12 20:01:53 -04:00
|
|
|
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);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_type(x, "submit");
|
2014-04-12 20:01:53 -04:00
|
|
|
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");
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_type(form_type, "hidden");
|
2014-04-12 20:01:53 -04:00
|
|
|
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
|
|
|
|
|
2016-04-11 14:13:18 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_http_upload_request(xmpp_ctx_t* ctx, const char* const id,
|
|
|
|
const char* const jid, HTTPUpload* upload)
|
2016-04-11 14:13:18 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, jid);
|
2016-04-11 14:13:18 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* request = xmpp_stanza_new(ctx);
|
2016-04-11 14:13:18 -04:00
|
|
|
xmpp_stanza_set_name(request, STANZA_NAME_REQUEST);
|
|
|
|
xmpp_stanza_set_ns(request, STANZA_NS_HTTP_UPLOAD);
|
|
|
|
|
|
|
|
char* filename_cpy = strdup(upload->filename);
|
|
|
|
// strip spaces from filename (servers don't spaces)
|
2020-11-09 05:03:54 -05:00
|
|
|
for (int i = 0; i < strlen(filename_cpy); i++) {
|
2016-04-11 14:13:18 -04:00
|
|
|
if (filename_cpy[i] == ' ') {
|
|
|
|
filename_cpy[i] = '_';
|
|
|
|
}
|
|
|
|
}
|
2021-03-10 11:26:38 -05:00
|
|
|
xmpp_stanza_set_attribute(request, STANZA_ATTR_FILENAME, basename(filename_cpy));
|
2016-04-11 14:13:18 -04:00
|
|
|
free(filename_cpy);
|
2021-03-10 11:26:38 -05:00
|
|
|
|
2021-03-30 11:38:13 -04:00
|
|
|
gchar* filesize = g_strdup_printf("%jd", (intmax_t)(upload->filesize));
|
|
|
|
if (filesize) {
|
2021-03-10 11:26:38 -05:00
|
|
|
xmpp_stanza_set_attribute(request, STANZA_ATTR_SIZE, filesize);
|
2021-03-30 11:38:13 -04:00
|
|
|
g_free(filesize);
|
2016-04-11 14:13:18 -04:00
|
|
|
}
|
2021-03-10 11:26:38 -05:00
|
|
|
|
|
|
|
xmpp_stanza_set_attribute(request, STANZA_ATTR_CONTENTTYPE, upload->mime_type);
|
2016-04-11 14:13:18 -04:00
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, request);
|
|
|
|
xmpp_stanza_release(request);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_enable_carbons(xmpp_ctx_t* ctx)
|
2015-10-25 20:14:23 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2015-02-02 05:10:05 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* carbons_enable = xmpp_stanza_new(ctx);
|
2015-02-02 05:10:05 -05:00
|
|
|
xmpp_stanza_set_name(carbons_enable, STANZA_NAME_ENABLE);
|
|
|
|
xmpp_stanza_set_ns(carbons_enable, STANZA_NS_CARBONS);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, carbons_enable);
|
2015-08-08 19:40:37 -04:00
|
|
|
xmpp_stanza_release(carbons_enable);
|
2015-02-02 05:10:05 -05:00
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_disable_carbons(xmpp_ctx_t* ctx)
|
2015-10-25 20:14:23 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2015-02-02 05:10:05 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* carbons_disable = xmpp_stanza_new(ctx);
|
2015-02-02 05:10:05 -05:00
|
|
|
xmpp_stanza_set_name(carbons_disable, STANZA_NAME_DISABLE);
|
|
|
|
xmpp_stanza_set_ns(carbons_disable, STANZA_NS_CARBONS);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, carbons_disable);
|
2015-08-08 19:40:37 -04:00
|
|
|
xmpp_stanza_release(carbons_disable);
|
2015-02-02 05:10:05 -05:00
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_chat_state(xmpp_ctx_t* ctx, const char* const fulljid, const char* const state)
|
2012-11-08 18:07:00 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* msg = xmpp_message_new(ctx, STANZA_TYPE_CHAT, fulljid, id);
|
2016-08-20 14:08:13 -04:00
|
|
|
free(id);
|
2016-08-12 19:12:46 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* chat_state = xmpp_stanza_new(ctx);
|
2012-11-08 18:07:00 -05:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_room_subject_message(xmpp_ctx_t* ctx, const char* const room, const char* const subject)
|
2014-10-04 22:05:46 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* msg = xmpp_message_new(ctx, STANZA_TYPE_GROUPCHAT, room, NULL);
|
2014-10-04 22:05:46 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* subject_st = xmpp_stanza_new(ctx);
|
2014-10-04 22:05:46 -04:00
|
|
|
xmpp_stanza_set_name(subject_st, STANZA_NAME_SUBJECT);
|
|
|
|
if (subject) {
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* subject_text = xmpp_stanza_new(ctx);
|
2014-10-04 22:05:46 -04:00
|
|
|
xmpp_stanza_set_text(subject_text, subject);
|
|
|
|
xmpp_stanza_add_child(subject_st, subject_text);
|
|
|
|
xmpp_stanza_release(subject_text);
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(msg, subject_st);
|
|
|
|
xmpp_stanza_release(subject_st);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_attach_state(xmpp_ctx_t* ctx, xmpp_stanza_t* stanza, const char* const state)
|
2015-03-11 19:18:28 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* chat_state = xmpp_stanza_new(ctx);
|
2015-03-11 19:18:28 -04:00
|
|
|
xmpp_stanza_set_name(chat_state, state);
|
|
|
|
xmpp_stanza_set_ns(chat_state, STANZA_NS_CHATSTATES);
|
|
|
|
xmpp_stanza_add_child(stanza, chat_state);
|
|
|
|
xmpp_stanza_release(chat_state);
|
|
|
|
|
|
|
|
return stanza;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_attach_carbons_private(xmpp_ctx_t* ctx, xmpp_stanza_t* stanza)
|
2015-03-11 19:18:28 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* private_carbon = xmpp_stanza_new(ctx);
|
2015-03-11 19:18:28 -04:00
|
|
|
xmpp_stanza_set_name(private_carbon, "private");
|
|
|
|
xmpp_stanza_set_ns(private_carbon, STANZA_NS_CARBONS);
|
|
|
|
xmpp_stanza_add_child(stanza, private_carbon);
|
|
|
|
xmpp_stanza_release(private_carbon);
|
|
|
|
|
|
|
|
return stanza;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_attach_hints_no_copy(xmpp_ctx_t* ctx, xmpp_stanza_t* stanza)
|
2015-07-01 10:04:54 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* no_copy = xmpp_stanza_new(ctx);
|
2015-07-01 10:04:54 -04:00
|
|
|
xmpp_stanza_set_name(no_copy, "no-copy");
|
|
|
|
xmpp_stanza_set_ns(no_copy, STANZA_NS_HINTS);
|
|
|
|
xmpp_stanza_add_child(stanza, no_copy);
|
|
|
|
xmpp_stanza_release(no_copy);
|
|
|
|
|
|
|
|
return stanza;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_attach_hints_no_store(xmpp_ctx_t* ctx, xmpp_stanza_t* stanza)
|
2015-07-01 10:04:54 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* no_store = xmpp_stanza_new(ctx);
|
2015-07-01 10:04:54 -04:00
|
|
|
xmpp_stanza_set_name(no_store, "no-store");
|
|
|
|
xmpp_stanza_set_ns(no_store, STANZA_NS_HINTS);
|
|
|
|
xmpp_stanza_add_child(stanza, no_store);
|
|
|
|
xmpp_stanza_release(no_store);
|
|
|
|
|
|
|
|
return stanza;
|
|
|
|
}
|
|
|
|
|
2019-03-13 12:59:31 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_attach_hints_store(xmpp_ctx_t* ctx, xmpp_stanza_t* stanza)
|
2019-03-13 12:59:31 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* store = xmpp_stanza_new(ctx);
|
2019-03-13 12:59:31 -04:00
|
|
|
xmpp_stanza_set_name(store, "store");
|
|
|
|
xmpp_stanza_set_ns(store, STANZA_NS_HINTS);
|
|
|
|
xmpp_stanza_add_child(stanza, store);
|
|
|
|
xmpp_stanza_release(store);
|
|
|
|
|
|
|
|
return stanza;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_attach_receipt_request(xmpp_ctx_t* ctx, xmpp_stanza_t* stanza)
|
2015-03-11 19:18:28 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* receipet_request = xmpp_stanza_new(ctx);
|
2015-03-11 19:18:28 -04:00
|
|
|
xmpp_stanza_set_name(receipet_request, "request");
|
|
|
|
xmpp_stanza_set_ns(receipet_request, STANZA_NS_RECEIPTS);
|
|
|
|
xmpp_stanza_add_child(stanza, receipet_request);
|
|
|
|
xmpp_stanza_release(receipet_request);
|
|
|
|
|
|
|
|
return stanza;
|
|
|
|
}
|
|
|
|
|
2016-04-11 14:13:18 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_attach_x_oob_url(xmpp_ctx_t* ctx, xmpp_stanza_t* stanza, const char* const url)
|
2016-04-11 14:13:18 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x_oob = xmpp_stanza_new(ctx);
|
2016-04-11 14:13:18 -04:00
|
|
|
xmpp_stanza_set_name(x_oob, STANZA_NAME_X);
|
|
|
|
xmpp_stanza_set_ns(x_oob, STANZA_NS_X_OOB);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* surl = xmpp_stanza_new(ctx);
|
2016-04-11 14:13:18 -04:00
|
|
|
xmpp_stanza_set_name(surl, STANZA_NAME_URL);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* surl_txt = xmpp_stanza_new(ctx);
|
2016-04-11 14:13:18 -04:00
|
|
|
xmpp_stanza_set_text(surl_txt, url);
|
|
|
|
xmpp_stanza_add_child(surl, surl_txt);
|
|
|
|
xmpp_stanza_release(surl_txt);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(x_oob, surl);
|
|
|
|
xmpp_stanza_release(surl);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(stanza, x_oob);
|
|
|
|
xmpp_stanza_release(x_oob);
|
|
|
|
|
|
|
|
return stanza;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_roster_remove_set(xmpp_ctx_t* ctx, const char* const barejid)
|
2013-06-01 19:06:05 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2015-07-22 17:48:37 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2013-06-01 19:06:05 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, XMPP_NS_ROSTER);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_new(ctx);
|
2013-06-01 19:06:05 -04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -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
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2013-05-18 21:07:01 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2013-05-18 21:07:01 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, XMPP_NS_ROSTER);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_new(ctx);
|
2013-05-18 21:07:01 -04:00
|
|
|
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
|
|
|
|
2015-05-04 18:23:55 -04:00
|
|
|
if (handle) {
|
2013-05-18 22:27:59 -04:00
|
|
|
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
|
|
|
|
2015-05-04 18:23:55 -04:00
|
|
|
while (groups) {
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* group = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_t* groupname = xmpp_stanza_new(ctx);
|
2013-05-22 18:38:52 -04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_invite(xmpp_ctx_t* ctx, const char* const room,
|
|
|
|
const char* const contact, const char* const reason, const char* const password)
|
2013-04-20 15:18:13 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* message = xmpp_message_new(ctx, NULL, contact, id);
|
2016-08-20 14:08:13 -04:00
|
|
|
free(id);
|
2013-04-20 15:18:13 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_new(ctx);
|
2013-04-20 15:18:13 -04:00
|
|
|
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);
|
2015-03-28 21:46:59 -04:00
|
|
|
if (reason) {
|
2013-04-20 15:18:13 -04:00
|
|
|
xmpp_stanza_set_attribute(x, STANZA_ATTR_REASON, reason);
|
|
|
|
}
|
2015-03-28 21:46:59 -04:00
|
|
|
if (password) {
|
|
|
|
xmpp_stanza_set_attribute(x, STANZA_ATTR_PASSWORD, password);
|
|
|
|
}
|
2013-04-20 15:18:13 -04:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_mediated_invite(xmpp_ctx_t* ctx, const char* const room,
|
|
|
|
const char* const contact, const char* const reason)
|
2015-03-28 18:51:41 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* message = xmpp_message_new(ctx, NULL, room, id);
|
2016-08-20 14:08:13 -04:00
|
|
|
free(id);
|
2015-03-28 18:51:41 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_new(ctx);
|
2015-03-28 18:51:41 -04:00
|
|
|
xmpp_stanza_set_name(x, STANZA_NAME_X);
|
|
|
|
xmpp_stanza_set_ns(x, STANZA_NS_MUC_USER);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* invite = xmpp_stanza_new(ctx);
|
2015-03-28 18:51:41 -04:00
|
|
|
xmpp_stanza_set_name(invite, STANZA_NAME_INVITE);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(invite, contact);
|
2015-03-28 18:51:41 -04:00
|
|
|
|
2015-05-04 18:23:55 -04:00
|
|
|
if (reason) {
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* reason_st = xmpp_stanza_new(ctx);
|
2015-03-28 18:51:41 -04:00
|
|
|
xmpp_stanza_set_name(reason_st, STANZA_NAME_REASON);
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* reason_txt = xmpp_stanza_new(ctx);
|
2015-03-28 18:51:41 -04:00
|
|
|
xmpp_stanza_set_text(reason_txt, reason);
|
|
|
|
xmpp_stanza_add_child(reason_st, reason_txt);
|
|
|
|
xmpp_stanza_release(reason_txt);
|
|
|
|
xmpp_stanza_add_child(invite, reason_st);
|
|
|
|
xmpp_stanza_release(reason_st);
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(x, invite);
|
|
|
|
xmpp_stanza_release(invite);
|
|
|
|
xmpp_stanza_add_child(message, x);
|
|
|
|
xmpp_stanza_release(x);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_room_join_presence(xmpp_ctx_t* const ctx,
|
|
|
|
const char* const full_room_jid, const char* const passwd)
|
2012-11-08 20:04:32 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* presence = xmpp_presence_new(ctx);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(presence, full_room_jid);
|
2019-10-17 09:40:40 -04:00
|
|
|
_stanza_add_unique_id(presence);
|
2012-11-08 20:04:32 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_new(ctx);
|
2012-11-08 20:04:32 -05:00
|
|
|
xmpp_stanza_set_name(x, STANZA_NAME_X);
|
|
|
|
xmpp_stanza_set_ns(x, STANZA_NS_MUC);
|
2014-02-27 00:31:10 -05:00
|
|
|
|
2015-05-04 18:23:55 -04:00
|
|
|
if (passwd) {
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* pass = xmpp_stanza_new(ctx);
|
2014-02-27 00:31:10 -05:00
|
|
|
xmpp_stanza_set_name(pass, "password");
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* text = xmpp_stanza_new(ctx);
|
2014-06-15 17:26:28 -04:00
|
|
|
xmpp_stanza_set_text(text, 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
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_room_newnick_presence(xmpp_ctx_t* ctx,
|
|
|
|
const char* const full_room_jid)
|
2012-11-18 13:36:17 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* presence = xmpp_presence_new(ctx);
|
2019-10-17 09:40:40 -04:00
|
|
|
_stanza_add_unique_id(presence);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(presence, full_room_jid);
|
2012-11-18 13:36:17 -05:00
|
|
|
|
|
|
|
return presence;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_room_leave_presence(xmpp_ctx_t* ctx, const char* const room,
|
|
|
|
const char* const nick)
|
2012-11-08 20:31:52 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
GString* full_jid = g_string_new(room);
|
2012-11-08 20:31:52 -05:00
|
|
|
g_string_append(full_jid, "/");
|
|
|
|
g_string_append(full_jid, nick);
|
2012-11-08 20:04:32 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* presence = xmpp_presence_new(ctx);
|
2012-11-08 20:31:52 -05:00
|
|
|
xmpp_stanza_set_type(presence, STANZA_TYPE_UNAVAILABLE);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(presence, full_jid->str);
|
2019-10-17 09:40:40 -04:00
|
|
|
_stanza_add_unique_id(presence);
|
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
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_instant_room_request_iq(xmpp_ctx_t* ctx, const char* const room_jid)
|
2014-09-03 08:55:06 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, room_jid);
|
2014-09-03 08:55:06 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2014-09-03 08:55:06 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_MUC_OWNER);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_new(ctx);
|
2014-09-03 08:55:06 -04:00
|
|
|
xmpp_stanza_set_name(x, STANZA_NAME_X);
|
|
|
|
xmpp_stanza_set_type(x, "submit");
|
|
|
|
xmpp_stanza_set_ns(x, STANZA_NS_DATA);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(query, x);
|
|
|
|
xmpp_stanza_release(x);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_instant_room_destroy_iq(xmpp_ctx_t* ctx, const char* const room_jid)
|
2014-09-03 15:29:17 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, room_jid);
|
2014-09-03 15:29:17 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2014-09-03 15:29:17 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_MUC_OWNER);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* destroy = xmpp_stanza_new(ctx);
|
2014-09-03 15:29:17 -04:00
|
|
|
xmpp_stanza_set_name(destroy, STANZA_NAME_DESTROY);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(query, destroy);
|
|
|
|
xmpp_stanza_release(destroy);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_room_config_request_iq(xmpp_ctx_t* ctx, const char* const room_jid)
|
2014-09-04 17:29:57 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, room_jid);
|
2014-09-04 17:29:57 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2014-09-04 17:29:57 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_MUC_OWNER);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_room_config_cancel_iq(xmpp_ctx_t* ctx, const char* const room_jid)
|
2014-09-04 17:29:57 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, room_jid);
|
2014-09-04 17:29:57 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2014-09-04 17:29:57 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_MUC_OWNER);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_new(ctx);
|
2014-09-04 17:29:57 -04:00
|
|
|
xmpp_stanza_set_name(x, STANZA_NAME_X);
|
|
|
|
xmpp_stanza_set_type(x, "cancel");
|
|
|
|
xmpp_stanza_set_ns(x, STANZA_NS_DATA);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(query, x);
|
|
|
|
xmpp_stanza_release(x);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_room_affiliation_list_iq(xmpp_ctx_t* ctx, const char* const room, const char* const affiliation)
|
2014-10-04 16:38:31 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, room);
|
2014-10-04 16:38:31 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2014-10-04 16:38:31 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_MUC_ADMIN);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_new(ctx);
|
2014-10-04 16:38:31 -04:00
|
|
|
xmpp_stanza_set_name(item, STANZA_NAME_ITEM);
|
2014-10-04 18:40:36 -04:00
|
|
|
xmpp_stanza_set_attribute(item, "affiliation", affiliation);
|
2014-10-04 16:38:31 -04:00
|
|
|
|
|
|
|
xmpp_stanza_add_child(query, item);
|
|
|
|
xmpp_stanza_release(item);
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_room_role_list_iq(xmpp_ctx_t* ctx, const char* const room, const char* const role)
|
2014-10-06 16:42:09 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, room);
|
2014-10-06 16:42:09 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2014-10-06 16:42:09 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_MUC_ADMIN);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_new(ctx);
|
2014-10-06 16:42:09 -04:00
|
|
|
xmpp_stanza_set_name(item, STANZA_NAME_ITEM);
|
|
|
|
xmpp_stanza_set_attribute(item, "role", role);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(query, item);
|
|
|
|
xmpp_stanza_release(item);
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_room_affiliation_set_iq(xmpp_ctx_t* ctx, const char* const room, const char* const jid,
|
|
|
|
const char* const affiliation, const char* const reason)
|
2014-10-04 16:38:31 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, room);
|
2014-10-04 16:38:31 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2014-10-04 16:38:31 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_MUC_ADMIN);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_new(ctx);
|
2014-10-04 16:38:31 -04:00
|
|
|
xmpp_stanza_set_name(item, STANZA_NAME_ITEM);
|
2014-10-04 18:40:36 -04:00
|
|
|
xmpp_stanza_set_attribute(item, "affiliation", affiliation);
|
2014-10-04 16:38:31 -04:00
|
|
|
xmpp_stanza_set_attribute(item, STANZA_ATTR_JID, jid);
|
|
|
|
|
|
|
|
if (reason) {
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* reason_st = xmpp_stanza_new(ctx);
|
2014-10-04 16:38:31 -04:00
|
|
|
xmpp_stanza_set_name(reason_st, STANZA_NAME_REASON);
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* reason_text = xmpp_stanza_new(ctx);
|
2014-10-04 16:38:31 -04:00
|
|
|
xmpp_stanza_set_text(reason_text, reason);
|
2014-10-06 16:42:09 -04:00
|
|
|
xmpp_stanza_add_child(reason_st, reason_text);
|
|
|
|
xmpp_stanza_release(reason_text);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(item, reason_st);
|
|
|
|
xmpp_stanza_release(reason_st);
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(query, item);
|
|
|
|
xmpp_stanza_release(item);
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_room_role_set_iq(xmpp_ctx_t* const ctx, const char* const room, const char* const nick,
|
|
|
|
const char* const role, const char* const reason)
|
2014-10-06 16:42:09 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, room);
|
2014-10-06 16:42:09 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2014-10-06 16:42:09 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_MUC_ADMIN);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_new(ctx);
|
2014-10-06 16:42:09 -04:00
|
|
|
xmpp_stanza_set_name(item, STANZA_NAME_ITEM);
|
|
|
|
xmpp_stanza_set_attribute(item, "role", role);
|
|
|
|
xmpp_stanza_set_attribute(item, STANZA_ATTR_NICK, nick);
|
|
|
|
|
|
|
|
if (reason) {
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* reason_st = xmpp_stanza_new(ctx);
|
2014-10-06 16:42:09 -04:00
|
|
|
xmpp_stanza_set_name(reason_st, STANZA_NAME_REASON);
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* reason_text = xmpp_stanza_new(ctx);
|
2014-10-06 16:42:09 -04:00
|
|
|
xmpp_stanza_set_text(reason_text, reason);
|
2014-10-04 16:38:31 -04:00
|
|
|
xmpp_stanza_add_child(reason_st, reason_text);
|
|
|
|
xmpp_stanza_release(reason_text);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(item, reason_st);
|
|
|
|
xmpp_stanza_release(reason_st);
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(query, item);
|
|
|
|
xmpp_stanza_release(item);
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_room_kick_iq(xmpp_ctx_t* const ctx, const char* const room, const char* const nick,
|
|
|
|
const char* const reason)
|
2014-10-04 22:52:55 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, room);
|
2014-10-04 22:52:55 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2014-10-04 22:52:55 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_MUC_ADMIN);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_new(ctx);
|
2014-10-04 22:52:55 -04:00
|
|
|
xmpp_stanza_set_name(item, STANZA_NAME_ITEM);
|
|
|
|
xmpp_stanza_set_attribute(item, STANZA_ATTR_NICK, nick);
|
|
|
|
xmpp_stanza_set_attribute(item, "role", "none");
|
|
|
|
|
|
|
|
if (reason) {
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* reason_st = xmpp_stanza_new(ctx);
|
2014-10-04 22:52:55 -04:00
|
|
|
xmpp_stanza_set_name(reason_st, STANZA_NAME_REASON);
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* reason_text = xmpp_stanza_new(ctx);
|
2014-10-04 22:52:55 -04:00
|
|
|
xmpp_stanza_set_text(reason_text, reason);
|
|
|
|
xmpp_stanza_add_child(reason_st, reason_text);
|
|
|
|
xmpp_stanza_release(reason_text);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(item, reason_st);
|
|
|
|
xmpp_stanza_release(reason_st);
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(query, item);
|
|
|
|
xmpp_stanza_release(item);
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_software_version_iq(xmpp_ctx_t* ctx, const char* const fulljid)
|
2013-02-16 21:10:56 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, fulljid);
|
2013-02-16 21:10:56 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2013-02-16 21:10:56 -05:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_roster_iq(xmpp_ctx_t* ctx)
|
2012-11-09 19:25:42 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, "roster");
|
2012-11-09 19:25:42 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2012-11-09 19:25:42 -05:00
|
|
|
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
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_disco_info_iq(xmpp_ctx_t* ctx, const char* const id, const char* const to,
|
|
|
|
const char* const node)
|
2013-01-19 20:29:15 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, to);
|
2013-01-19 20:29:15 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2013-01-19 20:29:15 -05:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, XMPP_NS_DISCO_INFO);
|
2015-05-04 18:23:55 -04:00
|
|
|
if (node) {
|
2013-03-14 16:50:09 -04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_disco_items_iq(xmpp_ctx_t* ctx, const char* const id,
|
|
|
|
const char* const jid, const char* const node)
|
2013-03-13 19:38:26 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, jid);
|
2013-03-13 19:38:26 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2013-03-13 19:38:26 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, XMPP_NS_DISCO_ITEMS);
|
2018-03-21 22:27:52 -04:00
|
|
|
if (node) {
|
|
|
|
xmpp_stanza_set_attribute(query, STANZA_ATTR_NODE, node);
|
|
|
|
}
|
2013-03-13 19:38:26 -04:00
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_last_activity_iq(xmpp_ctx_t* ctx, const char* const id, const char* const to)
|
2015-09-28 19:01:38 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, to);
|
2015-09-28 19:01:38 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2015-09-28 19:01:38 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
2015-09-29 18:55:01 -04:00
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_LASTACTIVITY);
|
2015-09-28 19:01:38 -04:00
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_room_config_submit_iq(xmpp_ctx_t* ctx, const char* const room, DataForm* form)
|
2014-09-10 18:05:35 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, room);
|
2014-09-10 18:05:35 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2014-09-10 18:05:35 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_MUC_OWNER);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = form_create_submission(form);
|
2014-09-10 18:05:35 -04:00
|
|
|
xmpp_stanza_add_child(query, x);
|
|
|
|
xmpp_stanza_release(x);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2016-08-13 18:43:54 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_caps_query_element(xmpp_ctx_t* ctx)
|
2016-08-13 18:43:54 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2016-08-13 18:43:54 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, XMPP_NS_DISCO_INFO);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* identity = xmpp_stanza_new(ctx);
|
2016-08-13 18:43:54 -04:00
|
|
|
xmpp_stanza_set_name(identity, "identity");
|
|
|
|
xmpp_stanza_set_attribute(identity, "category", "client");
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_type(identity, "console");
|
2016-08-13 18:43:54 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
GString* name_str = g_string_new("Profanity ");
|
2016-08-13 18:43:54 -04:00
|
|
|
g_string_append(name_str, PACKAGE_VERSION);
|
2021-03-25 10:55:18 -04:00
|
|
|
if (g_strcmp0(PACKAGE_STATUS, "development") == 0) {
|
2016-08-13 18:43:54 -04:00
|
|
|
#ifdef HAVE_GIT_VERSION
|
|
|
|
g_string_append(name_str, "dev.");
|
|
|
|
g_string_append(name_str, PROF_GIT_BRANCH);
|
|
|
|
g_string_append(name_str, ".");
|
|
|
|
g_string_append(name_str, PROF_GIT_REVISION);
|
|
|
|
#else
|
|
|
|
g_string_append(name_str, "dev");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
xmpp_stanza_set_attribute(identity, "name", name_str->str);
|
|
|
|
g_string_free(name_str, TRUE);
|
|
|
|
xmpp_stanza_add_child(query, identity);
|
|
|
|
xmpp_stanza_release(identity);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
GList* features = caps_get_features();
|
|
|
|
GList* curr = features;
|
2016-08-13 18:43:54 -04:00
|
|
|
while (curr) {
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* feature = xmpp_stanza_new(ctx);
|
2016-08-13 18:43:54 -04:00
|
|
|
xmpp_stanza_set_name(feature, STANZA_NAME_FEATURE);
|
|
|
|
xmpp_stanza_set_attribute(feature, STANZA_ATTR_VAR, curr->data);
|
|
|
|
xmpp_stanza_add_child(query, feature);
|
|
|
|
xmpp_stanza_release(feature);
|
|
|
|
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
2016-08-17 18:32:43 -04:00
|
|
|
g_list_free_full(features, free);
|
2016-08-13 18:43:54 -04:00
|
|
|
|
|
|
|
return query;
|
|
|
|
}
|
|
|
|
|
2012-11-09 19:43:09 -05:00
|
|
|
gboolean
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_contains_chat_state(xmpp_stanza_t* stanza)
|
2012-11-09 19:43:09 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
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));
|
2012-11-09 19:43:09 -05:00
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_ping_iq(xmpp_ctx_t* ctx, const char* const target)
|
2012-11-09 19:43:09 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, id);
|
2016-08-20 15:20:38 -04:00
|
|
|
free(id);
|
2015-05-04 18:23:55 -04:00
|
|
|
if (target) {
|
2016-08-20 13:16:51 -04:00
|
|
|
xmpp_stanza_set_to(iq, target);
|
2014-09-03 20:08:10 -04:00
|
|
|
}
|
2012-11-09 19:43:09 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* ping = xmpp_stanza_new(ctx);
|
2012-11-09 19:43:09 -05:00
|
|
|
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
|
|
|
|
2016-08-13 19:07:08 -04:00
|
|
|
char*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_caps_sha1_from_query(xmpp_stanza_t* const query)
|
2016-08-13 19:07:08 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
GSList* identities = NULL;
|
|
|
|
GSList* features = NULL;
|
|
|
|
GSList* form_names = NULL;
|
|
|
|
GHashTable* forms = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, (GDestroyNotify)form_destroy);
|
2016-08-13 19:07:08 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* child = xmpp_stanza_get_children(query);
|
2016-08-13 19:07:08 -04:00
|
|
|
while (child) {
|
|
|
|
if (g_strcmp0(xmpp_stanza_get_name(child), STANZA_NAME_IDENTITY) == 0) {
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* category = xmpp_stanza_get_attribute(child, "category");
|
|
|
|
const char* type = xmpp_stanza_get_type(child);
|
|
|
|
const char* lang = xmpp_stanza_get_attribute(child, "xml:lang");
|
|
|
|
const char* name = xmpp_stanza_get_attribute(child, "name");
|
2016-08-13 19:07:08 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
GString* identity_str = g_string_new(category);
|
2016-08-13 19:07:08 -04:00
|
|
|
g_string_append(identity_str, "/");
|
|
|
|
if (type) {
|
|
|
|
g_string_append(identity_str, type);
|
|
|
|
}
|
|
|
|
g_string_append(identity_str, "/");
|
|
|
|
if (lang) {
|
|
|
|
g_string_append(identity_str, lang);
|
|
|
|
}
|
|
|
|
g_string_append(identity_str, "/");
|
|
|
|
if (name) {
|
|
|
|
g_string_append(identity_str, name);
|
|
|
|
}
|
|
|
|
g_string_append(identity_str, "<");
|
2021-03-25 10:55:18 -04:00
|
|
|
identities = g_slist_insert_sorted(identities, g_strdup(identity_str->str), (GCompareFunc)g_strcmp0);
|
2016-08-13 19:07:08 -04:00
|
|
|
g_string_free(identity_str, TRUE);
|
|
|
|
} else if (g_strcmp0(xmpp_stanza_get_name(child), STANZA_NAME_FEATURE) == 0) {
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* feature_str = xmpp_stanza_get_attribute(child, "var");
|
2021-03-25 10:55:18 -04:00
|
|
|
features = g_slist_insert_sorted(features, g_strdup(feature_str), (GCompareFunc)g_strcmp0);
|
2016-08-13 19:07:08 -04:00
|
|
|
} else if (g_strcmp0(xmpp_stanza_get_name(child), STANZA_NAME_X) == 0) {
|
|
|
|
if (g_strcmp0(xmpp_stanza_get_ns(child), STANZA_NS_DATA) == 0) {
|
2020-07-07 08:18:57 -04:00
|
|
|
DataForm* form = form_create(child);
|
|
|
|
char* form_type = form_get_form_type_field(form);
|
2021-03-25 10:55:18 -04:00
|
|
|
form_names = g_slist_insert_sorted(form_names, g_strdup(form_type), (GCompareFunc)g_strcmp0);
|
2016-08-13 19:07:08 -04:00
|
|
|
g_hash_table_insert(forms, g_strdup(form_type), form);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
child = xmpp_stanza_get_next(child);
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
GString* s = g_string_new("");
|
2016-08-13 19:07:08 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
GSList* curr = identities;
|
2016-08-13 19:07:08 -04:00
|
|
|
while (curr) {
|
|
|
|
g_string_append(s, curr->data);
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
curr = features;
|
|
|
|
while (curr) {
|
|
|
|
g_string_append(s, curr->data);
|
|
|
|
g_string_append(s, "<");
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
curr = form_names;
|
|
|
|
while (curr) {
|
2020-07-07 08:18:57 -04:00
|
|
|
DataForm* form = g_hash_table_lookup(forms, curr->data);
|
|
|
|
char* form_type = form_get_form_type_field(form);
|
2016-08-13 19:07:08 -04:00
|
|
|
g_string_append(s, form_type);
|
|
|
|
g_string_append(s, "<");
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
GSList* sorted_fields = form_get_non_form_type_fields_sorted(form);
|
|
|
|
GSList* curr_field = sorted_fields;
|
2016-08-13 19:07:08 -04:00
|
|
|
while (curr_field) {
|
2020-07-07 08:18:57 -04:00
|
|
|
FormField* field = curr_field->data;
|
2016-08-13 19:07:08 -04:00
|
|
|
g_string_append(s, field->var);
|
|
|
|
g_string_append(s, "<");
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
GSList* sorted_values = form_get_field_values_sorted(field);
|
|
|
|
GSList* curr_value = sorted_values;
|
2016-08-13 19:07:08 -04:00
|
|
|
while (curr_value) {
|
|
|
|
g_string_append(s, curr_value->data);
|
|
|
|
g_string_append(s, "<");
|
|
|
|
curr_value = g_slist_next(curr_value);
|
|
|
|
}
|
|
|
|
g_slist_free(sorted_values);
|
|
|
|
curr_field = g_slist_next(curr_field);
|
|
|
|
}
|
|
|
|
g_slist_free(sorted_fields);
|
|
|
|
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
char* result = _stanza_create_sha1_hash(s->str);
|
2016-08-13 19:07:08 -04:00
|
|
|
|
|
|
|
g_string_free(s, TRUE);
|
|
|
|
g_slist_free_full(identities, g_free);
|
|
|
|
g_slist_free_full(features, g_free);
|
|
|
|
g_slist_free_full(form_names, g_free);
|
|
|
|
g_hash_table_destroy(forms);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-11-12 08:47:57 -05:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_child_by_name_and_from(xmpp_stanza_t* const stanza, const char* const name, const char* const from)
|
2019-11-12 08:47:57 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* child;
|
|
|
|
const char* child_from;
|
|
|
|
const char* child_name;
|
2019-11-12 08:47:57 -05:00
|
|
|
|
|
|
|
for (child = xmpp_stanza_get_children(stanza); child; child = xmpp_stanza_get_next(child)) {
|
2019-11-14 13:22:06 -05:00
|
|
|
child_name = xmpp_stanza_get_name(child);
|
2021-03-25 10:55:18 -04:00
|
|
|
if (child_name && g_strcmp0(name, child_name) == 0) {
|
2019-11-12 08:47:57 -05:00
|
|
|
child_from = xmpp_stanza_get_attribute(child, STANZA_ATTR_FROM);
|
2021-03-25 10:55:18 -04:00
|
|
|
if (child_from && g_strcmp0(from, child_from) == 0) {
|
2019-11-12 08:47:57 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return child;
|
|
|
|
}
|
|
|
|
|
2015-06-29 18:48:41 -04:00
|
|
|
GDateTime*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_delay(xmpp_stanza_t* const stanza)
|
2019-08-20 11:51:26 -04:00
|
|
|
{
|
|
|
|
return stanza_get_delay_from(stanza, NULL);
|
|
|
|
}
|
|
|
|
|
2020-01-30 05:13:19 -05:00
|
|
|
static GDateTime*
|
2020-07-07 08:18:57 -04:00
|
|
|
_stanza_get_delay_timestamp_xep0203(xmpp_stanza_t* const delay_stanza)
|
2020-01-30 05:13:19 -05:00
|
|
|
{
|
|
|
|
GTimeVal utc_stamp;
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* xmlns = xmpp_stanza_get_attribute(delay_stanza, STANZA_ATTR_XMLNS);
|
2020-01-30 05:13:19 -05:00
|
|
|
|
2021-03-25 10:55:18 -04:00
|
|
|
if (xmlns && (g_strcmp0(xmlns, "urn:xmpp:delay") == 0)) {
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* stamp = xmpp_stanza_get_attribute(delay_stanza, STANZA_ATTR_STAMP);
|
2020-01-30 05:13:19 -05:00
|
|
|
|
|
|
|
if (stamp && (g_time_val_from_iso8601(stamp, &utc_stamp))) {
|
|
|
|
|
2021-10-04 16:11:12 -04:00
|
|
|
GDateTime* datetime = g_date_time_new_from_iso8601(stamp, NULL);
|
|
|
|
GDateTime* local_datetime = g_date_time_to_local(datetime);
|
|
|
|
g_date_time_unref(datetime);
|
2020-01-30 05:13:19 -05:00
|
|
|
|
|
|
|
return local_datetime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GDateTime*
|
2020-07-07 08:18:57 -04:00
|
|
|
_stanza_get_delay_timestamp_xep0091(xmpp_stanza_t* const x_stanza)
|
2020-01-30 05:13:19 -05:00
|
|
|
{
|
|
|
|
GTimeVal utc_stamp;
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* xmlns = xmpp_stanza_get_attribute(x_stanza, STANZA_ATTR_XMLNS);
|
2020-01-30 05:13:19 -05:00
|
|
|
|
2021-03-25 10:55:18 -04:00
|
|
|
if (xmlns && (g_strcmp0(xmlns, "jabber:x:delay") == 0)) {
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* stamp = xmpp_stanza_get_attribute(x_stanza, STANZA_ATTR_STAMP);
|
2020-01-30 05:13:19 -05:00
|
|
|
if (stamp && (g_time_val_from_iso8601(stamp, &utc_stamp))) {
|
|
|
|
|
2021-10-04 16:11:12 -04:00
|
|
|
GDateTime* datetime = g_date_time_new_from_iso8601(stamp, NULL);
|
|
|
|
GDateTime* local_datetime = g_date_time_to_local(datetime);
|
|
|
|
g_date_time_unref(datetime);
|
2020-01-30 05:13:19 -05:00
|
|
|
|
|
|
|
return local_datetime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-08-20 11:51:26 -04:00
|
|
|
GDateTime*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_delay_from(xmpp_stanza_t* const stanza, gchar* from)
|
2012-11-18 13:02:55 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* delay = NULL;
|
2019-11-12 08:47:57 -05:00
|
|
|
|
2020-01-30 05:13:19 -05:00
|
|
|
// first check for XEP-0203 delayed delivery
|
2019-11-12 08:47:57 -05:00
|
|
|
if (from) {
|
|
|
|
delay = stanza_get_child_by_name_and_from(stanza, STANZA_NAME_DELAY, from);
|
|
|
|
} else {
|
|
|
|
delay = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_DELAY);
|
|
|
|
}
|
|
|
|
|
2015-05-04 18:23:55 -04:00
|
|
|
if (delay) {
|
2020-01-30 05:54:03 -05:00
|
|
|
return _stanza_get_delay_timestamp_xep0203(delay);
|
2012-11-18 13:02:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise check for XEP-0091 legacy delayed delivery
|
2020-01-23 17:57:18 -05:00
|
|
|
// stamp format : CCYYMMDDThh:mm:ss
|
2019-11-12 08:47:57 -05:00
|
|
|
if (from) {
|
2020-01-30 05:13:19 -05:00
|
|
|
delay = stanza_get_child_by_name_and_from(stanza, STANZA_NAME_X, from);
|
2019-11-12 08:47:57 -05:00
|
|
|
} else {
|
2020-01-30 05:13:19 -05:00
|
|
|
delay = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_X);
|
2019-11-12 08:47:57 -05:00
|
|
|
}
|
|
|
|
|
2020-01-30 05:13:19 -05:00
|
|
|
if (delay) {
|
|
|
|
return _stanza_get_delay_timestamp_xep0091(delay);
|
2012-11-18 13:02:55 -05:00
|
|
|
}
|
|
|
|
|
2015-06-29 18:48:41 -04:00
|
|
|
return NULL;
|
2012-11-18 13:02:55 -05:00
|
|
|
}
|
2012-11-18 16:46:58 -05:00
|
|
|
|
2020-01-30 05:46:19 -05:00
|
|
|
GDateTime*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_oldest_delay(xmpp_stanza_t* const stanza)
|
2020-01-30 05:46:19 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* child;
|
|
|
|
const char* child_name;
|
2020-01-30 06:35:49 -05:00
|
|
|
GDateTime* oldest = NULL;
|
2020-01-30 05:46:19 -05:00
|
|
|
|
|
|
|
for (child = xmpp_stanza_get_children(stanza); child; child = xmpp_stanza_get_next(child)) {
|
|
|
|
|
|
|
|
child_name = xmpp_stanza_get_name(child);
|
|
|
|
|
2021-03-25 10:55:18 -04:00
|
|
|
if (child_name && g_strcmp0(child_name, STANZA_NAME_DELAY) == 0) {
|
2020-07-07 08:18:57 -04:00
|
|
|
GDateTime* tmp = _stanza_get_delay_timestamp_xep0203(child);
|
2020-01-30 05:46:19 -05:00
|
|
|
|
2020-02-25 09:54:44 -05:00
|
|
|
if (oldest == NULL) {
|
2020-01-30 05:46:19 -05:00
|
|
|
oldest = tmp;
|
2020-02-25 09:54:44 -05:00
|
|
|
} else if (g_date_time_compare(oldest, tmp) == 1) {
|
|
|
|
g_date_time_unref(oldest);
|
|
|
|
oldest = tmp;
|
|
|
|
} else {
|
|
|
|
g_date_time_unref(tmp);
|
|
|
|
}
|
2020-01-30 05:46:19 -05:00
|
|
|
}
|
|
|
|
|
2021-03-25 10:55:18 -04:00
|
|
|
if (child_name && g_strcmp0(child_name, STANZA_NAME_X) == 0) {
|
2020-07-07 08:18:57 -04:00
|
|
|
GDateTime* tmp = _stanza_get_delay_timestamp_xep0091(child);
|
2020-01-30 05:46:19 -05:00
|
|
|
|
2020-02-25 09:54:44 -05:00
|
|
|
if (oldest == NULL) {
|
2020-01-30 05:46:19 -05:00
|
|
|
oldest = tmp;
|
2020-02-25 09:54:44 -05:00
|
|
|
} else if (g_date_time_compare(oldest, tmp) == 1) {
|
|
|
|
g_date_time_unref(oldest);
|
|
|
|
oldest = tmp;
|
|
|
|
} else {
|
|
|
|
g_date_time_unref(tmp);
|
|
|
|
}
|
2020-01-30 05:46:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return oldest;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
char*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_status(xmpp_stanza_t* stanza, char* def)
|
2013-03-17 18:21:05 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* status = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_STATUS);
|
2013-03-17 18:21:05 -04:00
|
|
|
|
2015-05-04 18:23:55 -04:00
|
|
|
if (status) {
|
2016-08-21 10:25:49 -04:00
|
|
|
return stanza_text_strdup(status);
|
2015-05-04 18:23:55 -04:00
|
|
|
} else if (def) {
|
2013-06-09 11:52:28 -04:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
char*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_show(xmpp_stanza_t* stanza, char* def)
|
2013-03-17 18:21:05 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* show = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_SHOW);
|
2013-03-17 18:21:05 -04:00
|
|
|
|
2015-05-04 18:23:55 -04:00
|
|
|
if (show) {
|
2016-08-21 10:25:49 -04:00
|
|
|
return stanza_text_strdup(show);
|
2015-05-04 18:23:55 -04:00
|
|
|
} else if (def) {
|
2013-06-09 11:52:28 -04:00
|
|
|
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
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_is_muc_presence(xmpp_stanza_t* const stanza)
|
2013-02-10 18:29:37 -05:00
|
|
|
{
|
|
|
|
if (stanza == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2021-03-25 10:55:18 -04:00
|
|
|
if (g_strcmp0(xmpp_stanza_get_name(stanza), STANZA_NAME_PRESENCE) != 0) {
|
2013-02-10 18:29:37 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_get_child_by_ns(stanza, STANZA_NS_MUC_USER);
|
2013-02-10 18:29:37 -05:00
|
|
|
|
2014-09-20 20:04:53 -04:00
|
|
|
if (x) {
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
2013-02-10 18:29:37 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-02 19:23:04 -04:00
|
|
|
gboolean
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_muc_requires_config(xmpp_stanza_t* const stanza)
|
2014-09-02 19:23:04 -04:00
|
|
|
{
|
|
|
|
// no stanza, or not presence stanza
|
|
|
|
if ((stanza == NULL) || (g_strcmp0(xmpp_stanza_get_name(stanza), STANZA_NAME_PRESENCE) != 0)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// muc user namespaced x element
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_get_child_by_ns(stanza, STANZA_NS_MUC_USER);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (x == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-09-02 19:23:04 -04:00
|
|
|
|
2016-08-12 19:12:46 -04:00
|
|
|
// check for item element with owner affiliation
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_get_child_by_name(x, "item");
|
2016-08-12 19:12:46 -04:00
|
|
|
if (item == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* affiliation = xmpp_stanza_get_attribute(item, "affiliation");
|
2016-08-12 19:12:46 -04:00
|
|
|
if (g_strcmp0(affiliation, "owner") != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-09-02 19:23:04 -04:00
|
|
|
|
2016-08-12 19:12:46 -04:00
|
|
|
// check for status code 201
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x_children = xmpp_stanza_get_children(x);
|
2016-08-12 19:12:46 -04:00
|
|
|
while (x_children) {
|
|
|
|
if (g_strcmp0(xmpp_stanza_get_name(x_children), STANZA_NAME_STATUS) == 0) {
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* code = xmpp_stanza_get_attribute(x_children, STANZA_ATTR_CODE);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (g_strcmp0(code, "201") == 0) {
|
|
|
|
return TRUE;
|
2014-09-02 19:23:04 -04:00
|
|
|
}
|
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
x_children = xmpp_stanza_get_next(x_children);
|
2014-09-02 19:23:04 -04:00
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
|
2014-09-02 19:23:04 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-11-18 16:46:58 -05:00
|
|
|
gboolean
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_is_muc_self_presence(xmpp_stanza_t* const stanza,
|
|
|
|
const char* const self_jid)
|
2012-11-18 16:46:58 -05:00
|
|
|
{
|
2014-05-06 17:07:44 -04:00
|
|
|
// no stanza, or not presence stanza
|
|
|
|
if ((stanza == NULL) || (g_strcmp0(xmpp_stanza_get_name(stanza), STANZA_NAME_PRESENCE) != 0)) {
|
2012-11-18 16:46:58 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-05-06 17:07:44 -04:00
|
|
|
// muc user namespaced x element
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_get_child_by_ns(stanza, STANZA_NS_MUC_USER);
|
2012-11-18 16:46:58 -05:00
|
|
|
|
2016-08-12 19:12:46 -04:00
|
|
|
if (x == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for status child element with 110 code
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x_children = xmpp_stanza_get_children(x);
|
2016-08-12 19:12:46 -04:00
|
|
|
while (x_children) {
|
|
|
|
if (g_strcmp0(xmpp_stanza_get_name(x_children), STANZA_NAME_STATUS) == 0) {
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* code = xmpp_stanza_get_attribute(x_children, STANZA_ATTR_CODE);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (g_strcmp0(code, "110") == 0) {
|
|
|
|
return TRUE;
|
2012-11-18 16:46:58 -05:00
|
|
|
}
|
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
x_children = xmpp_stanza_get_next(x_children);
|
|
|
|
}
|
2012-11-18 16:46:58 -05:00
|
|
|
|
2016-08-12 19:12:46 -04:00
|
|
|
// check for item child element with jid property
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_get_child_by_name(x, STANZA_NAME_ITEM);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (item) {
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* jid = xmpp_stanza_get_attribute(item, STANZA_ATTR_JID);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (jid) {
|
|
|
|
if (g_str_has_prefix(self_jid, jid)) {
|
|
|
|
return TRUE;
|
2012-11-19 15:41:35 -05:00
|
|
|
}
|
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
}
|
2012-11-19 15:41:35 -05:00
|
|
|
|
2016-08-12 19:12:46 -04:00
|
|
|
// check if 'from' attribute identifies this user
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* from = xmpp_stanza_get_from(stanza);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (from) {
|
2020-07-07 08:18:57 -04:00
|
|
|
Jid* from_jid = jid_create(from);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (muc_active(from_jid->barejid)) {
|
2020-07-07 08:18:57 -04:00
|
|
|
char* nick = muc_nick(from_jid->barejid);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (g_strcmp0(from_jid->resourcepart, nick) == 0) {
|
|
|
|
jid_destroy(from_jid);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if a new nickname maps to a pending nick change for this user
|
|
|
|
if (muc_nick_change_pending(from_jid->barejid)) {
|
2020-07-07 08:18:57 -04:00
|
|
|
char* new_nick = from_jid->resourcepart;
|
2016-08-12 19:12:46 -04:00
|
|
|
if (new_nick) {
|
2020-07-07 08:18:57 -04:00
|
|
|
char* nick = muc_nick(from_jid->barejid);
|
|
|
|
char* old_nick = muc_old_nick(from_jid->barejid, new_nick);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (g_strcmp0(old_nick, nick) == 0) {
|
2014-10-31 21:48:36 -04:00
|
|
|
jid_destroy(from_jid);
|
2014-05-06 17:07:44 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
2013-08-05 17:55:11 -04:00
|
|
|
}
|
2013-08-05 16:20:07 -04:00
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
|
|
|
|
jid_destroy(from_jid);
|
2013-08-05 16:20:07 -04:00
|
|
|
}
|
|
|
|
|
2014-05-06 17:07:44 -04:00
|
|
|
// self presence not found
|
2012-11-18 16:46:58 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
GSList*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_status_codes_by_ns(xmpp_stanza_t* const stanza, char* ns)
|
2014-10-05 15:52:34 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* ns_child = xmpp_stanza_get_child_by_ns(stanza, ns);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (ns_child == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
GSList* codes = NULL;
|
|
|
|
xmpp_stanza_t* child = xmpp_stanza_get_children(ns_child);
|
2016-08-12 19:12:46 -04:00
|
|
|
while (child) {
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* name = xmpp_stanza_get_name(child);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (g_strcmp0(name, STANZA_NAME_STATUS) == 0) {
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* code = xmpp_stanza_get_attribute(child, STANZA_ATTR_CODE);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (code) {
|
|
|
|
codes = g_slist_append(codes, strdup(code));
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
child = xmpp_stanza_get_next(child);
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
|
2014-10-05 15:52:34 -04:00
|
|
|
return codes;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_room_destroyed(xmpp_stanza_t* stanza)
|
2014-10-05 15:52:34 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* stanza_name = xmpp_stanza_get_name(stanza);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (g_strcmp0(stanza_name, STANZA_NAME_PRESENCE) != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_get_child_by_ns(stanza, STANZA_NS_MUC_USER);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (x == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* destroy = xmpp_stanza_get_child_by_name(x, STANZA_NAME_DESTROY);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (destroy) {
|
|
|
|
return TRUE;
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-04-27 06:31:28 -04:00
|
|
|
const char*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_muc_destroy_alternative_room(xmpp_stanza_t* stanza)
|
2014-10-05 15:52:34 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* stanza_name = xmpp_stanza_get_name(stanza);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (g_strcmp0(stanza_name, STANZA_NAME_PRESENCE) != 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_get_child_by_ns(stanza, STANZA_NS_MUC_USER);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (x == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* destroy = xmpp_stanza_get_child_by_name(x, STANZA_NAME_DESTROY);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (destroy == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* jid = xmpp_stanza_get_attribute(destroy, STANZA_ATTR_JID);
|
2014-10-05 15:52:34 -04:00
|
|
|
|
2021-03-25 10:59:48 -04:00
|
|
|
return jid;
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
char*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_muc_destroy_alternative_password(xmpp_stanza_t* stanza)
|
2014-10-05 15:52:34 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* stanza_name = xmpp_stanza_get_name(stanza);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (g_strcmp0(stanza_name, STANZA_NAME_PRESENCE) != 0) {
|
|
|
|
return NULL;
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_get_child_by_ns(stanza, STANZA_NS_MUC_USER);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (x == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* destroy = xmpp_stanza_get_child_by_name(x, STANZA_NAME_DESTROY);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (destroy == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* password_st = xmpp_stanza_get_child_by_name(destroy, STANZA_NAME_PASSWORD);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (password_st == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-08-21 10:25:49 -04:00
|
|
|
return stanza_text_strdup(password_st);
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
char*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_muc_destroy_reason(xmpp_stanza_t* stanza)
|
2014-10-05 15:52:34 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* stanza_name = xmpp_stanza_get_name(stanza);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (g_strcmp0(stanza_name, STANZA_NAME_PRESENCE) != 0) {
|
|
|
|
return NULL;
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_get_child_by_ns(stanza, STANZA_NS_MUC_USER);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (x == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* destroy = xmpp_stanza_get_child_by_name(x, STANZA_NAME_DESTROY);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (destroy == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* reason_st = xmpp_stanza_get_child_by_name(destroy, STANZA_NAME_REASON);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (reason_st == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-08-21 10:25:49 -04:00
|
|
|
return stanza_text_strdup(reason_st);
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
|
|
|
|
2016-04-27 06:31:28 -04:00
|
|
|
const char*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_actor(xmpp_stanza_t* stanza)
|
2014-10-05 15:52:34 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* stanza_name = xmpp_stanza_get_name(stanza);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (g_strcmp0(stanza_name, STANZA_NAME_PRESENCE) != 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_get_child_by_ns(stanza, STANZA_NS_MUC_USER);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (x == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_get_child_by_name(x, STANZA_NAME_ITEM);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (item == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* actor = xmpp_stanza_get_child_by_name(item, STANZA_NAME_ACTOR);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (actor == NULL) {
|
|
|
|
return NULL;
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* nick = xmpp_stanza_get_attribute(actor, STANZA_ATTR_NICK);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (nick) {
|
|
|
|
return nick;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* jid = xmpp_stanza_get_attribute(actor, STANZA_ATTR_JID);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (jid) {
|
|
|
|
return jid;
|
|
|
|
}
|
|
|
|
|
2014-10-05 15:52:34 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
char*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_reason(xmpp_stanza_t* stanza)
|
2014-10-05 15:52:34 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* stanza_name = xmpp_stanza_get_name(stanza);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (g_strcmp0(stanza_name, STANZA_NAME_PRESENCE) != 0) {
|
|
|
|
return NULL;
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_get_child_by_ns(stanza, STANZA_NS_MUC_USER);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (x == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_get_child_by_name(x, STANZA_NAME_ITEM);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (item == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* reason_st = xmpp_stanza_get_child_by_name(item, STANZA_NAME_REASON);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (reason_st == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-08-21 10:25:49 -04:00
|
|
|
return stanza_text_strdup(reason_st);
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
|
|
|
|
2012-11-18 16:46:58 -05:00
|
|
|
gboolean
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_is_room_nick_change(xmpp_stanza_t* const stanza)
|
2012-11-18 16:46:58 -05:00
|
|
|
{
|
2014-05-06 17:07:44 -04:00
|
|
|
// no stanza, or not presence stanza
|
|
|
|
if ((stanza == NULL) || (g_strcmp0(xmpp_stanza_get_name(stanza), STANZA_NAME_PRESENCE) != 0)) {
|
2012-11-18 16:46:58 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-05-06 17:07:44 -04:00
|
|
|
// muc user namespaced x element
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_get_child_by_ns(stanza, STANZA_NS_MUC_USER);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (x == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2012-11-18 16:46:58 -05:00
|
|
|
|
2016-08-12 19:12:46 -04:00
|
|
|
// check for status child element with 303 code
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x_children = xmpp_stanza_get_children(x);
|
2016-08-12 19:12:46 -04:00
|
|
|
while (x_children) {
|
|
|
|
if (g_strcmp0(xmpp_stanza_get_name(x_children), STANZA_NAME_STATUS) == 0) {
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* code = xmpp_stanza_get_attribute(x_children, STANZA_ATTR_CODE);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (g_strcmp0(code, "303") == 0) {
|
|
|
|
return TRUE;
|
2012-11-18 16:46:58 -05:00
|
|
|
}
|
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
x_children = xmpp_stanza_get_next(x_children);
|
2012-11-18 16:46:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-04-27 06:31:28 -04:00
|
|
|
const char*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_new_nick(xmpp_stanza_t* const stanza)
|
2012-11-18 16:46:58 -05:00
|
|
|
{
|
|
|
|
if (!stanza_is_room_nick_change(stanza)) {
|
|
|
|
return NULL;
|
2014-10-06 19:22:39 -04:00
|
|
|
}
|
2012-11-18 16:46:58 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_X);
|
|
|
|
xmpp_stanza_t* x_children = xmpp_stanza_get_children(x);
|
2014-10-06 19:22:39 -04:00
|
|
|
|
2015-05-04 18:23:55 -04:00
|
|
|
while (x_children) {
|
2021-03-25 10:55:18 -04:00
|
|
|
if (g_strcmp0(xmpp_stanza_get_name(x_children), STANZA_NAME_ITEM) == 0) {
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* nick = xmpp_stanza_get_attribute(x_children, STANZA_ATTR_NICK);
|
2014-10-06 19:22:39 -04:00
|
|
|
if (nick) {
|
|
|
|
return nick;
|
2012-11-18 16:46:58 -05:00
|
|
|
}
|
|
|
|
}
|
2014-10-06 19:22:39 -04:00
|
|
|
x_children = xmpp_stanza_get_next(x_children);
|
2012-11-18 16:46:58 -05:00
|
|
|
}
|
2014-10-06 19:22:39 -04:00
|
|
|
|
|
|
|
return NULL;
|
2012-11-18 16:46:58 -05:00
|
|
|
}
|
2012-12-08 22:07:33 -05:00
|
|
|
|
|
|
|
int
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_idle_time(xmpp_stanza_t* const stanza)
|
2012-12-08 22:07:33 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_QUERY);
|
2012-12-08 22:07:33 -05:00
|
|
|
|
|
|
|
if (query == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* ns = xmpp_stanza_get_ns(query);
|
2012-12-08 22:07:33 -05:00
|
|
|
if (ns == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-03-25 10:55:18 -04:00
|
|
|
if (g_strcmp0(ns, STANZA_NS_LASTACTIVITY) != 0) {
|
2012-12-08 22:07:33 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* seconds_str = xmpp_stanza_get_attribute(query, STANZA_ATTR_SECONDS);
|
2012-12-08 22:07:33 -05:00
|
|
|
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
|
|
|
|
2014-11-26 16:59:36 -05:00
|
|
|
XMPPCaps*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_parse_caps(xmpp_stanza_t* const stanza)
|
2013-01-20 17:39:52 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* caps_st = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_C);
|
2013-01-20 17:39:52 -05:00
|
|
|
|
2014-11-26 16:59:36 -05:00
|
|
|
if (!caps_st) {
|
2013-01-20 17:39:52 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* ns = xmpp_stanza_get_ns(caps_st);
|
2014-09-18 19:49:48 -04:00
|
|
|
if (g_strcmp0(ns, STANZA_NS_CAPS) != 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* hash = xmpp_stanza_get_attribute(caps_st, STANZA_ATTR_HASH);
|
|
|
|
const char* node = xmpp_stanza_get_attribute(caps_st, STANZA_ATTR_NODE);
|
|
|
|
const char* ver = xmpp_stanza_get_attribute(caps_st, STANZA_ATTR_VER);
|
2014-09-18 19:49:48 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
XMPPCaps* caps = (XMPPCaps*)malloc(sizeof(XMPPCaps));
|
2014-11-26 16:59:36 -05:00
|
|
|
caps->hash = hash ? strdup(hash) : NULL;
|
|
|
|
caps->node = node ? strdup(node) : NULL;
|
|
|
|
caps->ver = ver ? strdup(ver) : NULL;
|
2013-01-20 17:39:52 -05:00
|
|
|
|
2014-11-26 16:59:36 -05:00
|
|
|
return caps;
|
2013-01-20 17:39:52 -05:00
|
|
|
}
|
|
|
|
|
2016-08-13 19:15:03 -04:00
|
|
|
EntityCapabilities*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_caps_from_query_element(xmpp_stanza_t* query)
|
2016-08-13 19:15:03 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* software = NULL;
|
|
|
|
char* software_version = NULL;
|
|
|
|
char* os = NULL;
|
|
|
|
char* os_version = NULL;
|
2016-08-13 19:15:03 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* softwareinfo = xmpp_stanza_get_child_by_ns(query, STANZA_NS_DATA);
|
2016-08-13 19:15:03 -04:00
|
|
|
if (softwareinfo) {
|
2020-07-07 08:18:57 -04:00
|
|
|
DataForm* form = form_create(softwareinfo);
|
|
|
|
FormField* formField = NULL;
|
2016-08-13 19:15:03 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
char* form_type = form_get_form_type_field(form);
|
2016-08-13 19:15:03 -04:00
|
|
|
if (g_strcmp0(form_type, STANZA_DATAFORM_SOFTWARE) == 0) {
|
2020-07-07 08:18:57 -04:00
|
|
|
GSList* field = form->fields;
|
2016-08-13 19:15:03 -04:00
|
|
|
while (field) {
|
|
|
|
formField = field->data;
|
|
|
|
if (formField->values) {
|
2021-03-25 10:55:18 -04:00
|
|
|
if (g_strcmp0(formField->var, "software") == 0) {
|
2020-04-20 09:31:48 -04:00
|
|
|
if (software == NULL) {
|
|
|
|
software = strdup(formField->values->data);
|
|
|
|
}
|
2021-03-25 10:55:18 -04:00
|
|
|
} else if (g_strcmp0(formField->var, "software_version") == 0) {
|
2020-04-20 09:31:48 -04:00
|
|
|
if (software_version == NULL) {
|
|
|
|
software_version = strdup(formField->values->data);
|
|
|
|
}
|
2021-03-25 10:55:18 -04:00
|
|
|
} else if (g_strcmp0(formField->var, "os") == 0) {
|
2020-04-20 09:31:48 -04:00
|
|
|
if (os == NULL) {
|
|
|
|
os = strdup(formField->values->data);
|
|
|
|
}
|
2021-03-25 10:55:18 -04:00
|
|
|
} else if (g_strcmp0(formField->var, "os_version") == 0) {
|
2020-04-20 09:31:48 -04:00
|
|
|
if (os_version == NULL) {
|
|
|
|
os_version = strdup(formField->values->data);
|
|
|
|
}
|
2016-08-13 19:15:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
field = g_slist_next(field);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
form_destroy(form);
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* child = xmpp_stanza_get_children(query);
|
|
|
|
GSList* identity_stanzas = NULL;
|
|
|
|
GSList* features = NULL;
|
2016-08-13 19:15:03 -04:00
|
|
|
while (child) {
|
|
|
|
if (g_strcmp0(xmpp_stanza_get_name(child), "feature") == 0) {
|
|
|
|
features = g_slist_append(features, strdup(xmpp_stanza_get_attribute(child, "var")));
|
|
|
|
}
|
|
|
|
if (g_strcmp0(xmpp_stanza_get_name(child), "identity") == 0) {
|
|
|
|
identity_stanzas = g_slist_append(identity_stanzas, child);
|
|
|
|
}
|
|
|
|
|
|
|
|
child = xmpp_stanza_get_next(child);
|
|
|
|
}
|
|
|
|
|
|
|
|
// find identity by locale
|
2020-07-07 08:18:57 -04:00
|
|
|
const gchar* const* langs = g_get_language_names();
|
2016-08-13 19:15:03 -04:00
|
|
|
int num_langs = g_strv_length((gchar**)langs);
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* found = NULL;
|
|
|
|
GSList* curr_identity = identity_stanzas;
|
2016-08-13 19:15:03 -04:00
|
|
|
while (curr_identity) {
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* id_stanza = curr_identity->data;
|
|
|
|
const char* stanza_lang = xmpp_stanza_get_attribute(id_stanza, "xml:lang");
|
2016-08-13 19:15:03 -04:00
|
|
|
if (stanza_lang) {
|
2020-11-09 05:03:54 -05:00
|
|
|
for (int i = 0; i < num_langs; i++) {
|
2016-08-13 19:15:03 -04:00
|
|
|
if (g_strcmp0(langs[i], stanza_lang) == 0) {
|
|
|
|
found = id_stanza;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
curr_identity = g_slist_next(curr_identity);
|
|
|
|
}
|
|
|
|
|
|
|
|
// not lang match, use default with no lang
|
|
|
|
if (!found) {
|
|
|
|
curr_identity = identity_stanzas;
|
|
|
|
while (curr_identity) {
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* id_stanza = curr_identity->data;
|
|
|
|
const char* stanza_lang = xmpp_stanza_get_attribute(id_stanza, "xml:lang");
|
2016-08-13 19:15:03 -04:00
|
|
|
if (!stanza_lang) {
|
|
|
|
found = id_stanza;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
curr_identity = g_slist_next(curr_identity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// no matching lang, no identity without lang, use first
|
|
|
|
if (!found) {
|
|
|
|
if (identity_stanzas) {
|
|
|
|
found = identity_stanzas->data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free(identity_stanzas);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* category = NULL;
|
|
|
|
const char* type = NULL;
|
|
|
|
const char* name = NULL;
|
2016-08-13 19:15:03 -04:00
|
|
|
if (found) {
|
|
|
|
category = xmpp_stanza_get_attribute(found, "category");
|
2016-08-20 13:16:51 -04:00
|
|
|
type = xmpp_stanza_get_type(found);
|
2016-08-13 19:15:03 -04:00
|
|
|
name = xmpp_stanza_get_attribute(found, "name");
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
EntityCapabilities* result = caps_create(category, type, name, software, software_version, os, os_version, features);
|
2016-08-13 20:06:13 -04:00
|
|
|
g_slist_free_full(features, free);
|
2020-04-09 08:22:11 -04:00
|
|
|
free(software);
|
|
|
|
free(software_version);
|
|
|
|
free(os);
|
|
|
|
free(os_version);
|
2016-08-13 19:15:03 -04:00
|
|
|
|
2016-08-13 20:06:13 -04:00
|
|
|
return result;
|
2016-08-13 19:15:03 -04:00
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
char*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_get_error_message(xmpp_stanza_t* stanza)
|
2014-01-26 13:30:34 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* error_stanza = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_ERROR);
|
2014-01-26 13:30:34 -05:00
|
|
|
|
|
|
|
// return nothing if no error stanza
|
|
|
|
if (error_stanza == NULL) {
|
|
|
|
return strdup("unknown");
|
2016-08-12 19:12:46 -04:00
|
|
|
}
|
2014-09-09 17:26:14 -04:00
|
|
|
|
2016-08-12 19:12:46 -04:00
|
|
|
// check for text child
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* text_stanza = xmpp_stanza_get_child_by_name(error_stanza, STANZA_NAME_TEXT);
|
2014-01-26 13:30:34 -05:00
|
|
|
|
2016-08-12 19:12:46 -04:00
|
|
|
// check for text
|
|
|
|
if (text_stanza) {
|
2020-07-07 08:18:57 -04:00
|
|
|
char* err_msg = stanza_text_strdup(text_stanza);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (err_msg) {
|
|
|
|
return err_msg;
|
|
|
|
}
|
2014-01-26 13:30:34 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
// otherwise check each defined-condition RFC-6120 8.3.3
|
2016-08-12 19:12:46 -04:00
|
|
|
} else {
|
2020-07-07 08:18:57 -04:00
|
|
|
gchar* defined_conditions[] = {
|
2016-08-12 19:12:46 -04:00
|
|
|
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
|
|
|
|
};
|
|
|
|
|
2020-11-09 05:03:54 -05:00
|
|
|
for (int i = 0; i < ARRAY_SIZE(defined_conditions); i++) {
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* cond_stanza = xmpp_stanza_get_child_by_name(error_stanza, defined_conditions[i]);
|
2016-08-12 19:12:46 -04:00
|
|
|
if (cond_stanza) {
|
2020-07-07 08:18:57 -04:00
|
|
|
char* result = strdup(xmpp_stanza_get_name(cond_stanza));
|
2016-08-12 19:12:46 -04:00
|
|
|
return result;
|
2014-01-26 13:30:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if undefined-condition or no condition, return nothing
|
|
|
|
return strdup("unknown");
|
|
|
|
}
|
|
|
|
|
2021-03-09 11:47:37 -05:00
|
|
|
// Note that the `count' must be 2 * number of key/value pairs
|
2019-03-19 13:00:24 -04:00
|
|
|
void
|
2021-03-09 11:47:37 -05:00
|
|
|
stanza_attach_publish_options_va(xmpp_ctx_t* const ctx, xmpp_stanza_t* const iq, int count, ...)
|
2019-03-19 13:00:24 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* publish_options = xmpp_stanza_new(ctx);
|
2019-03-19 13:00:24 -04:00
|
|
|
xmpp_stanza_set_name(publish_options, STANZA_NAME_PUBLISH_OPTIONS);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_new(ctx);
|
2019-03-19 13:00:24 -04:00
|
|
|
xmpp_stanza_set_name(x, STANZA_NAME_X);
|
|
|
|
xmpp_stanza_set_ns(x, STANZA_NS_DATA);
|
|
|
|
xmpp_stanza_set_type(x, "submit");
|
|
|
|
xmpp_stanza_add_child(publish_options, x);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* form_type = xmpp_stanza_new(ctx);
|
2019-03-19 13:00:24 -04:00
|
|
|
xmpp_stanza_set_name(form_type, STANZA_NAME_FIELD);
|
|
|
|
xmpp_stanza_set_attribute(form_type, STANZA_ATTR_VAR, "FORM_TYPE");
|
|
|
|
xmpp_stanza_set_type(form_type, "hidden");
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* form_type_value = xmpp_stanza_new(ctx);
|
2019-03-19 13:00:24 -04:00
|
|
|
xmpp_stanza_set_name(form_type_value, STANZA_NAME_VALUE);
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* form_type_value_text = xmpp_stanza_new(ctx);
|
2019-03-19 13:00:24 -04:00
|
|
|
xmpp_stanza_set_text(form_type_value_text, XMPP_FEATURE_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);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* pubsub = xmpp_stanza_get_child_by_ns(iq, STANZA_NS_PUBSUB);
|
2019-03-19 13:00:24 -04:00
|
|
|
xmpp_stanza_add_child(pubsub, publish_options);
|
2019-07-10 06:27:28 -04:00
|
|
|
|
2021-03-09 11:47:37 -05:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, count);
|
|
|
|
int j;
|
|
|
|
for (j = 0; j < count; j += 2) {
|
|
|
|
const char* const option = va_arg(ap, char* const);
|
|
|
|
const char* const value = va_arg(ap, char* const);
|
|
|
|
|
|
|
|
xmpp_stanza_t* field = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(field, STANZA_NAME_FIELD);
|
|
|
|
xmpp_stanza_set_attribute(field, STANZA_ATTR_VAR, option);
|
|
|
|
xmpp_stanza_t* field_value = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(field_value, STANZA_NAME_VALUE);
|
|
|
|
xmpp_stanza_t* field_value_text = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_text(field_value_text, value);
|
|
|
|
xmpp_stanza_add_child(field_value, field_value_text);
|
|
|
|
xmpp_stanza_add_child(field, field_value);
|
|
|
|
xmpp_stanza_add_child(x, field);
|
|
|
|
|
|
|
|
xmpp_stanza_release(field_value_text);
|
|
|
|
xmpp_stanza_release(field_value);
|
|
|
|
xmpp_stanza_release(field);
|
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
|
2019-07-10 06:27:28 -04:00
|
|
|
xmpp_stanza_release(form_type_value_text);
|
|
|
|
xmpp_stanza_release(form_type_value);
|
|
|
|
xmpp_stanza_release(form_type);
|
|
|
|
xmpp_stanza_release(x);
|
|
|
|
xmpp_stanza_release(publish_options);
|
2019-03-19 13:00:24 -04:00
|
|
|
}
|
|
|
|
|
2021-03-09 11:47:37 -05:00
|
|
|
void
|
|
|
|
stanza_attach_publish_options(xmpp_ctx_t* const ctx, xmpp_stanza_t* const iq, const char* const option, const char* const value)
|
|
|
|
{
|
|
|
|
stanza_attach_publish_options_va(ctx, iq, 2, option, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-03 15:09:56 -05:00
|
|
|
void
|
2020-07-07 08:18:57 -04: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
|
|
|
{
|
2016-08-12 19:12:46 -04:00
|
|
|
if (pri == 0) {
|
|
|
|
return;
|
2013-02-03 15:09:56 -05:00
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
|
|
|
|
char pri_str[10];
|
|
|
|
snprintf(pri_str, sizeof(pri_str), "%d", pri);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* priority = xmpp_stanza_new(ctx);
|
2016-08-12 19:12:46 -04:00
|
|
|
xmpp_stanza_set_name(priority, STANZA_NAME_PRIORITY);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* value = xmpp_stanza_new(ctx);
|
2016-08-12 19:12:46 -04:00
|
|
|
xmpp_stanza_set_text(value, pri_str);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(priority, value);
|
|
|
|
xmpp_stanza_release(value);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(presence, priority);
|
|
|
|
xmpp_stanza_release(priority);
|
2013-02-03 15:09:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_attach_show(xmpp_ctx_t* const ctx, xmpp_stanza_t* const presence,
|
|
|
|
const char* const show)
|
2013-02-03 21:19:31 -05:00
|
|
|
{
|
2016-08-12 19:12:46 -04:00
|
|
|
if (show == NULL) {
|
|
|
|
return;
|
2013-02-03 21:19:31 -05:00
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* show_stanza = xmpp_stanza_new(ctx);
|
2016-08-12 19:12:46 -04:00
|
|
|
xmpp_stanza_set_name(show_stanza, STANZA_NAME_SHOW);
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* text = xmpp_stanza_new(ctx);
|
2016-08-12 19:12:46 -04:00
|
|
|
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);
|
2013-02-03 21:19:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_attach_status(xmpp_ctx_t* const ctx, xmpp_stanza_t* const presence,
|
|
|
|
const char* const status)
|
2013-02-03 21:19:31 -05:00
|
|
|
{
|
2016-08-12 19:12:46 -04:00
|
|
|
if (status == NULL) {
|
|
|
|
return;
|
2013-02-03 21:19:31 -05:00
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* status_stanza = xmpp_stanza_new(ctx);
|
2016-08-12 19:12:46 -04:00
|
|
|
xmpp_stanza_set_name(status_stanza, STANZA_NAME_STATUS);
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* text = xmpp_stanza_new(ctx);
|
2016-08-12 19:12:46 -04:00
|
|
|
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);
|
2013-02-03 21:19:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
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
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2015-10-14 16:12:26 -04:00
|
|
|
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);
|
2013-02-03 15:09:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_attach_caps(xmpp_ctx_t* const ctx, xmpp_stanza_t* const presence)
|
2013-02-03 15:09:56 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* caps = xmpp_stanza_new(ctx);
|
2013-02-03 15:09:56 -05:00
|
|
|
xmpp_stanza_set_name(caps, STANZA_NAME_C);
|
|
|
|
xmpp_stanza_set_ns(caps, STANZA_NS_CAPS);
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = stanza_create_caps_query_element(ctx);
|
2013-02-03 15:09:56 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
char* sha1 = caps_get_my_sha1(ctx);
|
2013-02-03 15:09:56 -05:00
|
|
|
xmpp_stanza_set_attribute(caps, STANZA_ATTR_HASH, "sha-1");
|
2019-05-03 04:46:41 -04:00
|
|
|
xmpp_stanza_set_attribute(caps, STANZA_ATTR_NODE, "http://profanity-im.github.io");
|
2013-02-03 15:09:56 -05:00
|
|
|
xmpp_stanza_set_attribute(caps, STANZA_ATTR_VER, sha1);
|
|
|
|
xmpp_stanza_add_child(presence, caps);
|
|
|
|
xmpp_stanza_release(caps);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04: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
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
switch (presence_type) {
|
|
|
|
case RESOURCE_AWAY:
|
|
|
|
return STANZA_TEXT_AWAY;
|
|
|
|
case RESOURCE_DND:
|
|
|
|
return STANZA_TEXT_DND;
|
|
|
|
case RESOURCE_CHAT:
|
|
|
|
return STANZA_TEXT_CHAT;
|
|
|
|
case RESOURCE_XA:
|
|
|
|
return STANZA_TEXT_XA;
|
|
|
|
default:
|
|
|
|
return NULL;
|
2013-02-03 17:18:40 -05:00
|
|
|
}
|
|
|
|
}
|
2014-11-26 16:07:46 -05:00
|
|
|
|
|
|
|
Resource*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_resource_from_presence(XMPPPresence* presence)
|
2014-11-26 16:07:46 -05:00
|
|
|
{
|
|
|
|
// create Resource
|
2020-07-07 08:18:57 -04:00
|
|
|
Resource* resource = NULL;
|
2014-11-26 16:07:46 -05:00
|
|
|
resource_presence_t resource_presence = resource_presence_from_string(presence->show);
|
|
|
|
if (presence->jid->resourcepart == NULL) { // hack for servers that do not send full jid
|
|
|
|
resource = resource_new("__prof_default", resource_presence, presence->status, presence->priority);
|
|
|
|
} else {
|
|
|
|
resource = resource_new(presence->jid->resourcepart, resource_presence, presence->status, presence->priority);
|
|
|
|
}
|
|
|
|
|
|
|
|
return resource;
|
|
|
|
}
|
|
|
|
|
2016-08-21 10:25:49 -04:00
|
|
|
char*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_text_strdup(xmpp_stanza_t* stanza)
|
2016-08-21 10:25:49 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_ctx_t* ctx = connection_get_ctx();
|
2016-08-21 10:25:49 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
char* string = NULL;
|
|
|
|
char* stanza_text = xmpp_stanza_get_text(stanza);
|
2016-08-21 10:25:49 -04:00
|
|
|
if (stanza_text) {
|
|
|
|
string = strdup(stanza_text);
|
|
|
|
xmpp_free(ctx, stanza_text);
|
|
|
|
}
|
|
|
|
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
2014-11-26 16:59:36 -05:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_free_caps(XMPPCaps* caps)
|
2014-11-26 16:59:36 -05:00
|
|
|
{
|
2016-08-12 19:12:46 -04:00
|
|
|
if (caps == NULL) {
|
|
|
|
return;
|
2014-11-26 16:59:36 -05:00
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
|
|
|
|
if (caps->hash) {
|
|
|
|
free(caps->hash);
|
|
|
|
}
|
|
|
|
if (caps->node) {
|
|
|
|
free(caps->node);
|
|
|
|
}
|
|
|
|
if (caps->ver) {
|
|
|
|
free(caps->ver);
|
|
|
|
}
|
|
|
|
FREE_SET_NULL(caps);
|
2014-11-26 16:59:36 -05:00
|
|
|
}
|
|
|
|
|
2014-11-26 16:07:46 -05:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_free_presence(XMPPPresence* presence)
|
2014-11-26 16:07:46 -05:00
|
|
|
{
|
2016-08-12 19:12:46 -04:00
|
|
|
if (presence == NULL) {
|
|
|
|
return;
|
2014-11-26 16:07:46 -05:00
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
|
|
|
|
if (presence->jid) {
|
|
|
|
jid_destroy(presence->jid);
|
|
|
|
}
|
|
|
|
if (presence->last_activity) {
|
|
|
|
g_date_time_unref(presence->last_activity);
|
|
|
|
}
|
|
|
|
if (presence->show) {
|
|
|
|
free(presence->show);
|
|
|
|
}
|
|
|
|
if (presence->status) {
|
|
|
|
free(presence->status);
|
|
|
|
}
|
|
|
|
FREE_SET_NULL(presence);
|
2014-11-26 16:07:46 -05:00
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
XMPPPresence*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_parse_presence(xmpp_stanza_t* stanza, int* err)
|
2014-11-26 16:07:46 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
const char* from = xmpp_stanza_get_from(stanza);
|
2014-11-26 16:07:46 -05:00
|
|
|
if (!from) {
|
|
|
|
*err = STANZA_PARSE_ERROR_NO_FROM;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
Jid* from_jid = jid_create(from);
|
2014-11-26 16:07:46 -05:00
|
|
|
if (!from_jid) {
|
|
|
|
*err = STANZA_PARSE_ERROR_INVALID_FROM;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
XMPPPresence* result = (XMPPPresence*)malloc(sizeof(XMPPPresence));
|
2014-11-26 16:07:46 -05:00
|
|
|
result->jid = from_jid;
|
|
|
|
|
|
|
|
result->show = stanza_get_show(stanza, "online");
|
|
|
|
result->status = stanza_get_status(stanza, NULL);
|
|
|
|
|
|
|
|
int idle_seconds = stanza_get_idle_time(stanza);
|
|
|
|
if (idle_seconds > 0) {
|
2020-07-07 08:18:57 -04:00
|
|
|
GDateTime* now = g_date_time_new_now_local();
|
2014-11-26 16:07:46 -05:00
|
|
|
result->last_activity = g_date_time_add_seconds(now, 0 - idle_seconds);
|
|
|
|
g_date_time_unref(now);
|
|
|
|
} else {
|
|
|
|
result->last_activity = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
result->priority = 0;
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* priority_stanza = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_PRIORITY);
|
2015-05-04 18:23:55 -04:00
|
|
|
if (priority_stanza) {
|
2020-07-07 08:18:57 -04:00
|
|
|
char* priority_str = xmpp_stanza_get_text(priority_stanza);
|
2015-05-04 18:23:55 -04:00
|
|
|
if (priority_str) {
|
2014-11-26 16:07:46 -05:00
|
|
|
result->priority = atoi(priority_str);
|
|
|
|
}
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_ctx_t* ctx = connection_get_ctx();
|
2016-08-12 19:12:46 -04:00
|
|
|
xmpp_free(ctx, priority_str);
|
2014-11-26 16:07:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2016-08-12 19:12:46 -04:00
|
|
|
|
2018-03-21 13:00:11 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_command_exec_iq(xmpp_ctx_t* ctx, const char* const target,
|
|
|
|
const char* const node)
|
2018-03-21 13:00:11 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2018-03-21 13:00:11 -04:00
|
|
|
free(id);
|
|
|
|
xmpp_stanza_set_to(iq, target);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* command = xmpp_stanza_new(ctx);
|
2018-03-21 13:00:11 -04:00
|
|
|
xmpp_stanza_set_name(command, STANZA_NAME_COMMAND);
|
|
|
|
|
|
|
|
xmpp_stanza_set_ns(command, STANZA_NS_COMMAND);
|
|
|
|
xmpp_stanza_set_attribute(command, "node", node);
|
|
|
|
xmpp_stanza_set_attribute(command, "action", "execute");
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, command);
|
|
|
|
xmpp_stanza_release(command);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2018-06-20 12:10:44 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_command_config_submit_iq(xmpp_ctx_t* ctx, const char* const room,
|
|
|
|
const char* const node, const char* const sessionid, DataForm* form)
|
2018-06-20 12:10:44 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2018-06-20 12:10:44 -04:00
|
|
|
free(id);
|
|
|
|
xmpp_stanza_set_to(iq, room);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* command = xmpp_stanza_new(ctx);
|
2018-06-20 12:10:44 -04:00
|
|
|
xmpp_stanza_set_name(command, STANZA_NAME_COMMAND);
|
|
|
|
xmpp_stanza_set_ns(command, STANZA_NS_COMMAND);
|
|
|
|
xmpp_stanza_set_attribute(command, "node", node);
|
2019-01-21 09:02:54 -05:00
|
|
|
if (sessionid != NULL) {
|
|
|
|
xmpp_stanza_set_attribute(command, "sessionid", sessionid);
|
|
|
|
}
|
2018-06-20 12:10:44 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = form_create_submission(form);
|
2018-06-20 12:10:44 -04:00
|
|
|
xmpp_stanza_add_child(command, x);
|
|
|
|
xmpp_stanza_release(x);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, command);
|
|
|
|
xmpp_stanza_release(command);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2019-02-24 23:59:41 -05:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_omemo_devicelist_request(xmpp_ctx_t* ctx, const char* const id,
|
|
|
|
const char* const jid)
|
2019-02-24 23:59:41 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, id);
|
2019-02-24 23:59:41 -05:00
|
|
|
xmpp_stanza_set_to(iq, jid);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* pubsub = xmpp_stanza_new(ctx);
|
2019-02-24 23:59:41 -05:00
|
|
|
xmpp_stanza_set_name(pubsub, STANZA_NAME_PUBSUB);
|
|
|
|
xmpp_stanza_set_ns(pubsub, STANZA_NS_PUBSUB);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* items = xmpp_stanza_new(ctx);
|
2019-02-24 23:59:41 -05:00
|
|
|
xmpp_stanza_set_name(items, "items");
|
2019-03-28 18:30:28 -04:00
|
|
|
xmpp_stanza_set_attribute(items, STANZA_ATTR_NODE, STANZA_NS_OMEMO_DEVICELIST);
|
2019-02-24 23:59:41 -05:00
|
|
|
|
|
|
|
xmpp_stanza_add_child(pubsub, items);
|
|
|
|
xmpp_stanza_add_child(iq, pubsub);
|
|
|
|
|
|
|
|
xmpp_stanza_release(items);
|
|
|
|
xmpp_stanza_release(pubsub);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2019-02-21 00:04:47 -05:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_omemo_devicelist_subscribe(xmpp_ctx_t* ctx, const char* const jid)
|
2019-02-21 00:04:47 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2019-02-21 00:04:47 -05:00
|
|
|
free(id);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* pubsub = xmpp_stanza_new(ctx);
|
2019-02-21 00:04:47 -05:00
|
|
|
xmpp_stanza_set_name(pubsub, STANZA_NAME_PUBSUB);
|
|
|
|
xmpp_stanza_set_ns(pubsub, STANZA_NS_PUBSUB);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* subscribe = xmpp_stanza_new(ctx);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_name(subscribe, STANZA_NAME_SUBSCRIBE);
|
2019-03-28 18:30:28 -04:00
|
|
|
xmpp_stanza_set_attribute(subscribe, STANZA_ATTR_NODE, STANZA_NS_OMEMO_DEVICELIST);
|
2019-02-21 00:04:47 -05:00
|
|
|
xmpp_stanza_set_attribute(subscribe, "jid", jid);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(pubsub, subscribe);
|
|
|
|
xmpp_stanza_add_child(iq, pubsub);
|
|
|
|
|
|
|
|
xmpp_stanza_release(subscribe);
|
|
|
|
xmpp_stanza_release(pubsub);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_omemo_devicelist_publish(xmpp_ctx_t* ctx, GList* const ids)
|
2019-02-21 13:04:01 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2019-02-21 13:04:01 -05:00
|
|
|
free(id);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* pubsub = xmpp_stanza_new(ctx);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_name(pubsub, STANZA_NAME_PUBSUB);
|
|
|
|
xmpp_stanza_set_ns(pubsub, STANZA_NS_PUBSUB);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* publish = xmpp_stanza_new(ctx);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_name(publish, STANZA_NAME_PUBLISH);
|
2019-03-28 18:30:28 -04:00
|
|
|
xmpp_stanza_set_attribute(publish, STANZA_ATTR_NODE, STANZA_NS_OMEMO_DEVICELIST);
|
2019-02-21 13:04:01 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_new(ctx);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_name(item, STANZA_NAME_ITEM);
|
|
|
|
xmpp_stanza_set_attribute(item, "id", "current");
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* list = xmpp_stanza_new(ctx);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_name(list, "list");
|
|
|
|
xmpp_stanza_set_ns(list, "eu.siacs.conversations.axolotl");
|
|
|
|
|
2020-11-09 05:03:54 -05:00
|
|
|
for (GList *i = ids; i != NULL; i = i->next) {
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* device = xmpp_stanza_new(ctx);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_name(device, "device");
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = g_strdup_printf("%d", GPOINTER_TO_INT(i->data));
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_attribute(device, "id", id);
|
|
|
|
g_free(id);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(list, device);
|
|
|
|
xmpp_stanza_release(device);
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(item, list);
|
|
|
|
xmpp_stanza_add_child(publish, item);
|
|
|
|
xmpp_stanza_add_child(pubsub, publish);
|
|
|
|
xmpp_stanza_add_child(iq, pubsub);
|
|
|
|
|
|
|
|
xmpp_stanza_release(list);
|
|
|
|
xmpp_stanza_release(item);
|
|
|
|
xmpp_stanza_release(publish);
|
|
|
|
xmpp_stanza_release(pubsub);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_omemo_bundle_publish(xmpp_ctx_t* ctx, const char* const id,
|
|
|
|
uint32_t device_id,
|
|
|
|
const unsigned char* const identity_key, size_t identity_key_length,
|
|
|
|
const unsigned char* const signed_prekey, size_t signed_prekey_length,
|
|
|
|
const unsigned char* const signed_prekey_signature, size_t signed_prekey_signature_length,
|
|
|
|
GList* const prekeys, GList* const prekeys_id, GList* const prekeys_length)
|
2019-02-21 13:04:01 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2019-02-21 13:04:01 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* pubsub = xmpp_stanza_new(ctx);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_name(pubsub, STANZA_NAME_PUBSUB);
|
|
|
|
xmpp_stanza_set_ns(pubsub, STANZA_NS_PUBSUB);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* publish = xmpp_stanza_new(ctx);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_name(publish, STANZA_NAME_PUBLISH);
|
2020-07-07 08:18:57 -04:00
|
|
|
char* node = g_strdup_printf("%s:%d", "eu.siacs.conversations.axolotl.bundles", device_id);
|
2019-03-28 18:30:28 -04:00
|
|
|
xmpp_stanza_set_attribute(publish, STANZA_ATTR_NODE, node);
|
2019-02-21 13:04:01 -05:00
|
|
|
g_free(node);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_new(ctx);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_name(item, STANZA_NAME_ITEM);
|
|
|
|
xmpp_stanza_set_attribute(item, "id", "current");
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* bundle = xmpp_stanza_new(ctx);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_name(bundle, "bundle");
|
|
|
|
xmpp_stanza_set_ns(bundle, "eu.siacs.conversations.axolotl");
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* signed_prekey_public_stanza = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(signed_prekey_public_stanza, "signedPreKeyPublic");
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_attribute(signed_prekey_public_stanza, "signedPreKeyId", "1");
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* signed_prekey_public_stanza_text = xmpp_stanza_new(ctx);
|
|
|
|
char* signed_prekey_b64 = g_base64_encode(signed_prekey, signed_prekey_length);
|
2019-03-21 19:03:16 -04:00
|
|
|
xmpp_stanza_set_text(signed_prekey_public_stanza_text, signed_prekey_b64);
|
|
|
|
g_free(signed_prekey_b64);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_add_child(signed_prekey_public_stanza, signed_prekey_public_stanza_text);
|
|
|
|
xmpp_stanza_release(signed_prekey_public_stanza_text);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* signed_prekey_signature_stanza = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(signed_prekey_signature_stanza, "signedPreKeySignature");
|
2019-02-21 13:04:01 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* signed_prekey_signature_stanza_text = xmpp_stanza_new(ctx);
|
|
|
|
char* signed_prekey_signature_b64 = g_base64_encode(signed_prekey_signature, signed_prekey_signature_length);
|
2019-03-21 19:03:16 -04:00
|
|
|
xmpp_stanza_set_text(signed_prekey_signature_stanza_text, signed_prekey_signature_b64);
|
|
|
|
g_free(signed_prekey_signature_b64);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_add_child(signed_prekey_signature_stanza, signed_prekey_signature_stanza_text);
|
|
|
|
xmpp_stanza_release(signed_prekey_signature_stanza_text);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* identity_key_stanza = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(identity_key_stanza, "identityKey");
|
2019-02-21 13:04:01 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* identity_key_stanza_text = xmpp_stanza_new(ctx);
|
|
|
|
char* identity_key_b64 = g_base64_encode(identity_key, identity_key_length);
|
2019-03-21 19:03:16 -04:00
|
|
|
xmpp_stanza_set_text(identity_key_stanza_text, identity_key_b64);
|
|
|
|
g_free(identity_key_b64);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_add_child(identity_key_stanza, identity_key_stanza_text);
|
|
|
|
xmpp_stanza_release(identity_key_stanza_text);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* prekeys_stanza = xmpp_stanza_new(ctx);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_name(prekeys_stanza, "prekeys");
|
|
|
|
|
|
|
|
GList *p, *i, *l;
|
|
|
|
for (p = prekeys, i = prekeys_id, l = prekeys_length; p != NULL; p = p->next, i = i->next, l = l->next) {
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* prekey = xmpp_stanza_new(ctx);
|
2019-02-21 13:04:01 -05:00
|
|
|
xmpp_stanza_set_name(prekey, "preKeyPublic");
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = g_strdup_printf("%d", GPOINTER_TO_INT(i->data));
|
2019-03-05 13:21:15 -05:00
|
|
|
xmpp_stanza_set_attribute(prekey, "preKeyId", id);
|
2019-02-21 13:04:01 -05:00
|
|
|
g_free(id);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* prekey_text = xmpp_stanza_new(ctx);
|
|
|
|
char* prekey_b64 = g_base64_encode(p->data, GPOINTER_TO_INT(l->data));
|
2019-03-21 19:03:16 -04:00
|
|
|
xmpp_stanza_set_text(prekey_text, prekey_b64);
|
|
|
|
g_free(prekey_b64);
|
2019-02-21 13:04:01 -05:00
|
|
|
|
|
|
|
xmpp_stanza_add_child(prekey, prekey_text);
|
|
|
|
xmpp_stanza_add_child(prekeys_stanza, prekey);
|
|
|
|
xmpp_stanza_release(prekey_text);
|
|
|
|
xmpp_stanza_release(prekey);
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(bundle, signed_prekey_public_stanza);
|
|
|
|
xmpp_stanza_add_child(bundle, signed_prekey_signature_stanza);
|
|
|
|
xmpp_stanza_add_child(bundle, identity_key_stanza);
|
|
|
|
xmpp_stanza_add_child(bundle, prekeys_stanza);
|
|
|
|
xmpp_stanza_add_child(item, bundle);
|
|
|
|
xmpp_stanza_add_child(publish, item);
|
|
|
|
xmpp_stanza_add_child(pubsub, publish);
|
|
|
|
xmpp_stanza_add_child(iq, pubsub);
|
|
|
|
|
|
|
|
xmpp_stanza_release(signed_prekey_public_stanza);
|
|
|
|
xmpp_stanza_release(signed_prekey_signature_stanza);
|
|
|
|
xmpp_stanza_release(identity_key_stanza);
|
|
|
|
xmpp_stanza_release(prekeys_stanza);
|
|
|
|
xmpp_stanza_release(bundle);
|
|
|
|
xmpp_stanza_release(item);
|
|
|
|
xmpp_stanza_release(publish);
|
|
|
|
xmpp_stanza_release(pubsub);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2019-02-25 11:27:11 -05:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_omemo_bundle_request(xmpp_ctx_t* ctx, const char* const id, const char* const jid, uint32_t device_id)
|
2019-02-25 11:27:11 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, id);
|
2019-02-25 11:27:11 -05:00
|
|
|
xmpp_stanza_set_to(iq, jid);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* pubsub = xmpp_stanza_new(ctx);
|
2019-02-25 11:27:11 -05:00
|
|
|
xmpp_stanza_set_name(pubsub, STANZA_NAME_PUBSUB);
|
|
|
|
xmpp_stanza_set_ns(pubsub, STANZA_NS_PUBSUB);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* items = xmpp_stanza_new(ctx);
|
2019-02-25 11:27:11 -05:00
|
|
|
xmpp_stanza_set_name(items, "items");
|
2020-07-07 08:18:57 -04:00
|
|
|
char* node = g_strdup_printf("%s:%d", STANZA_NS_OMEMO_BUNDLES, device_id);
|
2019-03-28 18:30:28 -04:00
|
|
|
xmpp_stanza_set_attribute(items, STANZA_ATTR_NODE, node);
|
2019-02-25 11:27:11 -05:00
|
|
|
g_free(node);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(pubsub, items);
|
|
|
|
xmpp_stanza_add_child(iq, pubsub);
|
|
|
|
|
|
|
|
xmpp_stanza_release(items);
|
|
|
|
xmpp_stanza_release(pubsub);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2019-03-28 18:30:28 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_pubsub_configure_request(xmpp_ctx_t* ctx, const char* const id, const char* const jid, const char* const node)
|
2019-03-28 18:30:28 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, id);
|
2019-03-28 18:30:28 -04:00
|
|
|
xmpp_stanza_set_to(iq, jid);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* pubsub = xmpp_stanza_new(ctx);
|
2019-03-28 18:30:28 -04:00
|
|
|
xmpp_stanza_set_name(pubsub, STANZA_NAME_PUBSUB);
|
|
|
|
xmpp_stanza_set_ns(pubsub, STANZA_NS_PUBSUB_OWNER);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* configure = xmpp_stanza_new(ctx);
|
2019-03-28 18:30:28 -04:00
|
|
|
xmpp_stanza_set_name(configure, STANZA_NAME_CONFIGURE);
|
|
|
|
xmpp_stanza_set_attribute(configure, STANZA_ATTR_NODE, node);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(pubsub, configure);
|
|
|
|
xmpp_stanza_add_child(iq, pubsub);
|
|
|
|
|
|
|
|
xmpp_stanza_release(configure);
|
|
|
|
xmpp_stanza_release(pubsub);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_pubsub_configure_submit(xmpp_ctx_t* ctx, const char* const id, const char* const jid, const char* const node, DataForm* form)
|
2019-03-28 18:30:28 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2019-03-28 18:30:28 -04:00
|
|
|
xmpp_stanza_set_to(iq, jid);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* pubsub = xmpp_stanza_new(ctx);
|
2019-03-28 18:30:28 -04:00
|
|
|
xmpp_stanza_set_name(pubsub, STANZA_NAME_PUBSUB);
|
|
|
|
xmpp_stanza_set_ns(pubsub, STANZA_NS_PUBSUB_OWNER);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* configure = xmpp_stanza_new(ctx);
|
2019-03-28 18:30:28 -04:00
|
|
|
xmpp_stanza_set_name(configure, STANZA_NAME_CONFIGURE);
|
|
|
|
xmpp_stanza_set_attribute(configure, STANZA_ATTR_NODE, node);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = form_create_submission(form);
|
2019-03-28 18:30:28 -04:00
|
|
|
|
|
|
|
xmpp_stanza_add_child(configure, x);
|
|
|
|
xmpp_stanza_add_child(pubsub, configure);
|
|
|
|
xmpp_stanza_add_child(iq, pubsub);
|
|
|
|
|
|
|
|
xmpp_stanza_release(x);
|
|
|
|
xmpp_stanza_release(configure);
|
|
|
|
xmpp_stanza_release(pubsub);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
|
|
|
|
2019-04-01 13:19:39 -04:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_attach_origin_id(xmpp_ctx_t* ctx, xmpp_stanza_t* stanza, const char* const id)
|
2019-04-01 13:19:39 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* origin_id = xmpp_stanza_new(ctx);
|
2019-04-01 13:19:39 -04:00
|
|
|
xmpp_stanza_set_name(origin_id, STANZA_NAME_ORIGIN_ID);
|
|
|
|
xmpp_stanza_set_ns(origin_id, STANZA_NS_STABLE_ID);
|
|
|
|
xmpp_stanza_set_attribute(origin_id, STANZA_ATTR_ID, id);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(stanza, origin_id);
|
|
|
|
|
|
|
|
xmpp_stanza_release(origin_id);
|
|
|
|
|
|
|
|
return stanza;
|
|
|
|
}
|
|
|
|
|
2016-08-12 19:12:46 -04:00
|
|
|
static void
|
2020-07-07 08:18:57 -04:00
|
|
|
_stanza_add_unique_id(xmpp_stanza_t* stanza)
|
2016-08-12 19:12:46 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
2016-08-12 19:12:46 -04:00
|
|
|
xmpp_stanza_set_id(stanza, id);
|
|
|
|
free(id);
|
|
|
|
}
|
2018-09-06 14:32:08 -04:00
|
|
|
|
|
|
|
static char*
|
2020-07-07 08:18:57 -04:00
|
|
|
_stanza_create_sha1_hash(char* str)
|
2018-09-06 14:32:08 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
unsigned char* digest = (unsigned char*)malloc(XMPP_SHA1_DIGEST_SIZE);
|
|
|
|
assert(digest != NULL);
|
2018-09-06 14:32:08 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_sha1_digest((unsigned char*)str, strlen(str), digest);
|
2018-09-06 14:32:08 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
char* b64 = g_base64_encode(digest, XMPP_SHA1_DIGEST_SIZE);
|
|
|
|
assert(b64 != NULL);
|
|
|
|
free(digest);
|
2018-09-06 14:32:08 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
return b64;
|
2018-09-06 14:32:08 -04:00
|
|
|
}
|
2019-11-08 09:05:49 -05:00
|
|
|
|
2019-12-18 06:46:03 -05:00
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_create_avatar_retrieve_data_request(xmpp_ctx_t* ctx, const char* stanza_id, const char* const item_id, const char* const jid)
|
2019-12-18 06:46:03 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_GET, stanza_id);
|
2019-12-18 06:46:03 -05:00
|
|
|
xmpp_stanza_set_to(iq, jid);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* pubsub = xmpp_stanza_new(ctx);
|
2019-12-18 06:46:03 -05:00
|
|
|
xmpp_stanza_set_name(pubsub, STANZA_NAME_PUBSUB);
|
|
|
|
xmpp_stanza_set_ns(pubsub, STANZA_NS_PUBSUB);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* items = xmpp_stanza_new(ctx);
|
2019-12-18 06:46:03 -05:00
|
|
|
xmpp_stanza_set_name(items, "items");
|
2020-07-07 08:18:57 -04:00
|
|
|
char* node = g_strdup_printf("%s", STANZA_NS_USER_AVATAR_DATA);
|
2019-12-18 06:46:03 -05:00
|
|
|
xmpp_stanza_set_attribute(items, STANZA_ATTR_NODE, node);
|
|
|
|
g_free(node);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* item = xmpp_stanza_new(ctx);
|
2019-12-18 06:46:03 -05:00
|
|
|
xmpp_stanza_set_name(item, STANZA_NAME_ITEM);
|
2020-02-07 15:12:59 -05:00
|
|
|
xmpp_stanza_set_attribute(item, "id", item_id);
|
2019-12-18 06:46:03 -05:00
|
|
|
|
|
|
|
xmpp_stanza_add_child(items, item);
|
|
|
|
xmpp_stanza_add_child(pubsub, items);
|
|
|
|
xmpp_stanza_add_child(iq, pubsub);
|
|
|
|
|
|
|
|
xmpp_stanza_release(item);
|
|
|
|
xmpp_stanza_release(items);
|
|
|
|
xmpp_stanza_release(pubsub);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
2020-02-10 10:17:01 -05:00
|
|
|
|
|
|
|
xmpp_stanza_t*
|
2020-07-07 08:18:57 -04:00
|
|
|
stanza_attach_correction(xmpp_ctx_t* ctx, xmpp_stanza_t* stanza, const char* const replace_id)
|
2020-02-10 10:17:01 -05:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* replace_stanza = xmpp_stanza_new(ctx);
|
2020-02-10 10:17:01 -05:00
|
|
|
xmpp_stanza_set_name(replace_stanza, "replace");
|
|
|
|
xmpp_stanza_set_id(replace_stanza, replace_id);
|
|
|
|
xmpp_stanza_set_ns(replace_stanza, STANZA_NS_LAST_MESSAGE_CORRECTION);
|
|
|
|
xmpp_stanza_add_child(stanza, replace_stanza);
|
2020-04-05 08:58:28 -04:00
|
|
|
xmpp_stanza_release(replace_stanza);
|
2020-02-10 10:17:01 -05:00
|
|
|
|
|
|
|
return stanza;
|
|
|
|
}
|
2020-04-08 10:22:36 -04:00
|
|
|
|
|
|
|
xmpp_stanza_t*
|
2020-10-28 10:57:53 -04:00
|
|
|
stanza_create_mam_iq(xmpp_ctx_t* ctx, const char* const jid, const char* const startdate, const char *const lastid)
|
2020-04-08 10:22:36 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
2020-04-08 10:22:36 -04:00
|
|
|
free(id);
|
|
|
|
//xmpp_stanza_set_to(iq, jid);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* query = xmpp_stanza_new(ctx);
|
2020-04-08 10:22:36 -04:00
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_MAM2);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* x = xmpp_stanza_new(ctx);
|
2020-04-08 10:22:36 -04:00
|
|
|
xmpp_stanza_set_name(x, STANZA_NAME_X);
|
|
|
|
xmpp_stanza_set_ns(x, STANZA_NS_DATA);
|
|
|
|
xmpp_stanza_set_type(x, "submit");
|
|
|
|
|
|
|
|
// field FORM_TYPE MAM2
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* field_form_type = xmpp_stanza_new(ctx);
|
2020-04-08 10:22:36 -04:00
|
|
|
xmpp_stanza_set_name(field_form_type, STANZA_NAME_FIELD);
|
|
|
|
xmpp_stanza_set_attribute(field_form_type, STANZA_ATTR_VAR, "FORM_TYPE");
|
|
|
|
xmpp_stanza_set_type(field_form_type, "hidden");
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* value_mam = xmpp_stanza_new(ctx);
|
2020-04-08 10:22:36 -04:00
|
|
|
xmpp_stanza_set_name(value_mam, STANZA_NAME_VALUE);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* mam_text = xmpp_stanza_new(ctx);
|
2020-04-08 10:22:36 -04:00
|
|
|
xmpp_stanza_set_text(mam_text, STANZA_NS_MAM2);
|
|
|
|
xmpp_stanza_add_child(value_mam, mam_text);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(field_form_type, value_mam);
|
|
|
|
|
|
|
|
// field 'with'
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* field_with = xmpp_stanza_new(ctx);
|
2020-04-08 10:22:36 -04:00
|
|
|
xmpp_stanza_set_name(field_with, STANZA_NAME_FIELD);
|
|
|
|
xmpp_stanza_set_attribute(field_with, STANZA_ATTR_VAR, "with");
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* value_with = xmpp_stanza_new(ctx);
|
2020-04-08 10:22:36 -04:00
|
|
|
xmpp_stanza_set_name(value_with, STANZA_NAME_VALUE);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* with_text = xmpp_stanza_new(ctx);
|
2020-04-08 10:22:36 -04:00
|
|
|
xmpp_stanza_set_text(with_text, jid);
|
|
|
|
xmpp_stanza_add_child(value_with, with_text);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(field_with, value_with);
|
|
|
|
|
|
|
|
// field 'start'
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* field_start = xmpp_stanza_new(ctx);
|
2020-04-08 10:22:36 -04:00
|
|
|
xmpp_stanza_set_name(field_start, STANZA_NAME_FIELD);
|
|
|
|
xmpp_stanza_set_attribute(field_start, STANZA_ATTR_VAR, "start");
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* value_start = xmpp_stanza_new(ctx);
|
2020-04-08 10:22:36 -04:00
|
|
|
xmpp_stanza_set_name(value_start, STANZA_NAME_VALUE);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
xmpp_stanza_t* date_text = xmpp_stanza_new(ctx);
|
2020-04-08 10:22:36 -04:00
|
|
|
xmpp_stanza_set_text(date_text, startdate);
|
|
|
|
xmpp_stanza_add_child(value_start, date_text);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(field_start, value_start);
|
|
|
|
|
2020-10-28 10:57:53 -04:00
|
|
|
// 4.3.2 set/rsm
|
|
|
|
xmpp_stanza_t *after, *after_text, *set;
|
|
|
|
if (lastid) {
|
|
|
|
set = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(set, STANZA_TYPE_SET);
|
|
|
|
xmpp_stanza_set_ns(set, STANZA_NS_RSM);
|
|
|
|
|
|
|
|
after = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(after, STANZA_NAME_AFTER);
|
|
|
|
|
|
|
|
after_text = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_text(after_text, lastid);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(after, after_text);
|
|
|
|
xmpp_stanza_add_child(set, after);
|
|
|
|
}
|
|
|
|
|
2020-04-08 10:22:36 -04:00
|
|
|
// add and release
|
|
|
|
xmpp_stanza_add_child(iq, query);
|
|
|
|
xmpp_stanza_add_child(query, x);
|
|
|
|
xmpp_stanza_add_child(x, field_form_type);
|
|
|
|
xmpp_stanza_add_child(x, field_with);
|
|
|
|
xmpp_stanza_add_child(x, field_start);
|
|
|
|
|
2020-10-28 10:57:53 -04:00
|
|
|
if (lastid) {
|
|
|
|
xmpp_stanza_add_child(query, after);
|
|
|
|
|
|
|
|
xmpp_stanza_release(after_text);
|
|
|
|
xmpp_stanza_release(after);
|
|
|
|
xmpp_stanza_release(set);
|
|
|
|
}
|
|
|
|
|
2020-04-08 10:22:36 -04:00
|
|
|
xmpp_stanza_release(mam_text);
|
|
|
|
xmpp_stanza_release(with_text);
|
|
|
|
xmpp_stanza_release(date_text);
|
|
|
|
xmpp_stanza_release(value_mam);
|
|
|
|
xmpp_stanza_release(value_with);
|
|
|
|
xmpp_stanza_release(value_start);
|
|
|
|
xmpp_stanza_release(field_form_type);
|
|
|
|
xmpp_stanza_release(field_with);
|
|
|
|
xmpp_stanza_release(field_start);
|
|
|
|
xmpp_stanza_release(x);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
2021-03-11 07:56:06 -05:00
|
|
|
|
|
|
|
xmpp_stanza_t*
|
|
|
|
stanza_change_password(xmpp_ctx_t* ctx, const char* const user, const char* const password)
|
|
|
|
{
|
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
|
|
|
free(id);
|
|
|
|
|
|
|
|
xmpp_stanza_t* change_password = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(change_password, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(change_password, STANZA_NS_REGISTER);
|
|
|
|
|
|
|
|
xmpp_stanza_t* username_st = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(username_st, STANZA_NAME_USERNAME);
|
|
|
|
xmpp_stanza_t* username_text = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_text(username_text, user);
|
|
|
|
xmpp_stanza_add_child(username_st, username_text);
|
|
|
|
xmpp_stanza_release(username_text);
|
|
|
|
|
|
|
|
xmpp_stanza_t* password_st = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(password_st, STANZA_NAME_PASSWORD);
|
|
|
|
xmpp_stanza_t* password_text = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_text(password_text, password);
|
|
|
|
xmpp_stanza_add_child(password_st, password_text);
|
|
|
|
xmpp_stanza_release(password_text);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(change_password, username_st);
|
|
|
|
xmpp_stanza_release(username_st);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(change_password, password_st);
|
|
|
|
xmpp_stanza_release(password_st);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, change_password);
|
|
|
|
xmpp_stanza_release(change_password);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
2021-03-12 06:55:19 -05:00
|
|
|
|
|
|
|
xmpp_stanza_t*
|
|
|
|
stanza_request_voice(xmpp_ctx_t* ctx, const char* const room)
|
|
|
|
{
|
|
|
|
char* id = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* message = xmpp_message_new(ctx, NULL, room, id);
|
|
|
|
free(id);
|
|
|
|
|
|
|
|
xmpp_stanza_t* request_voice_st = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(request_voice_st, STANZA_NAME_X);
|
|
|
|
xmpp_stanza_set_type(request_voice_st, STANZA_TYPE_SUBMIT);
|
|
|
|
xmpp_stanza_set_ns(request_voice_st, STANZA_NS_DATA);
|
|
|
|
|
|
|
|
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_t* value_request = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(value_request, STANZA_NAME_VALUE);
|
|
|
|
|
|
|
|
xmpp_stanza_t* request_text = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_text(request_text, STANZA_NS_VOICEREQUEST);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(value_request, request_text);
|
|
|
|
xmpp_stanza_release(request_text);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(form_type, value_request);
|
|
|
|
xmpp_stanza_release(value_request);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(request_voice_st, form_type);
|
|
|
|
xmpp_stanza_release(form_type);
|
|
|
|
|
|
|
|
xmpp_stanza_t* request_role = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(request_role, STANZA_NAME_FIELD);
|
|
|
|
xmpp_stanza_set_attribute(request_role, STANZA_ATTR_VAR, "muc#role");
|
|
|
|
xmpp_stanza_set_attribute(request_role, STANZA_ATTR_TYPE, "list-single");
|
|
|
|
xmpp_stanza_set_attribute(request_role, STANZA_ATTR_LABEL, "Requested role");
|
|
|
|
|
|
|
|
xmpp_stanza_t* value_role = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(value_role, STANZA_NAME_VALUE);
|
|
|
|
|
|
|
|
xmpp_stanza_t* role_text = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_text(role_text, "participant");
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(value_role, role_text);
|
|
|
|
xmpp_stanza_release(role_text);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(request_role, value_role);
|
|
|
|
xmpp_stanza_release(value_role);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(request_voice_st, request_role);
|
|
|
|
xmpp_stanza_release(request_role);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(message, request_voice_st);
|
|
|
|
xmpp_stanza_release(request_voice_st);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
2021-03-17 11:16:59 -04:00
|
|
|
|
|
|
|
xmpp_stanza_t*
|
|
|
|
stanza_create_approve_voice(xmpp_ctx_t* ctx, const char* const id, const char* const jid, const char* const node, DataForm* form)
|
|
|
|
{
|
|
|
|
char* stid = connection_create_stanza_id();
|
|
|
|
xmpp_stanza_t* message = xmpp_message_new(ctx, NULL, jid, stid);
|
|
|
|
free(stid);
|
|
|
|
|
|
|
|
xmpp_stanza_t* x = form_create_submission(form);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(message, x);
|
|
|
|
xmpp_stanza_release(x);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
2021-03-18 15:32:12 -04:00
|
|
|
|
|
|
|
xmpp_stanza_t*
|
|
|
|
stanza_create_muc_register_nick(xmpp_ctx_t* ctx, const char* const id, const char* const jid, const char* const node, DataForm* form)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t* iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
|
|
|
|
|
|
|
|
xmpp_stanza_set_to(iq, jid);
|
|
|
|
|
|
|
|
xmpp_stanza_t* x = form_create_submission(form);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(iq, x);
|
|
|
|
xmpp_stanza_release(x);
|
|
|
|
|
|
|
|
return iq;
|
|
|
|
}
|
2021-06-29 16:52:45 -04:00
|
|
|
|
2021-06-30 05:07:02 -04:00
|
|
|
static void
|
|
|
|
_contact_addresses_list_free(GSList* list)
|
|
|
|
{
|
|
|
|
if (list) {
|
|
|
|
g_slist_free_full(list, g_free);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-30 04:42:36 -04:00
|
|
|
GHashTable*
|
2021-06-29 16:52:45 -04:00
|
|
|
stanza_get_service_contact_addresses(xmpp_ctx_t* ctx, xmpp_stanza_t* stanza)
|
|
|
|
{
|
2021-06-30 05:07:02 -04:00
|
|
|
GHashTable* addresses = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, (GDestroyNotify)_contact_addresses_list_free);
|
2021-06-30 04:42:36 -04:00
|
|
|
|
2021-06-29 16:52:45 -04:00
|
|
|
xmpp_stanza_t* fields = xmpp_stanza_get_children(stanza);
|
|
|
|
while (fields) {
|
|
|
|
const char* child_name = xmpp_stanza_get_name(fields);
|
|
|
|
const char* child_type = xmpp_stanza_get_type(fields);
|
|
|
|
|
|
|
|
if (g_strcmp0(child_name, STANZA_NAME_FIELD) == 0 && g_strcmp0(child_type, STANZA_TYPE_LIST_MULTI) == 0) {
|
2021-06-30 05:07:02 -04:00
|
|
|
// extract key (eg 'admin-addresses')
|
2021-06-29 16:52:45 -04:00
|
|
|
const char* var = xmpp_stanza_get_attribute(fields, STANZA_ATTR_VAR );
|
|
|
|
|
2021-06-30 05:07:02 -04:00
|
|
|
// extract values (a list of contact addresses eg mailto:xmpp@shakespeare.lit, xmpp:admins@shakespeare.lit)
|
2021-06-29 16:52:45 -04:00
|
|
|
xmpp_stanza_t* values = xmpp_stanza_get_children(fields);
|
2021-06-30 05:07:02 -04:00
|
|
|
GSList* val_list = NULL;
|
2021-06-30 04:42:36 -04:00
|
|
|
while (values) {
|
2021-06-29 16:52:45 -04:00
|
|
|
const char* value_name = xmpp_stanza_get_name(values);
|
|
|
|
if (value_name && (g_strcmp0(value_name, STANZA_NAME_VALUE) == 0)) {
|
|
|
|
char* value_text = xmpp_stanza_get_text(values);
|
|
|
|
if (value_text) {
|
2021-06-30 05:07:02 -04:00
|
|
|
val_list = g_slist_append(val_list, g_strdup(value_text));
|
2021-06-30 04:42:36 -04:00
|
|
|
|
2021-06-29 16:52:45 -04:00
|
|
|
xmpp_free(ctx, value_text);
|
|
|
|
}
|
|
|
|
}
|
2021-06-30 04:42:36 -04:00
|
|
|
|
|
|
|
values = xmpp_stanza_get_next(values);
|
2021-06-29 16:52:45 -04:00
|
|
|
}
|
2021-06-30 05:07:02 -04:00
|
|
|
|
|
|
|
// add to list
|
|
|
|
if (g_slist_length(val_list) > 0) {
|
|
|
|
g_hash_table_insert(addresses, g_strdup(var), val_list);
|
|
|
|
}
|
2021-06-29 16:52:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fields = xmpp_stanza_get_next(fields);
|
|
|
|
}
|
2021-06-30 04:42:36 -04:00
|
|
|
|
|
|
|
return addresses;
|
2021-06-29 16:52:45 -04:00
|
|
|
}
|