1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00
profanity/src/contact_list.c

207 lines
4.9 KiB
C
Raw Normal View History

/*
2012-03-08 18:45:21 -05:00
* contact_list.c
*
2013-01-10 21:05:29 -05:00
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
*
2012-03-08 18:45:21 -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/>.
*
*/
#include <string.h>
2012-10-28 19:27:56 -04:00
#include <glib.h>
2012-05-03 20:00:01 -04:00
#include "contact.h"
#include "prof_autocomplete.h"
2012-03-07 19:46:24 -05:00
static PAutocomplete ac;
2012-10-28 19:27:56 -04:00
static GHashTable *contacts;
static gboolean _key_equals(void *key1, void *key2);
2012-12-08 22:07:33 -05:00
static gboolean _datetimes_equal(GDateTime *dt1, GDateTime *dt2);
2012-03-07 19:46:24 -05:00
2012-07-24 18:19:48 -04:00
void
contact_list_init(void)
{
2012-10-28 19:27:56 -04:00
ac = p_autocomplete_new();
contacts = g_hash_table_new_full(g_str_hash, (GEqualFunc)_key_equals, g_free,
(GDestroyNotify)p_contact_free);
}
2012-03-08 17:43:28 -05:00
2012-07-24 18:19:48 -04:00
void
contact_list_clear(void)
2012-03-07 19:46:24 -05:00
{
p_autocomplete_clear(ac);
2012-10-28 19:27:56 -04:00
g_hash_table_remove_all(contacts);
2012-03-07 19:46:24 -05:00
}
void
contact_list_free()
{
p_autocomplete_free(ac);
}
2012-07-24 18:19:48 -04:00
void
2012-10-21 18:46:30 -04:00
contact_list_reset_search_attempts(void)
{
p_autocomplete_reset(ac);
}
2012-10-29 18:55:17 -04:00
gboolean
2012-10-28 16:52:30 -04:00
contact_list_add(const char * const jid, const char * const name,
const char * const presence, const char * const status,
const char * const subscription, gboolean pending_out)
2012-03-08 17:43:28 -05:00
{
2012-10-29 18:55:17 -04:00
gboolean added = FALSE;
2012-10-28 19:27:56 -04:00
PContact contact = g_hash_table_lookup(contacts, jid);
if (contact == NULL) {
contact = p_contact_new(jid, name, presence, status, subscription,
pending_out, NULL);
2012-10-28 19:27:56 -04:00
g_hash_table_insert(contacts, strdup(jid), contact);
2012-10-29 18:55:17 -04:00
p_autocomplete_add(ac, strdup(jid));
added = TRUE;
2012-10-28 19:27:56 -04:00
}
2012-10-29 18:55:17 -04:00
return added;
2012-03-07 19:46:24 -05:00
}
void
contact_list_remove(const char * const jid)
{
g_hash_table_remove(contacts, jid);
}
2012-10-29 17:44:33 -04:00
gboolean
contact_list_update_contact(const char * const jid, const char * const presence,
const char * const status, GDateTime *last_activity, const char * const caps_str)
2012-10-29 17:44:33 -04:00
{
gboolean presence_changed = FALSE;
2012-10-29 17:44:33 -04:00
PContact contact = g_hash_table_lookup(contacts, jid);
if (contact == NULL) {
return FALSE;
}
if (g_strcmp0(p_contact_presence(contact), presence) != 0) {
p_contact_set_presence(contact, presence);
presence_changed = TRUE;
2012-10-29 17:44:33 -04:00
}
if (g_strcmp0(p_contact_status(contact), status) != 0) {
p_contact_set_status(contact, status);
presence_changed = TRUE;
2012-10-29 17:44:33 -04:00
}
2012-12-08 22:07:33 -05:00
if (!_datetimes_equal(p_contact_last_activity(contact), last_activity)) {
p_contact_set_last_activity(contact, last_activity);
presence_changed = TRUE;
2012-12-08 22:07:33 -05:00
}
if (g_strcmp0(p_contact_caps_str(contact), caps_str) != 0) {
p_contact_set_caps_str(contact, caps_str);
}
return presence_changed;
2012-10-29 17:44:33 -04:00
}
2012-11-27 18:43:32 -05:00
void
contact_list_update_subscription(const char * const jid,
const char * const subscription, gboolean pending_out)
{
PContact contact = g_hash_table_lookup(contacts, jid);
if (contact == NULL) {
contact = p_contact_new(jid, NULL, "offline", NULL, subscription,
pending_out, NULL);
g_hash_table_insert(contacts, strdup(jid), contact);
2012-11-27 18:43:32 -05:00
} else {
p_contact_set_subscription(contact, subscription);
p_contact_set_pending_out(contact, pending_out);
}
}
gboolean
contact_list_has_pending_subscriptions(void)
{
GHashTableIter iter;
gpointer key;
gpointer value;
g_hash_table_iter_init(&iter, contacts);
while (g_hash_table_iter_next(&iter, &key, &value)) {
PContact contact = (PContact) value;
if (p_contact_pending_out(contact)) {
return TRUE;
}
}
return FALSE;
}
2012-07-24 18:19:48 -04:00
GSList *
get_contact_list(void)
{
2012-10-28 19:27:56 -04:00
GSList *result = NULL;
GHashTableIter iter;
gpointer key;
gpointer value;
g_hash_table_iter_init(&iter, contacts);
while (g_hash_table_iter_next(&iter, &key, &value)) {
result = g_slist_append(result, value);
}
// resturn all contact structs
return result;
2012-03-07 19:46:24 -05:00
}
2012-03-08 17:43:28 -05:00
2012-07-24 18:19:48 -04:00
char *
2012-10-21 18:46:30 -04:00
contact_list_find_contact(char *search_str)
2012-03-10 16:37:46 -05:00
{
return p_autocomplete_complete(ac, search_str);
2012-03-10 19:12:08 -05:00
}
PContact
contact_list_get_contact(const char const *jid)
{
2012-10-28 19:27:56 -04:00
return g_hash_table_lookup(contacts, jid);
}
2012-10-28 19:27:56 -04:00
static
gboolean _key_equals(void *key1, void *key2)
{
gchar *str1 = (gchar *) key1;
gchar *str2 = (gchar *) key2;
2012-10-28 19:27:56 -04:00
return (g_strcmp0(str1, str2) == 0);
}
2012-12-08 22:07:33 -05:00
static gboolean
_datetimes_equal(GDateTime *dt1, GDateTime *dt2)
{
if ((dt1 == NULL) && (dt2 == NULL)) {
return TRUE;
} else if ((dt1 == NULL) && (dt2 != NULL)) {
return FALSE;
} else if ((dt1 != NULL) && (dt2 == NULL)) {
return FALSE;
} else {
return g_date_time_equal(dt1, dt2);
}
}