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
26 #include "sipe-chat.h"
28 #include "sipe-session.h"
29 #include "sipe-utils.h"
31 void sipe_chat_invite(PurpleConnection
*gc
, int id
,
32 SIPE_UNUSED_PARAMETER
const char *message
,
35 struct sipe_account_data
*sip
= gc
->proto_data
;
36 struct sip_session
*session
= sipe_session_find_chat_by_id(sip
, id
);
39 gchar
*uri
= sip_uri(name
);
40 sipe_invite_to_chat(sip
, session
, uri
);
45 /** See below. Same as chat_names but swapped key with values */
46 static GHashTable
*chat_names_inverse
= NULL
;
49 sipe_chat_get_name(const gchar
*proto_chat_id
)
52 * A non-volatile mapping of protocol's chat identification
53 * to purple's chat-name. The latter is very important to
56 * @key for 2007 conference this is (gchar *) Focus URI
57 * for 2005 multiparty chat this is (gchar *) Call-Id of the conversation.
58 * @value a purple chat name.
60 static GHashTable
*chat_names
= NULL
;
63 * A non-volatile chat counter.
64 * Should survive protocol reload.
66 static int chat_seq
= 0;
68 char *chat_name
= NULL
;
71 chat_names
= g_hash_table_new_full(g_str_hash
, g_str_equal
, g_free
, g_free
);
73 if (!chat_names_inverse
) {
74 chat_names_inverse
= g_hash_table_new_full(g_str_hash
, g_str_equal
, g_free
, g_free
);
78 chat_name
= g_hash_table_lookup(chat_names
, proto_chat_id
);
79 purple_debug_info("sipe", "sipe_chat_get_name: lookup results: %s\n", chat_name
? chat_name
: "NULL");
82 chat_name
= g_strdup_printf(_("Chat #%d"), ++chat_seq
);
83 g_hash_table_insert(chat_names
, g_strdup(proto_chat_id
), chat_name
);
84 g_hash_table_insert(chat_names_inverse
, chat_name
, g_strdup(proto_chat_id
));
85 purple_debug_info("sipe", "sipe_chat_get_name: added new: %s\n", chat_name
);
88 return g_strdup(chat_name
);
92 sipe_chat_find_name(const gchar
*chat_name
)
94 if (!chat_names_inverse
) return NULL
;
95 return(g_hash_table_lookup(chat_names_inverse
, chat_name
));