Mercurial > pidgin.yaz
annotate src/protocols/sametime/sametime.c @ 12143:cbebda5f019c
[gaim-migrate @ 14444]
SF Patch #1360399 from Evan Schoenberg (evands)
"I discussed this previously with Mark and he said it'd be fine.
This factors out the part of the send_file function which creates a new
GaimXfer into a separate prpl function, new_xfer. It's called in each of the
existing send_file functions.
This is needed so that another client (okay, Adium) can get a new
outgoing GaimXfer from a prpl without depending upon the specific ft.c
logic of send_file; previously I was adding a duplicate method to each prpl
and then calling it directly."
I fixed a couple small bugs in this. Otherwise, it looks good, and seems like a reasonable libgaim request.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sat, 19 Nov 2005 00:26:12 +0000 |
parents | e09bf5bc81d8 |
children | 9ce0a5f9443b |
rev | line source |
---|---|
10977 | 1 |
2 /* | |
3 Meanwhile Protocol Plugin for Gaim | |
4 Adds Lotus Sametime support to Gaim using the Meanwhile library | |
5 | |
6 Copyright (C) 2004 Christopher (siege) O'Brien <siege@preoccupied.net> | |
7 | |
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 (at | |
11 your option) any later version. | |
12 | |
13 This program is distributed in the hope that it will be useful, but | |
14 WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 General Public License for more details. | |
17 | |
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, | |
21 USA. | |
22 */ | |
23 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
24 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
25 /* system includes */ |
10977 | 26 #include <stdlib.h> |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
27 #include <time.h> |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
28 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
29 /* glib includes */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
30 #include <glib.h> |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
31 #include <glib/ghash.h> |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
32 #include <glib/glist.h> |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
33 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
34 /* gaim includes */ |
10977 | 35 #include <internal.h> |
36 #include <gaim.h> | |
37 #include <config.h> | |
38 | |
39 #include <account.h> | |
40 #include <accountopt.h> | |
41 #include <conversation.h> | |
42 #include <debug.h> | |
43 #include <ft.h> | |
44 #include <imgstore.h> | |
45 #include <mime.h> | |
46 #include <notify.h> | |
47 #include <plugin.h> | |
48 #include <privacy.h> | |
49 #include <prpl.h> | |
50 #include <request.h> | |
51 #include <util.h> | |
52 #include <version.h> | |
53 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
54 /* meanwhile includes */ |
10977 | 55 #include <mw_cipher.h> |
56 #include <mw_common.h> | |
57 #include <mw_error.h> | |
58 #include <mw_service.h> | |
59 #include <mw_session.h> | |
60 #include <mw_srvc_aware.h> | |
61 #include <mw_srvc_conf.h> | |
62 #include <mw_srvc_ft.h> | |
63 #include <mw_srvc_im.h> | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
64 #include <mw_srvc_place.h> |
10977 | 65 #include <mw_srvc_resolve.h> |
66 #include <mw_srvc_store.h> | |
67 #include <mw_st_list.h> | |
68 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
69 /* project includes */ |
10977 | 70 #include "sametime.h" |
71 | |
72 | |
73 /* considering that there's no display of this information for prpls, | |
74 I don't know why I even bother providing these. Oh valiant reader, | |
75 I do it all for you. */ | |
76 /* scratch that, I just added it to the prpl options panel */ | |
77 #define PLUGIN_ID "prpl-meanwhile" | |
78 #define PLUGIN_NAME "Sametime" | |
79 #define PLUGIN_SUMMARY "Sametime Protocol Plugin" | |
80 #define PLUGIN_DESC "Open implementation of a Lotus Sametime client" | |
81 #define PLUGIN_AUTHOR "Christopher (siege) O'Brien <siege@preoccupied.net>" | |
82 #define PLUGIN_HOMEPAGE "http://meanwhile.sourceforge.net/" | |
83 | |
84 | |
85 /* plugin preference names */ | |
86 #define MW_PRPL_OPT_BASE "/plugins/prpl/meanwhile" | |
87 #define MW_PRPL_OPT_BLIST_ACTION MW_PRPL_OPT_BASE "/blist_action" | |
88 #define MW_PRPL_OPT_PSYCHIC MW_PRPL_OPT_BASE "/psychic" | |
89 #define MW_PRPL_OPT_FORCE_LOGIN MW_PRPL_OPT_BASE "/force_login" | |
90 #define MW_PRPL_OPT_SAVE_DYNAMIC MW_PRPL_OPT_BASE "/save_dynamic" | |
91 | |
92 | |
93 /* stages of connecting-ness */ | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
94 #define MW_CONNECT_STEPS 9 |
10977 | 95 |
96 | |
97 /* stages of conciousness */ | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
98 #define MW_STATE_OFFLINE "offline" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
99 #define MW_STATE_ACTIVE "active" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
100 #define MW_STATE_AWAY "away" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
101 #define MW_STATE_BUSY "dnd" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
102 #define MW_STATE_MESSAGE "message" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
103 #define MW_STATE_ENLIGHTENED "buddha" |
10977 | 104 |
105 | |
106 /* keys to get/set chat information */ | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
107 #define CHAT_KEY_CREATOR "chat.creator" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
108 #define CHAT_KEY_NAME "chat.name" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
109 #define CHAT_KEY_TOPIC "chat.topic" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
110 #define CHAT_KEY_INVITE "chat.invite" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
111 #define CHAT_KEY_IS_PLACE "chat.is_place" |
10977 | 112 |
113 | |
114 /* key for associating a mwLoginType with a buddy */ | |
115 #define BUDDY_KEY_CLIENT "meanwhile.client" | |
116 | |
117 /* store the remote alias so that we can re-create it easily */ | |
118 #define BUDDY_KEY_NAME "meanwhile.shortname" | |
119 | |
120 /* enum mwSametimeUserType */ | |
121 #define BUDDY_KEY_TYPE "meanwhile.type" | |
122 | |
123 | |
124 /* key for the real group name for a meanwhile group */ | |
125 #define GROUP_KEY_NAME "meanwhile.group" | |
126 | |
127 /* enum mwSametimeGroupType */ | |
128 #define GROUP_KEY_TYPE "meanwhile.type" | |
129 | |
130 /* NAB group owning account */ | |
131 #define GROUP_KEY_OWNER "meanwhile.account" | |
132 | |
133 /* key gtk blist uses to indicate a collapsed group */ | |
134 #define GROUP_KEY_COLLAPSED "collapsed" | |
135 | |
136 | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
137 /* verification replacement */ |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
138 #define mwSession_NO_SECRET "meanwhile.no_secret" |
10977 | 139 |
140 | |
141 /* keys to get/set gaim plugin information */ | |
142 #define MW_KEY_HOST "server" | |
143 #define MW_KEY_PORT "port" | |
144 #define MW_KEY_ACTIVE_MSG "active_msg" | |
145 #define MW_KEY_AWAY_MSG "away_msg" | |
146 #define MW_KEY_BUSY_MSG "busy_msg" | |
147 #define MW_KEY_MSG_PROMPT "msg_prompt" | |
148 #define MW_KEY_INVITE "conf_invite" | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
149 #define MW_KEY_ENCODING "encoding" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
150 #define MW_KEY_FORCE "force_login" |
10977 | 151 |
152 | |
153 /** number of seconds from the first blist change before a save to the | |
154 storage service occurs. */ | |
155 #define BLIST_SAVE_SECONDS 15 | |
156 | |
157 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
158 /** the possible buddy list storage settings */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
159 enum blist_choice { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
160 blist_choice_LOCAL = 1, /**< local only */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
161 blist_choice_MERGE = 2, /**< merge from server */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
162 blist_choice_STORE = 3, /**< merge from and save to server */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
163 blist_choice_SYNCH = 4, /**< sync with server */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
164 }; |
10977 | 165 |
166 | |
167 /** the default blist storage option */ | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
168 #define BLIST_CHOICE_DEFAULT blist_choice_SYNCH |
10977 | 169 |
170 | |
171 /* testing for the above */ | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
172 #define BLIST_PREF_IS(n) (gaim_prefs_get_int(MW_PRPL_OPT_BLIST_ACTION)==(n)) |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
173 #define BLIST_PREF_IS_LOCAL() BLIST_PREF_IS(blist_choice_LOCAL) |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
174 #define BLIST_PREF_IS_MERGE() BLIST_PREF_IS(blist_choice_MERGE) |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
175 #define BLIST_PREF_IS_STORE() BLIST_PREF_IS(blist_choice_STORE) |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
176 #define BLIST_PREF_IS_SYNCH() BLIST_PREF_IS(blist_choice_SYNCH) |
10977 | 177 |
178 | |
179 /* debugging output */ | |
180 #define DEBUG_ERROR(a...) gaim_debug_error(G_LOG_DOMAIN, a) | |
181 #define DEBUG_INFO(a...) gaim_debug_info(G_LOG_DOMAIN, a) | |
182 #define DEBUG_MISC(a...) gaim_debug_misc(G_LOG_DOMAIN, a) | |
183 #define DEBUG_WARN(a...) gaim_debug_warning(G_LOG_DOMAIN, a) | |
184 | |
185 | |
186 /** ensure non-null strings */ | |
187 #ifndef NSTR | |
188 # define NSTR(str) ((str)? (str): "(null)") | |
189 #endif | |
190 | |
191 | |
192 /** calibrates distinct secure channel nomenclature */ | |
193 static const unsigned char no_secret[] = { | |
194 0x2d, 0x2d, 0x20, 0x73, 0x69, 0x65, 0x67, 0x65, | |
195 0x20, 0x6c, 0x6f, 0x76, 0x65, 0x73, 0x20, 0x6a, | |
196 0x65, 0x6e, 0x6e, 0x69, 0x20, 0x61, 0x6e, 0x64, | |
197 0x20, 0x7a, 0x6f, 0x65, 0x20, 0x2d, 0x2d, 0x00, | |
198 }; | |
199 | |
200 | |
201 /** handler IDs from g_log_set_handler in mw_plugin_init */ | |
202 static guint log_handler[2] = { 0, 0 }; | |
203 | |
204 | |
205 /** the gaim plugin data. | |
206 available as gc->proto_data and mwSession_getClientData */ | |
207 struct mwGaimPluginData { | |
208 struct mwSession *session; | |
209 | |
210 struct mwServiceAware *srvc_aware; | |
211 struct mwServiceConference *srvc_conf; | |
212 struct mwServiceFileTransfer *srvc_ft; | |
213 struct mwServiceIm *srvc_im; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
214 struct mwServicePlace *srvc_place; |
10977 | 215 struct mwServiceResolve *srvc_resolve; |
216 struct mwServiceStorage *srvc_store; | |
217 | |
218 /** map of GaimGroup:mwAwareList and mwAwareList:GaimGroup */ | |
219 GHashTable *group_list_map; | |
220 | |
221 /** event id for the buddy list save callback */ | |
222 guint save_event; | |
223 | |
224 /** socket fd */ | |
225 int socket; | |
226 | |
227 GaimConnection *gc; | |
228 }; | |
229 | |
230 | |
231 /* blist and aware functions */ | |
232 | |
233 static void blist_export(GaimConnection *gc, struct mwSametimeList *stlist); | |
234 | |
235 static void blist_store(struct mwGaimPluginData *pd); | |
236 | |
237 static void blist_schedule(struct mwGaimPluginData *pd); | |
238 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
239 static void blist_merge(GaimConnection *gc, struct mwSametimeList *stlist); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
240 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
241 static void blist_sync(GaimConnection *gc, struct mwSametimeList *stlist); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
242 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
243 static gboolean buddy_is_external(GaimBuddy *b); |
10977 | 244 |
245 static void buddy_add(struct mwGaimPluginData *pd, GaimBuddy *buddy); | |
246 | |
247 static GaimBuddy * | |
248 buddy_ensure(GaimConnection *gc, GaimGroup *group, | |
249 struct mwSametimeUser *stuser); | |
250 | |
251 static void group_add(struct mwGaimPluginData *pd, GaimGroup *group); | |
252 | |
253 static GaimGroup * | |
254 group_ensure(GaimConnection *gc, struct mwSametimeGroup *stgroup); | |
255 | |
256 static struct mwAwareList * | |
257 list_ensure(struct mwGaimPluginData *pd, GaimGroup *group); | |
258 | |
259 | |
260 /* session functions */ | |
261 | |
262 static struct mwSession * | |
263 gc_to_session(GaimConnection *gc); | |
264 | |
265 static GaimConnection *session_to_gc(struct mwSession *session); | |
266 | |
267 | |
268 /* conference functions */ | |
269 | |
270 static struct mwConference * | |
271 conf_find_by_id(struct mwGaimPluginData *pd, int id); | |
272 | |
273 | |
274 /* conversation functions */ | |
275 | |
276 struct convo_msg { | |
277 enum mwImSendType type; | |
278 gpointer data; | |
279 GDestroyNotify clear; | |
280 }; | |
281 | |
282 | |
283 struct convo_data { | |
284 struct mwConversation *conv; | |
285 GList *queue; /**< outgoing message queue, list of convo_msg */ | |
286 }; | |
287 | |
288 static void convo_data_new(struct mwConversation *conv); | |
289 | |
290 static void convo_data_free(struct convo_data *conv); | |
291 | |
292 static void convo_features(struct mwConversation *conv); | |
293 | |
294 static GaimConversation *convo_get_gconv(struct mwConversation *conv); | |
295 | |
296 | |
297 /* resolved id */ | |
298 | |
299 struct resolved_id { | |
300 char *id; | |
301 char *name; | |
302 }; | |
303 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
304 static struct resolved_id *resolved_id_new(const char *id, const char *name); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
305 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
306 static void resolved_id_free(struct resolved_id *rid); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
307 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
308 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
309 /* connection functions */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
310 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
311 static void connect_cb(gpointer data, gint source, GaimInputCondition cond); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
312 |
10977 | 313 |
314 /* ----- session ------ */ | |
315 | |
316 | |
317 /** resolves a mwSession from a GaimConnection */ | |
318 static struct mwSession *gc_to_session(GaimConnection *gc) { | |
319 struct mwGaimPluginData *pd; | |
320 | |
321 g_return_val_if_fail(gc != NULL, NULL); | |
322 | |
323 pd = gc->proto_data; | |
324 g_return_val_if_fail(pd != NULL, NULL); | |
325 | |
326 return pd->session; | |
327 } | |
328 | |
329 | |
330 /** resolves a GaimConnection from a mwSession */ | |
331 static GaimConnection *session_to_gc(struct mwSession *session) { | |
332 struct mwGaimPluginData *pd; | |
333 | |
334 g_return_val_if_fail(session != NULL, NULL); | |
335 | |
336 pd = mwSession_getClientData(session); | |
337 g_return_val_if_fail(pd != NULL, NULL); | |
338 | |
339 return pd->gc; | |
340 } | |
341 | |
342 | |
343 static int mw_session_io_write(struct mwSession *session, | |
344 const char *buf, gsize len) { | |
345 struct mwGaimPluginData *pd; | |
346 int ret = 0; | |
347 | |
348 pd = mwSession_getClientData(session); | |
349 | |
350 /* socket was already closed. */ | |
351 if(pd->socket == 0) | |
352 return 1; | |
353 | |
354 while(len) { | |
355 ret = write(pd->socket, buf, len); | |
356 if(ret <= 0) break; | |
357 len -= ret; | |
358 } | |
359 | |
360 if(len > 0) { | |
361 DEBUG_ERROR("write returned %i, %i bytes left unwritten\n", ret, len); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
362 gaim_connection_error(pd->gc, _("Connection closed (writing)")); |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
363 |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
364 #if 0 |
10977 | 365 close(pd->socket); |
366 pd->socket = 0; | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
367 #endif |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
368 |
10977 | 369 return -1; |
370 } | |
371 | |
372 return 0; | |
373 } | |
374 | |
375 | |
376 static void mw_session_io_close(struct mwSession *session) { | |
377 struct mwGaimPluginData *pd; | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
378 GaimConnection *gc; |
10977 | 379 |
380 pd = mwSession_getClientData(session); | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
381 g_return_if_fail(pd != NULL); |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
382 |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
383 gc = pd->gc; |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
384 |
10977 | 385 if(pd->socket) { |
386 close(pd->socket); | |
387 pd->socket = 0; | |
388 } | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
389 |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
390 if(gc->inpa) { |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
391 gaim_input_remove(gc->inpa); |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
392 gc->inpa = 0; |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
393 } |
10977 | 394 } |
395 | |
396 | |
397 static void mw_session_clear(struct mwSession *session) { | |
398 ; /* nothing for now */ | |
399 } | |
400 | |
401 | |
402 /* ----- aware list ----- */ | |
403 | |
404 | |
405 static void blist_resolve_alias_cb(struct mwServiceResolve *srvc, | |
406 guint32 id, guint32 code, GList *results, | |
407 gpointer data) { | |
408 struct mwResolveResult *result; | |
409 struct mwResolveMatch *match; | |
410 | |
411 g_return_if_fail(results != NULL); | |
412 | |
413 result = results->data; | |
414 g_return_if_fail(result != NULL); | |
415 g_return_if_fail(result->matches != NULL); | |
416 | |
417 match = result->matches->data; | |
418 g_return_if_fail(match != NULL); | |
419 | |
420 gaim_blist_server_alias_buddy(data, match->name); | |
421 gaim_blist_node_set_string(data, BUDDY_KEY_NAME, match->name); | |
422 } | |
423 | |
424 | |
425 static void mw_aware_list_on_aware(struct mwAwareList *list, | |
426 struct mwAwareSnapshot *aware) { | |
427 | |
428 GaimConnection *gc; | |
11638 | 429 GaimAccount *acct; |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
430 |
10977 | 431 struct mwGaimPluginData *pd; |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
432 time_t idle; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
433 guint stat; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
434 const char *id; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
435 const char *status = MW_STATE_ACTIVE; |
10977 | 436 |
437 gc = mwAwareList_getClientData(list); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
438 acct = gaim_connection_get_account(gc); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
439 |
10977 | 440 pd = gc->proto_data; |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
441 idle = aware->status.time; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
442 stat = aware->status.status; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
443 id = aware->id.user; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
444 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
445 /* not sure which client sends this yet */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
446 if(idle == 0xdeadbeef) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
447 /* knock knock! |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
448 who's there? |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
449 rude interrupting cow. |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
450 rude interr... |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
451 MOO! */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
452 idle = -1; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
453 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
454 |
10977 | 455 switch(stat) { |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
456 case mwStatus_ACTIVE: |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
457 status = MW_STATE_ACTIVE; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
458 idle = 0; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
459 break; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
460 |
10977 | 461 case mwStatus_IDLE: |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
462 if(! idle) idle = -1; |
10977 | 463 break; |
464 | |
465 case mwStatus_AWAY: | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
466 status = MW_STATE_AWAY; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
467 break; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
468 |
10977 | 469 case mwStatus_BUSY: |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
470 status = MW_STATE_BUSY; |
10977 | 471 break; |
472 } | |
473 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
474 /* NAB group members */ |
10977 | 475 if(aware->group) { |
476 GaimGroup *group; | |
477 GaimBuddy *buddy; | |
478 GaimBlistNode *bnode; | |
479 | |
480 group = g_hash_table_lookup(pd->group_list_map, list); | |
481 buddy = gaim_find_buddy_in_group(acct, id, group); | |
482 bnode = (GaimBlistNode *) buddy; | |
483 | |
484 if(! buddy) { | |
485 struct mwServiceResolve *srvc; | |
486 GList *query; | |
487 | |
488 buddy = gaim_buddy_new(acct, id, NULL); | |
489 gaim_blist_add_buddy(buddy, NULL, group, NULL); | |
490 | |
491 bnode = (GaimBlistNode *) buddy; | |
492 | |
493 srvc = pd->srvc_resolve; | |
494 query = g_list_append(NULL, (char *) id); | |
495 | |
496 mwServiceResolve_resolve(srvc, query, mwResolveFlag_USERS, | |
497 blist_resolve_alias_cb, buddy, NULL); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
498 g_list_free(query); |
10977 | 499 } |
500 | |
501 gaim_blist_node_set_int(bnode, BUDDY_KEY_TYPE, mwSametimeUser_NORMAL); | |
502 } | |
503 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
504 gaim_prpl_got_user_status(acct, id, status, NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
505 gaim_prpl_got_user_idle(acct, id, !!idle, idle); |
10977 | 506 } |
507 | |
508 | |
509 static void mw_aware_list_on_attrib(struct mwAwareList *list, | |
510 struct mwAwareIdBlock *id, | |
511 struct mwAwareAttribute *attrib) { | |
512 | |
513 ; /* nothing. We'll get attribute data as we need it */ | |
514 } | |
515 | |
516 | |
517 static void mw_aware_list_clear(struct mwAwareList *list) { | |
518 ; /* nothing for now */ | |
519 } | |
520 | |
521 | |
522 static struct mwAwareListHandler mw_aware_list_handler = { | |
523 .on_aware = mw_aware_list_on_aware, | |
524 .on_attrib = mw_aware_list_on_attrib, | |
525 .clear = mw_aware_list_clear, | |
526 }; | |
527 | |
528 | |
529 /** Ensures that an Aware List is associated with the given group, and | |
530 returns that list. */ | |
531 static struct mwAwareList * | |
532 list_ensure(struct mwGaimPluginData *pd, GaimGroup *group) { | |
533 | |
534 struct mwAwareList *list; | |
535 | |
536 g_return_val_if_fail(pd != NULL, NULL); | |
537 g_return_val_if_fail(group != NULL, NULL); | |
538 | |
539 list = g_hash_table_lookup(pd->group_list_map, group); | |
540 if(! list) { | |
541 list = mwAwareList_new(pd->srvc_aware, &mw_aware_list_handler); | |
542 mwAwareList_setClientData(list, pd->gc, NULL); | |
543 | |
544 mwAwareList_watchAttributes(list, | |
545 mwAttribute_AV_PREFS_SET, | |
546 mwAttribute_MICROPHONE, | |
547 mwAttribute_SPEAKERS, | |
548 mwAttribute_VIDEO_CAMERA, | |
549 mwAttribute_FILE_TRANSFER, | |
550 NULL); | |
551 | |
552 g_hash_table_replace(pd->group_list_map, group, list); | |
553 g_hash_table_insert(pd->group_list_map, list, group); | |
554 } | |
555 | |
556 return list; | |
557 } | |
558 | |
559 | |
560 static void blist_export(GaimConnection *gc, struct mwSametimeList *stlist) { | |
561 /* - find the account for this connection | |
562 - iterate through the buddy list | |
563 - add each buddy matching this account to the stlist | |
564 */ | |
565 | |
566 GaimAccount *acct; | |
567 GaimBuddyList *blist; | |
568 GaimBlistNode *gn, *cn, *bn; | |
569 GaimGroup *grp; | |
570 GaimBuddy *bdy; | |
571 | |
572 struct mwSametimeGroup *stg = NULL; | |
573 struct mwIdBlock idb = { NULL, NULL }; | |
574 | |
575 acct = gaim_connection_get_account(gc); | |
576 g_return_if_fail(acct != NULL); | |
577 | |
578 blist = gaim_get_blist(); | |
579 g_return_if_fail(blist != NULL); | |
580 | |
581 for(gn = blist->root; gn; gn = gn->next) { | |
582 const char *owner; | |
583 const char *gname; | |
584 enum mwSametimeGroupType gtype; | |
585 gboolean gopen; | |
586 | |
587 if(! GAIM_BLIST_NODE_IS_GROUP(gn)) continue; | |
588 grp = (GaimGroup *) gn; | |
589 | |
590 /* the group's type (normal or dynamic) */ | |
591 gtype = gaim_blist_node_get_int(gn, GROUP_KEY_TYPE); | |
592 if(! gtype) gtype = mwSametimeGroup_NORMAL; | |
593 | |
594 /* if it's a normal group with none of our people in it, skip it */ | |
595 if(gtype == mwSametimeGroup_NORMAL && !gaim_group_on_account(grp, acct)) | |
596 continue; | |
597 | |
598 /* if the group has an owner and we're not it, skip it */ | |
599 owner = gaim_blist_node_get_string(gn, GROUP_KEY_OWNER); | |
600 if(owner && strcmp(owner, gaim_account_get_username(acct))) | |
601 continue; | |
602 | |
603 /* the group's actual name may be different from the gaim group's | |
604 name. Find whichever is there */ | |
605 gname = gaim_blist_node_get_string(gn, GROUP_KEY_NAME); | |
606 if(! gname) gname = grp->name; | |
607 | |
608 /* we save this, but never actually honor it */ | |
609 gopen = ! gaim_blist_node_get_bool(gn, GROUP_KEY_COLLAPSED); | |
610 | |
611 stg = mwSametimeGroup_new(stlist, gtype, gname); | |
612 mwSametimeGroup_setAlias(stg, grp->name); | |
613 mwSametimeGroup_setOpen(stg, gopen); | |
614 | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
615 /* don't attempt to put buddies in a dynamic group, it breaks |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
616 other clients */ |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
617 if(gtype == mwSametimeGroup_DYNAMIC) |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
618 continue; |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
619 |
10977 | 620 for(cn = gn->child; cn; cn = cn->next) { |
621 if(! GAIM_BLIST_NODE_IS_CONTACT(cn)) continue; | |
622 | |
623 for(bn = cn->child; bn; bn = bn->next) { | |
624 if(! GAIM_BLIST_NODE_IS_BUDDY(bn)) continue; | |
625 if(! GAIM_BLIST_NODE_SHOULD_SAVE(bn)) continue; | |
626 | |
627 bdy = (GaimBuddy *) bn; | |
628 | |
629 if(bdy->account == acct) { | |
630 struct mwSametimeUser *stu; | |
631 enum mwSametimeUserType utype; | |
632 | |
633 idb.user = bdy->name; | |
634 | |
635 utype = gaim_blist_node_get_int(bn, BUDDY_KEY_TYPE); | |
636 if(! utype) utype = mwSametimeUser_NORMAL; | |
637 | |
638 stu = mwSametimeUser_new(stg, utype, &idb); | |
639 mwSametimeUser_setShortName(stu, bdy->server_alias); | |
640 mwSametimeUser_setAlias(stu, bdy->alias); | |
641 } | |
642 } | |
643 } | |
644 } | |
645 } | |
646 | |
647 | |
648 static void blist_store(struct mwGaimPluginData *pd) { | |
649 | |
650 struct mwSametimeList *stlist; | |
651 struct mwServiceStorage *srvc; | |
652 struct mwStorageUnit *unit; | |
653 | |
654 GaimConnection *gc; | |
655 | |
656 struct mwPutBuffer *b; | |
657 struct mwOpaque *o; | |
658 | |
659 g_return_if_fail(pd != NULL); | |
660 | |
661 srvc = pd->srvc_store; | |
662 g_return_if_fail(srvc != NULL); | |
663 | |
664 gc = pd->gc; | |
665 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
666 if(BLIST_PREF_IS_LOCAL() || BLIST_PREF_IS_MERGE()) { |
10977 | 667 DEBUG_INFO("preferences indicate not to save remote blist\n"); |
668 return; | |
669 | |
670 } else if(MW_SERVICE_IS_DEAD(srvc)) { | |
671 DEBUG_INFO("aborting save of blist: storage service is not alive\n"); | |
672 return; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
673 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
674 } else if(BLIST_PREF_IS_STORE() || BLIST_PREF_IS_SYNCH()) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
675 DEBUG_INFO("saving remote blist\n"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
676 |
10977 | 677 } else { |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
678 g_return_if_reached(); |
10977 | 679 } |
680 | |
681 /* create and export to a list object */ | |
682 stlist = mwSametimeList_new(); | |
683 blist_export(gc, stlist); | |
684 | |
685 /* write it to a buffer */ | |
686 b = mwPutBuffer_new(); | |
687 mwSametimeList_put(b, stlist); | |
688 mwSametimeList_free(stlist); | |
689 | |
690 /* put the buffer contents into a storage unit */ | |
691 unit = mwStorageUnit_new(mwStore_AWARE_LIST); | |
692 o = mwStorageUnit_asOpaque(unit); | |
693 mwPutBuffer_finalize(o, b); | |
694 | |
695 /* save the storage unit to the service */ | |
696 mwServiceStorage_save(srvc, unit, NULL, NULL, NULL); | |
697 } | |
698 | |
699 | |
700 static gboolean blist_save_cb(gpointer data) { | |
701 struct mwGaimPluginData *pd = data; | |
702 | |
703 blist_store(pd); | |
704 pd->save_event = 0; | |
705 return FALSE; | |
706 } | |
707 | |
708 | |
709 /** schedules the buddy list to be saved to the server */ | |
710 static void blist_schedule(struct mwGaimPluginData *pd) { | |
711 if(pd->save_event) return; | |
712 | |
713 pd->save_event = gaim_timeout_add(BLIST_SAVE_SECONDS * 1000, | |
714 blist_save_cb, pd); | |
715 } | |
716 | |
717 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
718 static gboolean buddy_is_external(GaimBuddy *b) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
719 g_return_val_if_fail(b != NULL, FALSE); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
720 return g_str_has_prefix(b->name, "@E "); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
721 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
722 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
723 |
10977 | 724 /** Actually add a buddy to the aware service, and schedule the buddy |
725 list to be saved to the server */ | |
726 static void buddy_add(struct mwGaimPluginData *pd, | |
727 GaimBuddy *buddy) { | |
728 | |
729 struct mwAwareIdBlock idb = { mwAware_USER, (char *) buddy->name, NULL }; | |
730 struct mwAwareList *list; | |
731 | |
732 GaimGroup *group; | |
733 GList *add; | |
734 | |
735 add = g_list_prepend(NULL, &idb); | |
736 | |
12088 | 737 group = gaim_buddy_get_group(buddy); |
10977 | 738 list = list_ensure(pd, group); |
739 | |
740 if(mwAwareList_addAware(list, add)) { | |
741 gaim_blist_remove_buddy(buddy); | |
742 } | |
743 | |
744 blist_schedule(pd); | |
745 | |
746 g_list_free(add); | |
747 } | |
748 | |
749 | |
750 /** ensure that a GaimBuddy exists in the group with data | |
751 appropriately matching the st user entry from the st list */ | |
752 static GaimBuddy *buddy_ensure(GaimConnection *gc, GaimGroup *group, | |
753 struct mwSametimeUser *stuser) { | |
754 | |
755 struct mwGaimPluginData *pd = gc->proto_data; | |
756 GaimBuddy *buddy; | |
757 GaimAccount *acct = gaim_connection_get_account(gc); | |
758 | |
759 const char *id = mwSametimeUser_getUser(stuser); | |
760 const char *name = mwSametimeUser_getShortName(stuser); | |
761 const char *alias = mwSametimeUser_getAlias(stuser); | |
762 enum mwSametimeUserType type = mwSametimeUser_getType(stuser); | |
763 | |
764 g_return_val_if_fail(id != NULL, NULL); | |
765 g_return_val_if_fail(strlen(id) > 0, NULL); | |
766 | |
767 buddy = gaim_find_buddy_in_group(acct, id, group); | |
768 if(! buddy) { | |
769 buddy = gaim_buddy_new(acct, id, alias); | |
770 | |
771 gaim_blist_add_buddy(buddy, NULL, group, NULL); | |
772 buddy_add(pd, buddy); | |
773 } | |
774 | |
775 gaim_blist_alias_buddy(buddy, alias); | |
776 gaim_blist_server_alias_buddy(buddy, name); | |
777 gaim_blist_node_set_string((GaimBlistNode *) buddy, BUDDY_KEY_NAME, name); | |
778 gaim_blist_node_set_int((GaimBlistNode *) buddy, BUDDY_KEY_TYPE, type); | |
779 | |
780 return buddy; | |
781 } | |
782 | |
783 | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
784 /** add aware watch for a dynamic group */ |
10977 | 785 static void group_add(struct mwGaimPluginData *pd, |
786 GaimGroup *group) { | |
787 | |
788 struct mwAwareIdBlock idb = { mwAware_GROUP, NULL, NULL }; | |
789 struct mwAwareList *list; | |
790 const char *n; | |
791 GList *add; | |
792 | |
793 n = gaim_blist_node_get_string((GaimBlistNode *) group, GROUP_KEY_NAME); | |
794 if(! n) n = group->name; | |
795 | |
796 idb.user = (char *) n; | |
797 add = g_list_prepend(NULL, &idb); | |
798 | |
799 list = list_ensure(pd, group); | |
800 mwAwareList_addAware(list, add); | |
801 g_list_free(add); | |
802 } | |
803 | |
804 | |
805 /** ensure that a GaimGroup exists in the blist with data | |
806 appropriately matching the st group entry from the st list */ | |
807 static GaimGroup *group_ensure(GaimConnection *gc, | |
808 struct mwSametimeGroup *stgroup) { | |
809 GaimAccount *acct; | |
12006
de25a063aebe
[gaim-migrate @ 14299]
Christopher O'Brien <siege@pidgin.im>
parents:
12005
diff
changeset
|
810 GaimGroup *group = NULL; |
12005
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
811 GaimBuddyList *blist; |
10977 | 812 GaimBlistNode *gn; |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
813 const char *name, *alias, *owner; |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
814 enum mwSametimeGroupType type; |
10977 | 815 |
816 acct = gaim_connection_get_account(gc); | |
817 owner = gaim_account_get_username(acct); | |
818 | |
12005
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
819 blist = gaim_get_blist(); |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
820 g_return_val_if_fail(blist != NULL, NULL); |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
821 |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
822 name = mwSametimeGroup_getName(stgroup); |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
823 alias = mwSametimeGroup_getAlias(stgroup); |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
824 type = mwSametimeGroup_getType(stgroup); |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
825 |
12005
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
826 /* first attempt at finding the group, by the name key */ |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
827 for(gn = blist->root; gn; gn = gn->next) { |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
828 const char *n; |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
829 if(! GAIM_BLIST_NODE_IS_GROUP(gn)) continue; |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
830 n = gaim_blist_node_get_string(gn, GROUP_KEY_NAME); |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
831 |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
832 if(n && !strcmp(n, name)) { |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
833 group = (GaimGroup *) gn; |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
834 break; |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
835 } |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
836 } |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
837 |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
838 /* try again, by alias */ |
12006
de25a063aebe
[gaim-migrate @ 14299]
Christopher O'Brien <siege@pidgin.im>
parents:
12005
diff
changeset
|
839 if(! group) group = gaim_find_group(alias); |
12005
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
840 |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
841 /* oh well, no such group. Let's create it! */ |
10977 | 842 if(! group) { |
843 group = gaim_group_new(alias); | |
844 gaim_blist_add_group(group, NULL); | |
845 } | |
846 | |
847 gn = (GaimBlistNode *) group; | |
848 gaim_blist_node_set_string(gn, GROUP_KEY_NAME, name); | |
849 gaim_blist_node_set_int(gn, GROUP_KEY_TYPE, type); | |
850 | |
851 if(type == mwSametimeGroup_DYNAMIC) { | |
852 gaim_blist_node_set_string(gn, GROUP_KEY_OWNER, owner); | |
853 group_add(gc->proto_data, group); | |
854 } | |
855 | |
856 return group; | |
857 } | |
858 | |
859 | |
860 /** merge the entries from a st list into the gaim blist */ | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
861 static void blist_merge(GaimConnection *gc, struct mwSametimeList *stlist) { |
10977 | 862 struct mwSametimeGroup *stgroup; |
863 struct mwSametimeUser *stuser; | |
864 | |
865 GaimGroup *group; | |
866 GaimBuddy *buddy; | |
867 | |
868 GList *gl, *gtl, *ul, *utl; | |
869 | |
870 gl = gtl = mwSametimeList_getGroups(stlist); | |
871 for(; gl; gl = gl->next) { | |
872 | |
873 stgroup = (struct mwSametimeGroup *) gl->data; | |
874 group = group_ensure(gc, stgroup); | |
875 | |
876 ul = utl = mwSametimeGroup_getUsers(stgroup); | |
877 for(; ul; ul = ul->next) { | |
878 | |
879 stuser = (struct mwSametimeUser *) ul->data; | |
880 buddy = buddy_ensure(gc, group, stuser); | |
881 } | |
882 g_list_free(utl); | |
883 } | |
884 g_list_free(gtl); | |
885 } | |
886 | |
887 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
888 /** remove all buddies on account from group. If del is TRUE and group |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
889 is left empty, remove group as well */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
890 static void group_clear(GaimGroup *group, GaimAccount *acct, gboolean del) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
891 GaimConnection *gc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
892 GList *prune = NULL; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
893 GaimBlistNode *gn, *cn, *bn; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
894 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
895 g_return_if_fail(group != NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
896 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
897 DEBUG_INFO("clearing members from pruned group %s\n", NSTR(group->name)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
898 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
899 gc = gaim_account_get_connection(acct); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
900 g_return_if_fail(gc != NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
901 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
902 gn = (GaimBlistNode *) group; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
903 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
904 for(cn = gn->child; cn; cn = cn->next) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
905 if(! GAIM_BLIST_NODE_IS_CONTACT(cn)) continue; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
906 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
907 for(bn = cn->child; bn; bn = bn->next) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
908 GaimBuddy *gb = (GaimBuddy *) bn; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
909 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
910 if(! GAIM_BLIST_NODE_IS_BUDDY(bn)) continue; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
911 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
912 if(gb->account == acct) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
913 DEBUG_INFO("clearing %s from group\n", NSTR(gb->name)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
914 prune = g_list_prepend(prune, gb); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
915 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
916 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
917 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
918 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
919 /* quickly unsubscribe from presence for the entire group */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
920 gaim_account_remove_group(acct, group); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
921 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
922 /* remove blist entries that need to go */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
923 while(prune) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
924 gaim_blist_remove_buddy(prune->data); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
925 prune = g_list_delete_link(prune, prune); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
926 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
927 DEBUG_INFO("cleared buddies\n"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
928 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
929 /* optionally remove group from blist */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
930 if(del && !gaim_blist_get_group_size(group, TRUE)) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
931 DEBUG_INFO("removing empty group\n"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
932 gaim_blist_remove_group(group); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
933 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
934 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
935 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
936 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
937 /** prune out group members that shouldn't be there */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
938 static void group_prune(GaimConnection *gc, GaimGroup *group, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
939 struct mwSametimeGroup *stgroup) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
940 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
941 GaimAccount *acct; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
942 GaimBlistNode *gn, *cn, *bn; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
943 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
944 GHashTable *stusers; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
945 GList *prune = NULL; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
946 GList *ul, *utl; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
947 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
948 g_return_if_fail(group != NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
949 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
950 DEBUG_INFO("pruning membership of group %s\n", NSTR(group->name)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
951 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
952 acct = gaim_connection_get_account(gc); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
953 g_return_if_fail(acct != NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
954 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
955 stusers = g_hash_table_new(g_str_hash, g_str_equal); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
956 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
957 /* build a hash table for quick lookup while pruning the group |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
958 contents */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
959 utl = mwSametimeGroup_getUsers(stgroup); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
960 for(ul = utl; ul; ul = ul->next) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
961 const char *id = mwSametimeUser_getUser(ul->data); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
962 g_hash_table_insert(stusers, (char *) id, ul->data); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
963 DEBUG_INFO("server copy has %s\n", NSTR(id)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
964 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
965 g_list_free(utl); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
966 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
967 gn = (GaimBlistNode *) group; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
968 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
969 for(cn = gn->child; cn; cn = cn->next) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
970 if(! GAIM_BLIST_NODE_IS_CONTACT(cn)) continue; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
971 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
972 for(bn = cn->child; bn; bn = bn->next) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
973 GaimBuddy *gb = (GaimBuddy *) bn; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
974 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
975 if(! GAIM_BLIST_NODE_IS_BUDDY(bn)) continue; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
976 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
977 /* if the account is correct and they're not in our table, mark |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
978 them for pruning */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
979 if(gb->account == acct && !g_hash_table_lookup(stusers, gb->name)) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
980 DEBUG_INFO("marking %s for pruning\n", NSTR(gb->name)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
981 prune = g_list_prepend(prune, gb); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
982 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
983 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
984 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
985 DEBUG_INFO("done marking\n"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
986 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
987 g_hash_table_destroy(stusers); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
988 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
989 if(prune) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
990 gaim_account_remove_buddies(acct, prune, NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
991 while(prune) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
992 gaim_blist_remove_buddy(prune->data); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
993 prune = g_list_delete_link(prune, prune); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
994 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
995 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
996 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
997 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
998 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
999 /** synch the entries from a st list into the gaim blist, removing any |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1000 existing buddies that aren't in the st list */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1001 static void blist_sync(GaimConnection *gc, struct mwSametimeList *stlist) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1002 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1003 GaimAccount *acct; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1004 GaimBuddyList *blist; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1005 GaimBlistNode *gn; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1006 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1007 GHashTable *stgroups; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1008 GList *g_prune = NULL; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1009 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1010 GList *gl, *gtl; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1011 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1012 const char *acct_n; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1013 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1014 DEBUG_INFO("synchronizing local buddy list from server list\n"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1015 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1016 acct = gaim_connection_get_account(gc); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1017 g_return_if_fail(acct != NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1018 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1019 acct_n = gaim_account_get_username(acct); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1020 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1021 blist = gaim_get_blist(); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1022 g_return_if_fail(blist != NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1023 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1024 /* build a hash table for quick lookup while pruning the local |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1025 list, mapping group name to group structure */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1026 stgroups = g_hash_table_new(g_str_hash, g_str_equal); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1027 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1028 gtl = mwSametimeList_getGroups(stlist); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1029 for(gl = gtl; gl; gl = gl->next) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1030 const char *name = mwSametimeGroup_getName(gl->data); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1031 g_hash_table_insert(stgroups, (char *) name, gl->data); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1032 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1033 g_list_free(gtl); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1034 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1035 /* find all groups which should be pruned from the local list */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1036 for(gn = blist->root; gn; gn = gn->next) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1037 GaimGroup *grp = (GaimGroup *) gn; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1038 const char *gname, *owner; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1039 struct mwSametimeGroup *stgrp; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1040 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1041 if(! GAIM_BLIST_NODE_IS_GROUP(gn)) continue; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1042 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1043 /* group not belonging to this account */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1044 if(! gaim_group_on_account(grp, acct)) |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1045 continue; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1046 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1047 /* dynamic group belonging to this account. don't prune contents */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1048 owner = gaim_blist_node_get_string(gn, GROUP_KEY_OWNER); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1049 if(owner && !strcmp(owner, acct_n)) |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1050 continue; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1051 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1052 /* we actually are synching by this key as opposed to the group |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1053 title, which can be different things in the st list */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1054 gname = gaim_blist_node_get_string(gn, GROUP_KEY_NAME); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1055 if(! gname) gname = grp->name; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1056 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1057 stgrp = g_hash_table_lookup(stgroups, gname); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1058 if(! stgrp) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1059 /* remove the whole group */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1060 DEBUG_INFO("marking group %s for pruning\n", grp->name); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1061 g_prune = g_list_prepend(g_prune, grp); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1062 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1063 } else { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1064 /* synch the group contents */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1065 group_prune(gc, grp, stgrp); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1066 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1067 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1068 DEBUG_INFO("done marking groups\n"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1069 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1070 /* don't need this anymore */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1071 g_hash_table_destroy(stgroups); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1072 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1073 /* prune all marked groups */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1074 while(g_prune) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1075 GaimGroup *grp = g_prune->data; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1076 GaimBlistNode *gn = (GaimBlistNode *) grp; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1077 const char *owner; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1078 gboolean del = TRUE; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1079 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1080 owner = gaim_blist_node_get_string(gn, GROUP_KEY_OWNER); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1081 if(owner && strcmp(owner, acct_n)) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1082 /* it's a specialty group belonging to another account with some |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1083 of our members in it, so don't fully delete it */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1084 del = FALSE; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1085 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1086 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1087 group_clear(g_prune->data, acct, del); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1088 g_prune = g_list_delete_link(g_prune, g_prune); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1089 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1090 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1091 /* done with the pruning, let's merge in the additions */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1092 blist_merge(gc, stlist); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1093 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1094 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1095 |
10977 | 1096 /** callback passed to the storage service when it's told to load the |
1097 st list */ | |
1098 static void fetch_blist_cb(struct mwServiceStorage *srvc, | |
1099 guint32 result, struct mwStorageUnit *item, | |
1100 gpointer data) { | |
1101 | |
1102 struct mwGaimPluginData *pd = data; | |
1103 struct mwSametimeList *stlist; | |
1104 struct mwSession *s; | |
1105 | |
1106 struct mwGetBuffer *b; | |
1107 | |
1108 g_return_if_fail(result == ERR_SUCCESS); | |
1109 | |
1110 /* check our preferences for loading */ | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1111 if(BLIST_PREF_IS_LOCAL()) { |
10977 | 1112 DEBUG_INFO("preferences indicate not to load remote buddy list\n"); |
1113 return; | |
1114 } | |
1115 | |
1116 b = mwGetBuffer_wrap(mwStorageUnit_asOpaque(item)); | |
1117 | |
1118 stlist = mwSametimeList_new(); | |
1119 mwSametimeList_get(b, stlist); | |
1120 | |
1121 s = mwService_getSession(MW_SERVICE(srvc)); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1122 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1123 /* merge or synch depending on preferences */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1124 if(BLIST_PREF_IS_MERGE() || BLIST_PREF_IS_STORE()) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1125 blist_merge(pd->gc, stlist); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1126 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1127 } else if(BLIST_PREF_IS_SYNCH()) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1128 blist_sync(pd->gc, stlist); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1129 } |
10977 | 1130 |
1131 mwSametimeList_free(stlist); | |
1132 } | |
1133 | |
1134 | |
1135 /** callback passed to the storage service when it's told to load one | |
1136 of the default status messages */ | |
1137 static void fetch_msg_cb(struct mwServiceStorage *srvc, | |
1138 guint32 result, struct mwStorageUnit *item, | |
1139 gpointer data) { | |
1140 | |
1141 struct mwGaimPluginData *pd = data; | |
1142 GaimConnection *gc; | |
1143 GaimAccount *acct; | |
1144 struct mwSession *session; | |
1145 char *msg, *m; | |
1146 | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1147 /* it's no big deal if these entries don't exist on the server */ |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1148 if(result != ERR_SUCCESS) return; |
10977 | 1149 |
1150 g_return_if_fail(pd != NULL); | |
1151 | |
1152 gc = pd->gc; | |
1153 g_return_if_fail(gc != NULL); | |
1154 | |
1155 acct = gaim_connection_get_account(gc); | |
1156 g_return_if_fail(acct != NULL); | |
1157 | |
1158 session = pd->session; | |
1159 g_return_if_fail(session != NULL); | |
1160 | |
1161 m = msg = mwStorageUnit_asString(item); | |
1162 | |
1163 /* only load the first (non-empty) line of the collection of | |
1164 status messages */ | |
1165 if(m && *m) { | |
1166 while(*m && isspace(*m)) m++; | |
1167 if(*m) { | |
1168 char *tail; | |
1169 | |
1170 tail = strchr(m, '\r'); | |
1171 if(tail) *tail = '\0'; | |
1172 tail = strchr(m, '\n'); | |
1173 if(tail) *tail = '\0'; | |
1174 } | |
1175 } | |
1176 | |
1177 switch(mwStorageUnit_getKey(item)) { | |
1178 case mwStore_AWAY_MESSAGES: | |
1179 DEBUG_INFO("setting away message to \"%s\"\n", NSTR(m)); | |
1180 gaim_account_set_string(acct, MW_KEY_AWAY_MSG, m); | |
1181 break; | |
1182 | |
1183 case mwStore_BUSY_MESSAGES: | |
1184 DEBUG_INFO("setting busy message to \"%s\"\n", NSTR(m)); | |
1185 gaim_account_set_string(acct, MW_KEY_BUSY_MSG, m); | |
1186 break; | |
1187 | |
1188 case mwStore_ACTIVE_MESSAGES: | |
1189 DEBUG_INFO("setting active message to \"%s\"\n", NSTR(m)); | |
1190 gaim_account_set_string(acct, MW_KEY_ACTIVE_MSG, m); | |
1191 break; | |
1192 | |
1193 default: | |
1194 g_free(msg); | |
1195 g_return_if_reached(); | |
1196 } | |
1197 | |
1198 g_free(msg); | |
1199 msg = NULL; | |
1200 | |
1201 #if 0 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1202 /* XXX resets the status, thus updating the message */ |
10977 | 1203 if(!gc->away_state || !strcmp(gc->away_state, MW_STATE_ACTIVE)) { |
1204 msg = MW_STATE_ACTIVE; | |
1205 } else if(gc->away_state && !strcmp(gc->away_state, MW_STATE_AWAY)) { | |
1206 msg = MW_STATE_AWAY; | |
1207 } else if(gc->away_state && !strcmp(gc->away_state, MW_STATE_BUSY)) { | |
1208 msg = MW_STATE_BUSY; | |
1209 } | |
1210 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1211 if(msg) serv_set_away(gc, msg, NULL); |
10977 | 1212 #endif |
1213 } | |
1214 | |
1215 | |
1216 /** signal triggered when a conversation is opened in Gaim */ | |
1217 static void conversation_created_cb(GaimConversation *g_conv, | |
1218 struct mwGaimPluginData *pd) { | |
1219 | |
1220 /* we need to tell the IM service to negotiate features for the | |
1221 conversation right away, otherwise it'll wait until the first | |
1222 message is sent before offering NotesBuddy features. Therefore | |
1223 whenever Gaim creates a conversation, we'll immediately open the | |
1224 channel to the other side and figure out what the target can | |
1225 handle. Unfortunately, this makes us vulnerable to Psychic Mode, | |
1226 whereas a more lazy negotiation based on the first message | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1227 would not */ |
10977 | 1228 |
1229 GaimConnection *gc; | |
1230 struct mwIdBlock who = { 0, 0 }; | |
1231 struct mwConversation *conv; | |
1232 | |
1233 gc = gaim_conversation_get_gc(g_conv); | |
1234 if(pd->gc != gc) | |
1235 return; /* not ours */ | |
1236 | |
11338 | 1237 if(gaim_conversation_get_type(g_conv) != GAIM_CONV_TYPE_IM) |
10977 | 1238 return; /* wrong type */ |
1239 | |
1240 who.user = (char *) gaim_conversation_get_name(g_conv); | |
1241 conv = mwServiceIm_getConversation(pd->srvc_im, &who); | |
1242 | |
1243 convo_features(conv); | |
1244 | |
1245 if(mwConversation_isClosed(conv)) | |
1246 mwConversation_open(conv); | |
1247 } | |
1248 | |
1249 | |
1250 static void blist_menu_nab(GaimBlistNode *node, gpointer data) { | |
1251 struct mwGaimPluginData *pd = data; | |
1252 GaimConnection *gc; | |
1253 | |
1254 GaimGroup *group = (GaimGroup *) node; | |
1255 | |
1256 GString *str; | |
1257 char *tmp; | |
1258 | |
1259 g_return_if_fail(pd != NULL); | |
1260 | |
1261 gc = pd->gc; | |
1262 g_return_if_fail(gc != NULL); | |
1263 | |
1264 g_return_if_fail(GAIM_BLIST_NODE_IS_GROUP(node)); | |
1265 | |
1266 str = g_string_new(NULL); | |
1267 | |
1268 tmp = (char *) gaim_blist_node_get_string(node, GROUP_KEY_NAME); | |
1269 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1270 g_string_append_printf(str, _("<b>Group Title:</b> %s<br>"), group->name); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1271 g_string_append_printf(str, _("<b>Notes Group ID:</b> %s<br>"), tmp); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1272 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1273 tmp = g_strdup_printf(_("Info for Group %s"), group->name); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1274 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1275 gaim_notify_formatted(gc, tmp, _("Notes Address Book Information"), |
10977 | 1276 NULL, str->str, NULL, NULL); |
1277 | |
1278 g_free(tmp); | |
1279 g_string_free(str, TRUE); | |
1280 } | |
1281 | |
1282 | |
1283 /** The normal blist menu prpl function doesn't get called for groups, | |
1284 so we use the blist-node-extended-menu signal to trigger this | |
1285 handler */ | |
1286 static void blist_node_menu_cb(GaimBlistNode *node, | |
1287 GList **menu, struct mwGaimPluginData *pd) { | |
12107
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1288 const char *owner; |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1289 GaimGroup *group; |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1290 GaimAccount *acct; |
10977 | 1291 GaimBlistNodeAction *act; |
1292 | |
12107
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1293 /* we only want groups */ |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1294 if(! GAIM_BLIST_NODE_IS_GROUP(node)) return; |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1295 group = (GaimGroup *) node; |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1296 |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1297 acct = gaim_connection_get_account(pd->gc); |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1298 g_return_if_fail(acct != NULL); |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1299 |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1300 /* better make sure we're connected */ |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1301 if(! gaim_account_is_connected(acct)) return; |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1302 |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1303 #if 0 |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1304 /* if there's anyone in the group for this acct, offer to invite |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1305 them all to a conference */ |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1306 if(gaim_group_on_account(group, acct)) { |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1307 act = gaim_blist_node_action_new(_("Invite Group to Conference..."), |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1308 blist_menu_group_invite, pd, NULL); |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1309 *menu = g_list_append(*menu, NULL); |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1310 } |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1311 #endif |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1312 |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1313 /* check if it's a NAB group for this account */ |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1314 owner = gaim_blist_node_get_string(node, GROUP_KEY_OWNER); |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
1315 if(owner && !strcmp(owner, gaim_account_get_username(acct))) { |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1316 act = gaim_blist_node_action_new(_("Get Notes Address Book Info"), |
10977 | 1317 blist_menu_nab, pd, NULL); |
1318 *menu = g_list_append(*menu, act); | |
1319 } | |
1320 } | |
1321 | |
1322 | |
1323 /** Last thing to happen from a started session */ | |
1324 static void services_starting(struct mwGaimPluginData *pd) { | |
1325 | |
1326 GaimConnection *gc; | |
1327 GaimAccount *acct; | |
1328 struct mwStorageUnit *unit; | |
1329 GaimBuddyList *blist; | |
1330 GaimBlistNode *l; | |
1331 | |
1332 gc = pd->gc; | |
1333 acct = gaim_connection_get_account(gc); | |
1334 | |
1335 /* grab the buddy list from the server */ | |
1336 unit = mwStorageUnit_new(mwStore_AWARE_LIST); | |
1337 mwServiceStorage_load(pd->srvc_store, unit, fetch_blist_cb, pd, NULL); | |
1338 | |
1339 /* fetch the away/busy/active messages from the server */ | |
1340 unit = mwStorageUnit_new(mwStore_AWAY_MESSAGES); | |
1341 mwServiceStorage_load(pd->srvc_store, unit, fetch_msg_cb, pd, NULL); | |
1342 | |
1343 unit = mwStorageUnit_new(mwStore_BUSY_MESSAGES); | |
1344 mwServiceStorage_load(pd->srvc_store, unit, fetch_msg_cb, pd, NULL); | |
1345 | |
1346 unit = mwStorageUnit_new(mwStore_ACTIVE_MESSAGES); | |
1347 mwServiceStorage_load(pd->srvc_store, unit, fetch_msg_cb, pd, NULL); | |
1348 | |
1349 /* start watching for new conversations */ | |
1350 gaim_signal_connect(gaim_conversations_get_handle(), | |
1351 "conversation-created", gc, | |
1352 GAIM_CALLBACK(conversation_created_cb), pd); | |
1353 | |
1354 /* watch for group extended menu items */ | |
1355 gaim_signal_connect(gaim_blist_get_handle(), | |
1356 "blist-node-extended-menu", gc, | |
1357 GAIM_CALLBACK(blist_node_menu_cb), pd); | |
1358 | |
1359 /* find all the NAB groups and subscribe to them */ | |
1360 blist = gaim_get_blist(); | |
1361 for(l = blist->root; l; l = l->next) { | |
1362 GaimGroup *group = (GaimGroup *) l; | |
1363 enum mwSametimeGroupType gt; | |
1364 const char *owner; | |
1365 | |
1366 if(! GAIM_BLIST_NODE_IS_GROUP(l)) continue; | |
1367 | |
1368 /* if the group is ownerless, or has an owner and we're not it, | |
1369 skip it */ | |
1370 owner = gaim_blist_node_get_string(l, GROUP_KEY_OWNER); | |
1371 if(!owner || strcmp(owner, gaim_account_get_username(acct))) | |
1372 continue; | |
1373 | |
1374 gt = gaim_blist_node_get_int(l, GROUP_KEY_TYPE); | |
1375 if(gt == mwSametimeGroup_DYNAMIC) | |
1376 group_add(pd, group); | |
1377 } | |
1378 | |
1379 /* set the aware attributes */ | |
1380 /* indicate we understand what AV prefs are, but don't support any */ | |
1381 mwServiceAware_setAttributeBoolean(pd->srvc_aware, | |
1382 mwAttribute_AV_PREFS_SET, TRUE); | |
1383 mwServiceAware_unsetAttribute(pd->srvc_aware, mwAttribute_MICROPHONE); | |
1384 mwServiceAware_unsetAttribute(pd->srvc_aware, mwAttribute_SPEAKERS); | |
1385 mwServiceAware_unsetAttribute(pd->srvc_aware, mwAttribute_VIDEO_CAMERA); | |
1386 | |
1387 /* ... but we can do file transfers! */ | |
1388 mwServiceAware_setAttributeBoolean(pd->srvc_aware, | |
1389 mwAttribute_FILE_TRANSFER, TRUE); | |
1390 } | |
1391 | |
1392 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1393 static void session_loginRedirect(struct mwSession *session, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1394 const char *host) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1395 struct mwGaimPluginData *pd; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1396 GaimConnection *gc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1397 GaimAccount *account; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1398 guint port; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1399 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1400 pd = mwSession_getClientData(session); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1401 gc = pd->gc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1402 account = gaim_connection_get_account(gc); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1403 port = gaim_account_get_int(account, MW_KEY_PORT, MW_PLUGIN_DEFAULT_PORT); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1404 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1405 if(gaim_account_get_bool(account, MW_KEY_FORCE, FALSE) || |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1406 gaim_proxy_connect(account, host, port, connect_cb, pd)) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1407 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1408 mwSession_forceLogin(session); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1409 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1410 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1411 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1412 |
10977 | 1413 /** called from mw_session_stateChange when the session's state is |
1414 mwSession_STARTED. Any finalizing of start-up stuff should go | |
1415 here */ | |
1416 static void session_started(struct mwGaimPluginData *pd) { | |
1417 | |
1418 /* XXX setup status */ | |
1419 | |
1420 /* use our services to do neat things */ | |
1421 services_starting(pd); | |
1422 } | |
1423 | |
1424 | |
1425 static void mw_session_stateChange(struct mwSession *session, | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1426 enum mwSessionState state, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1427 gpointer info) { |
10977 | 1428 struct mwGaimPluginData *pd; |
1429 GaimConnection *gc; | |
1430 char *msg = NULL; | |
1431 | |
1432 pd = mwSession_getClientData(session); | |
1433 gc = pd->gc; | |
1434 | |
1435 switch(state) { | |
1436 case mwSession_STARTING: | |
1437 msg = _("Sending Handshake"); | |
1438 gaim_connection_update_progress(gc, msg, 2, MW_CONNECT_STEPS); | |
1439 break; | |
1440 | |
1441 case mwSession_HANDSHAKE: | |
1442 msg = _("Waiting for Handshake Acknowledgement"); | |
1443 gaim_connection_update_progress(gc, msg, 3, MW_CONNECT_STEPS); | |
1444 break; | |
1445 | |
1446 case mwSession_HANDSHAKE_ACK: | |
1447 msg = _("Handshake Acknowledged, Sending Login"); | |
1448 gaim_connection_update_progress(gc, msg, 4, MW_CONNECT_STEPS); | |
1449 break; | |
1450 | |
1451 case mwSession_LOGIN: | |
1452 msg = _("Waiting for Login Acknowledgement"); | |
1453 gaim_connection_update_progress(gc, msg, 5, MW_CONNECT_STEPS); | |
1454 break; | |
1455 | |
1456 case mwSession_LOGIN_REDIR: | |
1457 msg = _("Login Redirected"); | |
1458 gaim_connection_update_progress(gc, msg, 6, MW_CONNECT_STEPS); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1459 session_loginRedirect(session, info); |
10977 | 1460 break; |
1461 | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1462 case mwSession_LOGIN_CONT: |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1463 msg = _("Forcing Login"); |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1464 gaim_connection_update_progress(gc, msg, 7, MW_CONNECT_STEPS); |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1465 |
10977 | 1466 case mwSession_LOGIN_ACK: |
1467 msg = _("Login Acknowledged"); | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1468 gaim_connection_update_progress(gc, msg, 8, MW_CONNECT_STEPS); |
10977 | 1469 break; |
1470 | |
1471 case mwSession_STARTED: | |
1472 msg = _("Connected to Sametime Community Server"); | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1473 gaim_connection_update_progress(gc, msg, 9, MW_CONNECT_STEPS); |
10977 | 1474 gaim_connection_set_state(gc, GAIM_CONNECTED); |
1475 | |
1476 session_started(pd); | |
1477 break; | |
1478 | |
1479 case mwSession_STOPPING: | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1480 if(GPOINTER_TO_UINT(info) & ERR_FAILURE) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1481 msg = mwError(GPOINTER_TO_UINT(info)); |
10977 | 1482 gaim_connection_error(gc, msg); |
1483 g_free(msg); | |
1484 } | |
1485 break; | |
1486 | |
1487 case mwSession_STOPPED: | |
1488 break; | |
1489 | |
1490 case mwSession_UNKNOWN: | |
1491 default: | |
1492 DEBUG_WARN("session in unknown state\n"); | |
1493 } | |
1494 } | |
1495 | |
1496 | |
1497 static void mw_session_setPrivacyInfo(struct mwSession *session) { | |
1498 struct mwGaimPluginData *pd; | |
1499 GaimConnection *gc; | |
1500 GaimAccount *acct; | |
1501 struct mwPrivacyInfo *privacy; | |
1502 GSList *l, **ll; | |
1503 guint count; | |
1504 | |
1505 DEBUG_INFO("privacy information set from server\n"); | |
1506 | |
1507 g_return_if_fail(session != NULL); | |
1508 | |
1509 pd = mwSession_getClientData(session); | |
1510 g_return_if_fail(pd != NULL); | |
1511 | |
1512 gc = pd->gc; | |
1513 g_return_if_fail(gc != NULL); | |
1514 | |
1515 acct = gaim_connection_get_account(gc); | |
1516 g_return_if_fail(acct != NULL); | |
1517 | |
1518 privacy = mwSession_getPrivacyInfo(session); | |
1519 count = privacy->count; | |
1520 | |
1521 ll = (privacy->deny)? &acct->deny: &acct->permit; | |
1522 for(l = *ll; l; l = l->next) g_free(l->data); | |
1523 g_slist_free(*ll); | |
1524 l = *ll = NULL; | |
1525 | |
1526 while(count--) { | |
1527 struct mwUserItem *u = privacy->users + count; | |
1528 l = g_slist_prepend(l, g_strdup(u->id)); | |
1529 } | |
1530 *ll = l; | |
1531 } | |
1532 | |
1533 | |
1534 static void mw_session_setUserStatus(struct mwSession *session) { | |
1535 struct mwGaimPluginData *pd; | |
1536 GaimConnection *gc; | |
1537 struct mwAwareIdBlock idb = { mwAware_USER, NULL, NULL }; | |
1538 struct mwUserStatus *stat; | |
1539 | |
1540 g_return_if_fail(session != NULL); | |
1541 | |
1542 pd = mwSession_getClientData(session); | |
1543 g_return_if_fail(pd != NULL); | |
1544 | |
1545 gc = pd->gc; | |
1546 g_return_if_fail(gc != NULL); | |
1547 | |
1548 idb.user = mwSession_getProperty(session, mwSession_AUTH_USER_ID); | |
1549 stat = mwSession_getUserStatus(session); | |
1550 | |
1551 /* trigger an update of our own status if we're in the buddy list */ | |
1552 mwServiceAware_setStatus(pd->srvc_aware, &idb, stat); | |
1553 } | |
1554 | |
1555 | |
1556 static void mw_session_admin(struct mwSession *session, | |
1557 const char *text) { | |
1558 | |
1559 GaimConnection *gc = session_to_gc(session); | |
1560 g_return_if_fail(gc != NULL); | |
1561 | |
1562 /** @todo Admin alerts should probably be in a conversation window | |
1563 rather than a gaim_notify_message. Or in some sort of updating | |
1564 dialog, or something. */ | |
1565 | |
1566 gaim_notify_message(gc, GAIM_NOTIFY_MSG_INFO, _("Admin Alert"), | |
1567 text, NULL, NULL, NULL); | |
1568 } | |
1569 | |
1570 | |
1571 /** called from read_cb, attempts to read available data from sock and | |
1572 pass it to the session, passing back the return code from the read | |
1573 call for handling in read_cb */ | |
1574 static int read_recv(struct mwSession *session, int sock) { | |
1575 char buf[BUF_LEN]; | |
1576 int len; | |
1577 | |
1578 len = read(sock, buf, BUF_LEN); | |
1579 if(len > 0) mwSession_recv(session, buf, len); | |
1580 | |
1581 return len; | |
1582 } | |
1583 | |
1584 | |
1585 /** callback triggered from gaim_input_add, watches the socked for | |
1586 available data to be processed by the session */ | |
1587 static void read_cb(gpointer data, gint source, | |
1588 GaimInputCondition cond) { | |
1589 | |
1590 struct mwGaimPluginData *pd = data; | |
1591 int ret = 0, err = 0; | |
1592 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1593 /* How the heck can this happen? Fix submitted to Gaim so that it |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1594 won't happen anymore. */ |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1595 if(! cond) return; |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1596 |
10977 | 1597 g_return_if_fail(pd != NULL); |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1598 g_return_if_fail(cond & GAIM_INPUT_READ); |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1599 |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1600 ret = read_recv(pd->session, pd->socket); |
10977 | 1601 |
1602 /* normal operation ends here */ | |
1603 if(ret > 0) return; | |
1604 | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1605 /* fetch the global error value */ |
10977 | 1606 err = errno; |
1607 | |
1608 /* read problem occured if we're here, so we'll need to take care of | |
1609 it and clean up internal state */ | |
1610 | |
1611 if(pd->socket) { | |
1612 close(pd->socket); | |
1613 pd->socket = 0; | |
1614 } | |
1615 | |
1616 if(pd->gc->inpa) { | |
1617 gaim_input_remove(pd->gc->inpa); | |
1618 pd->gc->inpa = 0; | |
1619 } | |
1620 | |
1621 if(! ret) { | |
1622 DEBUG_INFO("connection reset\n"); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1623 gaim_connection_error(pd->gc, _("Connection reset")); |
10977 | 1624 |
1625 } else if(ret < 0) { | |
1626 char *msg = strerror(err); | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1627 |
10977 | 1628 DEBUG_INFO("error in read callback: %s\n", msg); |
1629 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1630 msg = g_strdup_printf(_("Error reading from socket: %s"), msg); |
10977 | 1631 gaim_connection_error(pd->gc, msg); |
1632 g_free(msg); | |
1633 } | |
1634 } | |
1635 | |
1636 | |
1637 /** Callback passed to gaim_proxy_connect when an account is logged | |
1638 in, and if the session logging in receives a redirect message */ | |
1639 static void connect_cb(gpointer data, gint source, | |
1640 GaimInputCondition cond) { | |
1641 | |
1642 struct mwGaimPluginData *pd = data; | |
1643 GaimConnection *gc = pd->gc; | |
1644 | |
1645 if(! g_list_find(gaim_connections_get_all(), pd->gc)) { | |
1646 close(source); | |
1647 g_return_if_reached(); | |
1648 } | |
1649 | |
1650 if(source < 0) { | |
1651 /* connection failed */ | |
1652 | |
1653 if(pd->socket) { | |
1654 /* this is a redirect connect, force login on existing socket */ | |
1655 mwSession_forceLogin(pd->session); | |
1656 | |
1657 } else { | |
1658 /* this is a regular connect, error out */ | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1659 gaim_connection_error(pd->gc, _("Unable to connect to host")); |
10977 | 1660 } |
1661 | |
1662 return; | |
1663 } | |
1664 | |
1665 if(pd->socket) { | |
1666 /* stop any existing login attempt */ | |
1667 mwSession_stop(pd->session, ERR_SUCCESS); | |
1668 } | |
1669 | |
1670 pd->socket = source; | |
1671 gc->inpa = gaim_input_add(source, GAIM_INPUT_READ, read_cb, pd); | |
1672 | |
1673 mwSession_start(pd->session); | |
1674 } | |
1675 | |
1676 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1677 static void mw_session_announce(struct mwSession *s, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1678 struct mwLoginInfo *from, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1679 gboolean may_reply, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1680 const char *text) { |
10977 | 1681 struct mwGaimPluginData *pd; |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1682 GaimAccount *acct; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1683 GaimConversation *conv; |
12126
35c4797c5c57
[gaim-migrate @ 14426]
Richard Laager <rlaager@wiktel.com>
parents:
12107
diff
changeset
|
1684 GaimBuddy *buddy; |
12135 | 1685 const char *who = from->user_id; |
1686 char *tmp, *msg; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1687 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1688 pd = mwSession_getClientData(s); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1689 acct = gaim_connection_get_account(pd->gc); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1690 conv = gaim_find_conversation_with_account(GAIM_CONV_TYPE_IM, who, acct); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1691 if(! conv) conv = gaim_conversation_new(GAIM_CONV_TYPE_IM, acct, who); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1692 |
12126
35c4797c5c57
[gaim-migrate @ 14426]
Richard Laager <rlaager@wiktel.com>
parents:
12107
diff
changeset
|
1693 buddy = gaim_find_buddy(acct, who); |
35c4797c5c57
[gaim-migrate @ 14426]
Richard Laager <rlaager@wiktel.com>
parents:
12107
diff
changeset
|
1694 if(buddy) { |
12135 | 1695 who = gaim_buddy_get_contact_alias(buddy); |
10977 | 1696 } |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1697 |
12135 | 1698 tmp = g_strdup_printf(_("Announcement from %s"), who); |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1699 msg = gaim_markup_linkify(text); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1700 |
12135 | 1701 gaim_conversation_write(conv, tmp, msg, GAIM_MESSAGE_RECV, time(NULL)); |
1702 g_free(tmp); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1703 g_free(msg); |
10977 | 1704 } |
1705 | |
1706 | |
1707 static struct mwSessionHandler mw_session_handler = { | |
1708 .io_write = mw_session_io_write, | |
1709 .io_close = mw_session_io_close, | |
1710 .clear = mw_session_clear, | |
1711 .on_stateChange = mw_session_stateChange, | |
1712 .on_setPrivacyInfo = mw_session_setPrivacyInfo, | |
1713 .on_setUserStatus = mw_session_setUserStatus, | |
1714 .on_admin = mw_session_admin, | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1715 .on_announce = mw_session_announce, |
10977 | 1716 }; |
1717 | |
1718 | |
1719 static void mw_aware_on_attrib(struct mwServiceAware *srvc, | |
1720 struct mwAwareAttribute *attrib) { | |
1721 | |
1722 ; /** @todo handle server attributes. There may be some stuff we | |
1723 actually want to look for, but I'm not aware of anything right | |
1724 now.*/ | |
1725 } | |
1726 | |
1727 | |
1728 static void mw_aware_clear(struct mwServiceAware *srvc) { | |
1729 ; /* nothing for now */ | |
1730 } | |
1731 | |
1732 | |
1733 static struct mwAwareHandler mw_aware_handler = { | |
1734 .on_attrib = mw_aware_on_attrib, | |
1735 .clear = mw_aware_clear, | |
1736 }; | |
1737 | |
1738 | |
1739 static struct mwServiceAware *mw_srvc_aware_new(struct mwSession *s) { | |
1740 struct mwServiceAware *srvc; | |
1741 srvc = mwServiceAware_new(s, &mw_aware_handler); | |
1742 return srvc; | |
1743 }; | |
1744 | |
1745 | |
1746 static void mw_conf_invited(struct mwConference *conf, | |
1747 struct mwLoginInfo *inviter, | |
1748 const char *invitation) { | |
1749 | |
1750 struct mwServiceConference *srvc; | |
1751 struct mwSession *session; | |
1752 struct mwGaimPluginData *pd; | |
1753 GaimConnection *gc; | |
1754 | |
1755 char *c_inviter, *c_name, *c_topic, *c_invitation; | |
1756 GHashTable *ht; | |
1757 | |
1758 srvc = mwConference_getService(conf); | |
1759 session = mwService_getSession(MW_SERVICE(srvc)); | |
1760 pd = mwSession_getClientData(session); | |
1761 gc = pd->gc; | |
1762 | |
1763 ht = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, g_free); | |
1764 | |
1765 c_inviter = g_strdup(inviter->user_id); | |
1766 g_hash_table_insert(ht, CHAT_KEY_CREATOR, c_inviter); | |
1767 | |
1768 c_name = g_strdup(mwConference_getName(conf)); | |
1769 g_hash_table_insert(ht, CHAT_KEY_NAME, c_name); | |
1770 | |
1771 c_topic = g_strdup(mwConference_getTitle(conf)); | |
1772 g_hash_table_insert(ht, CHAT_KEY_TOPIC, c_topic); | |
1773 | |
1774 c_invitation = g_strdup(invitation); | |
1775 g_hash_table_insert(ht, CHAT_KEY_INVITE, c_invitation); | |
1776 | |
1777 DEBUG_INFO("received invitation from '%s' to join ('%s','%s'): '%s'\n", | |
1778 NSTR(c_inviter), NSTR(c_name), | |
1779 NSTR(c_topic), NSTR(c_invitation)); | |
1780 | |
1781 serv_got_chat_invite(gc, c_topic, c_inviter, c_invitation, ht); | |
1782 } | |
1783 | |
1784 | |
1785 /* The following mess helps us relate a mwConference to a GaimConvChat | |
1786 in the various forms by which either may be indicated */ | |
1787 | |
1788 #define CONF_TO_ID(conf) (GPOINTER_TO_INT(conf)) | |
1789 #define ID_TO_CONF(pd, id) (conf_find_by_id((pd), (id))) | |
1790 | |
1791 #define CHAT_TO_ID(chat) (gaim_conv_chat_get_id(chat)) | |
1792 #define ID_TO_CHAT(id) (gaim_find_chat(id)) | |
1793 | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1794 #define CHAT_TO_CONF(pd, chat) (ID_TO_CONF((pd), CHAT_TO_ID(chat))) |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
1795 #define CONF_TO_CHAT(conf) (ID_TO_CHAT(CONF_TO_ID(conf))) |
10977 | 1796 |
1797 | |
1798 static struct mwConference * | |
1799 conf_find_by_id(struct mwGaimPluginData *pd, int id) { | |
1800 | |
1801 struct mwServiceConference *srvc = pd->srvc_conf; | |
1802 struct mwConference *conf = NULL; | |
1803 GList *l, *ll; | |
1804 | |
1805 ll = mwServiceConference_getConferences(srvc); | |
1806 for(l = ll; l; l = l->next) { | |
1807 struct mwConference *c = l->data; | |
1808 GaimConvChat *h = mwConference_getClientData(c); | |
1809 | |
1810 if(CHAT_TO_ID(h) == id) { | |
1811 conf = c; | |
1812 break; | |
1813 } | |
1814 } | |
1815 g_list_free(ll); | |
1816 | |
1817 return conf; | |
1818 } | |
1819 | |
1820 | |
1821 static void mw_conf_opened(struct mwConference *conf, GList *members) { | |
1822 struct mwServiceConference *srvc; | |
1823 struct mwSession *session; | |
1824 struct mwGaimPluginData *pd; | |
1825 GaimConnection *gc; | |
1826 GaimConversation *g_conf; | |
1827 | |
1828 const char *n = mwConference_getName(conf); | |
1829 | |
1830 DEBUG_INFO("conf %s opened, %u initial members\n", | |
1831 NSTR(n), g_list_length(members)); | |
1832 | |
1833 srvc = mwConference_getService(conf); | |
1834 session = mwService_getSession(MW_SERVICE(srvc)); | |
1835 pd = mwSession_getClientData(session); | |
1836 gc = pd->gc; | |
1837 | |
1838 g_conf = serv_got_joined_chat(gc, CONF_TO_ID(conf), | |
1839 mwConference_getTitle(conf)); | |
1840 | |
1841 mwConference_setClientData(conf, GAIM_CONV_CHAT(g_conf), NULL); | |
1842 | |
1843 for(; members; members = members->next) { | |
1844 struct mwLoginInfo *peer = members->data; | |
1845 gaim_conv_chat_add_user(GAIM_CONV_CHAT(g_conf), peer->user_id, | |
1846 NULL, GAIM_CBFLAGS_NONE, FALSE); | |
1847 } | |
1848 } | |
1849 | |
1850 | |
1851 static void mw_conf_closed(struct mwConference *conf, guint32 reason) { | |
1852 struct mwServiceConference *srvc; | |
1853 struct mwSession *session; | |
1854 struct mwGaimPluginData *pd; | |
1855 GaimConnection *gc; | |
1856 | |
1857 const char *n = mwConference_getName(conf); | |
1858 char *msg = mwError(reason); | |
1859 | |
1860 DEBUG_INFO("conf %s closed, 0x%08x\n", NSTR(n), reason); | |
1861 | |
1862 srvc = mwConference_getService(conf); | |
1863 session = mwService_getSession(MW_SERVICE(srvc)); | |
1864 pd = mwSession_getClientData(session); | |
1865 gc = pd->gc; | |
1866 | |
1867 serv_got_chat_left(gc, CONF_TO_ID(conf)); | |
1868 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
1869 gaim_notify_error(gc, _("Conference Closed"), NULL, msg); |
10977 | 1870 g_free(msg); |
1871 } | |
1872 | |
1873 | |
1874 static void mw_conf_peer_joined(struct mwConference *conf, | |
1875 struct mwLoginInfo *peer) { | |
1876 | |
1877 struct mwServiceConference *srvc; | |
1878 struct mwSession *session; | |
1879 struct mwGaimPluginData *pd; | |
1880 GaimConnection *gc; | |
1881 GaimConvChat *g_conf; | |
1882 | |
1883 const char *n = mwConference_getName(conf); | |
1884 | |
1885 DEBUG_INFO("%s joined conf %s\n", NSTR(peer->user_id), NSTR(n)); | |
1886 | |
1887 srvc = mwConference_getService(conf); | |
1888 session = mwService_getSession(MW_SERVICE(srvc)); | |
1889 pd = mwSession_getClientData(session); | |
1890 gc = pd->gc; | |
1891 | |
1892 g_conf = mwConference_getClientData(conf); | |
1893 g_return_if_fail(g_conf != NULL); | |
1894 | |
1895 gaim_conv_chat_add_user(g_conf, peer->user_id, | |
1896 NULL, GAIM_CBFLAGS_NONE, TRUE); | |
1897 } | |
1898 | |
1899 | |
1900 static void mw_conf_peer_parted(struct mwConference *conf, | |
1901 struct mwLoginInfo *peer) { | |
1902 | |
1903 struct mwServiceConference *srvc; | |
1904 struct mwSession *session; | |
1905 struct mwGaimPluginData *pd; | |
1906 GaimConnection *gc; | |
1907 GaimConvChat *g_conf; | |
1908 | |
1909 const char *n = mwConference_getName(conf); | |
1910 | |
1911 DEBUG_INFO("%s left conf %s\n", NSTR(peer->user_id), NSTR(n)); | |
1912 | |
1913 srvc = mwConference_getService(conf); | |
1914 session = mwService_getSession(MW_SERVICE(srvc)); | |
1915 pd = mwSession_getClientData(session); | |
1916 gc = pd->gc; | |
1917 | |
1918 g_conf = mwConference_getClientData(conf); | |
1919 g_return_if_fail(g_conf != NULL); | |
1920 | |
1921 gaim_conv_chat_remove_user(g_conf, peer->user_id, NULL); | |
1922 } | |
1923 | |
1924 | |
1925 static void mw_conf_text(struct mwConference *conf, | |
1926 struct mwLoginInfo *who, const char *text) { | |
1927 | |
1928 struct mwServiceConference *srvc; | |
1929 struct mwSession *session; | |
1930 struct mwGaimPluginData *pd; | |
1931 GaimConnection *gc; | |
1932 char *esc; | |
1933 | |
1934 srvc = mwConference_getService(conf); | |
1935 session = mwService_getSession(MW_SERVICE(srvc)); | |
1936 pd = mwSession_getClientData(session); | |
1937 gc = pd->gc; | |
1938 | |
1939 esc = g_markup_escape_text(text, -1); | |
1940 serv_got_chat_in(gc, CONF_TO_ID(conf), who->user_id, 0, esc, time(NULL)); | |
1941 g_free(esc); | |
1942 } | |
1943 | |
1944 | |
1945 static void mw_conf_typing(struct mwConference *conf, | |
1946 struct mwLoginInfo *who, gboolean typing) { | |
1947 | |
1948 /* gaim really has no good way to expose this to the user. */ | |
1949 | |
1950 const char *n = mwConference_getName(conf); | |
1951 const char *w = who->user_id; | |
1952 | |
1953 if(typing) { | |
1954 DEBUG_INFO("%s in conf %s: <typing>\n", NSTR(w), NSTR(n)); | |
1955 | |
1956 } else { | |
1957 DEBUG_INFO("%s in conf %s: <stopped typing>\n", NSTR(w), NSTR(n)); | |
1958 } | |
1959 } | |
1960 | |
1961 | |
1962 static void mw_conf_clear(struct mwServiceConference *srvc) { | |
1963 ; | |
1964 } | |
1965 | |
1966 | |
1967 static struct mwConferenceHandler mw_conference_handler = { | |
1968 .on_invited = mw_conf_invited, | |
1969 .conf_opened = mw_conf_opened, | |
1970 .conf_closed = mw_conf_closed, | |
1971 .on_peer_joined = mw_conf_peer_joined, | |
1972 .on_peer_parted = mw_conf_peer_parted, | |
1973 .on_text = mw_conf_text, | |
1974 .on_typing = mw_conf_typing, | |
1975 .clear = mw_conf_clear, | |
1976 }; | |
1977 | |
1978 | |
1979 static struct mwServiceConference *mw_srvc_conf_new(struct mwSession *s) { | |
1980 struct mwServiceConference *srvc; | |
1981 srvc = mwServiceConference_new(s, &mw_conference_handler); | |
1982 return srvc; | |
1983 } | |
1984 | |
1985 | |
1986 static void ft_incoming_cancel(GaimXfer *xfer) { | |
1987 /* incoming transfer rejected or canceled in-progress */ | |
1988 struct mwFileTransfer *ft = xfer->data; | |
1989 if(ft) mwFileTransfer_reject(ft); | |
1990 } | |
1991 | |
1992 | |
1993 static void ft_incoming_init(GaimXfer *xfer) { | |
1994 /* incoming transfer accepted */ | |
1995 | |
1996 /* - accept the mwFileTransfer | |
1997 - open/create the local FILE "wb" | |
1998 - stick the FILE's fp in xfer->dest_fp | |
1999 */ | |
2000 | |
2001 struct mwFileTransfer *ft; | |
2002 FILE *fp; | |
2003 | |
2004 ft = xfer->data; | |
2005 | |
2006 fp = g_fopen(xfer->local_filename, "wb"); | |
2007 if(! fp) { | |
2008 mwFileTransfer_cancel(ft); | |
2009 return; | |
2010 } | |
2011 | |
2012 xfer->dest_fp = fp; | |
2013 mwFileTransfer_accept(ft); | |
2014 } | |
2015 | |
2016 | |
2017 static void mw_ft_offered(struct mwFileTransfer *ft) { | |
2018 /* | |
2019 - create a gaim ft object | |
2020 - offer it | |
2021 */ | |
2022 | |
2023 struct mwServiceFileTransfer *srvc; | |
2024 struct mwSession *session; | |
2025 struct mwGaimPluginData *pd; | |
2026 GaimConnection *gc; | |
2027 GaimAccount *acct; | |
2028 const char *who; | |
2029 GaimXfer *xfer; | |
2030 | |
2031 /* @todo add some safety checks */ | |
2032 srvc = mwFileTransfer_getService(ft); | |
2033 session = mwService_getSession(MW_SERVICE(srvc)); | |
2034 pd = mwSession_getClientData(session); | |
2035 gc = pd->gc; | |
2036 acct = gaim_connection_get_account(gc); | |
2037 | |
2038 who = mwFileTransfer_getUser(ft)->user; | |
2039 | |
2040 DEBUG_INFO("file transfer %p offered\n", ft); | |
2041 DEBUG_INFO(" from: %s\n", NSTR(who)); | |
2042 DEBUG_INFO(" file: %s\n", NSTR(mwFileTransfer_getFileName(ft))); | |
2043 DEBUG_INFO(" size: %u\n", mwFileTransfer_getFileSize(ft)); | |
2044 DEBUG_INFO(" text: %s\n", NSTR(mwFileTransfer_getMessage(ft))); | |
2045 | |
2046 xfer = gaim_xfer_new(acct, GAIM_XFER_RECEIVE, who); | |
2047 | |
2048 gaim_xfer_ref(xfer); | |
2049 mwFileTransfer_setClientData(ft, xfer, (GDestroyNotify) gaim_xfer_unref); | |
2050 xfer->data = ft; | |
2051 | |
2052 gaim_xfer_set_init_fnc(xfer, ft_incoming_init); | |
2053 gaim_xfer_set_cancel_recv_fnc(xfer, ft_incoming_cancel); | |
2054 gaim_xfer_set_request_denied_fnc(xfer, ft_incoming_cancel); | |
2055 | |
2056 gaim_xfer_set_filename(xfer, mwFileTransfer_getFileName(ft)); | |
2057 gaim_xfer_set_size(xfer, mwFileTransfer_getFileSize(ft)); | |
2058 gaim_xfer_set_message(xfer, mwFileTransfer_getMessage(ft)); | |
2059 | |
2060 gaim_xfer_request(xfer); | |
2061 } | |
2062 | |
2063 | |
2064 static void ft_send(struct mwFileTransfer *ft, FILE *fp) { | |
2065 char buf[BUF_LONG]; | |
2066 struct mwOpaque o = { .data = buf, .len = BUF_LONG }; | |
2067 guint32 rem; | |
2068 GaimXfer *xfer; | |
2069 | |
2070 xfer = mwFileTransfer_getClientData(ft); | |
2071 | |
2072 rem = mwFileTransfer_getRemaining(ft); | |
2073 if(rem < BUF_LONG) o.len = rem; | |
2074 | |
2075 if(fread(buf, (size_t) o.len, 1, fp)) { | |
2076 | |
2077 /* calculate progress first. update is displayed upon ack */ | |
2078 xfer->bytes_sent += o.len; | |
2079 xfer->bytes_remaining -= o.len; | |
2080 | |
2081 /* ... send data second */ | |
2082 mwFileTransfer_send(ft, &o); | |
2083 | |
2084 } else { | |
2085 int err = errno; | |
2086 DEBUG_WARN("problem reading from file %s: %s", | |
2087 NSTR(mwFileTransfer_getFileName(ft)), strerror(err)); | |
2088 | |
2089 mwFileTransfer_cancel(ft); | |
2090 } | |
2091 } | |
2092 | |
2093 | |
2094 static gboolean ft_idle_cb(struct mwFileTransfer *ft) { | |
2095 GaimXfer *xfer = mwFileTransfer_getClientData(ft); | |
2096 g_return_val_if_fail(xfer != NULL, FALSE); | |
2097 | |
2098 xfer->watcher = 0; | |
2099 ft_send(ft, xfer->dest_fp); | |
2100 | |
2101 return FALSE; | |
2102 } | |
2103 | |
2104 | |
2105 static void mw_ft_opened(struct mwFileTransfer *ft) { | |
2106 /* | |
2107 - get gaim ft from client data in ft | |
2108 - set the state to active | |
2109 */ | |
2110 | |
2111 GaimXfer *xfer; | |
2112 | |
2113 xfer = mwFileTransfer_getClientData(ft); | |
2114 | |
2115 if(! xfer) { | |
2116 mwFileTransfer_cancel(ft); | |
2117 mwFileTransfer_free(ft); | |
2118 g_return_if_reached(); | |
2119 } | |
2120 | |
2121 gaim_xfer_update_progress(xfer); | |
2122 | |
2123 if(gaim_xfer_get_type(xfer) == GAIM_XFER_SEND) { | |
2124 xfer->watcher = g_idle_add((GSourceFunc)ft_idle_cb, ft); | |
2125 xfer->dest_fp = g_fopen(xfer->local_filename, "rb"); | |
2126 } | |
2127 } | |
2128 | |
2129 | |
2130 static void mw_ft_closed(struct mwFileTransfer *ft, guint32 code) { | |
2131 /* | |
2132 - get gaim ft from client data in ft | |
2133 - indicate rejection/cancelation/completion | |
2134 - free the file transfer itself | |
2135 */ | |
2136 | |
2137 GaimXfer *xfer; | |
2138 | |
2139 xfer = mwFileTransfer_getClientData(ft); | |
2140 if(xfer) { | |
2141 xfer->data = NULL; | |
2142 | |
2143 if(mwFileTransfer_isDone(ft)) { | |
2144 gaim_xfer_set_completed(xfer, TRUE); | |
2145 gaim_xfer_end(xfer); | |
2146 | |
2147 } else if(mwFileTransfer_isCancelLocal(ft)) { | |
2148 /* calling gaim_xfer_cancel_local is redundant, since that's | |
2149 probably what triggered this function to be called */ | |
2150 ; | |
2151 | |
2152 } else if(mwFileTransfer_isCancelRemote(ft)) { | |
2153 /* steal the reference for the xfer */ | |
2154 mwFileTransfer_setClientData(ft, NULL, NULL); | |
2155 gaim_xfer_cancel_remote(xfer); | |
2156 | |
2157 /* drop the stolen reference */ | |
2158 gaim_xfer_unref(xfer); | |
2159 return; | |
2160 } | |
2161 } | |
2162 | |
2163 mwFileTransfer_free(ft); | |
2164 } | |
2165 | |
2166 | |
2167 static void mw_ft_recv(struct mwFileTransfer *ft, | |
2168 struct mwOpaque *data) { | |
2169 /* | |
2170 - get gaim ft from client data in ft | |
2171 - update transfered percentage | |
2172 - if done, destroy the ft, disassociate from gaim ft | |
2173 */ | |
2174 | |
2175 GaimXfer *xfer; | |
2176 FILE *fp; | |
2177 | |
2178 xfer = mwFileTransfer_getClientData(ft); | |
2179 g_return_if_fail(xfer != NULL); | |
2180 | |
2181 fp = xfer->dest_fp; | |
2182 g_return_if_fail(fp != NULL); | |
2183 | |
2184 /* we must collect and save our precious data */ | |
2185 fwrite(data->data, 1, data->len, fp); | |
2186 | |
2187 /* update the progress */ | |
2188 xfer->bytes_sent += data->len; | |
2189 xfer->bytes_remaining -= data->len; | |
2190 gaim_xfer_update_progress(xfer); | |
2191 | |
2192 /* let the other side know we got it, and to send some more */ | |
2193 mwFileTransfer_ack(ft); | |
2194 } | |
2195 | |
2196 | |
2197 static void mw_ft_ack(struct mwFileTransfer *ft) { | |
2198 GaimXfer *xfer; | |
2199 | |
2200 xfer = mwFileTransfer_getClientData(ft); | |
2201 g_return_if_fail(xfer != NULL); | |
2202 g_return_if_fail(xfer->watcher == 0); | |
2203 | |
2204 gaim_xfer_update_progress(xfer); | |
2205 | |
2206 if(mwFileTransfer_isOpen(ft)) | |
2207 xfer->watcher = g_idle_add((GSourceFunc)ft_idle_cb, ft); | |
2208 } | |
2209 | |
2210 | |
2211 static void mw_ft_clear(struct mwServiceFileTransfer *srvc) { | |
2212 ; | |
2213 } | |
2214 | |
2215 | |
2216 static struct mwFileTransferHandler mw_ft_handler = { | |
2217 .ft_offered = mw_ft_offered, | |
2218 .ft_opened = mw_ft_opened, | |
2219 .ft_closed = mw_ft_closed, | |
2220 .ft_recv = mw_ft_recv, | |
2221 .ft_ack = mw_ft_ack, | |
2222 .clear = mw_ft_clear, | |
2223 }; | |
2224 | |
2225 | |
2226 static struct mwServiceFileTransfer *mw_srvc_ft_new(struct mwSession *s) { | |
2227 struct mwServiceFileTransfer *srvc; | |
2228 GHashTable *ft_map; | |
2229 | |
2230 ft_map = g_hash_table_new(g_direct_hash, g_direct_equal); | |
2231 | |
2232 srvc = mwServiceFileTransfer_new(s, &mw_ft_handler); | |
2233 mwService_setClientData(MW_SERVICE(srvc), ft_map, | |
2234 (GDestroyNotify) g_hash_table_destroy); | |
2235 | |
2236 return srvc; | |
2237 } | |
2238 | |
2239 | |
2240 static void convo_data_free(struct convo_data *cd) { | |
2241 GList *l; | |
2242 | |
2243 /* clean the queue */ | |
2244 for(l = cd->queue; l; l = g_list_delete_link(l, l)) { | |
2245 struct convo_msg *m = l->data; | |
2246 if(m->clear) m->clear(m->data); | |
2247 g_free(m); | |
2248 } | |
2249 | |
2250 g_free(cd); | |
2251 } | |
2252 | |
2253 | |
2254 /** allocates a convo_data structure and associates it with the | |
2255 conversation in the client data slot */ | |
2256 static void convo_data_new(struct mwConversation *conv) { | |
2257 struct convo_data *cd; | |
2258 | |
2259 g_return_if_fail(conv != NULL); | |
2260 | |
2261 if(mwConversation_getClientData(conv)) | |
2262 return; | |
2263 | |
2264 cd = g_new0(struct convo_data, 1); | |
2265 cd->conv = conv; | |
2266 | |
2267 mwConversation_setClientData(conv, cd, (GDestroyNotify) convo_data_free); | |
2268 } | |
2269 | |
2270 | |
2271 static GaimConversation *convo_get_gconv(struct mwConversation *conv) { | |
2272 struct mwServiceIm *srvc; | |
2273 struct mwSession *session; | |
2274 struct mwGaimPluginData *pd; | |
2275 GaimConnection *gc; | |
2276 GaimAccount *acct; | |
2277 | |
2278 struct mwIdBlock *idb; | |
2279 | |
2280 srvc = mwConversation_getService(conv); | |
2281 session = mwService_getSession(MW_SERVICE(srvc)); | |
2282 pd = mwSession_getClientData(session); | |
2283 gc = pd->gc; | |
2284 acct = gaim_connection_get_account(gc); | |
2285 | |
2286 idb = mwConversation_getTarget(conv); | |
2287 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2288 return gaim_find_conversation_with_account(GAIM_CONV_TYPE_IM, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2289 idb->user, acct); |
10977 | 2290 } |
2291 | |
2292 | |
2293 static void convo_queue(struct mwConversation *conv, | |
2294 enum mwImSendType type, gconstpointer data) { | |
2295 | |
2296 struct convo_data *cd; | |
2297 struct convo_msg *m; | |
2298 | |
2299 convo_data_new(conv); | |
2300 cd = mwConversation_getClientData(conv); | |
2301 | |
2302 m = g_new0(struct convo_msg, 1); | |
2303 m->type = type; | |
2304 | |
2305 switch(type) { | |
2306 case mwImSend_PLAIN: | |
2307 m->data = g_strdup(data); | |
2308 m->clear = g_free; | |
2309 break; | |
2310 | |
2311 case mwImSend_TYPING: | |
2312 default: | |
2313 m->data = (gpointer) data; | |
2314 m->clear = NULL; | |
2315 } | |
2316 | |
2317 cd->queue = g_list_append(cd->queue, m); | |
2318 } | |
2319 | |
2320 | |
2321 /* Does what it takes to get an error displayed for a conversation */ | |
2322 static void convo_error(struct mwConversation *conv, guint32 err) { | |
2323 GaimConversation *gconv; | |
2324 char *tmp, *text; | |
2325 struct mwIdBlock *idb; | |
2326 | |
2327 idb = mwConversation_getTarget(conv); | |
2328 | |
2329 tmp = mwError(err); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2330 text = g_strconcat(_("Unable to send message: "), tmp, NULL); |
10977 | 2331 |
2332 gconv = convo_get_gconv(conv); | |
2333 if(gconv && !gaim_conv_present_error(idb->user, gconv->account, text)) { | |
2334 | |
2335 g_free(text); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2336 text = g_strdup_printf(_("Unable to send message to %s:"), |
10977 | 2337 (idb->user)? idb->user: "(unknown)"); |
2338 gaim_notify_error(gaim_account_get_connection(gconv->account), | |
2339 NULL, text, tmp); | |
2340 } | |
2341 | |
2342 g_free(tmp); | |
2343 g_free(text); | |
2344 } | |
2345 | |
2346 | |
2347 static void convo_queue_send(struct mwConversation *conv) { | |
2348 struct convo_data *cd; | |
2349 GList *l; | |
2350 | |
2351 cd = mwConversation_getClientData(conv); | |
2352 | |
2353 for(l = cd->queue; l; l = g_list_delete_link(l, l)) { | |
2354 struct convo_msg *m = l->data; | |
2355 | |
2356 mwConversation_send(conv, m->type, m->data); | |
2357 | |
2358 if(m->clear) m->clear(m->data); | |
2359 g_free(m); | |
2360 } | |
2361 | |
2362 cd->queue = NULL; | |
2363 } | |
2364 | |
2365 | |
2366 /** called when a mw conversation leaves a gaim conversation to | |
2367 inform the gaim conversation that it's unsafe to offer any *cool* | |
2368 features. */ | |
2369 static void convo_nofeatures(struct mwConversation *conv) { | |
2370 GaimConversation *gconv; | |
2371 GaimConnection *gc; | |
2372 | |
2373 gconv = convo_get_gconv(conv); | |
2374 if(! gconv) return; | |
2375 | |
2376 gc = gaim_conversation_get_gc(gconv); | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2377 if(! gc) return; |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2378 |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2379 gaim_conversation_set_features(gconv, gc->flags); |
10977 | 2380 } |
2381 | |
2382 | |
2383 /** called when a mw conversation and gaim conversation come together, | |
2384 to inform the gaim conversation of what features to offer the | |
2385 user */ | |
2386 static void convo_features(struct mwConversation *conv) { | |
2387 GaimConversation *gconv; | |
2388 GaimConnectionFlags feat; | |
2389 | |
2390 gconv = convo_get_gconv(conv); | |
2391 if(! gconv) return; | |
2392 | |
2393 feat = gaim_conversation_get_features(gconv); | |
2394 | |
2395 if(mwConversation_isOpen(conv)) { | |
2396 if(mwConversation_supports(conv, mwImSend_HTML)) { | |
2397 feat |= GAIM_CONNECTION_HTML; | |
2398 } else { | |
2399 feat &= ~GAIM_CONNECTION_HTML; | |
2400 } | |
2401 | |
2402 if(mwConversation_supports(conv, mwImSend_MIME)) { | |
2403 feat &= ~GAIM_CONNECTION_NO_IMAGES; | |
2404 } else { | |
2405 feat |= GAIM_CONNECTION_NO_IMAGES; | |
2406 } | |
2407 | |
2408 DEBUG_INFO("conversation features set to 0x%04x\n", feat); | |
2409 gaim_conversation_set_features(gconv, feat); | |
2410 | |
2411 } else { | |
2412 convo_nofeatures(conv); | |
2413 } | |
2414 } | |
2415 | |
2416 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2417 #if 0 |
10977 | 2418 /** triggered from mw_conversation_opened if the appropriate plugin |
2419 preference is set. This will open a window for the conversation | |
2420 before the first message is sent. */ | |
2421 static void convo_do_psychic(struct mwConversation *conv) { | |
2422 struct mwServiceIm *srvc; | |
2423 struct mwSession *session; | |
2424 struct mwGaimPluginData *pd; | |
2425 GaimConnection *gc; | |
2426 GaimAccount *acct; | |
2427 | |
2428 struct mwIdBlock *idb; | |
2429 | |
2430 GaimConversation *gconv; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2431 GaimConvWindow *win; |
10977 | 2432 |
2433 srvc = mwConversation_getService(conv); | |
2434 session = mwService_getSession(MW_SERVICE(srvc)); | |
2435 pd = mwSession_getClientData(session); | |
2436 gc = pd->gc; | |
2437 acct = gaim_connection_get_account(gc); | |
2438 | |
2439 idb = mwConversation_getTarget(conv); | |
2440 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2441 gconv = gaim_find_conversation_with_account(GAIM_CONV_TYPE_IM, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2442 idb->user, acct); |
10977 | 2443 if(! gconv) { |
11338 | 2444 gconv = gaim_conversation_new(GAIM_CONV_TYPE_IM, acct, idb->user); |
10977 | 2445 } |
2446 | |
2447 g_return_if_fail(gconv != NULL); | |
2448 | |
2449 win = gaim_conversation_get_window(gconv); | |
2450 g_return_if_fail(win != NULL); | |
2451 | |
2452 gaim_conv_window_show(win); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2453 } |
11547 | 2454 #endif |
10977 | 2455 |
2456 | |
2457 static void mw_conversation_opened(struct mwConversation *conv) { | |
2458 struct mwServiceIm *srvc; | |
2459 struct mwSession *session; | |
2460 struct mwGaimPluginData *pd; | |
2461 GaimConnection *gc; | |
2462 GaimAccount *acct; | |
2463 | |
2464 struct convo_dat *cd; | |
2465 | |
2466 srvc = mwConversation_getService(conv); | |
2467 session = mwService_getSession(MW_SERVICE(srvc)); | |
2468 pd = mwSession_getClientData(session); | |
2469 gc = pd->gc; | |
2470 acct = gaim_connection_get_account(gc); | |
2471 | |
2472 /* set up the queue */ | |
2473 cd = mwConversation_getClientData(conv); | |
2474 if(cd) { | |
2475 convo_queue_send(conv); | |
2476 | |
2477 if(! convo_get_gconv(conv)) { | |
2478 mwConversation_free(conv); | |
2479 return; | |
2480 } | |
2481 | |
2482 } else { | |
2483 convo_data_new(conv); | |
2484 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2485 #if 0 |
10977 | 2486 if(gaim_prefs_get_bool(MW_PRPL_OPT_PSYCHIC)) { |
2487 convo_do_psychic(conv); | |
2488 } | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2489 #endif |
10977 | 2490 } |
2491 | |
2492 { /* record the client key for the buddy */ | |
2493 GaimBuddy *buddy; | |
2494 struct mwLoginInfo *info; | |
2495 info = mwConversation_getTargetInfo(conv); | |
2496 | |
2497 buddy = gaim_find_buddy(acct, info->user_id); | |
2498 if(buddy) { | |
2499 gaim_blist_node_set_int((GaimBlistNode *) buddy, | |
2500 BUDDY_KEY_CLIENT, info->type); | |
2501 } | |
2502 } | |
2503 | |
2504 convo_features(conv); | |
2505 } | |
2506 | |
2507 | |
2508 static void mw_conversation_closed(struct mwConversation *conv, | |
2509 guint32 reason) { | |
2510 | |
2511 struct convo_data *cd; | |
2512 | |
2513 g_return_if_fail(conv != NULL); | |
2514 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2515 /* if there's an error code and a non-typing message in the queue, |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2516 print an error message to the conversation */ |
10977 | 2517 cd = mwConversation_getClientData(conv); |
2518 if(reason && cd && cd->queue) { | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2519 GList *l; |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2520 for(l = cd->queue; l; l = l->next) { |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2521 struct convo_msg *m = l->data; |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2522 if(m->type != mwImSend_TYPING) { |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2523 convo_error(conv, reason); |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2524 break; |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2525 } |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2526 } |
10977 | 2527 } |
2528 | |
2529 #if 0 | |
2530 /* don't do this, to prevent the occasional weird sending of | |
2531 formatted messages as plaintext when the other end closes the | |
2532 conversation after we've begun composing the message */ | |
2533 convo_nofeatures(conv); | |
2534 #endif | |
2535 | |
2536 mwConversation_removeClientData(conv); | |
2537 } | |
2538 | |
2539 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2540 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2541 static char *im_decode(GaimConnection *gc, const char *msg) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2542 return gaim_utf8_try_convert(msg); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2543 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2544 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2545 |
10977 | 2546 static void im_recv_text(struct mwConversation *conv, |
2547 struct mwGaimPluginData *pd, | |
2548 const char *msg) { | |
2549 | |
2550 struct mwIdBlock *idb; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2551 char *txt, *esc, *t; |
10977 | 2552 |
2553 idb = mwConversation_getTarget(conv); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2554 txt = im_decode(pd->gc, msg); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2555 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2556 t = txt? txt: (char *) msg; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2557 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2558 esc = g_markup_escape_text(t, -1); |
10977 | 2559 serv_got_im(pd->gc, idb->user, esc, 0, time(NULL)); |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2560 g_free(esc); |
10977 | 2561 |
2562 g_free(txt); | |
2563 } | |
2564 | |
2565 | |
2566 static void im_recv_typing(struct mwConversation *conv, | |
2567 struct mwGaimPluginData *pd, | |
2568 gboolean typing) { | |
2569 | |
2570 struct mwIdBlock *idb; | |
2571 idb = mwConversation_getTarget(conv); | |
2572 | |
2573 serv_got_typing(pd->gc, idb->user, 0, | |
2574 typing? GAIM_TYPING: GAIM_NOT_TYPING); | |
2575 } | |
2576 | |
2577 | |
2578 static void im_recv_html(struct mwConversation *conv, | |
2579 struct mwGaimPluginData *pd, | |
2580 const char *msg) { | |
2581 | |
2582 struct mwIdBlock *idb; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2583 char *txt, *t; |
10977 | 2584 |
2585 idb = mwConversation_getTarget(conv); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2586 txt = im_decode(pd->gc, msg); |
10977 | 2587 |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2588 t = txt? txt: (char *) msg; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2589 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2590 serv_got_im(pd->gc, idb->user, t, 0, time(NULL)); |
10977 | 2591 |
2592 g_free(txt); | |
2593 } | |
2594 | |
2595 | |
2596 static void im_recv_subj(struct mwConversation *conv, | |
2597 struct mwGaimPluginData *pd, | |
2598 const char *subj) { | |
2599 | |
2600 /** @todo somehow indicate receipt of a conversation subject. It | |
2601 would also be nice if we added a /topic command for the | |
2602 protocol */ | |
2603 ; | |
2604 } | |
2605 | |
2606 | |
2607 /** generate "cid:908@20582notesbuddy" from "<908@20582notesbuddy>" */ | |
2608 static char *make_cid(const char *cid) { | |
2609 gsize n; | |
2610 char *c, *d; | |
2611 | |
2612 g_return_val_if_fail(cid != NULL, NULL); | |
2613 | |
2614 n = strlen(cid); | |
2615 g_return_val_if_fail(n > 2, NULL); | |
2616 | |
2617 c = g_strndup(cid+1, n-2); | |
2618 d = g_strdup_printf("cid:%s", c); | |
2619 | |
2620 g_free(c); | |
2621 return d; | |
2622 } | |
2623 | |
2624 | |
2625 static void im_recv_mime(struct mwConversation *conv, | |
2626 struct mwGaimPluginData *pd, | |
2627 const char *data) { | |
2628 | |
2629 struct mwIdBlock *idb; | |
2630 | |
2631 GHashTable *img_by_cid; | |
2632 GList *images; | |
2633 | |
2634 GString *str; | |
2635 | |
2636 GaimMimeDocument *doc; | |
2637 const GList *parts; | |
2638 | |
2639 idb = mwConversation_getTarget(conv); | |
2640 | |
2641 img_by_cid = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL); | |
2642 images = NULL; | |
2643 | |
2644 /* don't want the contained string to ever be NULL */ | |
2645 str = g_string_new(""); | |
2646 | |
2647 doc = gaim_mime_document_parse(data); | |
2648 | |
2649 /* handle all the MIME parts */ | |
2650 parts = gaim_mime_document_get_parts(doc); | |
2651 for(; parts; parts = parts->next) { | |
2652 GaimMimePart *part = parts->data; | |
2653 const char *type; | |
2654 | |
2655 type = gaim_mime_part_get_field(part, "content-type"); | |
2656 DEBUG_INFO("MIME part Content-Type: %s\n", NSTR(type)); | |
2657 | |
2658 if(! type) { | |
2659 ; /* feh */ | |
2660 | |
2661 } else if(g_str_has_prefix(type, "image")) { | |
2662 /* put images into the image store */ | |
2663 | |
11183 | 2664 guchar *d_dat; |
10977 | 2665 gsize d_len; |
2666 char *cid; | |
2667 int img; | |
2668 | |
2669 /* obtain and unencode the data */ | |
2670 gaim_mime_part_get_data_decoded(part, &d_dat, &d_len); | |
2671 | |
2672 /* look up the content id */ | |
2673 cid = (char *) gaim_mime_part_get_field(part, "Content-ID"); | |
2674 cid = make_cid(cid); | |
2675 | |
2676 /* add image to the gaim image store */ | |
2677 img = gaim_imgstore_add(d_dat, d_len, cid); | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2678 g_free(d_dat); |
10977 | 2679 |
2680 /* map the cid to the image store identifier */ | |
2681 g_hash_table_insert(img_by_cid, cid, GINT_TO_POINTER(img)); | |
2682 | |
2683 /* recall the image for dereferencing later */ | |
2684 images = g_list_append(images, GINT_TO_POINTER(img)); | |
2685 | |
2686 } else if(g_str_has_prefix(type, "text")) { | |
2687 | |
2688 /* concatenate all the text parts together */ | |
11183 | 2689 guchar *data; |
11132 | 2690 char *txt; |
10977 | 2691 gsize len; |
2692 | |
2693 gaim_mime_part_get_data_decoded(part, &data, &len); | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2694 |
11953 | 2695 txt = im_decode(pd->gc, (const char *)data); |
2696 g_string_append(str, txt?txt:(const char *)data); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2697 |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
2698 g_free(data); |
10977 | 2699 g_free(txt); |
2700 } | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2701 } |
10977 | 2702 |
2703 gaim_mime_document_free(doc); | |
2704 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2705 /* @todo should put this in its own function */ |
10977 | 2706 { /* replace each IMG tag's SRC attribute with an ID attribute. This |
2707 actually modifies the contents of str */ | |
2708 GData *attribs; | |
2709 char *start, *end; | |
2710 char *tmp = str->str; | |
2711 | |
2712 while(*tmp && gaim_markup_find_tag("img", tmp, (const char **) &start, | |
2713 (const char **) &end, &attribs)) { | |
2714 | |
2715 char *alt, *align, *border, *src; | |
2716 int img; | |
2717 | |
2718 alt = g_datalist_get_data(&attribs, "alt"); | |
2719 align = g_datalist_get_data(&attribs, "align"); | |
2720 border = g_datalist_get_data(&attribs, "border"); | |
2721 src = g_datalist_get_data(&attribs, "src"); | |
2722 | |
2723 img = GPOINTER_TO_INT(g_hash_table_lookup(img_by_cid, src)); | |
2724 if(img) { | |
2725 GString *atstr; | |
2726 gsize len = (end - start); | |
2727 gsize mov; | |
2728 | |
2729 atstr = g_string_new(""); | |
2730 if(alt) g_string_append_printf(atstr, " alt=\"%s\"", alt); | |
2731 if(align) g_string_append_printf(atstr, " align=\"%s\"", align); | |
2732 if(border) g_string_append_printf(atstr, " border=\"%s\"", border); | |
2733 | |
2734 mov = g_snprintf(start, len, "<img%s id=\"%i\"", atstr->str, img); | |
2735 while(mov < len) start[mov++] = ' '; | |
2736 | |
2737 g_string_free(atstr, TRUE); | |
2738 } | |
2739 | |
2740 g_datalist_clear(&attribs); | |
2741 tmp = end + 1; | |
2742 } | |
2743 } | |
2744 | |
2745 /* actually display the message */ | |
2746 serv_got_im(pd->gc, idb->user, str->str, 0, time(NULL)); | |
2747 | |
2748 g_string_free(str, TRUE); | |
2749 | |
2750 /* clean up the cid table */ | |
2751 g_hash_table_destroy(img_by_cid); | |
2752 | |
2753 /* dereference all the imgages */ | |
2754 while(images) { | |
2755 gaim_imgstore_unref(GPOINTER_TO_INT(images->data)); | |
2756 images = g_list_delete_link(images, images); | |
2757 } | |
2758 } | |
2759 | |
2760 | |
2761 static void mw_conversation_recv(struct mwConversation *conv, | |
2762 enum mwImSendType type, | |
2763 gconstpointer msg) { | |
2764 struct mwServiceIm *srvc; | |
2765 struct mwSession *session; | |
2766 struct mwGaimPluginData *pd; | |
2767 | |
2768 srvc = mwConversation_getService(conv); | |
2769 session = mwService_getSession(MW_SERVICE(srvc)); | |
2770 pd = mwSession_getClientData(session); | |
2771 | |
2772 switch(type) { | |
2773 case mwImSend_PLAIN: | |
2774 im_recv_text(conv, pd, msg); | |
2775 break; | |
2776 | |
2777 case mwImSend_TYPING: | |
2778 im_recv_typing(conv, pd, !! msg); | |
2779 break; | |
2780 | |
2781 case mwImSend_HTML: | |
2782 im_recv_html(conv, pd, msg); | |
2783 break; | |
2784 | |
2785 case mwImSend_SUBJECT: | |
2786 im_recv_subj(conv, pd, msg); | |
2787 break; | |
2788 | |
2789 case mwImSend_MIME: | |
2790 im_recv_mime(conv, pd, msg); | |
2791 break; | |
2792 | |
2793 default: | |
2794 DEBUG_INFO("conversation received strange type, 0x%04x\n", type); | |
2795 ; /* erm... */ | |
2796 } | |
2797 } | |
2798 | |
2799 | |
2800 static void mw_place_invite(struct mwConversation *conv, | |
2801 const char *message, | |
2802 const char *title, const char *name) { | |
2803 struct mwServiceIm *srvc; | |
2804 struct mwSession *session; | |
2805 struct mwGaimPluginData *pd; | |
2806 | |
2807 struct mwIdBlock *idb; | |
2808 GHashTable *ht; | |
2809 | |
2810 srvc = mwConversation_getService(conv); | |
2811 session = mwService_getSession(MW_SERVICE(srvc)); | |
2812 pd = mwSession_getClientData(session); | |
2813 | |
2814 idb = mwConversation_getTarget(conv); | |
2815 | |
2816 ht = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, g_free); | |
2817 g_hash_table_insert(ht, CHAT_KEY_CREATOR, g_strdup(idb->user)); | |
2818 g_hash_table_insert(ht, CHAT_KEY_NAME, g_strdup(name)); | |
2819 g_hash_table_insert(ht, CHAT_KEY_TOPIC, g_strdup(title)); | |
2820 g_hash_table_insert(ht, CHAT_KEY_INVITE, g_strdup(message)); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2821 g_hash_table_insert(ht, CHAT_KEY_IS_PLACE, g_strdup("")); /* ugh */ |
10977 | 2822 |
2823 serv_got_chat_invite(pd->gc, title, idb->user, message, ht); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2824 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2825 mwConversation_close(conv, ERR_SUCCESS); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2826 mwConversation_free(conv); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2827 } |
10977 | 2828 |
2829 | |
2830 static void mw_im_clear(struct mwServiceIm *srvc) { | |
2831 ; | |
2832 } | |
2833 | |
2834 | |
2835 static struct mwImHandler mw_im_handler = { | |
2836 .conversation_opened = mw_conversation_opened, | |
2837 .conversation_closed = mw_conversation_closed, | |
2838 .conversation_recv = mw_conversation_recv, | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2839 .place_invite = mw_place_invite, |
10977 | 2840 .clear = mw_im_clear, |
2841 }; | |
2842 | |
2843 | |
2844 static struct mwServiceIm *mw_srvc_im_new(struct mwSession *s) { | |
2845 struct mwServiceIm *srvc; | |
2846 srvc = mwServiceIm_new(s, &mw_im_handler); | |
2847 mwServiceIm_setClientType(srvc, mwImClient_NOTESBUDDY); | |
2848 return srvc; | |
2849 } | |
2850 | |
2851 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2852 /* The following helps us relate a mwPlace to a GaimConvChat in the |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2853 various forms by which either may be indicated. Uses some of |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2854 the similar macros from the conference service above */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2855 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2856 #define PLACE_TO_ID(place) (GPOINTER_TO_INT(place)) |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2857 #define ID_TO_PLACE(pd, id) (place_find_by_id((pd), (id))) |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2858 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2859 #define CHAT_TO_PLACE(pd, chat) (ID_TO_PLACE((pd), CHAT_TO_ID(chat))) |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2860 #define PLACE_TO_CHAT(place) (ID_TO_CHAT(PLACE_TO_ID(place))) |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2861 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2862 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2863 static struct mwPlace * |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2864 place_find_by_id(struct mwGaimPluginData *pd, int id) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2865 struct mwServicePlace *srvc = pd->srvc_place; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2866 struct mwPlace *place = NULL; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2867 GList *l; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2868 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2869 l = (GList *) mwServicePlace_getPlaces(srvc); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2870 for(; l; l = l->next) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2871 struct mwPlace *p = l->data; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2872 GaimConvChat *h = GAIM_CONV_CHAT(mwPlace_getClientData(p)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2873 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2874 if(CHAT_TO_ID(h) == id) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2875 place = p; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2876 break; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2877 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2878 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2879 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2880 return place; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2881 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2882 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2883 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2884 static void mw_place_opened(struct mwPlace *place) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2885 struct mwServicePlace *srvc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2886 struct mwSession *session; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2887 struct mwGaimPluginData *pd; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2888 GaimConnection *gc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2889 GaimConversation *gconf; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2890 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2891 GList *members, *l; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2892 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2893 const char *n = mwPlace_getName(place); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2894 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2895 srvc = mwPlace_getService(place); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2896 session = mwService_getSession(MW_SERVICE(srvc)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2897 pd = mwSession_getClientData(session); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2898 gc = pd->gc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2899 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2900 members = mwPlace_getMembers(place); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2901 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2902 DEBUG_INFO("place %s opened, %u initial members\n", |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2903 NSTR(n), g_list_length(members)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2904 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2905 gconf = serv_got_joined_chat(gc, PLACE_TO_ID(place), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2906 mwPlace_getTitle(place)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2907 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2908 mwPlace_setClientData(place, gconf, NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2909 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2910 for(l = members; l; l = l->next) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2911 struct mwIdBlock *idb = l->data; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2912 gaim_conv_chat_add_user(GAIM_CONV_CHAT(gconf), idb->user, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2913 NULL, GAIM_CBFLAGS_NONE, FALSE); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2914 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2915 g_list_free(members); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2916 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2917 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2918 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2919 static void mw_place_closed(struct mwPlace *place, guint32 code) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2920 struct mwServicePlace *srvc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2921 struct mwSession *session; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2922 struct mwGaimPluginData *pd; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2923 GaimConnection *gc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2924 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2925 const char *n = mwPlace_getName(place); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2926 char *msg = mwError(code); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2927 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2928 DEBUG_INFO("place %s closed, 0x%08x\n", NSTR(n), code); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2929 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2930 srvc = mwPlace_getService(place); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2931 session = mwService_getSession(MW_SERVICE(srvc)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2932 pd = mwSession_getClientData(session); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2933 gc = pd->gc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2934 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2935 serv_got_chat_left(gc, PLACE_TO_ID(place)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2936 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2937 gaim_notify_error(gc, _("Place Closed"), NULL, msg); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2938 g_free(msg); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2939 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2940 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2941 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2942 static void mw_place_peerJoined(struct mwPlace *place, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2943 const struct mwIdBlock *peer) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2944 struct mwServicePlace *srvc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2945 struct mwSession *session; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2946 struct mwGaimPluginData *pd; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2947 GaimConnection *gc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2948 GaimConversation *gconf; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2949 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2950 const char *n = mwPlace_getName(place); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2951 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2952 DEBUG_INFO("%s joined place %s\n", NSTR(peer->user), NSTR(n)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2953 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2954 srvc = mwPlace_getService(place); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2955 session = mwService_getSession(MW_SERVICE(srvc)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2956 pd = mwSession_getClientData(session); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2957 gc = pd->gc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2958 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2959 gconf = mwPlace_getClientData(place); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2960 g_return_if_fail(gconf != NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2961 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2962 gaim_conv_chat_add_user(GAIM_CONV_CHAT(gconf), peer->user, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2963 NULL, GAIM_CBFLAGS_NONE, TRUE); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2964 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2965 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2966 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2967 static void mw_place_peerParted(struct mwPlace *place, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2968 const struct mwIdBlock *peer) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2969 struct mwServicePlace *srvc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2970 struct mwSession *session; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2971 struct mwGaimPluginData *pd; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2972 GaimConnection *gc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2973 GaimConversation *gconf; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2974 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2975 const char *n = mwPlace_getName(place); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2976 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2977 DEBUG_INFO("%s left place %s\n", NSTR(peer->user), NSTR(n)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2978 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2979 srvc = mwPlace_getService(place); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2980 session = mwService_getSession(MW_SERVICE(srvc)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2981 pd = mwSession_getClientData(session); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2982 gc = pd->gc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2983 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2984 gconf = mwPlace_getClientData(place); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2985 g_return_if_fail(gconf != NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2986 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2987 gaim_conv_chat_remove_user(GAIM_CONV_CHAT(gconf), peer->user, NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2988 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2989 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2990 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2991 static void mw_place_peerSetAttribute(struct mwPlace *place, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2992 const struct mwIdBlock *peer, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2993 guint32 attr, struct mwOpaque *o) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2994 ; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2995 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2996 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2997 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2998 static void mw_place_peerUnsetAttribute(struct mwPlace *place, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
2999 const struct mwIdBlock *peer, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3000 guint32 attr) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3001 ; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3002 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3003 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3004 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3005 static void mw_place_message(struct mwPlace *place, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3006 const struct mwIdBlock *who, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3007 const char *msg) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3008 struct mwServicePlace *srvc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3009 struct mwSession *session; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3010 struct mwGaimPluginData *pd; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3011 GaimConnection *gc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3012 char *esc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3013 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3014 srvc = mwPlace_getService(place); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3015 session = mwService_getSession(MW_SERVICE(srvc)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3016 pd = mwSession_getClientData(session); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3017 gc = pd->gc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3018 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3019 esc = g_markup_escape_text(msg, -1); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3020 serv_got_chat_in(gc, PLACE_TO_ID(place), who->user, 0, esc, time(NULL)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3021 g_free(esc); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3022 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3023 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3024 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3025 static void mw_place_clear(struct mwServicePlace *srvc) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3026 ; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3027 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3028 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3029 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3030 static struct mwPlaceHandler mw_place_handler = { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3031 .opened = mw_place_opened, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3032 .closed = mw_place_closed, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3033 .peerJoined = mw_place_peerJoined, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3034 .peerParted = mw_place_peerParted, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3035 .peerSetAttribute = mw_place_peerSetAttribute, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3036 .peerUnsetAttribute = mw_place_peerUnsetAttribute, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3037 .message = mw_place_message, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3038 .clear = mw_place_clear, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3039 }; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3040 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3041 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3042 static struct mwServicePlace *mw_srvc_place_new(struct mwSession *s) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3043 struct mwServicePlace *srvc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3044 srvc = mwServicePlace_new(s, &mw_place_handler); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3045 return srvc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3046 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3047 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3048 |
10977 | 3049 static struct mwServiceResolve *mw_srvc_resolve_new(struct mwSession *s) { |
3050 struct mwServiceResolve *srvc; | |
3051 srvc = mwServiceResolve_new(s); | |
3052 return srvc; | |
3053 } | |
3054 | |
3055 | |
3056 static struct mwServiceStorage *mw_srvc_store_new(struct mwSession *s) { | |
3057 struct mwServiceStorage *srvc; | |
3058 srvc = mwServiceStorage_new(s); | |
3059 return srvc; | |
3060 } | |
3061 | |
3062 | |
3063 /** allocate and associate a mwGaimPluginData with a GaimConnection */ | |
3064 static struct mwGaimPluginData *mwGaimPluginData_new(GaimConnection *gc) { | |
3065 struct mwGaimPluginData *pd; | |
3066 | |
3067 g_return_val_if_fail(gc != NULL, NULL); | |
3068 | |
3069 pd = g_new0(struct mwGaimPluginData, 1); | |
3070 pd->gc = gc; | |
3071 pd->session = mwSession_new(&mw_session_handler); | |
3072 pd->srvc_aware = mw_srvc_aware_new(pd->session); | |
3073 pd->srvc_conf = mw_srvc_conf_new(pd->session); | |
3074 pd->srvc_ft = mw_srvc_ft_new(pd->session); | |
3075 pd->srvc_im = mw_srvc_im_new(pd->session); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3076 pd->srvc_place = mw_srvc_place_new(pd->session); |
10977 | 3077 pd->srvc_resolve = mw_srvc_resolve_new(pd->session); |
3078 pd->srvc_store = mw_srvc_store_new(pd->session); | |
3079 pd->group_list_map = g_hash_table_new(g_direct_hash, g_direct_equal); | |
3080 | |
3081 mwSession_addService(pd->session, MW_SERVICE(pd->srvc_aware)); | |
3082 mwSession_addService(pd->session, MW_SERVICE(pd->srvc_conf)); | |
3083 mwSession_addService(pd->session, MW_SERVICE(pd->srvc_ft)); | |
3084 mwSession_addService(pd->session, MW_SERVICE(pd->srvc_im)); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3085 mwSession_addService(pd->session, MW_SERVICE(pd->srvc_place)); |
10977 | 3086 mwSession_addService(pd->session, MW_SERVICE(pd->srvc_resolve)); |
3087 mwSession_addService(pd->session, MW_SERVICE(pd->srvc_store)); | |
3088 | |
3089 mwSession_addCipher(pd->session, mwCipher_new_RC2_40(pd->session)); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3090 mwSession_addCipher(pd->session, mwCipher_new_RC2_128(pd->session)); |
10977 | 3091 |
3092 mwSession_setClientData(pd->session, pd, NULL); | |
3093 gc->proto_data = pd; | |
3094 | |
3095 return pd; | |
3096 } | |
3097 | |
3098 | |
3099 static void mwGaimPluginData_free(struct mwGaimPluginData *pd) { | |
3100 g_return_if_fail(pd != NULL); | |
3101 | |
3102 pd->gc->proto_data = NULL; | |
3103 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3104 mwSession_removeService(pd->session, mwService_AWARE); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3105 mwSession_removeService(pd->session, mwService_CONFERENCE); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3106 mwSession_removeService(pd->session, mwService_FILE_TRANSFER); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3107 mwSession_removeService(pd->session, mwService_IM); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3108 mwSession_removeService(pd->session, mwService_PLACE); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3109 mwSession_removeService(pd->session, mwService_RESOLVE); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3110 mwSession_removeService(pd->session, mwService_STORAGE); |
10977 | 3111 |
3112 mwService_free(MW_SERVICE(pd->srvc_aware)); | |
3113 mwService_free(MW_SERVICE(pd->srvc_conf)); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3114 mwService_free(MW_SERVICE(pd->srvc_ft)); |
10977 | 3115 mwService_free(MW_SERVICE(pd->srvc_im)); |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3116 mwService_free(MW_SERVICE(pd->srvc_place)); |
10977 | 3117 mwService_free(MW_SERVICE(pd->srvc_resolve)); |
3118 mwService_free(MW_SERVICE(pd->srvc_store)); | |
3119 | |
3120 mwCipher_free(mwSession_getCipher(pd->session, mwCipher_RC2_40)); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3121 mwCipher_free(mwSession_getCipher(pd->session, mwCipher_RC2_128)); |
10977 | 3122 |
3123 mwSession_free(pd->session); | |
3124 | |
3125 g_hash_table_destroy(pd->group_list_map); | |
3126 | |
3127 g_free(pd); | |
3128 } | |
3129 | |
3130 | |
3131 static const char *mw_prpl_list_icon(GaimAccount *a, GaimBuddy *b) { | |
3132 /* my little green dude is a chopped up version of the aim running | |
3133 guy. First, cut off the head and store someplace safe. Then, | |
3134 take the left-half side of the body and throw it away. Make a | |
3135 copy of the remaining body, and flip it horizontally. Now attach | |
3136 the two pieces into an X shape, and drop the head back on the | |
3137 top, being careful to center it. Then, just change the color | |
3138 saturation to bring the red down a bit, and voila! */ | |
3139 | |
3140 /* then, throw all of that away and use sodipodi to make a new | |
3141 icon. You know, LIKE A REAL MAN. */ | |
3142 | |
3143 return "meanwhile"; | |
3144 } | |
3145 | |
3146 | |
3147 static void mw_prpl_list_emblems(GaimBuddy *b, | |
3148 const char **se, const char **sw, | |
3149 const char **nw, const char **ne) { | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3150 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3151 /* speaking of custom icons, the external icon here is an ugly |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3152 little example of what happens when I use Gimp */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3153 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3154 GaimPresence *presence; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3155 GaimStatus *status; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3156 const char *status_id; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3157 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3158 presence = gaim_buddy_get_presence(b); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3159 status = gaim_presence_get_active_status(presence); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3160 status_id = gaim_status_get_id(status); |
10977 | 3161 |
3162 if(! GAIM_BUDDY_IS_ONLINE(b)) { | |
3163 *se = "offline"; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3164 } else if(!strcmp(status_id, MW_STATE_AWAY)) { |
10977 | 3165 *se = "away"; |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3166 } else if(!strcmp(status_id, MW_STATE_BUSY)) { |
10977 | 3167 *se = "dnd"; |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3168 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3169 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3170 if(buddy_is_external(b)) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3171 /* best assignment ever */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3172 *(*se?sw:se) = "external"; |
10977 | 3173 } |
3174 } | |
3175 | |
3176 | |
3177 static char *mw_prpl_status_text(GaimBuddy *b) { | |
3178 GaimConnection *gc; | |
3179 struct mwGaimPluginData *pd; | |
3180 struct mwAwareIdBlock t = { mwAware_USER, b->name, NULL }; | |
3181 const char *ret; | |
3182 | |
3183 gc = b->account->gc; | |
3184 pd = gc->proto_data; | |
3185 | |
3186 ret = mwServiceAware_getText(pd->srvc_aware, &t); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3187 return g_strdup(ret); |
10977 | 3188 } |
3189 | |
3190 | |
3191 static const char *status_text(GaimBuddy *b) { | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3192 GaimPresence *presence; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3193 GaimStatus *status; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3194 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3195 presence = gaim_buddy_get_presence(b); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3196 status = gaim_presence_get_active_status(presence); |
11536 | 3197 |
3198 return gaim_status_get_name(status); | |
10977 | 3199 } |
3200 | |
3201 | |
3202 static gboolean user_supports(struct mwServiceAware *srvc, | |
3203 const char *who, guint32 feature) { | |
3204 | |
3205 const struct mwAwareAttribute *attr; | |
3206 struct mwAwareIdBlock idb = { mwAware_USER, (char *) who, NULL }; | |
3207 | |
3208 attr = mwServiceAware_getAttribute(srvc, &idb, feature); | |
3209 return (attr != NULL) && mwAwareAttribute_asBoolean(attr); | |
3210 } | |
3211 | |
3212 | |
3213 char *user_supports_text(struct mwServiceAware *srvc, const char *who) { | |
3214 char *feat[] = {NULL, NULL, NULL, NULL, NULL}; | |
3215 char **f = feat; | |
3216 | |
3217 if(user_supports(srvc, who, mwAttribute_AV_PREFS_SET)) { | |
3218 gboolean mic, speak, video; | |
3219 | |
3220 mic = user_supports(srvc, who, mwAttribute_MICROPHONE); | |
3221 speak = user_supports(srvc, who, mwAttribute_SPEAKERS); | |
3222 video = user_supports(srvc, who, mwAttribute_VIDEO_CAMERA); | |
3223 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3224 if(mic) *f++ = _("Microphone"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3225 if(speak) *f++ = _("Speakers"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3226 if(video) *f++ = _("Video Camera"); |
10977 | 3227 } |
3228 | |
3229 if(user_supports(srvc, who, mwAttribute_FILE_TRANSFER)) | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3230 *f++ = _("File Transfer"); |
10977 | 3231 |
3232 return (*feat)? g_strjoinv(", ", feat): NULL; | |
3233 /* jenni loves siege */ | |
3234 } | |
3235 | |
3236 | |
3237 static char *mw_prpl_tooltip_text(GaimBuddy *b) { | |
3238 GaimConnection *gc; | |
3239 struct mwGaimPluginData *pd; | |
3240 struct mwAwareIdBlock idb = { mwAware_USER, b->name, NULL }; | |
3241 | |
3242 GString *str; | |
3243 const char *tmp; | |
3244 | |
3245 gc = b->account->gc; | |
3246 pd = gc->proto_data; | |
3247 | |
3248 str = g_string_new(NULL); | |
3249 | |
3250 tmp = status_text(b); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3251 g_string_append_printf(str, _("\n<b>Status</b>: %s"), tmp); |
10977 | 3252 |
3253 tmp = mwServiceAware_getText(pd->srvc_aware, &idb); | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3254 if(tmp) { |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3255 tmp = g_markup_escape_text(tmp, -1); |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3256 g_string_append_printf(str, _("\n<b>Message</b>: %s"), tmp); |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3257 g_free((char *) tmp); |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3258 } |
10977 | 3259 |
3260 tmp = user_supports_text(pd->srvc_aware, b->name); | |
3261 if(tmp) { | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3262 g_string_append_printf(str, _("\n<b>Supports</b>: %s"), tmp); |
10977 | 3263 g_free((char *) tmp); |
3264 } | |
3265 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3266 if(buddy_is_external(b)) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3267 g_string_append(str, _("\n<b>External User</b>")); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3268 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3269 |
10977 | 3270 tmp = str->str; |
3271 g_string_free(str, FALSE); | |
3272 return (char *) tmp; | |
3273 } | |
3274 | |
3275 | |
3276 static GList *mw_prpl_status_types(GaimAccount *acct) { | |
3277 GList *types = NULL; | |
3278 GaimStatusType *type; | |
3279 | |
3280 type = gaim_status_type_new(GAIM_STATUS_OFFLINE, MW_STATE_OFFLINE, | |
3281 _("Offline"), TRUE); | |
3282 types = g_list_append(types, type); | |
3283 | |
3284 type = gaim_status_type_new(GAIM_STATUS_AVAILABLE, MW_STATE_ACTIVE, | |
3285 _("Active"), TRUE); | |
3286 gaim_status_type_add_attr(type, MW_STATE_MESSAGE, _("Message"), | |
3287 gaim_value_new(GAIM_TYPE_STRING)); | |
3288 types = g_list_append(types, type); | |
3289 | |
3290 type = gaim_status_type_new(GAIM_STATUS_AWAY, MW_STATE_AWAY, | |
3291 _("Away"), TRUE); | |
3292 gaim_status_type_add_attr(type, MW_STATE_MESSAGE, _("Message"), | |
3293 gaim_value_new(GAIM_TYPE_STRING)); | |
3294 types = g_list_append(types, type); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3295 |
10977 | 3296 type = gaim_status_type_new(GAIM_STATUS_UNAVAILABLE, MW_STATE_BUSY, |
3297 _("Do Not Disturb"), TRUE); | |
3298 gaim_status_type_add_attr(type, MW_STATE_MESSAGE, _("Message"), | |
3299 gaim_value_new(GAIM_TYPE_STRING)); | |
3300 types = g_list_append(types, type); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3301 |
10977 | 3302 return types; |
3303 } | |
3304 | |
3305 | |
3306 static void conf_create_prompt_cancel(GaimBuddy *buddy, | |
3307 GaimRequestFields *fields) { | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3308 ; /* nothing to do */ |
10977 | 3309 } |
3310 | |
3311 | |
3312 static void conf_create_prompt_join(GaimBuddy *buddy, | |
3313 GaimRequestFields *fields) { | |
3314 GaimAccount *acct; | |
3315 GaimConnection *gc; | |
3316 struct mwGaimPluginData *pd; | |
3317 struct mwServiceConference *srvc; | |
3318 | |
3319 GaimRequestField *f; | |
3320 | |
3321 const char *topic, *invite; | |
3322 struct mwConference *conf; | |
3323 struct mwIdBlock idb = { NULL, NULL }; | |
3324 | |
3325 acct = buddy->account; | |
3326 gc = gaim_account_get_connection(acct); | |
3327 pd = gc->proto_data; | |
3328 srvc = pd->srvc_conf; | |
3329 | |
3330 f = gaim_request_fields_get_field(fields, CHAT_KEY_TOPIC); | |
3331 topic = gaim_request_field_string_get_value(f); | |
3332 | |
3333 f = gaim_request_fields_get_field(fields, CHAT_KEY_INVITE); | |
3334 invite = gaim_request_field_string_get_value(f); | |
3335 | |
3336 conf = mwConference_new(srvc, topic); | |
3337 mwConference_open(conf); | |
3338 | |
3339 idb.user = buddy->name; | |
3340 mwConference_invite(conf, &idb, invite); | |
3341 } | |
3342 | |
3343 | |
3344 static void blist_menu_conf_create(GaimBuddy *buddy, const char *msg) { | |
3345 | |
3346 GaimRequestFields *fields; | |
3347 GaimRequestFieldGroup *g; | |
3348 GaimRequestField *f; | |
3349 | |
3350 GaimAccount *acct; | |
3351 GaimConnection *gc; | |
3352 | |
3353 char *msgA, *msgB; | |
3354 | |
3355 g_return_if_fail(buddy != NULL); | |
3356 | |
3357 acct = buddy->account; | |
3358 g_return_if_fail(acct != NULL); | |
3359 | |
3360 gc = gaim_account_get_connection(acct); | |
3361 g_return_if_fail(gc != NULL); | |
3362 | |
3363 fields = gaim_request_fields_new(); | |
3364 | |
3365 g = gaim_request_field_group_new(NULL); | |
3366 gaim_request_fields_add_group(fields, g); | |
3367 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3368 f = gaim_request_field_string_new(CHAT_KEY_TOPIC, _("Topic"), NULL, FALSE); |
10977 | 3369 gaim_request_field_group_add_field(g, f); |
3370 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3371 f = gaim_request_field_string_new(CHAT_KEY_INVITE, _("Message"), msg, FALSE); |
10977 | 3372 gaim_request_field_group_add_field(g, f); |
3373 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3374 msgA = _("Create conference with user"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3375 msgB = _("Please enter a topic for the new conference, and an invitation" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3376 " message to be sent to %s"); |
10977 | 3377 msgB = g_strdup_printf(msgB, buddy->name); |
3378 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3379 gaim_request_fields(gc, _("New Conference"), |
10977 | 3380 msgA, msgB, fields, |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3381 _("Create"), G_CALLBACK(conf_create_prompt_join), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3382 _("Cancel"), G_CALLBACK(conf_create_prompt_cancel), |
10977 | 3383 buddy); |
3384 g_free(msgB); | |
3385 } | |
3386 | |
3387 | |
3388 static void conf_select_prompt_cancel(GaimBuddy *buddy, | |
3389 GaimRequestFields *fields) { | |
3390 ; | |
3391 } | |
3392 | |
3393 | |
3394 static void conf_select_prompt_invite(GaimBuddy *buddy, | |
3395 GaimRequestFields *fields) { | |
3396 GaimRequestField *f; | |
3397 const GList *l; | |
3398 const char *msg; | |
3399 | |
3400 f = gaim_request_fields_get_field(fields, CHAT_KEY_INVITE); | |
3401 msg = gaim_request_field_string_get_value(f); | |
3402 | |
3403 f = gaim_request_fields_get_field(fields, "conf"); | |
3404 l = gaim_request_field_list_get_selected(f); | |
3405 | |
3406 if(l) { | |
3407 gpointer d = gaim_request_field_list_get_data(f, l->data); | |
3408 | |
3409 if(GPOINTER_TO_INT(d) == 0x01) { | |
3410 blist_menu_conf_create(buddy, msg); | |
3411 | |
3412 } else { | |
3413 struct mwIdBlock idb = { buddy->name, NULL }; | |
3414 mwConference_invite(d, &idb, msg); | |
3415 } | |
3416 } | |
3417 } | |
3418 | |
3419 | |
3420 static void blist_menu_conf_list(GaimBuddy *buddy, | |
3421 GList *confs) { | |
3422 | |
3423 GaimRequestFields *fields; | |
3424 GaimRequestFieldGroup *g; | |
3425 GaimRequestField *f; | |
3426 | |
3427 GaimAccount *acct; | |
3428 GaimConnection *gc; | |
3429 | |
3430 char *msgA, *msgB; | |
3431 | |
3432 acct = buddy->account; | |
3433 g_return_if_fail(acct != NULL); | |
3434 | |
3435 gc = gaim_account_get_connection(acct); | |
3436 g_return_if_fail(gc != NULL); | |
3437 | |
3438 fields = gaim_request_fields_new(); | |
3439 | |
3440 g = gaim_request_field_group_new(NULL); | |
3441 gaim_request_fields_add_group(fields, g); | |
3442 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3443 f = gaim_request_field_list_new("conf", _("Available Conferences")); |
10977 | 3444 gaim_request_field_list_set_multi_select(f, FALSE); |
3445 for(; confs; confs = confs->next) { | |
3446 struct mwConference *c = confs->data; | |
3447 gaim_request_field_list_add(f, mwConference_getTitle(c), c); | |
3448 } | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3449 gaim_request_field_list_add(f, _("Create New Conference..."), |
10977 | 3450 GINT_TO_POINTER(0x01)); |
3451 gaim_request_field_group_add_field(g, f); | |
3452 | |
3453 f = gaim_request_field_string_new(CHAT_KEY_INVITE, "Message", NULL, FALSE); | |
3454 gaim_request_field_group_add_field(g, f); | |
3455 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3456 msgA = _("Invite user to a conference"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3457 msgB = _("Select a conference from the list below to send an invite to" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3458 " user %s. Select \"Create New Conference\" if you'd like to" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3459 " create a new conference to invite this user to."); |
10977 | 3460 msgB = g_strdup_printf(msgB, buddy->name); |
3461 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3462 gaim_request_fields(gc, _("Invite to Conference"), |
10977 | 3463 msgA, msgB, fields, |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3464 _("Invite"), G_CALLBACK(conf_select_prompt_invite), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3465 _("Cancel"), G_CALLBACK(conf_select_prompt_cancel), |
10977 | 3466 buddy); |
3467 g_free(msgB); | |
3468 } | |
3469 | |
3470 | |
3471 static void blist_menu_conf(GaimBlistNode *node, gpointer data) { | |
3472 GaimBuddy *buddy = (GaimBuddy *) node; | |
3473 GaimAccount *acct; | |
3474 GaimConnection *gc; | |
3475 struct mwGaimPluginData *pd; | |
3476 GList *l; | |
3477 | |
3478 g_return_if_fail(node != NULL); | |
3479 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); | |
3480 | |
3481 acct = buddy->account; | |
3482 g_return_if_fail(acct != NULL); | |
3483 | |
3484 gc = gaim_account_get_connection(acct); | |
3485 g_return_if_fail(gc != NULL); | |
3486 | |
3487 pd = gc->proto_data; | |
3488 g_return_if_fail(pd != NULL); | |
3489 | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3490 /* |
10977 | 3491 - get a list of all conferences on this session |
3492 - if none, prompt to create one, and invite buddy to it | |
3493 - else, prompt to select a conference or create one | |
3494 */ | |
3495 | |
3496 l = mwServiceConference_getConferences(pd->srvc_conf); | |
3497 if(l) { | |
3498 blist_menu_conf_list(buddy, l); | |
3499 g_list_free(l); | |
3500 | |
3501 } else { | |
3502 blist_menu_conf_create(buddy, NULL); | |
3503 } | |
3504 } | |
3505 | |
3506 | |
3507 static GList *mw_prpl_blist_node_menu(GaimBlistNode *node) { | |
3508 GList *l = NULL; | |
3509 GaimBlistNodeAction *act; | |
3510 | |
3511 if(! GAIM_BLIST_NODE_IS_BUDDY(node)) | |
3512 return l; | |
3513 | |
3514 l = g_list_append(l, NULL); | |
3515 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3516 act = gaim_blist_node_action_new(_("Invite to Conference..."), |
10977 | 3517 blist_menu_conf, NULL, NULL); |
3518 l = g_list_append(l, act); | |
3519 | |
3520 /** note: this never gets called for a GaimGroup, have to use the | |
3521 blist-node-extended-menu signal for that. The function | |
3522 blist_node_menu_cb is assigned to this signal in the function | |
3523 services_starting */ | |
3524 | |
3525 return l; | |
3526 } | |
3527 | |
3528 | |
3529 static GList *mw_prpl_chat_info(GaimConnection *gc) { | |
3530 GList *l = NULL; | |
3531 struct proto_chat_entry *pce; | |
3532 | |
3533 pce = g_new0(struct proto_chat_entry, 1); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3534 pce->label = _("Topic:"); |
10977 | 3535 pce->identifier = CHAT_KEY_TOPIC; |
3536 l = g_list_append(l, pce); | |
3537 | |
3538 return l; | |
3539 } | |
3540 | |
3541 | |
3542 static GHashTable *mw_prpl_chat_info_defaults(GaimConnection *gc, | |
3543 const char *name) { | |
3544 GHashTable *table; | |
3545 | |
3546 g_return_val_if_fail(gc != NULL, NULL); | |
3547 | |
3548 table = g_hash_table_new_full(g_str_hash, g_str_equal, | |
3549 NULL, g_free); | |
3550 | |
3551 g_hash_table_insert(table, CHAT_KEY_NAME, g_strdup(name)); | |
3552 g_hash_table_insert(table, CHAT_KEY_INVITE, NULL); | |
3553 | |
3554 return table; | |
3555 } | |
3556 | |
3557 | |
11837 | 3558 static void mw_prpl_login(GaimAccount *acct); |
10977 | 3559 |
3560 | |
3561 static void prompt_host_cancel_cb(GaimConnection *gc) { | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3562 gaim_connection_error(gc, _("No Sametime Community Server specified")); |
10977 | 3563 } |
3564 | |
3565 | |
3566 static void prompt_host_ok_cb(GaimConnection *gc, const char *host) { | |
3567 if(host && *host) { | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3568 GaimAccount *acct = gaim_connection_get_account(gc); |
10977 | 3569 gaim_account_set_string(acct, MW_KEY_HOST, host); |
11837 | 3570 mw_prpl_login(acct); |
10977 | 3571 |
3572 } else { | |
3573 prompt_host_cancel_cb(gc); | |
3574 } | |
3575 } | |
3576 | |
3577 | |
3578 static void prompt_host(GaimConnection *gc) { | |
3579 GaimAccount *acct; | |
3580 char *msg; | |
3581 | |
3582 acct = gaim_connection_get_account(gc); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3583 msg = _("No host or IP address has been configured for the" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3584 " Meanwhile account %s. Please enter one below to" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3585 " continue logging in."); |
10977 | 3586 msg = g_strdup_printf(msg, NSTR(gaim_account_get_username(acct))); |
3587 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3588 gaim_request_input(gc, _("Meanwhile Connection Setup"), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3589 _("No Sametime Community Server Specified"), msg, |
10977 | 3590 MW_PLUGIN_DEFAULT_HOST, FALSE, FALSE, NULL, |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3591 _("Connect"), G_CALLBACK(prompt_host_ok_cb), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3592 _("Cancel"), G_CALLBACK(prompt_host_cancel_cb), |
10977 | 3593 gc); |
3594 | |
3595 g_free(msg); | |
3596 } | |
3597 | |
3598 | |
11837 | 3599 static void mw_prpl_login(GaimAccount *account) { |
10977 | 3600 GaimConnection *gc; |
3601 struct mwGaimPluginData *pd; | |
3602 | |
3603 char *user, *pass, *host; | |
3604 guint port; | |
3605 | |
3606 gc = gaim_account_get_connection(account); | |
3607 pd = mwGaimPluginData_new(gc); | |
3608 | |
3609 /* while we do support images, the default is to not offer it */ | |
3610 gc->flags |= GAIM_CONNECTION_NO_IMAGES; | |
3611 | |
3612 user = g_strdup(gaim_account_get_username(account)); | |
3613 pass = (char *) gaim_account_get_password(account); | |
3614 | |
3615 host = strrchr(user, ':'); | |
3616 if(host) { | |
3617 /* annoying user split from 1.2.0, need to undo it */ | |
3618 *host++ = '\0'; | |
3619 gaim_account_set_string(account, MW_KEY_HOST, host); | |
3620 gaim_account_set_username(account, user); | |
3621 | |
3622 } else { | |
3623 host = (char *) gaim_account_get_string(account, MW_KEY_HOST, | |
3624 MW_PLUGIN_DEFAULT_HOST); | |
3625 } | |
3626 | |
3627 if(! host || ! *host) { | |
3628 /* somehow, we don't have a host to connect to. Well, we need one | |
3629 to actually continue, so let's ask the user directly. */ | |
3630 prompt_host(gc); | |
3631 return; | |
3632 } | |
3633 | |
3634 port = gaim_account_get_int(account, MW_KEY_PORT, MW_PLUGIN_DEFAULT_PORT); | |
3635 | |
3636 DEBUG_INFO("user: '%s'\n", user); | |
3637 DEBUG_INFO("host: '%s'\n", host); | |
3638 DEBUG_INFO("port: %u\n", port); | |
3639 | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3640 mwSession_setProperty(pd->session, mwSession_NO_SECRET, |
10977 | 3641 (char *) no_secret, NULL); |
3642 mwSession_setProperty(pd->session, mwSession_AUTH_USER_ID, user, g_free); | |
3643 mwSession_setProperty(pd->session, mwSession_AUTH_PASSWORD, pass, NULL); | |
3644 mwSession_setProperty(pd->session, mwSession_CLIENT_TYPE_ID, | |
3645 GUINT_TO_POINTER(MW_CLIENT_TYPE_ID), NULL); | |
3646 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3647 gaim_connection_update_progress(gc, _("Connecting"), 1, MW_CONNECT_STEPS); |
10977 | 3648 |
3649 if(gaim_proxy_connect(account, host, port, connect_cb, pd)) { | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3650 gaim_connection_error(gc, _("Unable to connect to host")); |
10977 | 3651 } |
3652 } | |
3653 | |
3654 | |
3655 static void mw_prpl_close(GaimConnection *gc) { | |
3656 struct mwGaimPluginData *pd; | |
3657 | |
3658 g_return_if_fail(gc != NULL); | |
3659 | |
3660 pd = gc->proto_data; | |
3661 g_return_if_fail(pd != NULL); | |
3662 | |
3663 /* get rid of the blist save timeout */ | |
3664 if(pd->save_event) { | |
3665 gaim_timeout_remove(pd->save_event); | |
3666 pd->save_event = 0; | |
3667 blist_store(pd); | |
3668 } | |
3669 | |
3670 /* stop the session */ | |
3671 mwSession_stop(pd->session, 0x00); | |
3672 | |
3673 /* no longer necessary */ | |
3674 gc->proto_data = NULL; | |
3675 | |
3676 /* stop watching the socket */ | |
3677 if(gc->inpa) { | |
3678 gaim_input_remove(gc->inpa); | |
3679 gc->inpa = 0; | |
3680 } | |
3681 | |
3682 /* clean up the rest */ | |
3683 mwGaimPluginData_free(pd); | |
3684 } | |
3685 | |
3686 | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3687 /** generates a random-ish content id string */ |
10977 | 3688 static char *im_mime_content_id() { |
3689 const char *c = "%03x@%05xmeanwhile"; | |
3690 srand(time(0) ^ rand()); | |
3691 return g_strdup_printf(c, rand() & 0xfff, rand() & 0xfffff); | |
3692 } | |
3693 | |
3694 | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3695 /** generates a multipart/related content type with a random-ish |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3696 boundary value */ |
10977 | 3697 static char *im_mime_content_type() { |
3698 const char *c = "multipart/related; boundary=related_MW%03x_%04x"; | |
3699 srand(time(0) ^ rand()); | |
3700 return g_strdup_printf(c, rand() & 0xfff, rand() & 0xffff); | |
3701 } | |
3702 | |
3703 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3704 /** determine content type from extension. Not so happy about this, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3705 but I don't want to actually write image type detection */ |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3706 static char *im_mime_img_content_type(GaimStoredImage *img) { |
10977 | 3707 const char *fn = gaim_imgstore_get_filename(img); |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3708 const char *ct = NULL; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3709 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3710 ct = strrchr(fn, '.'); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3711 if(! ct) { |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3712 ct = "image"; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3713 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3714 } else if(! strcmp(".png", ct)) { |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3715 ct = "image/png"; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3716 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3717 } else if(! strcmp(".jpg", ct)) { |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3718 ct = "image/jpeg"; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3719 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3720 } else if(! strcmp(".jpeg", ct)) { |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3721 ct = "image/jpeg"; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3722 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3723 } else if(! strcmp(".gif", ct)) { |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3724 ct = "image/gif"; |
10977 | 3725 |
3726 } else { | |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3727 ct = "image"; |
10977 | 3728 } |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3729 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3730 return g_strdup_printf("%s; name=\"%s\"", ct, fn); |
10977 | 3731 } |
3732 | |
3733 | |
3734 static char *im_mime_img_content_disp(GaimStoredImage *img) { | |
3735 const char *fn = gaim_imgstore_get_filename(img); | |
3736 return g_strdup_printf("attachment; filename=\"%s\"", fn); | |
3737 } | |
3738 | |
3739 | |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3740 static char *nb_im_encode(GaimConnection *gc, const char *message) { |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3741 GaimAccount *acct; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3742 const char *enc; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3743 char *ret; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3744 GError *error = NULL; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3745 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3746 acct = gaim_connection_get_account(gc); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3747 g_return_val_if_fail(acct != NULL, NULL); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3748 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3749 enc = gaim_account_get_string(acct, MW_KEY_ENCODING, |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3750 MW_PLUGIN_DEFAULT_ENCODING); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3751 g_return_val_if_fail(enc != NULL, NULL); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3752 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3753 ret = g_convert_with_fallback(message, strlen(message), |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3754 enc, "UTF-8", "?", |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3755 NULL, NULL, &error); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3756 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3757 if(error) { |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3758 DEBUG_INFO("problem converting to %s: %s\n", |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3759 enc, NSTR(error->message)); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3760 g_error_free(error); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3761 } |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3762 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3763 /* something went so wrong that not even the fallback worked */ |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3764 if(! ret) ret = g_strdup(message); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3765 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3766 return ret; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3767 } |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3768 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3769 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3770 static gboolean is_nb(struct mwConversation *conv) { |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3771 struct mwLoginInfo *info; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3772 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3773 info = mwConversation_getTargetInfo(conv); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3774 if(! info) return FALSE; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3775 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3776 /* NotesBuddy can be at least three different type IDs (all in the |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3777 0x1400 range), or it can show up as 0x1002. However, if we're |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3778 calling this check, then we're already in HTML or MIME mode, so |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3779 we can discount the real 0x1002 */ |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3780 /* I tried to avoid having any client-type-dependant code in here, I |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3781 really did. Oh well. CURSE YOU NOTESBUDDY */ |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3782 return ((info->type == 0x1002) || ((info->type & 0xff00) == 0x1400)); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3783 } |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3784 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3785 |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3786 /** turn an IM with embedded images into a multi-part mime document */ |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3787 static char *im_mime_convert(GaimConnection *gc, |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3788 struct mwConversation *conv, |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3789 const char *message) { |
10977 | 3790 GString *str; |
3791 GaimMimeDocument *doc; | |
3792 GaimMimePart *part; | |
3793 | |
3794 GData *attr; | |
3795 char *tmp, *start, *end; | |
3796 | |
3797 str = g_string_new(NULL); | |
3798 | |
3799 doc = gaim_mime_document_new(); | |
3800 | |
3801 gaim_mime_document_set_field(doc, "Mime-Version", "1.0"); | |
3802 gaim_mime_document_set_field(doc, "Content-Disposition", "inline"); | |
3803 | |
3804 tmp = im_mime_content_type(); | |
3805 gaim_mime_document_set_field(doc, "Content-Type", tmp); | |
3806 g_free(tmp); | |
3807 | |
3808 tmp = (char *) message; | |
3809 while(*tmp && gaim_markup_find_tag("img", tmp, (const char **) &start, | |
3810 (const char **) &end, &attr)) { | |
3811 char *id; | |
3812 GaimStoredImage *img = NULL; | |
3813 | |
3814 gsize len = (start - tmp); | |
3815 | |
3816 /* append the in-between-tags text */ | |
3817 if(len) g_string_append_len(str, tmp, len); | |
3818 | |
3819 /* find the imgstore data by the id tag */ | |
3820 id = g_datalist_get_data(&attr, "id"); | |
3821 if(id && *id) | |
3822 img = gaim_imgstore_get(atoi(id)); | |
3823 | |
3824 if(img) { | |
3825 char *cid; | |
3826 gpointer data; | |
3827 size_t size; | |
3828 | |
3829 part = gaim_mime_part_new(doc); | |
3830 | |
3831 data = im_mime_img_content_disp(img); | |
3832 gaim_mime_part_set_field(part, "Content-Disposition", data); | |
3833 g_free(data); | |
3834 | |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3835 data = im_mime_img_content_type(img); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3836 gaim_mime_part_set_field(part, "Content-Type", data); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3837 g_free(data); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3838 |
10977 | 3839 cid = im_mime_content_id(); |
3840 data = g_strdup_printf("<%s>", cid); | |
3841 gaim_mime_part_set_field(part, "Content-ID", data); | |
3842 g_free(data); | |
3843 | |
3844 gaim_mime_part_set_field(part, "Content-transfer-encoding", "base64"); | |
3845 | |
3846 /* obtain and base64 encode the image data, and put it in the | |
3847 mime part */ | |
3848 data = gaim_imgstore_get_data(img); | |
3849 size = gaim_imgstore_get_size(img); | |
3850 data = gaim_base64_encode(data, (gsize) size); | |
3851 gaim_mime_part_set_data(part, data); | |
3852 g_free(data); | |
3853 | |
3854 /* append the modified tag */ | |
3855 g_string_append_printf(str, "<img src=\"cid:%s\">", cid); | |
3856 g_free(cid); | |
3857 | |
3858 } else { | |
3859 /* append the literal image tag, since we couldn't find a | |
3860 relative imgstore object */ | |
3861 gsize len = (end - start) + 1; | |
3862 g_string_append_len(str, start, len); | |
3863 } | |
3864 | |
3865 g_datalist_clear(&attr); | |
3866 tmp = end + 1; | |
3867 } | |
3868 | |
3869 /* append left-overs */ | |
3870 g_string_append(str, tmp); | |
3871 | |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3872 /* add the text/html part */ |
10977 | 3873 part = gaim_mime_part_new(doc); |
3874 gaim_mime_part_set_field(part, "Content-Disposition", "inline"); | |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3875 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3876 if(is_nb(conv)) { |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3877 GaimAccount *acct = gaim_connection_get_account(gc); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3878 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3879 tmp = (char *) gaim_account_get_string(acct, MW_KEY_ENCODING, |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3880 MW_PLUGIN_DEFAULT_ENCODING); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3881 tmp = g_strdup_printf("text/html; charset=\"%s\"", tmp); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3882 gaim_mime_part_set_field(part, "Content-Type", tmp); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3883 g_free(tmp); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3884 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3885 gaim_mime_part_set_field(part, "Content-Transfer-Encoding", "7bit"); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3886 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3887 tmp = nb_im_encode(gc, str->str); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3888 gaim_mime_part_set_data(part, tmp); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3889 g_free(tmp); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3890 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3891 } else { |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3892 gaim_mime_part_set_field(part, "Content-Type", "text/html"); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3893 gaim_mime_part_set_field(part, "Content-Transfer-Encoding", "8bit"); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3894 gaim_mime_part_set_data(part, str->str); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3895 } |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3896 |
10977 | 3897 g_string_free(str, TRUE); |
3898 | |
3899 str = g_string_new(NULL); | |
3900 gaim_mime_document_write(doc, str); | |
3901 tmp = str->str; | |
3902 g_string_free(str, FALSE); | |
3903 | |
3904 return tmp; | |
3905 } | |
3906 | |
3907 | |
3908 static int mw_prpl_send_im(GaimConnection *gc, | |
3909 const char *name, | |
3910 const char *message, | |
3911 GaimConvImFlags flags) { | |
3912 | |
3913 struct mwGaimPluginData *pd; | |
3914 struct mwIdBlock who = { (char *) name, NULL }; | |
3915 struct mwConversation *conv; | |
3916 | |
3917 g_return_val_if_fail(gc != NULL, 0); | |
3918 pd = gc->proto_data; | |
3919 | |
3920 g_return_val_if_fail(pd != NULL, 0); | |
3921 | |
3922 conv = mwServiceIm_getConversation(pd->srvc_im, &who); | |
3923 | |
3924 /* this detection of features to determine how to send the message | |
3925 (plain, html, or mime) is flawed because the other end of the | |
3926 conversation could close their channel at any time, rendering any | |
3927 existing formatting in an outgoing message innapropriate. The end | |
3928 result is that it may be possible that the other side of the | |
3929 conversation will receive a plaintext message with html contents, | |
3930 which is bad. I'm not sure how to fix this correctly. */ | |
3931 | |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3932 if(strstr(message, "<img ") || strstr(message, "<IMG ")) |
10977 | 3933 flags |= GAIM_CONV_IM_IMAGES; |
3934 | |
3935 if(mwConversation_isOpen(conv)) { | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3936 char *tmp; |
10977 | 3937 int ret; |
3938 | |
3939 if((flags & GAIM_CONV_IM_IMAGES) && | |
3940 mwConversation_supports(conv, mwImSend_MIME)) { | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3941 /* send a MIME message */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3942 |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3943 tmp = im_mime_convert(gc, conv, message); |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3944 ret = mwConversation_send(conv, mwImSend_MIME, tmp); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3945 g_free(tmp); |
10977 | 3946 |
3947 } else if(mwConversation_supports(conv, mwImSend_HTML)) { | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3948 /* send an HTML message */ |
10977 | 3949 |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3950 /* need to do this to get the \n to <br> conversion */ |
12005
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
3951 if(is_nb(conv)) { |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3952 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3953 /* html messages need the notesbuddy hack */ |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3954 char *msg = nb_im_encode(gc, message); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3955 tmp = gaim_strdup_withhtml(msg); |
12005
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
3956 g_free(msg); |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3957 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3958 } else { |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3959 tmp = gaim_strdup_withhtml(message); |
12005
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
3960 } |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
3961 |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3962 ret = mwConversation_send(conv, mwImSend_HTML, tmp); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3963 g_free(tmp); |
10977 | 3964 |
3965 } else { | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3966 /* default to text */ |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3967 ret = mwConversation_send(conv, mwImSend_PLAIN, message); |
10977 | 3968 } |
3969 | |
3970 return !ret; | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3971 |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3972 } else { |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3973 |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3974 /* queue up the message safely as plain text */ |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
3975 char *tmp = gaim_markup_strip_html(message); |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3976 convo_queue(conv, mwImSend_PLAIN, tmp); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3977 g_free(tmp); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
3978 |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3979 if(! mwConversation_isPending(conv)) |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3980 mwConversation_open(conv); |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3981 |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
3982 return 1; |
10977 | 3983 } |
3984 } | |
3985 | |
3986 | |
3987 static int mw_prpl_send_typing(GaimConnection *gc, const char *name, | |
3988 int typing) { | |
3989 | |
3990 struct mwGaimPluginData *pd; | |
3991 struct mwIdBlock who = { (char *) name, NULL }; | |
3992 struct mwConversation *conv; | |
3993 | |
3994 gpointer t = GINT_TO_POINTER(!! typing); | |
3995 | |
3996 g_return_val_if_fail(gc != NULL, 0); | |
3997 pd = gc->proto_data; | |
3998 | |
3999 g_return_val_if_fail(pd != NULL, 0); | |
4000 | |
4001 conv = mwServiceIm_getConversation(pd->srvc_im, &who); | |
4002 | |
4003 if(mwConversation_isOpen(conv)) | |
4004 return ! mwConversation_send(conv, mwImSend_TYPING, t); | |
4005 | |
4006 if(typing) { | |
4007 /* let's only open a channel for typing, not for not-typing. | |
4008 Otherwise two users in psychic mode will continually open | |
4009 conversations to each other, never able to get rid of them, as | |
4010 when the other person closes, it psychicaly opens again */ | |
4011 | |
4012 convo_queue(conv, mwImSend_TYPING, t); | |
4013 | |
4014 if(! mwConversation_isPending(conv)) | |
4015 mwConversation_open(conv); | |
4016 } | |
4017 | |
4018 return 1; | |
4019 } | |
4020 | |
4021 | |
4022 static void mw_prpl_get_info(GaimConnection *gc, const char *who) { | |
4023 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4024 struct mwAwareIdBlock idb = { mwAware_USER, (char *) who, NULL }; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4025 |
10977 | 4026 struct mwGaimPluginData *pd; |
4027 GaimAccount *acct; | |
4028 GaimBuddy *b; | |
4029 | |
4030 GString *str; | |
4031 const char *tmp; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4032 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4033 g_return_if_fail(who != NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4034 g_return_if_fail(*who != '\0'); |
10977 | 4035 |
4036 pd = gc->proto_data; | |
4037 | |
4038 acct = gaim_connection_get_account(gc); | |
4039 b = gaim_find_buddy(acct, who); | |
4040 | |
4041 str = g_string_new(NULL); | |
4042 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4043 if(g_str_has_prefix(who, "@E ")) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4044 g_string_append(str, _("<b>External User</b><br>")); |
10977 | 4045 } |
4046 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4047 g_string_append_printf(str, _("<b>User ID:</b> %s<br>"), who); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4048 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4049 if(b) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4050 guint32 type; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4051 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4052 if(b->server_alias) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4053 g_string_append_printf(str, _("<b>Full Name:</b> %s<br>"), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4054 b->server_alias); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4055 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4056 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4057 type = gaim_blist_node_get_int((GaimBlistNode *) b, BUDDY_KEY_CLIENT); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4058 if(type) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4059 g_string_append(str, _("<b>Last Known Client:</b> ")); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4060 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4061 tmp = mwLoginType_getName(type); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4062 if(tmp) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4063 g_string_append(str, tmp); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4064 g_string_append(str, "<br>"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4065 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4066 } else { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4067 g_string_append_printf(str, _("Unknown (0x%04x)<br>"), type); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4068 } |
10977 | 4069 } |
4070 } | |
4071 | |
4072 tmp = user_supports_text(pd->srvc_aware, who); | |
4073 if(tmp) { | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4074 g_string_append_printf(str, _("<b>Supports:</b> %s<br>"), tmp); |
10977 | 4075 g_free((char *) tmp); |
4076 } | |
4077 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4078 if(b) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4079 tmp = status_text(b); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4080 g_string_append_printf(str, _("<b>Status:</b> %s"), tmp); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4081 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4082 g_string_append(str, "<hr>"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4083 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4084 tmp = mwServiceAware_getText(pd->srvc_aware, &idb); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4085 if(tmp) g_string_append(str, tmp); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4086 } |
10977 | 4087 |
4088 /* @todo emit a signal to allow a plugin to override the display of | |
4089 this notification, so that it can create its own */ | |
4090 | |
11533
c9b815aeddc1
[gaim-migrate @ 13782]
Richard Laager <rlaager@wiktel.com>
parents:
11531
diff
changeset
|
4091 gaim_notify_userinfo(gc, who, str->str, NULL, NULL); |
10977 | 4092 |
4093 g_string_free(str, TRUE); | |
4094 } | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4095 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4096 |
11638 | 4097 static void mw_prpl_set_status(GaimAccount *acct, GaimStatus *status) { |
4098 GaimConnection *gc; | |
4099 const char *state; | |
11641
925c1960af34
[gaim-migrate @ 13918]
Richard Laager <rlaager@wiktel.com>
parents:
11638
diff
changeset
|
4100 char *message = NULL; |
10977 | 4101 struct mwSession *session; |
4102 struct mwUserStatus stat; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4103 |
10977 | 4104 g_return_if_fail(acct != NULL); |
11638 | 4105 gc = gaim_account_get_connection(acct); |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4106 |
11638 | 4107 state = gaim_status_get_id(status); |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4108 |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4109 DEBUG_INFO("Set status to %s\n", gaim_status_get_name(status)); |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4110 |
11638 | 4111 g_return_if_fail(gc != NULL); |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4112 |
10977 | 4113 session = gc_to_session(gc); |
4114 g_return_if_fail(session != NULL); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4115 |
10977 | 4116 /* get a working copy of the current status */ |
4117 mwUserStatus_clone(&stat, mwSession_getUserStatus(session)); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4118 |
10977 | 4119 /* determine the state */ |
11638 | 4120 if(! strcmp(state, MW_STATE_ACTIVE)) { |
10977 | 4121 stat.status = mwStatus_ACTIVE; |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4122 |
11638 | 4123 } else if(! strcmp(state, MW_STATE_AWAY)) { |
4124 stat.status = mwStatus_AWAY; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4125 |
11638 | 4126 } else if(! strcmp(state, MW_STATE_BUSY)) { |
4127 stat.status = mwStatus_BUSY; | |
10977 | 4128 } |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4129 |
10977 | 4130 /* determine the message */ |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4131 message = (char *) gaim_status_get_attr_string(status, MW_STATE_MESSAGE); |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4132 |
10977 | 4133 if(message) { |
4134 /* all the possible non-NULL values of message up to this point | |
4135 are const, so we don't need to free them */ | |
4136 message = gaim_markup_strip_html(message); | |
4137 } | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4138 |
10977 | 4139 /* out with the old */ |
4140 g_free(stat.desc); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4141 |
10977 | 4142 /* in with the new */ |
4143 stat.desc = (char *) message; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4144 |
10977 | 4145 mwSession_setUserStatus(session, &stat); |
11638 | 4146 mwUserStatus_clear(&stat); |
10977 | 4147 } |
4148 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4149 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4150 static void mw_prpl_set_idle(GaimConnection *gc, int t) { |
10977 | 4151 struct mwSession *session; |
4152 struct mwUserStatus stat; | |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4153 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4154 |
10977 | 4155 session = gc_to_session(gc); |
4156 g_return_if_fail(session != NULL); | |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4157 |
10977 | 4158 mwUserStatus_clone(&stat, mwSession_getUserStatus(session)); |
4159 | |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4160 if(t) { |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4161 time_t now = time(NULL); |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4162 stat.time = now - t; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4163 |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4164 } else { |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4165 stat.time = 0; |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4166 } |
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4167 |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4168 if(t > 0 && stat.status == mwStatus_ACTIVE) { |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4169 /* we were active and went idle, so change the status to IDLE. */ |
10977 | 4170 stat.status = mwStatus_IDLE; |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4171 |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4172 } else if(t == 0 && stat.status == mwStatus_IDLE) { |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4173 /* we only become idle automatically, so change back to ACTIVE */ |
10977 | 4174 stat.status = mwStatus_ACTIVE; |
4175 } | |
12105
d4cd7d443795
[gaim-migrate @ 14402]
Christopher O'Brien <siege@pidgin.im>
parents:
12088
diff
changeset
|
4176 |
10977 | 4177 mwSession_setUserStatus(session, &stat); |
4178 mwUserStatus_clear(&stat); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4179 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4180 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4181 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4182 static struct resolved_id *resolved_id_new(const char *id, |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4183 const char *name) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4184 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4185 struct resolved_id *rid = g_new0(struct resolved_id, 1); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4186 rid->id = g_strdup(id); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4187 rid->name = g_strdup(name); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4188 return rid; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4189 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4190 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4191 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4192 static void resolved_id_free(struct resolved_id *rid) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4193 if(rid) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4194 g_free(rid->id); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4195 g_free(rid->name); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4196 g_free(rid); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4197 } |
10977 | 4198 } |
4199 | |
4200 | |
4201 static void add_resolved_done(const char *id, const char *name, | |
4202 GaimBuddy *buddy) { | |
4203 GaimAccount *acct; | |
4204 GaimConnection *gc; | |
4205 struct mwGaimPluginData *pd; | |
4206 | |
4207 g_return_if_fail(id != NULL); | |
4208 | |
4209 g_return_if_fail(buddy != NULL); | |
4210 acct = buddy->account; | |
4211 | |
4212 g_return_if_fail(acct != NULL); | |
4213 gc = gaim_account_get_connection(acct); | |
4214 | |
4215 g_return_if_fail(gc != NULL); | |
4216 pd = gc->proto_data; | |
4217 | |
4218 gaim_blist_rename_buddy(buddy, id); | |
4219 | |
4220 gaim_blist_server_alias_buddy(buddy, name); | |
4221 gaim_blist_node_set_string((GaimBlistNode *) buddy, BUDDY_KEY_NAME, name); | |
4222 | |
4223 buddy_add(pd, buddy); | |
4224 } | |
4225 | |
4226 | |
4227 static void multi_resolved_cleanup(GaimRequestFields *fields) { | |
4228 GaimRequestField *f; | |
4229 const GList *l; | |
4230 | |
4231 f = gaim_request_fields_get_field(fields, "user"); | |
4232 l = gaim_request_field_list_get_items(f); | |
4233 | |
4234 for(; l; l = l->next) { | |
4235 const char *i = l->data; | |
4236 struct resolved_id *res; | |
4237 | |
4238 res = gaim_request_field_list_get_data(f, i); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4239 resolved_id_free(res); |
10977 | 4240 } |
4241 } | |
4242 | |
4243 | |
4244 static void multi_resolved_cancel(GaimBuddy *buddy, | |
4245 GaimRequestFields *fields) { | |
4246 GaimConnection *gc; | |
4247 struct mwGaimPluginData *pd; | |
4248 | |
4249 gc = gaim_account_get_connection(buddy->account); | |
4250 pd = gc->proto_data; | |
4251 | |
4252 gaim_blist_remove_buddy(buddy); | |
4253 multi_resolved_cleanup(fields); | |
4254 | |
4255 blist_schedule(pd); | |
4256 } | |
4257 | |
4258 | |
4259 static void multi_resolved_cb(GaimBuddy *buddy, | |
4260 GaimRequestFields *fields) { | |
4261 GaimRequestField *f; | |
4262 const GList *l; | |
4263 | |
4264 f = gaim_request_fields_get_field(fields, "user"); | |
4265 l = gaim_request_field_list_get_selected(f); | |
4266 | |
4267 if(l) { | |
4268 const char *i = l->data; | |
4269 struct resolved_id *res; | |
4270 | |
4271 res = gaim_request_field_list_get_data(f, i); | |
4272 | |
4273 add_resolved_done(res->id, res->name, buddy); | |
4274 multi_resolved_cleanup(fields); | |
4275 | |
4276 } else { | |
4277 multi_resolved_cancel(buddy, fields); | |
4278 } | |
4279 } | |
4280 | |
4281 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4282 static void foreach_resolved_id(char *key, char *val, GList **l) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4283 struct resolved_id *res = resolved_id_new(key, val); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4284 *l = g_list_prepend(*l, res); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4285 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4286 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4287 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4288 static gint resolved_id_comp(struct resolved_id *a, struct resolved_id *b) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4289 return g_ascii_strcasecmp(a->name, b->name); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4290 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4291 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4292 |
10977 | 4293 static void multi_resolved_query(struct mwResolveResult *result, |
4294 GaimBuddy *buddy) { | |
4295 GaimRequestFields *fields; | |
4296 GaimRequestFieldGroup *g; | |
4297 GaimRequestField *f; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4298 GHashTable *hash; |
10977 | 4299 GList *l; |
4300 char *msgA, *msgB; | |
4301 | |
4302 GaimAccount *acct; | |
4303 GaimConnection *gc; | |
4304 | |
4305 g_return_if_fail(buddy != NULL); | |
4306 | |
4307 acct = buddy->account; | |
4308 g_return_if_fail(acct != NULL); | |
4309 | |
4310 gc = gaim_account_get_connection(acct); | |
4311 g_return_if_fail(gc != NULL); | |
4312 | |
4313 fields = gaim_request_fields_new(); | |
4314 | |
4315 g = gaim_request_field_group_new(NULL); | |
4316 | |
4317 /* note that Gaim segfaults if you don't add the group to the fields | |
4318 before you add a required field to the group. Feh. */ | |
4319 gaim_request_fields_add_group(fields, g); | |
4320 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4321 f = gaim_request_field_list_new("user", _("Possible Matches")); |
10977 | 4322 gaim_request_field_list_set_multi_select(f, FALSE); |
4323 gaim_request_field_set_required(f, TRUE); | |
4324 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4325 /* collect results into a set of identities */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4326 hash = g_hash_table_new(g_str_hash, g_str_equal); |
10977 | 4327 for(l = result->matches; l; l = l->next) { |
4328 struct mwResolveMatch *match = l->data; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4329 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4330 if(!match->id || !match->name) |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4331 continue; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4332 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4333 g_hash_table_insert(hash, match->id, match->name); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4334 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4335 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4336 /* collect set into a list of structures */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4337 l = NULL; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4338 g_hash_table_foreach(hash, (GHFunc) foreach_resolved_id, &l); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4339 g_list_sort(l, (GCompareFunc) resolved_id_comp); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4340 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4341 /* populate choices in request field */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4342 for(; l; l = l->next) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4343 struct resolved_id *res = l->data; |
10977 | 4344 char *label; |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4345 |
10977 | 4346 /* fixes bug 1178603 by making the selection label a combination |
4347 of the full name and the user id. Problems arrise when multiple | |
4348 entries have identical labels */ | |
4349 label = g_strdup_printf("%s (%s)", NSTR(res->name), NSTR(res->id)); | |
4350 gaim_request_field_list_add(f, label, res); | |
4351 g_free(label); | |
4352 } | |
4353 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4354 g_list_free(l); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4355 |
10977 | 4356 gaim_request_field_group_add_field(g, f); |
4357 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4358 msgA = _("An ambiguous user ID was entered"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4359 msgB = _("The identifier '%s' may possibly refer to any of the following" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4360 " users. Please select the correct user from the list below to" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4361 " add them to your buddy list."); |
10977 | 4362 msgB = g_strdup_printf(msgB, result->name); |
4363 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4364 gaim_request_fields(gc, _("Select User to Add"), |
10977 | 4365 msgA, msgB, fields, |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4366 _("Add User"), G_CALLBACK(multi_resolved_cb), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4367 _("Cancel"), G_CALLBACK(multi_resolved_cancel), |
10977 | 4368 buddy); |
4369 g_free(msgB); | |
4370 } | |
4371 | |
4372 | |
4373 static void add_buddy_resolved(struct mwServiceResolve *srvc, | |
4374 guint32 id, guint32 code, GList *results, | |
4375 gpointer b) { | |
4376 | |
4377 struct mwResolveResult *res = NULL; | |
4378 GaimBuddy *buddy = b; | |
4379 GaimConnection *gc; | |
4380 struct mwGaimPluginData *pd; | |
4381 | |
4382 gc = gaim_account_get_connection(buddy->account); | |
4383 pd = gc->proto_data; | |
4384 | |
4385 if(results) | |
4386 res = results->data; | |
4387 | |
4388 if(!code && res && res->matches) { | |
4389 if(g_list_length(res->matches) == 1) { | |
4390 struct mwResolveMatch *match = res->matches->data; | |
4391 | |
4392 DEBUG_INFO("searched for %s, got only %s\n", | |
4393 NSTR(res->name), NSTR(match->id)); | |
4394 | |
4395 /* only one? that might be the right one! */ | |
4396 if(strcmp(res->name, match->id)) { | |
4397 /* uh oh, the single result isn't identical to the search | |
4398 term, better safe then sorry, so let's make sure it's who | |
4399 the user meant to add */ | |
4400 multi_resolved_query(res, buddy); | |
4401 | |
4402 } else { | |
4403 /* same person, add 'em */ | |
4404 add_resolved_done(match->id, match->name, buddy); | |
4405 } | |
4406 | |
4407 } else { | |
4408 /* prompt user if more than one match was returned */ | |
4409 multi_resolved_query(res, buddy); | |
4410 } | |
4411 | |
4412 return; | |
4413 } | |
4414 | |
4415 /* fall-through indicates that we couldn't find a matching user in | |
4416 the resolve service (ether error or zero results), so we remove | |
4417 this buddy */ | |
4418 | |
4419 DEBUG_INFO("no such buddy in community\n"); | |
4420 gaim_blist_remove_buddy(buddy); | |
4421 blist_schedule(pd); | |
4422 | |
4423 if(res && res->name) { | |
4424 /* compose and display an error message */ | |
4425 char *msgA, *msgB; | |
4426 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4427 msgA = _("Unable to add user: user not found"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4428 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4429 msgB = _("The identifier '%s' did not match any users in your" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4430 " Sametime community. This entry has been removed from" |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4431 " your buddy list."); |
10977 | 4432 msgB = g_strdup_printf(msgB, NSTR(res->name)); |
4433 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4434 gaim_notify_error(gc, _("Unable to add user"), msgA, msgB); |
10977 | 4435 |
4436 g_free(msgB); | |
4437 } | |
4438 } | |
4439 | |
4440 | |
4441 static void mw_prpl_add_buddy(GaimConnection *gc, | |
4442 GaimBuddy *buddy, | |
4443 GaimGroup *group) { | |
4444 | |
4445 struct mwGaimPluginData *pd; | |
4446 struct mwServiceResolve *srvc; | |
4447 GList *query; | |
4448 enum mwResolveFlag flags; | |
4449 guint32 req; | |
4450 | |
4451 pd = gc->proto_data; | |
4452 srvc = pd->srvc_resolve; | |
4453 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4454 /* catch external buddies. They won't be in the resolve service */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4455 if(g_str_has_prefix(buddy->name, "@E ")) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4456 buddy_add(pd, buddy); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4457 return; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4458 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4459 |
10977 | 4460 query = g_list_prepend(NULL, buddy->name); |
4461 flags = mwResolveFlag_FIRST | mwResolveFlag_USERS; | |
4462 | |
4463 req = mwServiceResolve_resolve(srvc, query, flags, add_buddy_resolved, | |
4464 buddy, NULL); | |
4465 g_list_free(query); | |
4466 | |
4467 if(req == SEARCH_ERROR) { | |
4468 gaim_blist_remove_buddy(buddy); | |
4469 blist_schedule(pd); | |
4470 } | |
4471 } | |
4472 | |
4473 | |
4474 static void foreach_add_buddies(GaimGroup *group, GList *buddies, | |
4475 struct mwGaimPluginData *pd) { | |
4476 struct mwAwareList *list; | |
4477 | |
4478 list = list_ensure(pd, group); | |
4479 mwAwareList_addAware(list, buddies); | |
4480 g_list_free(buddies); | |
4481 } | |
4482 | |
4483 | |
4484 static void mw_prpl_add_buddies(GaimConnection *gc, | |
4485 GList *buddies, | |
4486 GList *groups) { | |
4487 | |
4488 struct mwGaimPluginData *pd; | |
4489 GHashTable *group_sets; | |
4490 struct mwAwareIdBlock *idbs, *idb; | |
4491 | |
4492 pd = gc->proto_data; | |
4493 | |
4494 /* map GaimGroup:GList of mwAwareIdBlock */ | |
4495 group_sets = g_hash_table_new(g_direct_hash, g_direct_equal); | |
4496 | |
4497 /* bunch of mwAwareIdBlock allocated at once, free'd at once */ | |
4498 idb = idbs = g_new(struct mwAwareIdBlock, g_list_length(buddies)); | |
4499 | |
4500 /* first pass collects mwAwareIdBlock lists for each group */ | |
4501 for(; buddies; buddies = buddies->next) { | |
4502 GaimBuddy *b = buddies->data; | |
4503 GaimGroup *g; | |
4504 const char *fn; | |
4505 GList *l; | |
4506 | |
4507 /* nab the saved server alias and stick it on the buddy */ | |
4508 fn = gaim_blist_node_get_string((GaimBlistNode *) b, BUDDY_KEY_NAME); | |
4509 gaim_blist_server_alias_buddy(b, fn); | |
4510 | |
4511 /* convert GaimBuddy into a mwAwareIdBlock */ | |
4512 idb->type = mwAware_USER; | |
4513 idb->user = (char *) b->name; | |
4514 idb->community = NULL; | |
4515 | |
4516 /* put idb into the list associated with the buddy's group */ | |
12088 | 4517 g = gaim_buddy_get_group(b); |
10977 | 4518 l = g_hash_table_lookup(group_sets, g); |
4519 l = g_list_prepend(l, idb++); | |
4520 g_hash_table_insert(group_sets, g, l); | |
4521 } | |
4522 | |
4523 /* each group's buddies get added in one shot, and schedule the blist | |
4524 for saving */ | |
4525 g_hash_table_foreach(group_sets, (GHFunc) foreach_add_buddies, pd); | |
4526 blist_schedule(pd); | |
4527 | |
4528 /* cleanup */ | |
4529 g_hash_table_destroy(group_sets); | |
4530 g_free(idbs); | |
4531 } | |
4532 | |
4533 | |
4534 static void mw_prpl_remove_buddy(GaimConnection *gc, | |
4535 GaimBuddy *buddy, GaimGroup *group) { | |
4536 | |
4537 struct mwGaimPluginData *pd; | |
4538 struct mwAwareIdBlock idb = { mwAware_USER, buddy->name, NULL }; | |
4539 struct mwAwareList *list; | |
4540 | |
4541 GList *rem = g_list_prepend(NULL, &idb); | |
4542 | |
4543 pd = gc->proto_data; | |
12088 | 4544 group = gaim_buddy_get_group(buddy); |
10977 | 4545 list = list_ensure(pd, group); |
4546 | |
4547 mwAwareList_removeAware(list, rem); | |
4548 blist_schedule(pd); | |
4549 | |
4550 g_list_free(rem); | |
4551 } | |
4552 | |
4553 | |
4554 static void privacy_fill(struct mwPrivacyInfo *priv, | |
4555 GSList *members) { | |
4556 | |
4557 struct mwUserItem *u; | |
4558 guint count; | |
4559 | |
4560 count = g_slist_length(members); | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
4561 DEBUG_INFO("privacy_fill: %u members\n", count); |
10977 | 4562 |
4563 priv->count = count; | |
4564 priv->users = g_new0(struct mwUserItem, count); | |
4565 | |
4566 while(count--) { | |
4567 u = priv->users + count; | |
4568 u->id = members->data; | |
4569 members = members->next; | |
4570 } | |
4571 } | |
4572 | |
4573 | |
4574 static void mw_prpl_set_permit_deny(GaimConnection *gc) { | |
4575 GaimAccount *acct; | |
4576 struct mwGaimPluginData *pd; | |
4577 struct mwSession *session; | |
4578 | |
4579 struct mwPrivacyInfo privacy = { | |
4580 .deny = FALSE, | |
4581 .count = 0, | |
4582 .users = NULL, | |
4583 }; | |
4584 | |
4585 g_return_if_fail(gc != NULL); | |
4586 | |
4587 acct = gaim_connection_get_account(gc); | |
4588 g_return_if_fail(acct != NULL); | |
4589 | |
4590 pd = gc->proto_data; | |
4591 g_return_if_fail(pd != NULL); | |
4592 | |
4593 session = pd->session; | |
4594 g_return_if_fail(session != NULL); | |
4595 | |
4596 switch(acct->perm_deny) { | |
4597 case GAIM_PRIVACY_DENY_USERS: | |
4598 DEBUG_INFO("GAIM_PRIVACY_DENY_USERS\n"); | |
4599 privacy_fill(&privacy, acct->deny); | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
4600 privacy.deny = TRUE; |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
4601 break; |
10977 | 4602 |
4603 case GAIM_PRIVACY_ALLOW_ALL: | |
4604 DEBUG_INFO("GAIM_PRIVACY_ALLOW_ALL\n"); | |
4605 privacy.deny = TRUE; | |
4606 break; | |
4607 | |
4608 case GAIM_PRIVACY_ALLOW_USERS: | |
4609 DEBUG_INFO("GAIM_PRIVACY_ALLOW_USERS\n"); | |
4610 privacy_fill(&privacy, acct->permit); | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
4611 privacy.deny = FALSE; |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
4612 break; |
10977 | 4613 |
4614 case GAIM_PRIVACY_DENY_ALL: | |
4615 DEBUG_INFO("GAIM_PRIVACY_DENY_ALL\n"); | |
4616 privacy.deny = FALSE; | |
4617 break; | |
4618 | |
4619 default: | |
4620 DEBUG_INFO("acct->perm_deny is 0x%x\n", acct->perm_deny); | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
4621 return; |
10977 | 4622 } |
4623 | |
4624 mwSession_setPrivacyInfo(session, &privacy); | |
4625 g_free(privacy.users); | |
4626 } | |
4627 | |
4628 | |
4629 static void mw_prpl_add_permit(GaimConnection *gc, const char *name) { | |
4630 mw_prpl_set_permit_deny(gc); | |
4631 } | |
4632 | |
4633 | |
4634 static void mw_prpl_add_deny(GaimConnection *gc, const char *name) { | |
4635 mw_prpl_set_permit_deny(gc); | |
4636 } | |
4637 | |
4638 | |
4639 static void mw_prpl_rem_permit(GaimConnection *gc, const char *name) { | |
4640 mw_prpl_set_permit_deny(gc); | |
4641 } | |
4642 | |
4643 | |
4644 static void mw_prpl_rem_deny(GaimConnection *gc, const char *name) { | |
4645 mw_prpl_set_permit_deny(gc); | |
4646 } | |
4647 | |
4648 | |
4649 static struct mwConference *conf_find(struct mwServiceConference *srvc, | |
4650 const char *name) { | |
4651 GList *l, *ll; | |
4652 struct mwConference *conf = NULL; | |
4653 | |
4654 ll = mwServiceConference_getConferences(srvc); | |
4655 for(l = ll; l; l = l->next) { | |
4656 struct mwConference *c = l->data; | |
4657 if(! strcmp(name, mwConference_getName(c))) { | |
4658 conf = c; | |
4659 break; | |
4660 } | |
4661 } | |
4662 g_list_free(ll); | |
4663 | |
4664 return conf; | |
4665 } | |
4666 | |
4667 | |
4668 static void mw_prpl_join_chat(GaimConnection *gc, | |
4669 GHashTable *components) { | |
4670 | |
4671 struct mwGaimPluginData *pd; | |
4672 char *c, *t; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4673 |
10977 | 4674 pd = gc->proto_data; |
4675 | |
4676 c = g_hash_table_lookup(components, CHAT_KEY_NAME); | |
4677 t = g_hash_table_lookup(components, CHAT_KEY_TOPIC); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4678 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4679 if(g_hash_table_lookup(components, CHAT_KEY_IS_PLACE)) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4680 /* use place service */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4681 struct mwServicePlace *srvc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4682 struct mwPlace *place = NULL; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4683 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4684 srvc = pd->srvc_place; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4685 place = mwPlace_new(srvc, c, t); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4686 mwPlace_open(place); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4687 |
10977 | 4688 } else { |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4689 /* use conference service */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4690 struct mwServiceConference *srvc; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4691 struct mwConference *conf = NULL; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4692 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4693 srvc = pd->srvc_conf; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4694 if(c) conf = conf_find(srvc, c); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4695 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4696 if(conf) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4697 DEBUG_INFO("accepting conference invitation\n"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4698 mwConference_accept(conf); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4699 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4700 } else { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4701 DEBUG_INFO("creating new conference\n"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4702 conf = mwConference_new(srvc, t); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4703 mwConference_open(conf); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4704 } |
10977 | 4705 } |
4706 } | |
4707 | |
4708 | |
4709 static void mw_prpl_reject_chat(GaimConnection *gc, | |
4710 GHashTable *components) { | |
4711 | |
4712 struct mwGaimPluginData *pd; | |
4713 struct mwServiceConference *srvc; | |
4714 char *c; | |
4715 | |
4716 pd = gc->proto_data; | |
4717 srvc = pd->srvc_conf; | |
4718 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4719 if(g_hash_table_lookup(components, CHAT_KEY_IS_PLACE)) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4720 ; /* nothing needs doing */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4721 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4722 } else { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4723 /* reject conference */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4724 c = g_hash_table_lookup(components, CHAT_KEY_NAME); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4725 if(c) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4726 struct mwConference *conf = conf_find(srvc, c); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4727 if(conf) mwConference_reject(conf, ERR_SUCCESS, "Declined"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4728 } |
10977 | 4729 } |
4730 } | |
4731 | |
4732 | |
4733 static char *mw_prpl_get_chat_name(GHashTable *components) { | |
4734 return g_hash_table_lookup(components, CHAT_KEY_NAME); | |
4735 } | |
4736 | |
4737 | |
4738 static void mw_prpl_chat_invite(GaimConnection *gc, | |
4739 int id, | |
4740 const char *invitation, | |
4741 const char *who) { | |
4742 | |
4743 struct mwGaimPluginData *pd; | |
4744 struct mwConference *conf; | |
12107
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
4745 struct mwPlace *place; |
10977 | 4746 struct mwIdBlock idb = { (char *) who, NULL }; |
4747 | |
4748 pd = gc->proto_data; | |
4749 g_return_if_fail(pd != NULL); | |
12107
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
4750 |
10977 | 4751 conf = ID_TO_CONF(pd, id); |
4752 | |
12107
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
4753 if(conf) { |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
4754 mwConference_invite(conf, &idb, invitation); |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
4755 return; |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
4756 } |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
4757 |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
4758 place = ID_TO_PLACE(pd, id); |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
4759 g_return_if_fail(place != NULL); |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
4760 |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
4761 /* @todo: use the IM service for invitation */ |
40724851e95e
[gaim-migrate @ 14405]
Christopher O'Brien <siege@pidgin.im>
parents:
12105
diff
changeset
|
4762 mwPlace_legacyInvite(place, &idb, invitation); |
10977 | 4763 } |
4764 | |
4765 | |
4766 static void mw_prpl_chat_leave(GaimConnection *gc, | |
4767 int id) { | |
4768 | |
4769 struct mwGaimPluginData *pd; | |
4770 struct mwConference *conf; | |
4771 | |
4772 pd = gc->proto_data; | |
4773 | |
4774 g_return_if_fail(pd != NULL); | |
4775 conf = ID_TO_CONF(pd, id); | |
4776 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4777 if(conf) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4778 mwConference_destroy(conf, ERR_SUCCESS, "Leaving"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4779 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4780 } else { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4781 struct mwPlace *place = ID_TO_PLACE(pd, id); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4782 g_return_if_fail(place != NULL); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4783 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4784 mwPlace_destroy(place, ERR_SUCCESS); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4785 } |
10977 | 4786 } |
4787 | |
4788 | |
4789 static void mw_prpl_chat_whisper(GaimConnection *gc, | |
4790 int id, | |
4791 const char *who, | |
4792 const char *message) { | |
4793 | |
4794 mw_prpl_send_im(gc, who, message, 0); | |
4795 } | |
4796 | |
4797 | |
4798 static int mw_prpl_chat_send(GaimConnection *gc, | |
4799 int id, | |
4800 const char *message) { | |
4801 | |
4802 struct mwGaimPluginData *pd; | |
4803 struct mwConference *conf; | |
4804 | |
4805 pd = gc->proto_data; | |
4806 | |
4807 g_return_val_if_fail(pd != NULL, 0); | |
4808 conf = ID_TO_CONF(pd, id); | |
4809 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4810 if(conf) { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4811 return ! mwConference_sendText(conf, message); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4812 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4813 } else { |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4814 struct mwPlace *place = ID_TO_PLACE(pd, id); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4815 g_return_val_if_fail(place != NULL, 0); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4816 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4817 return ! mwPlace_sendText(place, message); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
4818 } |
10977 | 4819 } |
4820 | |
4821 | |
4822 static void mw_prpl_keepalive(GaimConnection *gc) { | |
4823 struct mwSession *session; | |
4824 | |
4825 g_return_if_fail(gc != NULL); | |
4826 | |
4827 session = gc_to_session(gc); | |
4828 g_return_if_fail(session != NULL); | |
4829 | |
4830 mwSession_sendKeepalive(session); | |
4831 } | |
4832 | |
4833 | |
4834 static void mw_prpl_alias_buddy(GaimConnection *gc, | |
4835 const char *who, | |
4836 const char *alias) { | |
4837 | |
4838 struct mwGaimPluginData *pd = gc->proto_data; | |
4839 g_return_if_fail(pd != NULL); | |
4840 | |
4841 /* it's a change to the buddy list, so we've gotta reflect that in | |
4842 the server copy */ | |
4843 | |
4844 blist_schedule(pd); | |
4845 } | |
4846 | |
4847 | |
4848 static void mw_prpl_group_buddy(GaimConnection *gc, | |
4849 const char *who, | |
4850 const char *old_group, | |
4851 const char *new_group) { | |
4852 | |
4853 struct mwAwareIdBlock idb = { mwAware_USER, (char *) who, NULL }; | |
4854 GList *gl = g_list_prepend(NULL, &idb); | |
4855 | |
4856 struct mwGaimPluginData *pd = gc->proto_data; | |
4857 GaimGroup *group; | |
4858 struct mwAwareList *list; | |
4859 | |
4860 /* add who to new_group's aware list */ | |
4861 group = gaim_find_group(new_group); | |
4862 list = list_ensure(pd, group); | |
4863 mwAwareList_addAware(list, gl); | |
4864 | |
4865 /* remove who from old_group's aware list */ | |
4866 group = gaim_find_group(old_group); | |
4867 list = list_ensure(pd, group); | |
4868 mwAwareList_removeAware(list, gl); | |
4869 | |
4870 g_list_free(gl); | |
4871 | |
4872 /* schedule the changes to be saved */ | |
4873 blist_schedule(pd); | |
4874 } | |
4875 | |
4876 | |
4877 static void mw_prpl_rename_group(GaimConnection *gc, | |
4878 const char *old, | |
4879 GaimGroup *group, | |
4880 GList *buddies) { | |
4881 | |
4882 struct mwGaimPluginData *pd = gc->proto_data; | |
4883 g_return_if_fail(pd != NULL); | |
4884 | |
4885 /* it's a change in the buddy list, so we've gotta reflect that in | |
4886 the server copy. Also, having this function should prevent all | |
4887 those buddies from being removed and re-added. We don't really | |
4888 give a crap what the group is named in Gaim other than to record | |
4889 that as the group name/alias */ | |
4890 | |
4891 blist_schedule(pd); | |
4892 } | |
4893 | |
4894 | |
4895 static void mw_prpl_buddy_free(GaimBuddy *buddy) { | |
4896 /* I don't think we have any cleanup for buddies yet */ | |
4897 ; | |
4898 } | |
4899 | |
4900 | |
4901 static void mw_prpl_convo_closed(GaimConnection *gc, const char *who) { | |
4902 struct mwGaimPluginData *pd = gc->proto_data; | |
4903 struct mwServiceIm *srvc; | |
4904 struct mwConversation *conv; | |
4905 struct mwIdBlock idb = { (char *) who, NULL }; | |
4906 | |
4907 g_return_if_fail(pd != NULL); | |
4908 | |
4909 srvc = pd->srvc_im; | |
4910 g_return_if_fail(srvc != NULL); | |
4911 | |
4912 conv = mwServiceIm_findConversation(srvc, &idb); | |
4913 if(! conv) return; | |
4914 | |
4915 if(mwConversation_isOpen(conv)) | |
4916 mwConversation_free(conv); | |
4917 } | |
4918 | |
4919 | |
4920 static const char *mw_prpl_normalize(const GaimAccount *account, | |
4921 const char *id) { | |
4922 | |
4923 /* code elsewhere assumes that the return value points to different | |
4924 memory than the passed value, but it won't free the normalized | |
4925 data. wtf? */ | |
4926 | |
4927 static char buf[BUF_LEN]; | |
4928 strncpy(buf, id, sizeof(buf)); | |
4929 return buf; | |
4930 } | |
4931 | |
4932 | |
4933 static void mw_prpl_remove_group(GaimConnection *gc, GaimGroup *group) { | |
4934 struct mwGaimPluginData *pd; | |
4935 struct mwAwareList *list; | |
4936 | |
4937 pd = gc->proto_data; | |
4938 g_return_if_fail(pd != NULL); | |
4939 g_return_if_fail(pd->group_list_map != NULL); | |
4940 | |
4941 list = g_hash_table_lookup(pd->group_list_map, group); | |
4942 | |
4943 if(list) { | |
4944 g_hash_table_remove(pd->group_list_map, list); | |
4945 g_hash_table_remove(pd->group_list_map, group); | |
4946 mwAwareList_free(list); | |
4947 | |
4948 blist_schedule(pd); | |
4949 } | |
4950 } | |
4951 | |
4952 | |
4953 static gboolean mw_prpl_can_receive_file(GaimConnection *gc, | |
4954 const char *who) { | |
4955 struct mwGaimPluginData *pd; | |
4956 struct mwServiceAware *srvc; | |
4957 GaimAccount *acct; | |
4958 | |
4959 g_return_val_if_fail(gc != NULL, FALSE); | |
4960 | |
4961 pd = gc->proto_data; | |
4962 g_return_val_if_fail(pd != NULL, FALSE); | |
4963 | |
4964 srvc = pd->srvc_aware; | |
4965 g_return_val_if_fail(srvc != NULL, FALSE); | |
4966 | |
4967 acct = gaim_connection_get_account(gc); | |
4968 g_return_val_if_fail(acct != NULL, FALSE); | |
4969 | |
4970 return gaim_find_buddy(acct, who) && | |
4971 user_supports(srvc, who, mwAttribute_FILE_TRANSFER); | |
4972 } | |
4973 | |
4974 | |
4975 static void ft_outgoing_init(GaimXfer *xfer) { | |
4976 GaimAccount *acct; | |
4977 GaimConnection *gc; | |
4978 | |
4979 struct mwGaimPluginData *pd; | |
4980 struct mwServiceFileTransfer *srvc; | |
4981 struct mwFileTransfer *ft; | |
4982 | |
4983 const char *filename; | |
4984 gsize filesize; | |
4985 FILE *fp; | |
4986 | |
4987 struct mwIdBlock idb = { NULL, NULL }; | |
4988 | |
4989 DEBUG_INFO("ft_outgoing_init\n"); | |
4990 | |
4991 acct = gaim_xfer_get_account(xfer); | |
4992 gc = gaim_account_get_connection(acct); | |
4993 pd = gc->proto_data; | |
4994 srvc = pd->srvc_ft; | |
4995 | |
4996 filename = gaim_xfer_get_local_filename(xfer); | |
4997 filesize = gaim_xfer_get_size(xfer); | |
4998 idb.user = xfer->who; | |
4999 | |
5000 /* test that we can actually send the file */ | |
5001 fp = g_fopen(filename, "rb"); | |
5002 if(! fp) { | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5003 char *msg = g_strdup_printf(_("Error reading file %s: \n%s\n"), |
10977 | 5004 filename, strerror(errno)); |
5005 gaim_xfer_error(gaim_xfer_get_type(xfer), acct, xfer->who, msg); | |
5006 g_free(msg); | |
5007 return; | |
5008 } | |
5009 fclose(fp); | |
5010 | |
5011 { | |
5012 char *tmp = strrchr(filename, G_DIR_SEPARATOR); | |
5013 if(tmp++) filename = tmp; | |
5014 } | |
5015 | |
5016 ft = mwFileTransfer_new(srvc, &idb, NULL, filename, filesize); | |
5017 | |
5018 gaim_xfer_ref(xfer); | |
5019 mwFileTransfer_setClientData(ft, xfer, (GDestroyNotify) gaim_xfer_unref); | |
5020 xfer->data = ft; | |
5021 | |
5022 mwFileTransfer_offer(ft); | |
5023 } | |
5024 | |
5025 | |
5026 static void ft_outgoing_cancel(GaimXfer *xfer) { | |
5027 struct mwFileTransfer *ft = xfer->data; | |
5028 if(ft) mwFileTransfer_cancel(ft); | |
5029 } | |
5030 | |
5031 | |
12143
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
12135
diff
changeset
|
5032 static GaimXfer *mw_prpl_new_xfer(GaimConnect *gc, const char *who) { |
10977 | 5033 GaimAccount *acct; |
5034 GaimXfer *xfer; | |
5035 | |
5036 acct = gaim_connection_get_account(gc); | |
5037 | |
5038 xfer = gaim_xfer_new(acct, GAIM_XFER_SEND, who); | |
5039 gaim_xfer_set_init_fnc(xfer, ft_outgoing_init); | |
5040 gaim_xfer_set_cancel_send_fnc(xfer, ft_outgoing_cancel); | |
5041 | |
12143
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
12135
diff
changeset
|
5042 return xfer; |
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
12135
diff
changeset
|
5043 } |
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
12135
diff
changeset
|
5044 |
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
12135
diff
changeset
|
5045 static void mw_prpl_send_file(GaimConnection *gc, |
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
12135
diff
changeset
|
5046 const char *who, const char *file) { |
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
12135
diff
changeset
|
5047 |
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
12135
diff
changeset
|
5048 GaimXfer *xfer = mw_prpl_new_xfer(gc, who); |
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
12135
diff
changeset
|
5049 |
10977 | 5050 if(file) { |
5051 DEBUG_INFO("file != NULL\n"); | |
5052 gaim_xfer_request_accepted(xfer, file); | |
5053 | |
5054 } else { | |
5055 DEBUG_INFO("file == NULL\n"); | |
5056 gaim_xfer_request(xfer); | |
5057 } | |
5058 } | |
5059 | |
5060 | |
5061 static GaimPluginProtocolInfo mw_prpl_info = { | |
5062 .options = OPT_PROTO_IM_IMAGE, | |
5063 .user_splits = NULL, /*< set in mw_plugin_init */ | |
5064 .protocol_options = NULL, /*< set in mw_plugin_init */ | |
5065 .icon_spec = NO_BUDDY_ICONS, | |
5066 .list_icon = mw_prpl_list_icon, | |
5067 .list_emblems = mw_prpl_list_emblems, | |
5068 .status_text = mw_prpl_status_text, | |
5069 .tooltip_text = mw_prpl_tooltip_text, | |
5070 .status_types = mw_prpl_status_types, | |
5071 .blist_node_menu = mw_prpl_blist_node_menu, | |
5072 .chat_info = mw_prpl_chat_info, | |
5073 .chat_info_defaults = mw_prpl_chat_info_defaults, | |
5074 .login = mw_prpl_login, | |
5075 .close = mw_prpl_close, | |
5076 .send_im = mw_prpl_send_im, | |
5077 .set_info = NULL, | |
5078 .send_typing = mw_prpl_send_typing, | |
5079 .get_info = mw_prpl_get_info, | |
11638 | 5080 .set_status = mw_prpl_set_status, |
10977 | 5081 .set_idle = mw_prpl_set_idle, |
5082 .change_passwd = NULL, | |
5083 .add_buddy = mw_prpl_add_buddy, | |
5084 .add_buddies = mw_prpl_add_buddies, | |
5085 .remove_buddy = mw_prpl_remove_buddy, | |
5086 .remove_buddies = NULL, | |
5087 .add_permit = mw_prpl_add_permit, | |
5088 .add_deny = mw_prpl_add_deny, | |
5089 .rem_permit = mw_prpl_rem_permit, | |
5090 .rem_deny = mw_prpl_rem_deny, | |
5091 .set_permit_deny = mw_prpl_set_permit_deny, | |
5092 .join_chat = mw_prpl_join_chat, | |
5093 .reject_chat = mw_prpl_reject_chat, | |
5094 .get_chat_name = mw_prpl_get_chat_name, | |
5095 .chat_invite = mw_prpl_chat_invite, | |
5096 .chat_leave = mw_prpl_chat_leave, | |
5097 .chat_whisper = mw_prpl_chat_whisper, | |
5098 .chat_send = mw_prpl_chat_send, | |
5099 .keepalive = mw_prpl_keepalive, | |
5100 .register_user = NULL, | |
5101 .get_cb_info = NULL, | |
5102 .get_cb_away = NULL, | |
5103 .alias_buddy = mw_prpl_alias_buddy, | |
5104 .group_buddy = mw_prpl_group_buddy, | |
5105 .rename_group = mw_prpl_rename_group, | |
5106 .buddy_free = mw_prpl_buddy_free, | |
5107 .convo_closed = mw_prpl_convo_closed, | |
5108 .normalize = mw_prpl_normalize, | |
5109 .set_buddy_icon = NULL, | |
5110 .remove_group = mw_prpl_remove_group, | |
5111 .get_cb_real_name = NULL, | |
5112 .set_chat_topic = NULL, | |
5113 .find_blist_chat = NULL, | |
5114 .roomlist_get_list = NULL, | |
5115 .roomlist_expand_category = NULL, | |
5116 .can_receive_file = mw_prpl_can_receive_file, | |
5117 .send_file = mw_prpl_send_file, | |
12143
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
12135
diff
changeset
|
5118 .new_xfer = mw_prpl_new_xfer, |
10977 | 5119 }; |
5120 | |
5121 | |
5122 static GaimPluginPrefFrame * | |
5123 mw_plugin_get_plugin_pref_frame(GaimPlugin *plugin) { | |
5124 GaimPluginPrefFrame *frame; | |
5125 GaimPluginPref *pref; | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5126 |
10977 | 5127 frame = gaim_plugin_pref_frame_new(); |
5128 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5129 pref = gaim_plugin_pref_new_with_label(_("Remotely Stored Buddy List")); |
10977 | 5130 gaim_plugin_pref_frame_add(frame, pref); |
5131 | |
5132 | |
5133 pref = gaim_plugin_pref_new_with_name(MW_PRPL_OPT_BLIST_ACTION); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5134 gaim_plugin_pref_set_label(pref, _("Buddy List Storage Mode")); |
10977 | 5135 |
5136 gaim_plugin_pref_set_type(pref, GAIM_PLUGIN_PREF_CHOICE); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5137 gaim_plugin_pref_add_choice(pref, _("Local Buddy List Only"), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5138 GINT_TO_POINTER(blist_choice_LOCAL)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5139 gaim_plugin_pref_add_choice(pref, _("Merge List from Server"), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5140 GINT_TO_POINTER(blist_choice_MERGE)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5141 gaim_plugin_pref_add_choice(pref, _("Merge and Save List to Server"), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5142 GINT_TO_POINTER(blist_choice_STORE)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5143 gaim_plugin_pref_add_choice(pref, _("Synchronize List with Server"), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5144 GINT_TO_POINTER(blist_choice_SYNCH)); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5145 |
10977 | 5146 gaim_plugin_pref_frame_add(frame, pref); |
5147 | |
5148 return frame; | |
5149 } | |
5150 | |
5151 | |
5152 static GaimPluginUiInfo mw_plugin_ui_info = { | |
5153 .get_plugin_pref_frame = mw_plugin_get_plugin_pref_frame, | |
5154 }; | |
5155 | |
5156 | |
5157 static void status_msg_action_cb(GaimConnection *gc, | |
5158 GaimRequestFields *fields) { | |
5159 GaimAccount *acct; | |
5160 GaimRequestField *f; | |
5161 const char *msg; | |
5162 | |
5163 struct mwGaimPluginData *pd; | |
5164 struct mwServiceStorage *srvc; | |
5165 struct mwStorageUnit *unit; | |
5166 | |
5167 pd = gc->proto_data; | |
5168 srvc = pd->srvc_store; | |
5169 | |
5170 acct = gaim_connection_get_account(gc); | |
5171 | |
5172 f = gaim_request_fields_get_field(fields, "active"); | |
5173 msg = gaim_request_field_string_get_value(f); | |
5174 gaim_account_set_string(acct, MW_KEY_ACTIVE_MSG, msg); | |
5175 unit = mwStorageUnit_newString(mwStore_ACTIVE_MESSAGES, msg); | |
5176 mwServiceStorage_save(srvc, unit, NULL, NULL, NULL); | |
5177 | |
5178 f = gaim_request_fields_get_field(fields, "away"); | |
5179 msg = gaim_request_field_string_get_value(f); | |
5180 gaim_account_set_string(acct, MW_KEY_AWAY_MSG, msg); | |
5181 unit = mwStorageUnit_newString(mwStore_AWAY_MESSAGES, msg); | |
5182 mwServiceStorage_save(srvc, unit, NULL, NULL, NULL); | |
5183 | |
5184 f = gaim_request_fields_get_field(fields, "busy"); | |
5185 msg = gaim_request_field_string_get_value(f); | |
5186 gaim_account_set_string(acct, MW_KEY_BUSY_MSG, msg); | |
5187 unit = mwStorageUnit_newString(mwStore_BUSY_MESSAGES, msg); | |
5188 mwServiceStorage_save(srvc, unit, NULL, NULL, NULL); | |
5189 | |
5190 #if 0 | |
5191 /* XXX */ | |
5192 /* need to propagate the message change if we're in any of those | |
5193 default states */ | |
5194 msg = NULL; | |
5195 if(!gc->away_state || !strcmp(gc->away_state, MW_STATE_ACTIVE)) { | |
5196 msg = MW_STATE_ACTIVE; | |
5197 } else if(gc->away_state && !strcmp(gc->away_state, MW_STATE_AWAY)) { | |
5198 msg = MW_STATE_AWAY; | |
5199 } else if(gc->away_state && !strcmp(gc->away_state, MW_STATE_BUSY)) { | |
5200 msg = MW_STATE_BUSY; | |
5201 } | |
5202 if(msg) | |
5203 serv_set_away(gc, msg, NULL); | |
5204 #endif | |
5205 } | |
5206 | |
5207 | |
5208 /** Prompt for messages for the three default status types. These | |
5209 values should be mirrored as strings in the storage service */ | |
5210 static void status_msg_action(GaimPluginAction *act) { | |
5211 GaimConnection *gc; | |
5212 GaimAccount *acct; | |
5213 | |
5214 GaimRequestFields *fields; | |
5215 GaimRequestFieldGroup *g; | |
5216 GaimRequestField *f; | |
5217 | |
5218 char *msgA, *msgB; | |
5219 const char *val; | |
5220 | |
5221 gc = act->context; | |
5222 acct = gaim_connection_get_account(gc); | |
5223 | |
5224 fields = gaim_request_fields_new(); | |
5225 | |
5226 g = gaim_request_field_group_new(NULL); | |
5227 gaim_request_fields_add_group(fields, g); | |
5228 | |
5229 val = gaim_account_get_string(acct, MW_KEY_ACTIVE_MSG, | |
5230 MW_PLUGIN_DEFAULT_ACTIVE_MSG); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5231 f = gaim_request_field_string_new("active", _("Active Message"), val, FALSE); |
10977 | 5232 gaim_request_field_set_required(f, FALSE); |
5233 gaim_request_field_group_add_field(g, f); | |
5234 | |
5235 val = gaim_account_get_string(acct, MW_KEY_AWAY_MSG, | |
5236 MW_PLUGIN_DEFAULT_AWAY_MSG); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5237 f = gaim_request_field_string_new("away", _("Away Message"), val, FALSE); |
10977 | 5238 gaim_request_field_set_required(f, FALSE); |
5239 gaim_request_field_group_add_field(g, f); | |
5240 | |
5241 val = gaim_account_get_string(acct, MW_KEY_BUSY_MSG, | |
5242 MW_PLUGIN_DEFAULT_BUSY_MSG); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5243 f = gaim_request_field_string_new("busy", _("Busy Message"), val, FALSE); |
10977 | 5244 gaim_request_field_set_required(f, FALSE); |
5245 gaim_request_field_group_add_field(g, f); | |
5246 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5247 msgA = _("Default status messages"); |
10977 | 5248 msgB = (""); |
5249 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5250 gaim_request_fields(gc, _("Edit Status Messages"), |
10977 | 5251 msgA, msgB, fields, |
5252 _("OK"), G_CALLBACK(status_msg_action_cb), | |
5253 _("Cancel"), NULL, | |
5254 gc); | |
5255 } | |
5256 | |
5257 | |
5258 static void st_import_action_cb(GaimConnection *gc, char *filename) { | |
5259 struct mwSametimeList *l; | |
5260 | |
5261 FILE *file; | |
5262 char buf[BUF_LEN]; | |
5263 size_t len; | |
5264 | |
5265 GString *str; | |
5266 | |
5267 file = fopen(filename, "r"); | |
5268 g_return_if_fail(file != NULL); | |
5269 | |
5270 str = g_string_new(NULL); | |
5271 while( (len = fread(buf, 1, BUF_LEN, file)) ) { | |
5272 g_string_append_len(str, buf, len); | |
5273 } | |
5274 | |
5275 fclose(file); | |
5276 | |
5277 l = mwSametimeList_load(str->str); | |
5278 g_string_free(str, TRUE); | |
5279 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5280 blist_merge(gc, l); |
10977 | 5281 mwSametimeList_free(l); |
5282 } | |
5283 | |
5284 | |
5285 /** prompts for a file to import blist from */ | |
5286 static void st_import_action(GaimPluginAction *act) { | |
5287 GaimConnection *gc; | |
5288 GaimAccount *account; | |
5289 char *title; | |
5290 | |
5291 gc = act->context; | |
5292 account = gaim_connection_get_account(gc); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5293 title = g_strdup_printf(_("Import Sametime List for Account %s"), |
10977 | 5294 gaim_account_get_username(account)); |
5295 | |
5296 gaim_request_file(gc, title, NULL, FALSE, | |
5297 G_CALLBACK(st_import_action_cb), NULL, | |
5298 gc); | |
5299 | |
5300 g_free(title); | |
5301 } | |
5302 | |
5303 | |
5304 static void st_export_action_cb(GaimConnection *gc, char *filename) { | |
5305 struct mwSametimeList *l; | |
5306 char *str; | |
5307 FILE *file; | |
5308 | |
5309 file = fopen(filename, "w"); | |
5310 g_return_if_fail(file != NULL); | |
5311 | |
5312 l = mwSametimeList_new(); | |
5313 blist_export(gc, l); | |
5314 str = mwSametimeList_store(l); | |
5315 mwSametimeList_free(l); | |
5316 | |
5317 fprintf(file, "%s", str); | |
5318 fclose(file); | |
5319 | |
5320 g_free(str); | |
5321 } | |
5322 | |
5323 | |
5324 /** prompts for a file to export blist to */ | |
5325 static void st_export_action(GaimPluginAction *act) { | |
5326 GaimConnection *gc; | |
5327 GaimAccount *account; | |
5328 char *title; | |
5329 | |
5330 gc = act->context; | |
5331 account = gaim_connection_get_account(gc); | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5332 title = g_strdup_printf(_("Export Sametime List for Account %s"), |
10977 | 5333 gaim_account_get_username(account)); |
5334 | |
5335 gaim_request_file(gc, title, NULL, TRUE, | |
5336 G_CALLBACK(st_export_action_cb), NULL, | |
5337 gc); | |
5338 | |
5339 g_free(title); | |
5340 } | |
5341 | |
5342 | |
5343 static void remote_group_multi_cleanup(gpointer ignore, | |
5344 GaimRequestFields *fields) { | |
5345 | |
5346 GaimRequestField *f; | |
5347 const GList *l; | |
5348 | |
5349 f = gaim_request_fields_get_field(fields, "group"); | |
5350 l = gaim_request_field_list_get_items(f); | |
5351 | |
5352 for(; l; l = l->next) { | |
5353 const char *i = l->data; | |
5354 struct resolved_id *res; | |
5355 | |
5356 res = gaim_request_field_list_get_data(f, i); | |
5357 | |
5358 g_free(res->id); | |
5359 g_free(res->name); | |
5360 g_free(res); | |
5361 } | |
5362 } | |
5363 | |
5364 | |
5365 static void remote_group_done(struct mwGaimPluginData *pd, | |
5366 const char *id, const char *name) { | |
5367 GaimConnection *gc; | |
5368 GaimAccount *acct; | |
5369 GaimGroup *group; | |
5370 GaimBlistNode *gn; | |
5371 const char *owner; | |
5372 | |
5373 g_return_if_fail(pd != NULL); | |
5374 | |
5375 gc = pd->gc; | |
5376 acct = gaim_connection_get_account(gc); | |
5377 | |
5378 /* collision checking */ | |
5379 group = gaim_find_group(name); | |
5380 if(group) { | |
5381 char *msgA, *msgB; | |
5382 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5383 msgA = _("Unable to add group: group exists"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5384 msgB = _("A group named '%s' already exists in your buddy list."); |
10977 | 5385 msgB = g_strdup_printf(msgB, name); |
5386 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5387 gaim_notify_error(gc, _("Unable to add group"), msgA, msgB); |
10977 | 5388 |
5389 g_free(msgB); | |
5390 return; | |
5391 } | |
5392 | |
5393 group = gaim_group_new(name); | |
5394 gn = (GaimBlistNode *) group; | |
5395 | |
5396 owner = gaim_account_get_username(acct); | |
5397 | |
5398 gaim_blist_node_set_string(gn, GROUP_KEY_NAME, id); | |
5399 gaim_blist_node_set_int(gn, GROUP_KEY_TYPE, mwSametimeGroup_DYNAMIC); | |
5400 gaim_blist_node_set_string(gn, GROUP_KEY_OWNER, owner); | |
5401 gaim_blist_add_group(group, NULL); | |
5402 | |
5403 group_add(pd, group); | |
5404 blist_schedule(pd); | |
5405 } | |
5406 | |
5407 | |
5408 static void remote_group_multi_cb(struct mwGaimPluginData *pd, | |
5409 GaimRequestFields *fields) { | |
5410 GaimRequestField *f; | |
5411 const GList *l; | |
5412 | |
5413 f = gaim_request_fields_get_field(fields, "group"); | |
5414 l = gaim_request_field_list_get_selected(f); | |
5415 | |
5416 if(l) { | |
5417 const char *i = l->data; | |
5418 struct resolved_id *res; | |
5419 | |
5420 res = gaim_request_field_list_get_data(f, i); | |
5421 remote_group_done(pd, res->id, res->name); | |
5422 } | |
5423 | |
5424 remote_group_multi_cleanup(NULL, fields); | |
5425 } | |
5426 | |
5427 | |
5428 static void remote_group_multi(struct mwResolveResult *result, | |
5429 struct mwGaimPluginData *pd) { | |
5430 | |
5431 GaimRequestFields *fields; | |
5432 GaimRequestFieldGroup *g; | |
5433 GaimRequestField *f; | |
5434 GList *l; | |
5435 char *msgA, *msgB; | |
5436 | |
5437 GaimConnection *gc = pd->gc; | |
5438 | |
5439 fields = gaim_request_fields_new(); | |
5440 | |
5441 g = gaim_request_field_group_new(NULL); | |
5442 gaim_request_fields_add_group(fields, g); | |
5443 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5444 f = gaim_request_field_list_new("group", _("Possible Matches")); |
10977 | 5445 gaim_request_field_list_set_multi_select(f, FALSE); |
5446 gaim_request_field_set_required(f, TRUE); | |
5447 | |
5448 for(l = result->matches; l; l = l->next) { | |
5449 struct mwResolveMatch *match = l->data; | |
5450 struct resolved_id *res = g_new0(struct resolved_id, 1); | |
5451 | |
5452 res->id = g_strdup(match->id); | |
5453 res->name = g_strdup(match->name); | |
5454 | |
5455 gaim_request_field_list_add(f, res->name, res); | |
5456 } | |
5457 | |
5458 gaim_request_field_group_add_field(g, f); | |
5459 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5460 msgA = _("Notes Address Book group results"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5461 msgB = _("The identifier '%s' may possibly refer to any of the following" |
10977 | 5462 " Notes Address Book groups. Please select the correct group from" |
5463 " the list below to add it to your buddy list."); | |
5464 msgB = g_strdup_printf(msgB, result->name); | |
5465 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5466 gaim_request_fields(gc, _("Select Notes Address Book"), |
10977 | 5467 msgA, msgB, fields, |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5468 _("Add Group"), G_CALLBACK(remote_group_multi_cb), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5469 _("Cancel"), G_CALLBACK(remote_group_multi_cleanup), |
10977 | 5470 pd); |
5471 | |
5472 g_free(msgB); | |
5473 } | |
5474 | |
5475 | |
5476 static void remote_group_resolved(struct mwServiceResolve *srvc, | |
5477 guint32 id, guint32 code, GList *results, | |
5478 gpointer b) { | |
11133
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
5479 |
1081735edc10
[gaim-migrate @ 13192]
Christopher O'Brien <siege@pidgin.im>
parents:
11132
diff
changeset
|
5480 struct mwResolveResult *res = NULL; |
10977 | 5481 struct mwSession *session; |
5482 struct mwGaimPluginData *pd; | |
5483 GaimConnection *gc; | |
5484 | |
5485 session = mwService_getSession(MW_SERVICE(srvc)); | |
5486 g_return_if_fail(session != NULL); | |
5487 | |
5488 pd = mwSession_getClientData(session); | |
5489 g_return_if_fail(pd != NULL); | |
5490 | |
5491 gc = pd->gc; | |
5492 g_return_if_fail(gc != NULL); | |
5493 | |
5494 if(!code && results) { | |
5495 res = results->data; | |
5496 | |
5497 if(res->matches) { | |
5498 remote_group_multi(res, pd); | |
5499 return; | |
5500 } | |
5501 } | |
5502 | |
5503 if(res && res->name) { | |
5504 char *msgA, *msgB; | |
5505 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5506 msgA = _("Unable to add group: group not found"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5507 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5508 msgB = _("The identifier '%s' did not match any Notes Address Book" |
10977 | 5509 " groups in your Sametime community."); |
5510 msgB = g_strdup_printf(msgB, res->name); | |
5511 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5512 gaim_notify_error(gc, _("Unable to add group"), msgA, msgB); |
10977 | 5513 |
5514 g_free(msgB); | |
5515 } | |
5516 } | |
5517 | |
5518 | |
5519 static void remote_group_action_cb(GaimConnection *gc, const char *name) { | |
5520 struct mwGaimPluginData *pd; | |
5521 struct mwServiceResolve *srvc; | |
5522 GList *query; | |
5523 enum mwResolveFlag flags; | |
5524 guint32 req; | |
5525 | |
5526 pd = gc->proto_data; | |
5527 srvc = pd->srvc_resolve; | |
5528 | |
5529 query = g_list_prepend(NULL, (char *) name); | |
5530 flags = mwResolveFlag_FIRST | mwResolveFlag_GROUPS; | |
5531 | |
5532 req = mwServiceResolve_resolve(srvc, query, flags, remote_group_resolved, | |
5533 NULL, NULL); | |
5534 g_list_free(query); | |
5535 | |
5536 if(req == SEARCH_ERROR) { | |
5537 /** @todo display error */ | |
5538 } | |
5539 } | |
5540 | |
5541 | |
5542 static void remote_group_action(GaimPluginAction *act) { | |
5543 GaimConnection *gc; | |
5544 const char *msgA, *msgB; | |
5545 | |
5546 gc = act->context; | |
5547 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5548 msgA = _("Notes Address Book Group"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5549 msgB = _("Enter the name of a Notes Address Book group in the field below" |
10977 | 5550 " to add the group and its members to your buddy list."); |
5551 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5552 gaim_request_input(gc, _("Add Group"), msgA, msgB, NULL, |
10977 | 5553 FALSE, FALSE, NULL, |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5554 _("Add"), G_CALLBACK(remote_group_action_cb), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5555 _("Cancel"), NULL, |
10977 | 5556 gc); |
5557 } | |
5558 | |
5559 | |
5560 static GList *mw_plugin_actions(GaimPlugin *plugin, gpointer context) { | |
5561 GaimPluginAction *act; | |
5562 GList *l = NULL; | |
5563 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5564 act = gaim_plugin_action_new(_("Set Status Messages..."), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5565 status_msg_action); |
10977 | 5566 l = g_list_append(l, act); |
5567 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5568 act = gaim_plugin_action_new(_("Import Sametime List..."), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5569 st_import_action); |
10977 | 5570 l = g_list_append(l, act); |
5571 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5572 act = gaim_plugin_action_new(_("Export Sametime List..."), |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5573 st_export_action); |
10977 | 5574 l = g_list_append(l, act); |
5575 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5576 act = gaim_plugin_action_new(_("Add Notes Address Book Group..."), |
10977 | 5577 remote_group_action); |
5578 l = g_list_append(l, act); | |
5579 | |
5580 return l; | |
5581 } | |
5582 | |
5583 | |
5584 static gboolean mw_plugin_load(GaimPlugin *plugin) { | |
5585 return TRUE; | |
5586 } | |
5587 | |
5588 | |
5589 static gboolean mw_plugin_unload(GaimPlugin *plugin) { | |
5590 return TRUE; | |
5591 } | |
5592 | |
5593 | |
5594 static void mw_plugin_destroy(GaimPlugin *plugin) { | |
5595 g_log_remove_handler(G_LOG_DOMAIN, log_handler[0]); | |
5596 g_log_remove_handler("meanwhile", log_handler[1]); | |
5597 } | |
5598 | |
5599 | |
5600 static GaimPluginInfo mw_plugin_info = { | |
5601 .magic = GAIM_PLUGIN_MAGIC, | |
5602 .major_version = GAIM_MAJOR_VERSION, | |
5603 .minor_version = GAIM_MINOR_VERSION, | |
5604 .type = GAIM_PLUGIN_PROTOCOL, | |
5605 .ui_requirement = NULL, | |
5606 .flags = 0, | |
5607 .dependencies = NULL, | |
5608 .priority = GAIM_PRIORITY_DEFAULT, | |
5609 .id = PLUGIN_ID, | |
5610 .name = PLUGIN_NAME, | |
5611 .version = VERSION, | |
5612 .summary = PLUGIN_SUMMARY, | |
5613 .description = PLUGIN_DESC, | |
5614 .author = PLUGIN_AUTHOR, | |
5615 .homepage = PLUGIN_HOMEPAGE, | |
5616 .load = mw_plugin_load, | |
5617 .unload = mw_plugin_unload, | |
5618 .destroy = mw_plugin_destroy, | |
5619 .ui_info = NULL, | |
5620 .extra_info = &mw_prpl_info, | |
5621 .prefs_info = &mw_plugin_ui_info, | |
5622 .actions = mw_plugin_actions, | |
5623 }; | |
5624 | |
5625 | |
5626 static void mw_log_handler(const gchar *domain, GLogLevelFlags flags, | |
5627 const gchar *msg, gpointer data) { | |
12005
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
5628 |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
5629 if(! (msg && *msg)) return; |
10977 | 5630 |
5631 /* handle g_log requests via gaim's built-in debug logging */ | |
5632 if(flags & G_LOG_LEVEL_ERROR) { | |
12005
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
5633 gaim_debug_error(domain, "%s\n", msg); |
10977 | 5634 |
5635 } else if(flags & G_LOG_LEVEL_WARNING) { | |
12005
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
5636 gaim_debug_warning(domain, "%s\n", msg); |
10977 | 5637 |
5638 } else { | |
12005
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
5639 gaim_debug_info(domain, "%s\n", msg); |
10977 | 5640 } |
5641 } | |
5642 | |
5643 | |
5644 static void mw_plugin_init(GaimPlugin *plugin) { | |
5645 GaimAccountOption *opt; | |
5646 GList *l = NULL; | |
5647 | |
5648 GLogLevelFlags logflags = | |
5649 G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION; | |
5650 | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5651 /* set up the preferences */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5652 gaim_prefs_add_none(MW_PRPL_OPT_BASE); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5653 gaim_prefs_add_int(MW_PRPL_OPT_BLIST_ACTION, BLIST_CHOICE_DEFAULT); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5654 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5655 /* remove dead preferences */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5656 gaim_prefs_remove(MW_PRPL_OPT_PSYCHIC); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5657 gaim_prefs_remove(MW_PRPL_OPT_SAVE_DYNAMIC); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5658 |
10977 | 5659 /* host to connect to */ |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5660 opt = gaim_account_option_string_new(_("Server"), MW_KEY_HOST, |
10977 | 5661 MW_PLUGIN_DEFAULT_HOST); |
5662 l = g_list_append(l, opt); | |
5663 | |
5664 /* port to connect to */ | |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5665 opt = gaim_account_option_int_new(_("Port"), MW_KEY_PORT, |
10977 | 5666 MW_PLUGIN_DEFAULT_PORT); |
5667 l = g_list_append(l, opt); | |
5668 | |
12005
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
5669 /* notesbuddy hack encoding */ |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
5670 opt = gaim_account_option_string_new(_("NotesBuddy Encoding"), |
5b3368008513
[gaim-migrate @ 14298]
Christopher O'Brien <siege@pidgin.im>
parents:
11953
diff
changeset
|
5671 MW_KEY_ENCODING, |
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5672 MW_PLUGIN_DEFAULT_ENCODING); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5673 l = g_list_append(l, opt); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5674 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5675 { /* copy the old force login setting from prefs if it's |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5676 there. Don't delete the preference, since there may be more |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5677 than one account that wants to check for it. */ |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5678 gboolean b = FALSE; |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5679 const char *label = _("Force Login (Ignore Server Redirects)"); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5680 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5681 if(gaim_prefs_exists(MW_PRPL_OPT_FORCE_LOGIN)) |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5682 b = gaim_prefs_get_bool(MW_PRPL_OPT_FORCE_LOGIN); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5683 |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5684 opt = gaim_account_option_bool_new(label, MW_KEY_FORCE, b); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5685 l = g_list_append(l, opt); |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5686 } |
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
11837
diff
changeset
|
5687 |
10977 | 5688 mw_prpl_info.protocol_options = l; |
5689 l = NULL; | |
5690 | |
5691 /* forward all our g_log messages to gaim. Generally all the logging | |
5692 calls are using gaim_log directly, but the g_return macros will | |
5693 get caught here */ | |
5694 log_handler[0] = g_log_set_handler(G_LOG_DOMAIN, logflags, | |
5695 mw_log_handler, NULL); | |
5696 | |
5697 /* redirect meanwhile's logging to gaim's */ | |
5698 log_handler[1] = g_log_set_handler("meanwhile", logflags, | |
5699 mw_log_handler, NULL); | |
5700 } | |
5701 | |
5702 | |
11949
47e1723a89d7
[gaim-migrate @ 14240]
Christopher O'Brien <siege@pidgin.im>
parents:
11943
diff
changeset
|
5703 GAIM_INIT_PLUGIN(sametime, mw_plugin_init, mw_plugin_info); |
10977 | 5704 /* The End. */ |
5705 |