interface cleanup: decouple header files
[siplcs.git] / src / core / sipe-chat.c
blobdaa8243fc70931028c3438869494921202fddde4
1 /**
2 * @file sipe-chat.c
4 * pidgin-sipe
6 * Copyright (C) 2009 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
27 #include <time.h>
29 #include <glib.h>
31 #include "connection.h"
32 #include "debug.h"
34 #include "sipe-common.h"
35 #include "sip-sec.h"
36 #include "sipe-chat.h"
37 #include "sipe-nls.h"
38 #include "sipe-session.h"
39 #include "sipe-utils.h"
40 #include "sipe.h"
42 void sipe_chat_invite(PurpleConnection *gc, int id,
43 SIPE_UNUSED_PARAMETER const char *message,
44 const char *name)
46 struct sipe_account_data *sip = gc->proto_data;
47 struct sip_session *session = sipe_session_find_chat_by_id(sip, id);
49 if (session) {
50 gchar *uri = sip_uri(name);
51 sipe_invite_to_chat(sip, session, uri);
52 g_free(uri);
56 /** See below. Same as chat_names but swapped key with values */
57 static GHashTable *chat_names_inverse = NULL;
59 gchar *
60 sipe_chat_get_name(const gchar *proto_chat_id)
62 /**
63 * A non-volatile mapping of protocol's chat identification
64 * to purple's chat-name. The latter is very important to
65 * find/rejoin chat.
67 * @key for 2007 conference this is (gchar *) Focus URI
68 * for 2005 multiparty chat this is (gchar *) Call-Id of the conversation.
69 * @value a purple chat name.
71 static GHashTable *chat_names = NULL;
73 /**
74 * A non-volatile chat counter.
75 * Should survive protocol reload.
77 static int chat_seq = 0;
79 char *chat_name = NULL;
81 if (!chat_names) {
82 chat_names = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
84 if (!chat_names_inverse) {
85 chat_names_inverse = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
88 if (proto_chat_id) {
89 chat_name = g_hash_table_lookup(chat_names, proto_chat_id);
90 purple_debug_info("sipe", "sipe_chat_get_name: lookup results: %s\n", chat_name ? chat_name : "NULL");
92 if (!chat_name) {
93 chat_name = g_strdup_printf(_("Chat #%d"), ++chat_seq);
94 g_hash_table_insert(chat_names, g_strdup(proto_chat_id), chat_name);
95 g_hash_table_insert(chat_names_inverse, chat_name, g_strdup(proto_chat_id));
96 purple_debug_info("sipe", "sipe_chat_get_name: added new: %s\n", chat_name);
99 return g_strdup(chat_name);
102 const gchar *
103 sipe_chat_find_name(const gchar *chat_name)
105 if (!chat_names_inverse) return NULL;
106 return(g_hash_table_lookup(chat_names_inverse, chat_name));
110 Local Variables:
111 mode: c
112 c-file-style: "bsd"
113 indent-tabs-mode: t
114 tab-width: 8
115 End: