2013-01-19 19:16:12 -05:00
|
|
|
/*
|
2013-02-02 14:47:41 -05:00
|
|
|
* capabilities.c
|
2013-01-19 19:16:12 -05:00
|
|
|
*
|
2015-02-10 18:16:09 -05:00
|
|
|
* Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
|
2013-01-19 19:16:12 -05:00
|
|
|
*
|
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2014-08-24 15:57:39 -04:00
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link the code of portions of this program with the OpenSSL library under
|
|
|
|
* certain conditions as described in each individual source file, and
|
|
|
|
* distribute linked combinations including the two.
|
|
|
|
*
|
|
|
|
* You must obey the GNU General Public License in all respects for all of the
|
|
|
|
* code used other than OpenSSL. If you modify file(s) with this exception, you
|
|
|
|
* may extend this exception to your version of the file(s), but you are not
|
|
|
|
* obligated to do so. If you do not wish to do so, delete this exception
|
|
|
|
* statement from your version. If you delete this exception statement from all
|
|
|
|
* source files in the program, then also delete it here.
|
|
|
|
*
|
2013-01-19 19:16:12 -05:00
|
|
|
*/
|
|
|
|
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
2013-09-16 20:28:35 -04:00
|
|
|
#ifdef HAVE_GIT_VERSION
|
2014-03-05 19:06:22 -05:00
|
|
|
#include "gitversion.h"
|
2013-09-16 20:28:35 -04:00
|
|
|
#endif
|
|
|
|
|
2013-01-19 19:16:12 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2013-01-19 19:35:40 -05:00
|
|
|
#include <glib.h>
|
2014-10-18 16:40:11 -04:00
|
|
|
#include <glib/gstdio.h>
|
2015-09-21 16:40:04 -04:00
|
|
|
|
|
|
|
#ifdef HAVE_LIBMESODE
|
|
|
|
#include <mesode.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LIBSTROPHE
|
2013-01-21 17:18:15 -05:00
|
|
|
#include <strophe.h>
|
2015-09-21 16:40:04 -04:00
|
|
|
#endif
|
2013-01-19 19:35:40 -05:00
|
|
|
|
2013-01-19 19:16:12 -05:00
|
|
|
#include "common.h"
|
2014-09-21 16:43:42 -04:00
|
|
|
#include "log.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "xmpp/xmpp.h"
|
|
|
|
#include "xmpp/stanza.h"
|
2014-09-05 16:04:16 -04:00
|
|
|
#include "xmpp/form.h"
|
2014-09-22 19:08:26 -04:00
|
|
|
#include "xmpp/capabilities.h"
|
2013-01-19 19:16:12 -05:00
|
|
|
|
2014-09-21 20:36:45 -04:00
|
|
|
static gchar *cache_loc;
|
|
|
|
static GKeyFile *cache;
|
|
|
|
|
2014-11-26 20:08:02 -05:00
|
|
|
static GHashTable *jid_to_ver;
|
|
|
|
static GHashTable *jid_to_caps;
|
2013-01-19 19:57:44 -05:00
|
|
|
|
2014-09-22 19:08:26 -04:00
|
|
|
static char *my_sha1;
|
|
|
|
|
2014-09-21 20:36:45 -04:00
|
|
|
static gchar* _get_cache_file(void);
|
|
|
|
static void _save_cache(void);
|
2015-10-25 20:14:23 -04:00
|
|
|
static Capabilities* _caps_by_ver(const char *const ver);
|
|
|
|
static Capabilities* _caps_by_jid(const char *const jid);
|
|
|
|
Capabilities* _caps_copy(Capabilities *caps);
|
2013-01-19 19:35:40 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
caps_init(void)
|
|
|
|
{
|
2014-09-21 20:36:45 -04:00
|
|
|
log_info("Loading capabilities cache");
|
|
|
|
cache_loc = _get_cache_file();
|
|
|
|
|
2014-10-18 16:40:11 -04:00
|
|
|
if (g_file_test(cache_loc, G_FILE_TEST_EXISTS)) {
|
|
|
|
g_chmod(cache_loc, S_IRUSR | S_IWUSR);
|
|
|
|
}
|
|
|
|
|
2014-09-21 20:36:45 -04:00
|
|
|
cache = g_key_file_new();
|
|
|
|
g_key_file_load_from_file(cache, cache_loc, G_KEY_FILE_KEEP_COMMENTS,
|
|
|
|
NULL);
|
|
|
|
|
2014-11-26 20:08:02 -05:00
|
|
|
jid_to_ver = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
|
2014-12-22 17:13:42 -05:00
|
|
|
jid_to_caps = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, (GDestroyNotify)caps_destroy);
|
2014-09-22 19:08:26 -04:00
|
|
|
|
|
|
|
my_sha1 = NULL;
|
2013-01-19 19:35:40 -05:00
|
|
|
}
|
|
|
|
|
2013-01-19 19:57:44 -05:00
|
|
|
void
|
2015-10-25 20:14:23 -04:00
|
|
|
caps_add_by_ver(const char *const ver, Capabilities *caps)
|
2013-01-19 19:16:12 -05:00
|
|
|
{
|
2014-09-21 20:36:45 -04:00
|
|
|
gboolean cached = g_key_file_has_group(cache, ver);
|
|
|
|
if (!cached) {
|
2014-09-22 19:22:59 -04:00
|
|
|
if (caps->name) {
|
|
|
|
g_key_file_set_string(cache, ver, "name", caps->name);
|
|
|
|
}
|
2014-09-21 20:36:45 -04:00
|
|
|
if (caps->category) {
|
|
|
|
g_key_file_set_string(cache, ver, "category", caps->category);
|
|
|
|
}
|
|
|
|
if (caps->type) {
|
|
|
|
g_key_file_set_string(cache, ver, "type", caps->type);
|
|
|
|
}
|
|
|
|
if (caps->software) {
|
|
|
|
g_key_file_set_string(cache, ver, "software", caps->software);
|
|
|
|
}
|
|
|
|
if (caps->software_version) {
|
|
|
|
g_key_file_set_string(cache, ver, "software_version", caps->software_version);
|
|
|
|
}
|
|
|
|
if (caps->os) {
|
|
|
|
g_key_file_set_string(cache, ver, "os", caps->os);
|
|
|
|
}
|
|
|
|
if (caps->os_version) {
|
|
|
|
g_key_file_set_string(cache, ver, "os_version", caps->os_version);
|
|
|
|
}
|
|
|
|
if (caps->features) {
|
|
|
|
GSList *curr_feature = caps->features;
|
|
|
|
int num = g_slist_length(caps->features);
|
|
|
|
const gchar* features_list[num];
|
|
|
|
int curr = 0;
|
|
|
|
while (curr_feature) {
|
2014-09-23 20:06:49 -04:00
|
|
|
features_list[curr++] = curr_feature->data;
|
2014-09-21 20:36:45 -04:00
|
|
|
curr_feature = g_slist_next(curr_feature);
|
|
|
|
}
|
|
|
|
g_key_file_set_string_list(cache, ver, "features", features_list, num);
|
|
|
|
}
|
|
|
|
|
|
|
|
_save_cache();
|
|
|
|
}
|
2013-01-19 19:16:12 -05:00
|
|
|
}
|
|
|
|
|
2014-09-20 18:50:19 -04:00
|
|
|
void
|
2015-10-25 20:14:23 -04:00
|
|
|
caps_add_by_jid(const char *const jid, Capabilities *caps)
|
2014-09-20 18:50:19 -04:00
|
|
|
{
|
2014-11-26 20:08:02 -05:00
|
|
|
g_hash_table_insert(jid_to_caps, strdup(jid), caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-10-25 20:14:23 -04:00
|
|
|
caps_map_jid_to_ver(const char *const jid, const char *const ver)
|
2014-11-26 20:08:02 -05:00
|
|
|
{
|
|
|
|
g_hash_table_insert(jid_to_ver, strdup(jid), strdup(ver));
|
2014-09-20 18:50:19 -04:00
|
|
|
}
|
|
|
|
|
2013-01-19 19:57:44 -05:00
|
|
|
gboolean
|
2015-10-25 20:14:23 -04:00
|
|
|
caps_contains(const char *const ver)
|
2013-01-19 19:16:12 -05:00
|
|
|
{
|
2014-11-26 20:08:02 -05:00
|
|
|
return (g_key_file_has_group(cache, ver));
|
2013-01-19 19:16:12 -05:00
|
|
|
}
|
2013-01-19 19:35:40 -05:00
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
static Capabilities*
|
|
|
|
_caps_by_ver(const char *const ver)
|
2013-01-19 21:26:54 -05:00
|
|
|
{
|
2014-11-26 20:08:02 -05:00
|
|
|
if (g_key_file_has_group(cache, ver)) {
|
2014-09-21 20:36:45 -04:00
|
|
|
Capabilities *new_caps = malloc(sizeof(struct capabilities_t));
|
|
|
|
|
2014-11-26 20:08:02 -05:00
|
|
|
char *category = g_key_file_get_string(cache, ver, "category", NULL);
|
2014-09-21 20:36:45 -04:00
|
|
|
if (category) {
|
2015-02-09 16:36:04 -05:00
|
|
|
new_caps->category = category;
|
2014-09-21 20:36:45 -04:00
|
|
|
} else {
|
|
|
|
new_caps->category = NULL;
|
|
|
|
}
|
|
|
|
|
2014-11-26 20:08:02 -05:00
|
|
|
char *type = g_key_file_get_string(cache, ver, "type", NULL);
|
2014-09-21 20:36:45 -04:00
|
|
|
if (type) {
|
2015-02-09 16:36:04 -05:00
|
|
|
new_caps->type = type;
|
2014-09-21 20:36:45 -04:00
|
|
|
} else {
|
|
|
|
new_caps->type = NULL;
|
|
|
|
}
|
|
|
|
|
2014-11-26 20:08:02 -05:00
|
|
|
char *name = g_key_file_get_string(cache, ver, "name", NULL);
|
2014-09-21 20:36:45 -04:00
|
|
|
if (name) {
|
2015-02-09 16:36:04 -05:00
|
|
|
new_caps->name = name;
|
2014-09-21 20:36:45 -04:00
|
|
|
} else {
|
|
|
|
new_caps->name = NULL;
|
|
|
|
}
|
|
|
|
|
2014-11-26 20:08:02 -05:00
|
|
|
char *software = g_key_file_get_string(cache, ver, "software", NULL);
|
2014-09-21 20:36:45 -04:00
|
|
|
if (software) {
|
2015-02-09 16:36:04 -05:00
|
|
|
new_caps->software = software;
|
2014-09-21 20:36:45 -04:00
|
|
|
} else {
|
|
|
|
new_caps->software = NULL;
|
|
|
|
}
|
|
|
|
|
2014-11-26 20:08:02 -05:00
|
|
|
char *software_version = g_key_file_get_string(cache, ver, "software_version", NULL);
|
2014-09-21 20:36:45 -04:00
|
|
|
if (software_version) {
|
2015-02-09 16:36:04 -05:00
|
|
|
new_caps->software_version = software_version;
|
2014-09-21 20:36:45 -04:00
|
|
|
} else {
|
|
|
|
new_caps->software_version = NULL;
|
|
|
|
}
|
|
|
|
|
2014-11-26 20:08:02 -05:00
|
|
|
char *os = g_key_file_get_string(cache, ver, "os", NULL);
|
2014-09-21 20:36:45 -04:00
|
|
|
if (os) {
|
2015-02-09 16:36:04 -05:00
|
|
|
new_caps->os = os;
|
2014-09-21 20:36:45 -04:00
|
|
|
} else {
|
|
|
|
new_caps->os = NULL;
|
|
|
|
}
|
|
|
|
|
2014-11-26 20:08:02 -05:00
|
|
|
char *os_version = g_key_file_get_string(cache, ver, "os_version", NULL);
|
2014-09-21 20:36:45 -04:00
|
|
|
if (os_version) {
|
2015-02-09 16:36:04 -05:00
|
|
|
new_caps->os_version = os_version;
|
2014-09-21 20:36:45 -04:00
|
|
|
} else {
|
|
|
|
new_caps->os_version = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
gsize features_len = 0;
|
2014-11-26 20:08:02 -05:00
|
|
|
gchar **features = g_key_file_get_string_list(cache, ver, "features", &features_len, NULL);
|
2015-05-04 18:15:15 -04:00
|
|
|
if (features && features_len > 0) {
|
2014-09-21 20:36:45 -04:00
|
|
|
GSList *features_list = NULL;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < features_len; i++) {
|
|
|
|
features_list = g_slist_append(features_list, strdup(features[i]));
|
|
|
|
}
|
|
|
|
new_caps->features = features_list;
|
|
|
|
g_strfreev(features);
|
|
|
|
} else {
|
|
|
|
new_caps->features = NULL;
|
|
|
|
}
|
|
|
|
return new_caps;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
2013-01-19 21:26:54 -05:00
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
static Capabilities*
|
|
|
|
_caps_by_jid(const char *const jid)
|
2014-11-26 20:08:02 -05:00
|
|
|
{
|
|
|
|
return g_hash_table_lookup(jid_to_caps, jid);
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
Capabilities*
|
|
|
|
caps_lookup(const char *const jid)
|
2014-09-20 18:50:19 -04:00
|
|
|
{
|
2014-11-26 20:08:02 -05:00
|
|
|
char *ver = g_hash_table_lookup(jid_to_ver, jid);
|
2014-09-20 18:50:19 -04:00
|
|
|
if (ver) {
|
2014-11-26 20:08:02 -05:00
|
|
|
Capabilities *caps = _caps_by_ver(ver);
|
2014-09-20 18:50:19 -04:00
|
|
|
if (caps) {
|
2014-11-26 20:08:02 -05:00
|
|
|
log_debug("Capabilities lookup %s, found by verification string %s.", jid, ver);
|
2014-09-20 18:50:19 -04:00
|
|
|
return caps;
|
|
|
|
}
|
2014-11-26 20:08:02 -05:00
|
|
|
} else {
|
|
|
|
Capabilities *caps = _caps_by_jid(jid);
|
|
|
|
if (caps) {
|
|
|
|
log_debug("Capabilities lookup %s, found by JID.", jid);
|
|
|
|
return _caps_copy(caps);
|
|
|
|
}
|
2014-09-20 18:50:19 -04:00
|
|
|
}
|
|
|
|
|
2014-11-26 20:08:02 -05:00
|
|
|
log_debug("Capabilities lookup %s, none found.", jid);
|
2014-09-20 18:50:19 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
Capabilities*
|
2014-11-26 20:08:02 -05:00
|
|
|
_caps_copy(Capabilities *caps)
|
|
|
|
{
|
|
|
|
if (!caps) {
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
Capabilities *result = (Capabilities *)malloc(sizeof(Capabilities));
|
|
|
|
result->category = caps->category ? strdup(caps->category) : NULL;
|
|
|
|
result->type = caps->type ? strdup(caps->type) : NULL;
|
|
|
|
result->name = caps->name ? strdup(caps->name) : NULL;
|
|
|
|
result->software = caps->software ? strdup(caps->software) : NULL;
|
|
|
|
result->software_version = caps->software_version ? strdup(caps->software_version) : NULL;
|
|
|
|
result->os = caps->os ? strdup(caps->os) : NULL;
|
|
|
|
result->os_version = caps->os_version ? strdup(caps->os_version) : NULL;
|
|
|
|
|
|
|
|
result->features = NULL;
|
|
|
|
GSList *curr = caps->features;
|
|
|
|
while (curr) {
|
|
|
|
result->features = g_slist_append(result->features, strdup(curr->data));
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
char*
|
|
|
|
caps_create_sha1_str(xmpp_stanza_t *const query)
|
2013-01-21 17:18:15 -05:00
|
|
|
{
|
2013-01-22 19:21:05 -05:00
|
|
|
char *category = NULL;
|
|
|
|
char *type = NULL;
|
|
|
|
char *lang = NULL;
|
|
|
|
char *name = NULL;
|
|
|
|
char *feature_str = NULL;
|
2013-01-21 17:18:15 -05:00
|
|
|
GSList *identities = NULL;
|
|
|
|
GSList *features = NULL;
|
|
|
|
GSList *form_names = NULL;
|
2013-01-22 19:21:05 -05:00
|
|
|
DataForm *form = NULL;
|
|
|
|
FormField *field = NULL;
|
2014-09-05 16:04:16 -04:00
|
|
|
GHashTable *forms = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, (GDestroyNotify)form_destroy);
|
2013-01-21 17:18:15 -05:00
|
|
|
|
|
|
|
xmpp_stanza_t *child = xmpp_stanza_get_children(query);
|
2014-09-21 16:43:42 -04:00
|
|
|
while (child) {
|
2013-01-21 17:18:15 -05:00
|
|
|
if (g_strcmp0(xmpp_stanza_get_name(child), STANZA_NAME_IDENTITY) == 0) {
|
2013-01-23 17:24:54 -05:00
|
|
|
category = xmpp_stanza_get_attribute(child, "category");
|
|
|
|
type = xmpp_stanza_get_attribute(child, "type");
|
|
|
|
lang = xmpp_stanza_get_attribute(child, "xml:lang");
|
|
|
|
name = xmpp_stanza_get_attribute(child, "name");
|
2013-01-21 17:18:15 -05:00
|
|
|
|
2013-08-03 07:38:38 -04:00
|
|
|
GString *identity_str = g_string_new(category);
|
2013-01-21 17:18:15 -05:00
|
|
|
g_string_append(identity_str, "/");
|
2014-09-21 16:43:42 -04:00
|
|
|
if (type) {
|
2013-08-03 07:38:38 -04:00
|
|
|
g_string_append(identity_str, type);
|
2013-01-21 17:18:15 -05:00
|
|
|
}
|
|
|
|
g_string_append(identity_str, "/");
|
2014-09-21 16:43:42 -04:00
|
|
|
if (lang) {
|
2013-08-03 07:38:38 -04:00
|
|
|
g_string_append(identity_str, lang);
|
2013-01-21 17:18:15 -05:00
|
|
|
}
|
|
|
|
g_string_append(identity_str, "/");
|
2014-09-21 16:43:42 -04:00
|
|
|
if (name) {
|
2013-08-03 07:38:38 -04:00
|
|
|
g_string_append(identity_str, name);
|
2013-01-21 17:18:15 -05:00
|
|
|
}
|
|
|
|
g_string_append(identity_str, "<");
|
2013-08-25 19:42:01 -04:00
|
|
|
identities = g_slist_insert_sorted(identities, g_strdup(identity_str->str), (GCompareFunc)strcmp);
|
2013-01-22 19:21:05 -05:00
|
|
|
g_string_free(identity_str, TRUE);
|
2013-01-21 17:18:15 -05:00
|
|
|
} else if (g_strcmp0(xmpp_stanza_get_name(child), STANZA_NAME_FEATURE) == 0) {
|
2013-01-23 17:24:54 -05:00
|
|
|
feature_str = xmpp_stanza_get_attribute(child, "var");
|
2013-08-25 19:42:01 -04:00
|
|
|
features = g_slist_insert_sorted(features, g_strdup(feature_str), (GCompareFunc)strcmp);
|
2013-01-21 17:18:15 -05:00
|
|
|
} else if (g_strcmp0(xmpp_stanza_get_name(child), STANZA_NAME_X) == 0) {
|
2014-09-21 16:43:42 -04:00
|
|
|
if (g_strcmp0(xmpp_stanza_get_ns(child), STANZA_NS_DATA) == 0) {
|
2014-09-05 16:04:16 -04:00
|
|
|
form = form_create(child);
|
2014-09-13 16:55:46 -04:00
|
|
|
char *form_type = form_get_form_type_field(form);
|
2014-09-06 17:40:57 -04:00
|
|
|
form_names = g_slist_insert_sorted(form_names, g_strdup(form_type), (GCompareFunc)strcmp);
|
|
|
|
g_hash_table_insert(forms, g_strdup(form_type), form);
|
2013-01-21 17:18:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
child = xmpp_stanza_get_next(child);
|
|
|
|
}
|
|
|
|
|
2014-09-21 16:43:42 -04:00
|
|
|
GString *s = g_string_new("");
|
|
|
|
|
2013-01-21 17:18:15 -05:00
|
|
|
GSList *curr = identities;
|
2014-09-21 16:43:42 -04:00
|
|
|
while (curr) {
|
2013-08-03 07:38:38 -04:00
|
|
|
g_string_append(s, curr->data);
|
2013-01-21 17:18:15 -05:00
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
curr = features;
|
2014-09-21 16:43:42 -04:00
|
|
|
while (curr) {
|
2013-08-03 07:38:38 -04:00
|
|
|
g_string_append(s, curr->data);
|
2013-01-21 17:18:15 -05:00
|
|
|
g_string_append(s, "<");
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
curr = form_names;
|
2014-09-21 16:43:42 -04:00
|
|
|
while (curr) {
|
2013-01-22 19:21:05 -05:00
|
|
|
form = g_hash_table_lookup(forms, curr->data);
|
2014-09-13 16:55:46 -04:00
|
|
|
char *form_type = form_get_form_type_field(form);
|
2014-09-06 17:40:57 -04:00
|
|
|
g_string_append(s, form_type);
|
2013-01-21 17:18:15 -05:00
|
|
|
g_string_append(s, "<");
|
|
|
|
|
2014-09-21 16:43:42 -04:00
|
|
|
GSList *sorted_fields = form_get_non_form_type_fields_sorted(form);
|
|
|
|
GSList *curr_field = sorted_fields;
|
|
|
|
while (curr_field) {
|
2013-01-22 19:21:05 -05:00
|
|
|
field = curr_field->data;
|
2013-08-03 07:38:38 -04:00
|
|
|
g_string_append(s, field->var);
|
2013-02-05 15:36:21 -05:00
|
|
|
g_string_append(s, "<");
|
2014-09-21 16:43:42 -04:00
|
|
|
|
|
|
|
GSList *sorted_values = form_get_field_values_sorted(field);
|
|
|
|
GSList *curr_value = sorted_values;
|
|
|
|
while (curr_value) {
|
2013-08-03 07:38:38 -04:00
|
|
|
g_string_append(s, curr_value->data);
|
2013-01-21 17:18:15 -05:00
|
|
|
g_string_append(s, "<");
|
|
|
|
curr_value = g_slist_next(curr_value);
|
|
|
|
}
|
2014-09-21 16:43:42 -04:00
|
|
|
g_slist_free(sorted_values);
|
2013-02-03 12:19:10 -05:00
|
|
|
curr_field = g_slist_next(curr_field);
|
2013-01-21 17:18:15 -05:00
|
|
|
}
|
2014-09-21 16:43:42 -04:00
|
|
|
g_slist_free(sorted_fields);
|
2013-02-03 12:19:10 -05:00
|
|
|
|
|
|
|
curr = g_slist_next(curr);
|
2013-01-21 17:18:15 -05:00
|
|
|
}
|
|
|
|
|
2014-06-15 14:08:18 -04:00
|
|
|
char *result = p_sha1_hash(s->str);
|
2013-01-21 17:18:15 -05:00
|
|
|
|
|
|
|
g_string_free(s, TRUE);
|
2013-08-03 07:38:38 -04:00
|
|
|
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);
|
2013-01-21 17:18:15 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
Capabilities*
|
2014-09-18 19:49:48 -04:00
|
|
|
caps_create(xmpp_stanza_t *query)
|
|
|
|
{
|
2014-09-21 20:36:45 -04:00
|
|
|
char *category = NULL;
|
|
|
|
char *type = NULL;
|
|
|
|
char *name = NULL;
|
|
|
|
char *software = NULL;
|
|
|
|
char *software_version = NULL;
|
|
|
|
char *os = NULL;
|
|
|
|
char *os_version = NULL;
|
2014-09-18 19:49:48 -04:00
|
|
|
GSList *features = NULL;
|
|
|
|
|
|
|
|
xmpp_stanza_t *softwareinfo = xmpp_stanza_get_child_by_ns(query, STANZA_NS_DATA);
|
2015-05-04 18:15:15 -04:00
|
|
|
if (softwareinfo) {
|
2014-09-18 19:49:48 -04:00
|
|
|
DataForm *form = form_create(softwareinfo);
|
|
|
|
FormField *formField = NULL;
|
|
|
|
|
|
|
|
char *form_type = form_get_form_type_field(form);
|
|
|
|
if (g_strcmp0(form_type, STANZA_DATAFORM_SOFTWARE) == 0) {
|
|
|
|
GSList *field = form->fields;
|
2015-05-04 18:15:15 -04:00
|
|
|
while (field) {
|
2014-09-18 19:49:48 -04:00
|
|
|
formField = field->data;
|
2015-05-04 18:15:15 -04:00
|
|
|
if (formField->values) {
|
2014-09-18 19:49:48 -04:00
|
|
|
if (strcmp(formField->var, "software") == 0) {
|
2014-09-21 20:36:45 -04:00
|
|
|
software = strdup(formField->values->data);
|
2014-09-18 19:49:48 -04:00
|
|
|
} else if (strcmp(formField->var, "software_version") == 0) {
|
2014-09-21 20:36:45 -04:00
|
|
|
software_version = strdup(formField->values->data);
|
2014-09-18 19:49:48 -04:00
|
|
|
} else if (strcmp(formField->var, "os") == 0) {
|
2014-09-21 20:36:45 -04:00
|
|
|
os = strdup(formField->values->data);
|
2014-09-18 19:49:48 -04:00
|
|
|
} else if (strcmp(formField->var, "os_version") == 0) {
|
2014-09-21 20:36:45 -04:00
|
|
|
os_version = strdup(formField->values->data);
|
2014-09-18 19:49:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
field = g_slist_next(field);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
form_destroy(form);
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_stanza_t *child = xmpp_stanza_get_children(query);
|
2014-09-23 16:36:46 -04:00
|
|
|
GSList *identity_stanzas = NULL;
|
2015-05-04 18:15:15 -04:00
|
|
|
while (child) {
|
2014-09-18 19:49:48 -04:00
|
|
|
if (g_strcmp0(xmpp_stanza_get_name(child), "feature") == 0) {
|
|
|
|
features = g_slist_append(features, strdup(xmpp_stanza_get_attribute(child, "var")));
|
|
|
|
}
|
2014-09-23 16:36:46 -04:00
|
|
|
if (g_strcmp0(xmpp_stanza_get_name(child), "identity") == 0) {
|
|
|
|
identity_stanzas = g_slist_append(identity_stanzas, child);
|
|
|
|
}
|
2014-09-18 19:49:48 -04:00
|
|
|
|
|
|
|
child = xmpp_stanza_get_next(child);
|
|
|
|
}
|
|
|
|
|
2014-09-23 16:36:46 -04:00
|
|
|
// find identity by locale
|
|
|
|
const gchar* const *langs = g_get_language_names();
|
|
|
|
int num_langs = g_strv_length((gchar**)langs);
|
|
|
|
xmpp_stanza_t *found = NULL;
|
|
|
|
GSList *curr_identity = identity_stanzas;
|
|
|
|
while (curr_identity) {
|
|
|
|
xmpp_stanza_t *id_stanza = curr_identity->data;
|
|
|
|
char *stanza_lang = xmpp_stanza_get_attribute(id_stanza, "xml:lang");
|
|
|
|
if (stanza_lang) {
|
|
|
|
int i = 0;
|
|
|
|
for (i = 0; i < num_langs; i++) {
|
|
|
|
if (g_strcmp0(langs[i], stanza_lang) == 0) {
|
|
|
|
found = id_stanza;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found) {
|
|
|
|
break;
|
2014-09-23 19:30:05 -04:00
|
|
|
}
|
2014-09-23 16:36:46 -04:00
|
|
|
curr_identity = g_slist_next(curr_identity);
|
|
|
|
}
|
|
|
|
|
|
|
|
// not lang match, use default with no lang
|
|
|
|
if (!found) {
|
|
|
|
curr_identity = identity_stanzas;
|
|
|
|
while (curr_identity) {
|
|
|
|
xmpp_stanza_t *id_stanza = curr_identity->data;
|
|
|
|
char *stanza_lang = xmpp_stanza_get_attribute(id_stanza, "xml:lang");
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-23 20:06:49 -04:00
|
|
|
g_slist_free(identity_stanzas);
|
|
|
|
|
2014-09-23 16:36:46 -04:00
|
|
|
if (found) {
|
|
|
|
category = xmpp_stanza_get_attribute(found, "category");
|
|
|
|
type = xmpp_stanza_get_attribute(found, "type");
|
|
|
|
name = xmpp_stanza_get_attribute(found, "name");
|
|
|
|
}
|
|
|
|
|
2014-09-18 19:49:48 -04:00
|
|
|
Capabilities *new_caps = malloc(sizeof(struct capabilities_t));
|
|
|
|
|
2015-05-04 18:15:15 -04:00
|
|
|
if (category) {
|
2014-09-18 19:49:48 -04:00
|
|
|
new_caps->category = strdup(category);
|
|
|
|
} else {
|
|
|
|
new_caps->category = NULL;
|
|
|
|
}
|
2015-05-04 18:15:15 -04:00
|
|
|
if (type) {
|
2014-09-18 19:49:48 -04:00
|
|
|
new_caps->type = strdup(type);
|
|
|
|
} else {
|
|
|
|
new_caps->type = NULL;
|
|
|
|
}
|
2015-05-04 18:15:15 -04:00
|
|
|
if (name) {
|
2014-09-18 19:49:48 -04:00
|
|
|
new_caps->name = strdup(name);
|
|
|
|
} else {
|
|
|
|
new_caps->name = NULL;
|
|
|
|
}
|
2015-05-04 18:15:15 -04:00
|
|
|
if (software) {
|
2014-09-21 20:36:45 -04:00
|
|
|
new_caps->software = software;
|
2014-09-18 19:49:48 -04:00
|
|
|
} else {
|
|
|
|
new_caps->software = NULL;
|
|
|
|
}
|
2015-05-04 18:15:15 -04:00
|
|
|
if (software_version) {
|
2014-09-21 20:36:45 -04:00
|
|
|
new_caps->software_version = software_version;
|
2014-09-18 19:49:48 -04:00
|
|
|
} else {
|
|
|
|
new_caps->software_version = NULL;
|
|
|
|
}
|
2015-05-04 18:15:15 -04:00
|
|
|
if (os) {
|
2014-09-21 20:36:45 -04:00
|
|
|
new_caps->os = os;
|
2014-09-18 19:49:48 -04:00
|
|
|
} else {
|
|
|
|
new_caps->os = NULL;
|
|
|
|
}
|
2015-05-04 18:15:15 -04:00
|
|
|
if (os_version) {
|
2014-09-21 20:36:45 -04:00
|
|
|
new_caps->os_version = os_version;
|
2014-09-18 19:49:48 -04:00
|
|
|
} else {
|
|
|
|
new_caps->os_version = NULL;
|
|
|
|
}
|
2015-05-04 18:15:15 -04:00
|
|
|
if (features) {
|
2014-09-18 19:49:48 -04:00
|
|
|
new_caps->features = features;
|
|
|
|
} else {
|
|
|
|
new_caps->features = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new_caps;
|
|
|
|
}
|
|
|
|
|
2014-09-22 19:08:26 -04:00
|
|
|
char*
|
2015-10-25 20:14:23 -04:00
|
|
|
caps_get_my_sha1(xmpp_ctx_t *const ctx)
|
2014-09-22 19:08:26 -04:00
|
|
|
{
|
|
|
|
if (my_sha1 == NULL) {
|
|
|
|
xmpp_stanza_t *query = caps_create_query_response_stanza(ctx);
|
|
|
|
my_sha1 = caps_create_sha1_str(query);
|
|
|
|
xmpp_stanza_release(query);
|
|
|
|
}
|
|
|
|
|
|
|
|
return my_sha1;
|
|
|
|
}
|
2014-09-18 19:49:48 -04:00
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
xmpp_stanza_t*
|
|
|
|
caps_create_query_response_stanza(xmpp_ctx_t *const ctx)
|
2013-01-21 17:38:48 -05:00
|
|
|
{
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, XMPP_NS_DISCO_INFO);
|
|
|
|
|
|
|
|
xmpp_stanza_t *identity = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(identity, "identity");
|
|
|
|
xmpp_stanza_set_attribute(identity, "category", "client");
|
2013-06-24 20:00:24 -04:00
|
|
|
xmpp_stanza_set_attribute(identity, "type", "console");
|
2013-01-21 17:38:48 -05:00
|
|
|
|
|
|
|
GString *name_str = g_string_new("Profanity ");
|
|
|
|
g_string_append(name_str, PACKAGE_VERSION);
|
|
|
|
if (strcmp(PACKAGE_STATUS, "development") == 0) {
|
2013-09-16 20:28:35 -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
|
2013-01-21 17:38:48 -05:00
|
|
|
g_string_append(name_str, "dev");
|
2013-09-16 20:28:35 -04:00
|
|
|
#endif
|
2013-01-21 17:38:48 -05:00
|
|
|
}
|
|
|
|
xmpp_stanza_set_attribute(identity, "name", name_str->str);
|
2014-06-15 16:39:54 -04:00
|
|
|
g_string_free(name_str, TRUE);
|
2013-01-21 17:38:48 -05:00
|
|
|
|
|
|
|
xmpp_stanza_t *feature_caps = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(feature_caps, STANZA_NAME_FEATURE);
|
|
|
|
xmpp_stanza_set_attribute(feature_caps, STANZA_ATTR_VAR, STANZA_NS_CAPS);
|
|
|
|
|
|
|
|
xmpp_stanza_t *feature_discoinfo = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(feature_discoinfo, STANZA_NAME_FEATURE);
|
|
|
|
xmpp_stanza_set_attribute(feature_discoinfo, STANZA_ATTR_VAR, XMPP_NS_DISCO_INFO);
|
|
|
|
|
2013-03-24 13:45:12 -04:00
|
|
|
xmpp_stanza_t *feature_discoitems = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(feature_discoitems, STANZA_NAME_FEATURE);
|
|
|
|
xmpp_stanza_set_attribute(feature_discoitems, STANZA_ATTR_VAR, XMPP_NS_DISCO_ITEMS);
|
|
|
|
|
2013-01-21 17:38:48 -05:00
|
|
|
xmpp_stanza_t *feature_muc = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(feature_muc, STANZA_NAME_FEATURE);
|
|
|
|
xmpp_stanza_set_attribute(feature_muc, STANZA_ATTR_VAR, STANZA_NS_MUC);
|
|
|
|
|
2015-09-09 17:36:07 -04:00
|
|
|
xmpp_stanza_t *feature_conference = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(feature_conference, STANZA_NAME_FEATURE);
|
|
|
|
xmpp_stanza_set_attribute(feature_conference, STANZA_ATTR_VAR, STANZA_NS_CONFERENCE);
|
|
|
|
|
2013-01-21 17:38:48 -05:00
|
|
|
xmpp_stanza_t *feature_version = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(feature_version, STANZA_NAME_FEATURE);
|
|
|
|
xmpp_stanza_set_attribute(feature_version, STANZA_ATTR_VAR, STANZA_NS_VERSION);
|
|
|
|
|
2013-02-16 22:23:14 -05:00
|
|
|
xmpp_stanza_t *feature_chatstates = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(feature_chatstates, STANZA_NAME_FEATURE);
|
|
|
|
xmpp_stanza_set_attribute(feature_chatstates, STANZA_ATTR_VAR, STANZA_NS_CHATSTATES);
|
|
|
|
|
2013-02-17 11:43:26 -05:00
|
|
|
xmpp_stanza_t *feature_ping = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(feature_ping, STANZA_NAME_FEATURE);
|
|
|
|
xmpp_stanza_set_attribute(feature_ping, STANZA_ATTR_VAR, STANZA_NS_PING);
|
|
|
|
|
2015-09-09 17:36:07 -04:00
|
|
|
xmpp_stanza_t *feature_receipts = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(feature_receipts, STANZA_NAME_FEATURE);
|
|
|
|
xmpp_stanza_set_attribute(feature_receipts, STANZA_ATTR_VAR, STANZA_NS_RECEIPTS);
|
|
|
|
|
2015-09-29 18:55:01 -04:00
|
|
|
xmpp_stanza_t *feature_last = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(feature_last, STANZA_NAME_FEATURE);
|
|
|
|
xmpp_stanza_set_attribute(feature_last, STANZA_ATTR_VAR, STANZA_NS_LASTACTIVITY);
|
|
|
|
|
2013-01-21 17:38:48 -05:00
|
|
|
xmpp_stanza_add_child(query, identity);
|
2013-02-17 11:50:44 -05:00
|
|
|
|
2013-01-21 17:38:48 -05:00
|
|
|
xmpp_stanza_add_child(query, feature_caps);
|
2013-02-16 22:23:14 -05:00
|
|
|
xmpp_stanza_add_child(query, feature_chatstates);
|
2013-02-17 11:50:44 -05:00
|
|
|
xmpp_stanza_add_child(query, feature_discoinfo);
|
2013-03-24 13:45:12 -04:00
|
|
|
xmpp_stanza_add_child(query, feature_discoitems);
|
2013-02-17 11:50:44 -05:00
|
|
|
xmpp_stanza_add_child(query, feature_muc);
|
|
|
|
xmpp_stanza_add_child(query, feature_version);
|
2015-09-29 18:55:01 -04:00
|
|
|
xmpp_stanza_add_child(query, feature_last);
|
|
|
|
xmpp_stanza_add_child(query, feature_conference);
|
2013-02-17 11:43:26 -05:00
|
|
|
xmpp_stanza_add_child(query, feature_ping);
|
2015-09-09 17:36:07 -04:00
|
|
|
xmpp_stanza_add_child(query, feature_receipts);
|
2013-01-21 17:38:48 -05:00
|
|
|
|
2015-09-09 17:36:07 -04:00
|
|
|
xmpp_stanza_release(feature_receipts);
|
2013-08-25 07:54:34 -04:00
|
|
|
xmpp_stanza_release(feature_ping);
|
2015-09-09 17:36:07 -04:00
|
|
|
xmpp_stanza_release(feature_conference);
|
2015-09-29 18:55:01 -04:00
|
|
|
xmpp_stanza_release(feature_last);
|
|
|
|
xmpp_stanza_release(feature_version);
|
2013-01-23 17:24:54 -05:00
|
|
|
xmpp_stanza_release(feature_muc);
|
2013-03-24 13:45:12 -04:00
|
|
|
xmpp_stanza_release(feature_discoitems);
|
2013-08-25 07:54:34 -04:00
|
|
|
xmpp_stanza_release(feature_discoinfo);
|
2013-02-16 22:23:14 -05:00
|
|
|
xmpp_stanza_release(feature_chatstates);
|
2013-08-25 07:54:34 -04:00
|
|
|
xmpp_stanza_release(feature_caps);
|
|
|
|
xmpp_stanza_release(identity);
|
2013-01-23 17:24:54 -05:00
|
|
|
|
2013-01-21 17:38:48 -05:00
|
|
|
return query;
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
caps_close(void)
|
2013-01-19 19:35:40 -05:00
|
|
|
{
|
2014-09-21 20:36:45 -04:00
|
|
|
g_key_file_free(cache);
|
|
|
|
cache = NULL;
|
2014-11-26 20:08:02 -05:00
|
|
|
g_hash_table_destroy(jid_to_ver);
|
|
|
|
g_hash_table_destroy(jid_to_caps);
|
2013-01-19 19:35:40 -05:00
|
|
|
}
|
2013-01-19 19:57:44 -05:00
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
|
|
|
caps_destroy(Capabilities *caps)
|
2013-01-19 19:57:44 -05:00
|
|
|
{
|
2015-05-04 18:15:15 -04:00
|
|
|
if (caps) {
|
2013-08-03 07:27:07 -04:00
|
|
|
free(caps->category);
|
|
|
|
free(caps->type);
|
|
|
|
free(caps->name);
|
|
|
|
free(caps->software);
|
|
|
|
free(caps->software_version);
|
|
|
|
free(caps->os);
|
|
|
|
free(caps->os_version);
|
2015-05-04 18:15:15 -04:00
|
|
|
if (caps->features) {
|
2013-02-16 20:04:10 -05:00
|
|
|
g_slist_free_full(caps->features, free);
|
|
|
|
}
|
2013-08-03 07:27:07 -04:00
|
|
|
free(caps);
|
2013-01-19 19:57:44 -05:00
|
|
|
}
|
|
|
|
}
|
2013-12-22 18:16:19 -05:00
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
static gchar*
|
2014-09-21 20:36:45 -04:00
|
|
|
_get_cache_file(void)
|
|
|
|
{
|
|
|
|
gchar *xdg_data = xdg_get_data_home();
|
|
|
|
GString *cache_file = g_string_new(xdg_data);
|
|
|
|
g_string_append(cache_file, "/profanity/capscache");
|
|
|
|
gchar *result = strdup(cache_file->str);
|
|
|
|
g_free(xdg_data);
|
|
|
|
g_string_free(cache_file, TRUE);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_save_cache(void)
|
|
|
|
{
|
|
|
|
gsize g_data_size;
|
|
|
|
gchar *g_cache_data = g_key_file_to_data(cache, &g_data_size, NULL);
|
|
|
|
g_file_set_contents(cache_loc, g_cache_data, g_data_size, NULL);
|
2014-10-18 16:40:11 -04:00
|
|
|
g_chmod(cache_loc, S_IRUSR | S_IWUSR);
|
2014-09-21 20:36:45 -04:00
|
|
|
g_free(g_cache_data);
|
2015-09-21 16:40:04 -04:00
|
|
|
}
|