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
|
|
|
*
|
2016-02-14 17:54:46 -05:00
|
|
|
* Copyright (C) 2012 - 2016 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
|
2016-07-23 20:14:49 -04:00
|
|
|
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
|
2013-01-19 19:16:12 -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.
|
|
|
|
*
|
2013-01-19 19:16:12 -05:00
|
|
|
*/
|
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#include "config.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
|
2016-03-31 16:05:02 -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
|
|
|
|
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
|
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"
|
2016-08-17 19:10:15 -04:00
|
|
|
#include "event/client_events.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "plugins/plugins.h"
|
2016-07-24 11:22:15 -04:00
|
|
|
#include "config/files.h"
|
2016-08-17 19:10:15 -04:00
|
|
|
#include "config/preferences.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
|
|
|
|
2016-07-24 16:35:12 -04:00
|
|
|
static char *cache_loc;
|
2014-09-21 20:36:45 -04:00
|
|
|
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
|
|
|
|
2016-08-17 18:49:20 -04:00
|
|
|
static GHashTable *prof_features;
|
2014-09-22 19:08:26 -04:00
|
|
|
static char *my_sha1;
|
|
|
|
|
2014-09-21 20:36:45 -04:00
|
|
|
static void _save_cache(void);
|
2016-08-13 11:39:25 -04:00
|
|
|
static EntityCapabilities* _caps_by_ver(const char *const ver);
|
|
|
|
static EntityCapabilities* _caps_by_jid(const char *const jid);
|
2016-08-13 20:06:13 -04:00
|
|
|
static EntityCapabilities* _caps_copy(EntityCapabilities *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");
|
2016-07-24 16:35:12 -04:00
|
|
|
cache_loc = files_get_data_path(FILE_CAPSCACHE);
|
2014-09-21 20:36:45 -04:00
|
|
|
|
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();
|
2016-07-24 16:35:12 -04:00
|
|
|
g_key_file_load_from_file(cache, cache_loc, G_KEY_FILE_KEEP_COMMENTS, NULL);
|
2014-09-21 20:36:45 -04:00
|
|
|
|
2016-07-18 17:32:58 -04:00
|
|
|
jid_to_ver = g_hash_table_new_full(g_str_hash, g_str_equal, free, free);
|
|
|
|
jid_to_caps = g_hash_table_new_full(g_str_hash, g_str_equal, free, (GDestroyNotify)caps_destroy);
|
2014-09-22 19:08:26 -04:00
|
|
|
|
2016-08-17 18:49:20 -04:00
|
|
|
prof_features = g_hash_table_new_full(g_str_hash, g_str_equal, free, NULL);
|
|
|
|
g_hash_table_add(prof_features, strdup(STANZA_NS_CAPS));
|
|
|
|
g_hash_table_add(prof_features, strdup(XMPP_NS_DISCO_INFO));
|
|
|
|
g_hash_table_add(prof_features, strdup(XMPP_NS_DISCO_ITEMS));
|
|
|
|
g_hash_table_add(prof_features, strdup(STANZA_NS_MUC));
|
|
|
|
g_hash_table_add(prof_features, strdup(STANZA_NS_CONFERENCE));
|
|
|
|
g_hash_table_add(prof_features, strdup(STANZA_NS_VERSION));
|
|
|
|
g_hash_table_add(prof_features, strdup(STANZA_NS_CHATSTATES));
|
|
|
|
g_hash_table_add(prof_features, strdup(STANZA_NS_PING));
|
2016-08-17 19:10:15 -04:00
|
|
|
if (prefs_get_boolean(PREF_RECEIPTS_SEND)) {
|
|
|
|
g_hash_table_add(prof_features, strdup(STANZA_NS_RECEIPTS));
|
|
|
|
}
|
2016-08-17 19:29:33 -04:00
|
|
|
if (prefs_get_boolean(PREF_LASTACTIVITY)) {
|
|
|
|
g_hash_table_add(prof_features, strdup(STANZA_NS_LASTACTIVITY));
|
|
|
|
}
|
2014-09-22 19:08:26 -04:00
|
|
|
my_sha1 = NULL;
|
2013-01-19 19:35:40 -05:00
|
|
|
}
|
|
|
|
|
2016-08-17 19:10:15 -04:00
|
|
|
void
|
|
|
|
caps_add_feature(char *feature)
|
|
|
|
{
|
|
|
|
if (g_hash_table_contains(prof_features, feature)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_hash_table_add(prof_features, strdup(feature));
|
|
|
|
|
|
|
|
caps_reset_ver();
|
|
|
|
|
|
|
|
// resend presence to update server's disco info data for this client
|
|
|
|
if (connection_get_status() == JABBER_CONNECTED) {
|
|
|
|
resource_presence_t last_presence = accounts_get_last_presence(session_get_account_name());
|
|
|
|
cl_ev_presence_send(last_presence, connection_get_presence_msg(), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
caps_remove_feature(char *feature)
|
|
|
|
{
|
|
|
|
if (!g_hash_table_contains(prof_features, feature)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_hash_table_remove(prof_features, feature);
|
|
|
|
|
|
|
|
caps_reset_ver();
|
|
|
|
|
|
|
|
// resend presence to update server's disco info data for this client
|
|
|
|
if (connection_get_status() == JABBER_CONNECTED) {
|
|
|
|
resource_presence_t last_presence = accounts_get_last_presence(session_get_account_name());
|
|
|
|
cl_ev_presence_send(last_presence, connection_get_presence_msg(), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-13 18:43:54 -04:00
|
|
|
GList*
|
|
|
|
caps_get_features(void)
|
|
|
|
{
|
|
|
|
GList *result = NULL;
|
|
|
|
|
2016-08-17 18:49:20 -04:00
|
|
|
GList *features_as_list = g_hash_table_get_keys(prof_features);
|
|
|
|
GList *curr = features_as_list;
|
2016-08-13 18:43:54 -04:00
|
|
|
while (curr) {
|
2016-08-17 18:32:43 -04:00
|
|
|
result = g_list_append(result, strdup(curr->data));
|
2016-08-13 18:43:54 -04:00
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
2016-08-17 18:49:20 -04:00
|
|
|
g_list_free(features_as_list);
|
2016-08-13 18:43:54 -04:00
|
|
|
|
|
|
|
GList *plugin_features = plugins_get_disco_features();
|
|
|
|
curr = plugin_features;
|
|
|
|
while (curr) {
|
2016-08-17 18:32:43 -04:00
|
|
|
result = g_list_append(result, strdup(curr->data));
|
2016-08-13 18:43:54 -04:00
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
|
2016-08-17 18:32:43 -04:00
|
|
|
g_list_free(plugin_features);
|
|
|
|
|
2016-08-13 18:43:54 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-08-13 20:06:13 -04:00
|
|
|
EntityCapabilities*
|
|
|
|
caps_create(const char *const category, const char *const type, const char *const name,
|
|
|
|
const char *const software, const char *const software_version,
|
|
|
|
const char *const os, const char *const os_version,
|
|
|
|
GSList *features)
|
|
|
|
{
|
|
|
|
EntityCapabilities *result = (EntityCapabilities *)malloc(sizeof(EntityCapabilities));
|
|
|
|
|
|
|
|
if (category || type || name) {
|
|
|
|
DiscoIdentity *identity = (DiscoIdentity*)malloc(sizeof(DiscoIdentity));
|
|
|
|
identity->category = category ? strdup(category) : NULL;
|
|
|
|
identity->type = type ? strdup(type) : NULL;
|
|
|
|
identity->name = name ? strdup(name) : NULL;
|
|
|
|
result->identity = identity;
|
|
|
|
} else {
|
|
|
|
result->identity = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (software || software_version || os || os_version) {
|
|
|
|
SoftwareVersion *software_versionp = (SoftwareVersion*)malloc(sizeof(SoftwareVersion));
|
|
|
|
software_versionp->software = software ? strdup(software) : NULL;
|
|
|
|
software_versionp->software_version = software_version ? strdup(software_version) : NULL;
|
|
|
|
software_versionp->os = os ? strdup(os) : NULL;
|
|
|
|
software_versionp->os_version = os_version ? strdup(os_version) : NULL;
|
|
|
|
result->software_version = software_versionp;
|
|
|
|
} else {
|
|
|
|
result->software_version = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
result->features = NULL;
|
|
|
|
GSList *curr = features;
|
|
|
|
while (curr) {
|
|
|
|
result->features = g_slist_append(result->features, strdup(curr->data));
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-01-19 19:57:44 -05:00
|
|
|
void
|
2016-08-13 11:39:25 -04:00
|
|
|
caps_add_by_ver(const char *const ver, EntityCapabilities *caps)
|
2013-01-19 19:16:12 -05:00
|
|
|
{
|
2016-08-13 12:19:24 -04:00
|
|
|
if (ver == NULL || caps == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-21 20:36:45 -04:00
|
|
|
gboolean cached = g_key_file_has_group(cache, ver);
|
2016-08-13 12:19:24 -04:00
|
|
|
if (cached) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (caps->identity) {
|
|
|
|
DiscoIdentity *identity = caps->identity;
|
|
|
|
if (identity->name) {
|
|
|
|
g_key_file_set_string(cache, ver, "name", identity->name);
|
2014-09-21 20:36:45 -04:00
|
|
|
}
|
2016-08-13 12:19:24 -04:00
|
|
|
if (identity->category) {
|
|
|
|
g_key_file_set_string(cache, ver, "category", identity->category);
|
2014-09-21 20:36:45 -04:00
|
|
|
}
|
2016-08-13 12:19:24 -04:00
|
|
|
if (identity->type) {
|
|
|
|
g_key_file_set_string(cache, ver, "type", identity->type);
|
2014-09-21 20:36:45 -04:00
|
|
|
}
|
2016-08-13 12:19:24 -04:00
|
|
|
}
|
2016-08-13 12:43:43 -04:00
|
|
|
|
2016-08-13 12:19:24 -04:00
|
|
|
if (caps->software_version) {
|
2016-08-13 12:43:43 -04:00
|
|
|
SoftwareVersion *software_version = caps->software_version;
|
|
|
|
if (software_version->software) {
|
|
|
|
g_key_file_set_string(cache, ver, "software", software_version->software);
|
|
|
|
}
|
|
|
|
if (software_version->software_version) {
|
|
|
|
g_key_file_set_string(cache, ver, "software_version", software_version->software_version);
|
|
|
|
}
|
|
|
|
if (software_version->os) {
|
|
|
|
g_key_file_set_string(cache, ver, "os", software_version->os);
|
|
|
|
}
|
|
|
|
if (software_version->os_version) {
|
|
|
|
g_key_file_set_string(cache, ver, "os_version", software_version->os_version);
|
|
|
|
}
|
2016-08-13 12:19:24 -04:00
|
|
|
}
|
2016-08-13 12:43:43 -04:00
|
|
|
|
2016-08-13 12:19:24 -04:00
|
|
|
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) {
|
|
|
|
features_list[curr++] = curr_feature->data;
|
|
|
|
curr_feature = g_slist_next(curr_feature);
|
2014-09-21 20:36:45 -04:00
|
|
|
}
|
2016-08-13 12:19:24 -04:00
|
|
|
g_key_file_set_string_list(cache, ver, "features", features_list, num);
|
2014-09-21 20:36:45 -04:00
|
|
|
}
|
2016-08-13 12:19:24 -04:00
|
|
|
|
|
|
|
_save_cache();
|
2013-01-19 19:16:12 -05:00
|
|
|
}
|
|
|
|
|
2014-09-20 18:50:19 -04:00
|
|
|
void
|
2016-08-13 11:39:25 -04:00
|
|
|
caps_add_by_jid(const char *const jid, EntityCapabilities *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
|
2016-08-13 18:45:58 -04:00
|
|
|
caps_cache_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
|
|
|
|
2016-08-13 11:39:25 -04:00
|
|
|
EntityCapabilities*
|
2015-10-25 20:14:23 -04:00
|
|
|
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) {
|
2016-08-13 11:39:25 -04:00
|
|
|
EntityCapabilities *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 {
|
2016-08-13 11:39:25 -04:00
|
|
|
EntityCapabilities *caps = _caps_by_jid(jid);
|
2014-11-26 20:08:02 -05:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-08-18 17:51:06 -04:00
|
|
|
gboolean
|
|
|
|
caps_jid_has_feature(const char *const jid, const char *const feature)
|
|
|
|
{
|
|
|
|
char *ver = g_hash_table_lookup(jid_to_ver, jid);
|
|
|
|
EntityCapabilities *caps = ver ? _caps_by_ver(ver) : _caps_by_jid(jid);
|
|
|
|
|
|
|
|
if (caps == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GSList *found = g_slist_find_custom(caps->features, feature, (GCompareFunc)g_strcmp0);
|
|
|
|
gboolean result = found != NULL;
|
|
|
|
|
|
|
|
caps_destroy(caps);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
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) {
|
2016-08-13 18:43:54 -04:00
|
|
|
xmpp_stanza_t *query = stanza_create_caps_query_element(ctx);
|
2016-08-13 19:07:08 -04:00
|
|
|
my_sha1 = stanza_create_caps_sha1_from_query(query);
|
2014-09-22 19:08:26 -04:00
|
|
|
xmpp_stanza_release(query);
|
|
|
|
}
|
|
|
|
|
|
|
|
return my_sha1;
|
|
|
|
}
|
2014-09-18 19:49:48 -04:00
|
|
|
|
2016-04-30 18:00:07 -04:00
|
|
|
void
|
|
|
|
caps_reset_ver(void)
|
|
|
|
{
|
|
|
|
if (my_sha1) {
|
|
|
|
g_free(my_sha1);
|
|
|
|
my_sha1 = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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);
|
2016-07-24 16:35:12 -04:00
|
|
|
free(cache_loc);
|
|
|
|
cache_loc = NULL;
|
2016-08-17 18:49:20 -04:00
|
|
|
g_hash_table_destroy(prof_features);
|
2016-08-12 17:25:35 -04:00
|
|
|
prof_features = NULL;
|
2013-01-19 19:35:40 -05:00
|
|
|
}
|
2013-01-19 19:57:44 -05:00
|
|
|
|
2016-08-13 18:53:41 -04:00
|
|
|
static EntityCapabilities*
|
|
|
|
_caps_by_ver(const char *const ver)
|
|
|
|
{
|
|
|
|
if (!g_key_file_has_group(cache, ver)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *category = g_key_file_get_string(cache, ver, "category", NULL);
|
|
|
|
char *type = g_key_file_get_string(cache, ver, "type", NULL);
|
|
|
|
char *name = g_key_file_get_string(cache, ver, "name", NULL);
|
|
|
|
|
|
|
|
char *software = g_key_file_get_string(cache, ver, "software", NULL);
|
|
|
|
char *software_version = g_key_file_get_string(cache, ver, "software_version", NULL);
|
|
|
|
char *os = g_key_file_get_string(cache, ver, "os", NULL);
|
|
|
|
char *os_version = g_key_file_get_string(cache, ver, "os_version", NULL);
|
|
|
|
|
|
|
|
gsize features_len = 0;
|
2016-08-13 20:06:13 -04:00
|
|
|
gchar **features_list = g_key_file_get_string_list(cache, ver, "features", &features_len, NULL);
|
|
|
|
GSList *features = NULL;
|
|
|
|
if (features_list && features_len > 0) {
|
2016-08-13 18:53:41 -04:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < features_len; i++) {
|
2016-08-13 20:06:13 -04:00
|
|
|
features = g_slist_append(features, features_list[i]);
|
2016-08-13 18:53:41 -04:00
|
|
|
}
|
|
|
|
}
|
2016-08-13 20:06:13 -04:00
|
|
|
|
|
|
|
EntityCapabilities *result = caps_create(
|
|
|
|
category, type, name,
|
|
|
|
software, software_version, os, os_version,
|
|
|
|
features);
|
|
|
|
|
|
|
|
g_free(category);
|
|
|
|
g_free(type);
|
|
|
|
g_free(name);
|
|
|
|
g_free(software);
|
|
|
|
g_free(software_version);
|
|
|
|
g_free(os);
|
|
|
|
g_free(os_version);
|
|
|
|
if (features_list) {
|
|
|
|
g_strfreev(features_list);
|
|
|
|
}
|
|
|
|
g_slist_free(features);
|
|
|
|
|
|
|
|
return result;
|
2016-08-13 18:53:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static EntityCapabilities*
|
|
|
|
_caps_by_jid(const char *const jid)
|
|
|
|
{
|
|
|
|
return g_hash_table_lookup(jid_to_caps, jid);
|
|
|
|
}
|
|
|
|
|
2016-08-13 20:06:13 -04:00
|
|
|
static EntityCapabilities*
|
|
|
|
_caps_copy(EntityCapabilities *caps)
|
|
|
|
{
|
|
|
|
if (!caps) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *const categoty = caps->identity ? caps->identity->category : NULL;
|
|
|
|
const char *const type = caps->identity ? caps->identity->type : NULL;
|
|
|
|
const char *const name = caps->identity ? caps->identity->name : NULL;
|
|
|
|
|
|
|
|
const char *const software = caps->software_version ? caps->software_version->software : NULL;
|
|
|
|
const char *const software_version = caps->software_version ? caps->software_version->software_version : NULL;
|
|
|
|
const char *const os = caps->software_version ? caps->software_version->os : NULL;
|
|
|
|
const char *const os_version = caps->software_version ? caps->software_version->os_version : NULL;
|
|
|
|
|
|
|
|
return caps_create(categoty, type, name, software, software_version, os, os_version, caps->features);
|
|
|
|
}
|
|
|
|
|
2016-08-13 12:19:24 -04:00
|
|
|
static void
|
|
|
|
_disco_identity_destroy(DiscoIdentity *disco_identity)
|
|
|
|
{
|
|
|
|
if (disco_identity) {
|
|
|
|
free(disco_identity->category);
|
|
|
|
free(disco_identity->name);
|
|
|
|
free(disco_identity->type);
|
2016-08-13 12:49:19 -04:00
|
|
|
free(disco_identity);
|
2016-08-13 12:19:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-13 12:43:43 -04:00
|
|
|
static void
|
|
|
|
_software_version_destroy(SoftwareVersion *software_version)
|
|
|
|
{
|
|
|
|
if (software_version) {
|
|
|
|
free(software_version->software);
|
|
|
|
free(software_version->software_version);
|
|
|
|
free(software_version->os);
|
|
|
|
free(software_version->os_version);
|
2016-08-13 12:49:19 -04:00
|
|
|
free(software_version);
|
2016-08-13 12:43:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 17:13:42 -05:00
|
|
|
void
|
2016-08-13 11:39:25 -04:00
|
|
|
caps_destroy(EntityCapabilities *caps)
|
2013-01-19 19:57:44 -05:00
|
|
|
{
|
2015-05-04 18:15:15 -04:00
|
|
|
if (caps) {
|
2016-08-13 12:19:24 -04:00
|
|
|
_disco_identity_destroy(caps->identity);
|
2016-08-13 12:43:43 -04:00
|
|
|
_software_version_destroy(caps->software_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
|
|
|
|
2014-09-21 20:36:45 -04:00
|
|
|
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
|
|
|
}
|