Sat, 29 Aug 2009 01:11:36 +0000
Make all the prpls build.
| 11394 | 1 | /** |
| 2 | * @file gg.c Gadu-Gadu protocol plugin | |
| 3 | * | |
| 15884 | 4 | * purple |
| 11394 | 5 | * |
| 6 | * Copyright (C) 2005 Bartosz Oler <bartosz@bzimage.us> | |
| 7 | * | |
| 12007 | 8 | * Some parts of the code are adapted or taken from the previous implementation |
| 11394 | 9 | * of this plugin written by Arkadiusz Miskiewicz <misiek@pld.org.pl> |
|
27388
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
10 | * Some parts Copyright (C) 2009 Krzysztof Klinikowski <grommasher@gmail.com> |
| 11394 | 11 | * |
| 12 | * Thanks to Google's Summer of Code Program. | |
| 13 | * | |
| 14 | * This program is free software; you can redistribute it and/or modify | |
| 15 | * it under the terms of the GNU General Public License as published by | |
| 16 | * the Free Software Foundation; either version 2 of the License, or | |
| 17 | * (at your option) any later version. | |
| 18 | * | |
| 19 | * This program is distributed in the hope that it will be useful, | |
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 22 | * GNU General Public License for more details. | |
| 23 | * | |
| 24 | * You should have received a copy of the GNU General Public License | |
| 25 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
18629
diff
changeset
|
26 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 11394 | 27 | */ |
| 28 | ||
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
29 | #include "internal.h" |
| 2393 | 30 | |
| 11360 | 31 | #include "plugin.h" |
| 32 | #include "version.h" | |
| 33 | #include "notify.h" | |
| 34 | #include "status.h" | |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
35 | #include "blist.h" |
| 11360 | 36 | #include "accountopt.h" |
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
37 | #include "debug.h" |
|
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
38 | #include "util.h" |
| 11360 | 39 | #include "request.h" |
|
27388
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
40 | #include "xmlnode.h" |
| 2393 | 41 | |
| 13318 | 42 | #include <libgadu.h> |
| 5603 | 43 | |
| 11414 | 44 | #include "gg.h" |
| 45 | #include "confer.h" | |
| 46 | #include "search.h" | |
| 47 | #include "buddylist.h" | |
|
13627
44233a1064f9
[gaim-migrate @ 16013]
Evan Schoenberg <evands@pidgin.im>
parents:
13573
diff
changeset
|
48 | #include "gg-utils.h" |
| 11394 | 49 | |
| 15884 | 50 | static PurplePlugin *my_protocol = NULL; |
| 11394 | 51 | |
| 11360 | 52 | /* ---------------------------------------------------------------------- */ |
| 11414 | 53 | /* ----- EXTERNAL CALLBACKS --------------------------------------------- */ |
| 11360 | 54 | /* ---------------------------------------------------------------------- */ |
| 9950 | 55 | |
| 12007 | 56 | |
| 57 | /* ----- HELPERS -------------------------------------------------------- */ | |
| 58 | ||
| 13515 | 59 | /** |
| 60 | * Set up libgadu's proxy. | |
| 61 | * | |
| 62 | * @param account Account for which to set up the proxy. | |
| 63 | * | |
| 64 | * @return Zero if proxy setup is valid, otherwise -1. | |
| 65 | */ | |
| 15884 | 66 | static int ggp_setup_proxy(PurpleAccount *account) |
| 13515 | 67 | { |
| 15884 | 68 | PurpleProxyInfo *gpi; |
| 13515 | 69 | |
| 15884 | 70 | gpi = purple_proxy_get_setup(account); |
| 13515 | 71 | |
| 15884 | 72 | if ((purple_proxy_info_get_type(gpi) != PURPLE_PROXY_NONE) && |
| 73 | (purple_proxy_info_get_host(gpi) == NULL || | |
| 74 | purple_proxy_info_get_port(gpi) <= 0)) { | |
| 13515 | 75 | |
| 76 | gg_proxy_enabled = 0; | |
| 15884 | 77 | purple_notify_error(NULL, NULL, _("Invalid proxy settings"), |
| 13515 | 78 | _("Either the host name or port number specified for your given proxy type is invalid.")); |
| 79 | return -1; | |
| 15884 | 80 | } else if (purple_proxy_info_get_type(gpi) != PURPLE_PROXY_NONE) { |
| 13515 | 81 | gg_proxy_enabled = 1; |
| 15884 | 82 | gg_proxy_host = g_strdup(purple_proxy_info_get_host(gpi)); |
| 83 | gg_proxy_port = purple_proxy_info_get_port(gpi); | |
| 84 | gg_proxy_username = g_strdup(purple_proxy_info_get_username(gpi)); | |
| 85 | gg_proxy_password = g_strdup(purple_proxy_info_get_password(gpi)); | |
| 13515 | 86 | } else { |
| 87 | gg_proxy_enabled = 0; | |
| 88 | } | |
| 89 | ||
| 90 | return 0; | |
| 91 | } | |
| 92 | ||
| 15884 | 93 | static void ggp_async_token_handler(gpointer _gc, gint fd, PurpleInputCondition cond) |
| 12007 | 94 | { |
| 15884 | 95 | PurpleConnection *gc = _gc; |
| 12007 | 96 | GGPInfo *info = gc->proto_data; |
| 97 | GGPToken *token = info->token; | |
| 98 | GGPTokenCallback cb; | |
| 99 | ||
| 100 | struct gg_token *t = NULL; | |
| 101 | ||
| 15884 | 102 | purple_debug_info("gg", "token_handler: token->req: check = %d; state = %d;\n", |
| 12007 | 103 | token->req->check, token->req->state); |
| 104 | ||
| 105 | if (gg_token_watch_fd(token->req) == -1 || token->req->state == GG_STATE_ERROR) { | |
| 15884 | 106 | purple_debug_error("gg", "token error (1): %d\n", token->req->error); |
| 107 | purple_input_remove(token->inpa); | |
| 12007 | 108 | gg_token_free(token->req); |
| 109 | token->req = NULL; | |
| 110 | ||
| 15884 | 111 | purple_notify_error(purple_connection_get_account(gc), |
| 12007 | 112 | _("Token Error"), |
| 113 | _("Unable to fetch the token.\n"), NULL); | |
| 114 | return; | |
| 115 | } | |
| 116 | ||
| 117 | if (token->req->state != GG_STATE_DONE) { | |
| 15884 | 118 | purple_input_remove(token->inpa); |
| 119 | token->inpa = purple_input_add(token->req->fd, | |
| 12007 | 120 | (token->req->check == 1) |
| 15884 | 121 | ? PURPLE_INPUT_WRITE |
| 122 | : PURPLE_INPUT_READ, | |
| 12007 | 123 | ggp_async_token_handler, gc); |
| 124 | return; | |
| 125 | } | |
| 126 | ||
| 127 | if (!(t = token->req->data) || !token->req->body) { | |
| 15884 | 128 | purple_debug_error("gg", "token error (2): %d\n", token->req->error); |
| 129 | purple_input_remove(token->inpa); | |
| 12007 | 130 | gg_token_free(token->req); |
| 131 | token->req = NULL; | |
| 132 | ||
| 15884 | 133 | purple_notify_error(purple_connection_get_account(gc), |
| 12007 | 134 | _("Token Error"), |
| 135 | _("Unable to fetch the token.\n"), NULL); | |
| 136 | return; | |
| 137 | } | |
| 138 | ||
| 15884 | 139 | purple_input_remove(token->inpa); |
| 12007 | 140 | |
| 141 | token->id = g_strdup(t->tokenid); | |
| 142 | token->size = token->req->body_size; | |
| 143 | token->data = g_new0(char, token->size); | |
| 144 | memcpy(token->data, token->req->body, token->size); | |
| 145 | ||
| 15884 | 146 | purple_debug_info("gg", "TOKEN! tokenid = %s; size = %d\n", |
| 12007 | 147 | token->id, token->size); |
| 148 | ||
| 149 | gg_token_free(token->req); | |
| 150 | token->req = NULL; | |
| 151 | token->inpa = 0; | |
| 152 | ||
| 153 | cb = token->cb; | |
| 154 | token->cb = NULL; | |
| 155 | cb(gc); | |
| 156 | } | |
| 157 | ||
| 15884 | 158 | static void ggp_token_request(PurpleConnection *gc, GGPTokenCallback cb) |
| 12007 | 159 | { |
| 15884 | 160 | PurpleAccount *account; |
| 12007 | 161 | struct gg_http *req; |
| 13515 | 162 | GGPInfo *info; |
| 163 | ||
| 15884 | 164 | account = purple_connection_get_account(gc); |
| 13515 | 165 | |
| 166 | if (ggp_setup_proxy(account) == -1) | |
| 167 | return; | |
| 168 | ||
| 169 | info = gc->proto_data; | |
| 12007 | 170 | |
| 171 | if ((req = gg_token(1)) == NULL) { | |
| 15884 | 172 | purple_notify_error(account, |
| 12007 | 173 | _("Token Error"), |
| 174 | _("Unable to fetch the token.\n"), NULL); | |
| 175 | return; | |
| 176 | } | |
| 177 | ||
| 178 | info->token = g_new(GGPToken, 1); | |
| 179 | info->token->cb = cb; | |
| 180 | ||
| 181 | info->token->req = req; | |
| 15884 | 182 | info->token->inpa = purple_input_add(req->fd, PURPLE_INPUT_READ, |
| 12007 | 183 | ggp_async_token_handler, gc); |
| 184 | } | |
| 185 | /* }}} */ | |
| 186 | ||
| 187 | /* ---------------------------------------------------------------------- */ | |
| 188 | ||
| 11360 | 189 | /** |
| 190 | * Request buddylist from the server. | |
| 191 | * Buddylist is received in the ggp_callback_recv(). | |
| 192 | * | |
| 193 | * @param Current action handler. | |
| 194 | */ | |
| 15884 | 195 | static void ggp_action_buddylist_get(PurplePluginAction *action) |
| 11360 | 196 | { |
| 15884 | 197 | PurpleConnection *gc = (PurpleConnection *)action->context; |
| 11360 | 198 | GGPInfo *info = gc->proto_data; |
| 199 | ||
| 15884 | 200 | purple_debug_info("gg", "Downloading...\n"); |
| 11360 | 201 | |
| 202 | gg_userlist_request(info->session, GG_USERLIST_GET, NULL); | |
| 203 | } | |
| 204 | ||
| 205 | /** | |
| 206 | * Upload the buddylist to the server. | |
| 207 | * | |
| 208 | * @param action Current action handler. | |
| 209 | */ | |
| 15884 | 210 | static void ggp_action_buddylist_put(PurplePluginAction *action) |
| 11360 | 211 | { |
| 15884 | 212 | PurpleConnection *gc = (PurpleConnection *)action->context; |
| 11360 | 213 | GGPInfo *info = gc->proto_data; |
| 214 | ||
| 15884 | 215 | char *buddylist = ggp_buddylist_dump(purple_connection_get_account(gc)); |
| 11360 | 216 | |
| 15884 | 217 | purple_debug_info("gg", "Uploading...\n"); |
| 11360 | 218 | |
| 219 | if (buddylist == NULL) | |
| 220 | return; | |
| 221 | ||
| 222 | gg_userlist_request(info->session, GG_USERLIST_PUT, buddylist); | |
| 223 | g_free(buddylist); | |
| 224 | } | |
| 225 | ||
| 226 | /** | |
| 227 | * Delete buddylist from the server. | |
| 228 | * | |
| 229 | * @param action Current action handler. | |
| 230 | */ | |
| 15884 | 231 | static void ggp_action_buddylist_delete(PurplePluginAction *action) |
| 11360 | 232 | { |
| 15884 | 233 | PurpleConnection *gc = (PurpleConnection *)action->context; |
| 11360 | 234 | GGPInfo *info = gc->proto_data; |
| 235 | ||
| 15884 | 236 | purple_debug_info("gg", "Deleting...\n"); |
| 11360 | 237 | |
| 238 | gg_userlist_request(info->session, GG_USERLIST_PUT, NULL); | |
| 239 | } | |
| 240 | ||
|
21496
32972bf7cd4e
Actually properly fix this gg "write my buddy list to a file" callback by just
Will Thompson <resiak@pidgin.im>
parents:
21485
diff
changeset
|
241 | static void ggp_callback_buddylist_save_ok(PurpleConnection *gc, const char *filename) |
| 11360 | 242 | { |
| 15884 | 243 | PurpleAccount *account = purple_connection_get_account(gc); |
| 11360 | 244 | |
| 245 | char *buddylist = ggp_buddylist_dump(account); | |
| 246 | ||
| 15884 | 247 | purple_debug_info("gg", "Saving...\n"); |
|
21496
32972bf7cd4e
Actually properly fix this gg "write my buddy list to a file" callback by just
Will Thompson <resiak@pidgin.im>
parents:
21485
diff
changeset
|
248 | purple_debug_info("gg", "file = %s\n", filename); |
| 11360 | 249 | |
| 250 | if (buddylist == NULL) { | |
| 15884 | 251 | purple_notify_info(account, _("Save Buddylist..."), |
| 12007 | 252 | _("Your buddylist is empty, nothing was written to the file."), |
| 253 | NULL); | |
|
2792
f40db99e87c7
[gaim-migrate @ 2805]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2791
diff
changeset
|
254 | return; |
|
f40db99e87c7
[gaim-migrate @ 2805]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2791
diff
changeset
|
255 | } |
| 2393 | 256 | |
|
21496
32972bf7cd4e
Actually properly fix this gg "write my buddy list to a file" callback by just
Will Thompson <resiak@pidgin.im>
parents:
21485
diff
changeset
|
257 | if(purple_util_write_data_to_file_absolute(filename, buddylist, -1)) { |
|
32972bf7cd4e
Actually properly fix this gg "write my buddy list to a file" callback by just
Will Thompson <resiak@pidgin.im>
parents:
21485
diff
changeset
|
258 | purple_notify_info(account, _("Save Buddylist..."), |
|
32972bf7cd4e
Actually properly fix this gg "write my buddy list to a file" callback by just
Will Thompson <resiak@pidgin.im>
parents:
21485
diff
changeset
|
259 | _("Buddylist saved successfully!"), NULL); |
|
32972bf7cd4e
Actually properly fix this gg "write my buddy list to a file" callback by just
Will Thompson <resiak@pidgin.im>
parents:
21485
diff
changeset
|
260 | } else { |
|
32972bf7cd4e
Actually properly fix this gg "write my buddy list to a file" callback by just
Will Thompson <resiak@pidgin.im>
parents:
21485
diff
changeset
|
261 | gchar *primary = g_strdup_printf( |
|
32972bf7cd4e
Actually properly fix this gg "write my buddy list to a file" callback by just
Will Thompson <resiak@pidgin.im>
parents:
21485
diff
changeset
|
262 | _("Couldn't write buddy list for %s to %s"), |
|
32972bf7cd4e
Actually properly fix this gg "write my buddy list to a file" callback by just
Will Thompson <resiak@pidgin.im>
parents:
21485
diff
changeset
|
263 | purple_account_get_username(account), filename); |
|
21497
8187406f2043
May as well use an existing string as the title for the error notification.
Will Thompson <resiak@pidgin.im>
parents:
21496
diff
changeset
|
264 | purple_notify_error(account, _("Save Buddylist..."), |
|
21496
32972bf7cd4e
Actually properly fix this gg "write my buddy list to a file" callback by just
Will Thompson <resiak@pidgin.im>
parents:
21485
diff
changeset
|
265 | primary, NULL); |
|
32972bf7cd4e
Actually properly fix this gg "write my buddy list to a file" callback by just
Will Thompson <resiak@pidgin.im>
parents:
21485
diff
changeset
|
266 | g_free(primary); |
| 11360 | 267 | } |
| 268 | ||
| 269 | g_free(buddylist); | |
| 270 | } | |
|
2806
1576edefc75a
[gaim-migrate @ 2819]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2792
diff
changeset
|
271 | |
| 15884 | 272 | static void ggp_callback_buddylist_load_ok(PurpleConnection *gc, gchar *file) |
| 11360 | 273 | { |
| 15884 | 274 | PurpleAccount *account = purple_connection_get_account(gc); |
| 12007 | 275 | GError *error = NULL; |
| 276 | char *buddylist = NULL; | |
| 277 | gsize length; | |
| 11360 | 278 | |
| 15884 | 279 | purple_debug_info("gg", "file_name = %s\n", file); |
| 11360 | 280 | |
| 12007 | 281 | if (!g_file_get_contents(file, &buddylist, &length, &error)) { |
| 15884 | 282 | purple_notify_error(account, |
| 12007 | 283 | _("Couldn't load buddylist"), |
| 284 | _("Couldn't load buddylist"), | |
| 285 | error->message); | |
| 286 | ||
| 15884 | 287 | purple_debug_error("gg", |
| 12007 | 288 | "Couldn't load buddylist. file = %s; error = %s\n", |
| 289 | file, error->message); | |
| 290 | ||
| 291 | g_error_free(error); | |
| 292 | ||
|
2806
1576edefc75a
[gaim-migrate @ 2819]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2792
diff
changeset
|
293 | return; |
|
1576edefc75a
[gaim-migrate @ 2819]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2792
diff
changeset
|
294 | } |
| 11360 | 295 | |
| 296 | ggp_buddylist_load(gc, buddylist); | |
| 297 | g_free(buddylist); | |
| 298 | ||
| 15884 | 299 | purple_notify_info(account, |
| 11360 | 300 | _("Load Buddylist..."), |
| 301 | _("Buddylist loaded successfully!"), NULL); | |
|
2806
1576edefc75a
[gaim-migrate @ 2819]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2792
diff
changeset
|
302 | } |
| 11360 | 303 | /* }}} */ |
| 304 | ||
| 305 | /* | |
| 306 | */ | |
| 15884 | 307 | /* static void ggp_action_buddylist_save(PurplePluginAction *action) {{{ */ |
| 308 | static void ggp_action_buddylist_save(PurplePluginAction *action) | |
| 11360 | 309 | { |
| 15884 | 310 | PurpleConnection *gc = (PurpleConnection *)action->context; |
| 11360 | 311 | |
|
21175
c6d76b49c206
disapproval of revision '8ba833993a115415727bb1b70362e0bd1603c169'
Richard Laager <rlaager@pidgin.im>
parents:
21174
diff
changeset
|
312 | purple_request_file(action, _("Save buddylist..."), NULL, TRUE, |
|
16490
68c22924d66b
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
313 | G_CALLBACK(ggp_callback_buddylist_save_ok), NULL, |
|
68c22924d66b
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
314 | purple_connection_get_account(gc), NULL, NULL, |
|
21175
c6d76b49c206
disapproval of revision '8ba833993a115415727bb1b70362e0bd1603c169'
Richard Laager <rlaager@pidgin.im>
parents:
21174
diff
changeset
|
315 | gc); |
| 11360 | 316 | } |
|
2806
1576edefc75a
[gaim-migrate @ 2819]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2792
diff
changeset
|
317 | |
| 15884 | 318 | static void ggp_action_buddylist_load(PurplePluginAction *action) |
| 11360 | 319 | { |
| 15884 | 320 | PurpleConnection *gc = (PurpleConnection *)action->context; |
| 11360 | 321 | |
|
23379
536450c4f7f9
Mark a string as translatable in prpl-gg. References #5693.
Will Thompson <resiak@pidgin.im>
parents:
23325
diff
changeset
|
322 | purple_request_file(action, _("Load buddylist from file..."), NULL, |
|
536450c4f7f9
Mark a string as translatable in prpl-gg. References #5693.
Will Thompson <resiak@pidgin.im>
parents:
23325
diff
changeset
|
323 | FALSE, |
|
16490
68c22924d66b
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
324 | G_CALLBACK(ggp_callback_buddylist_load_ok), NULL, |
|
68c22924d66b
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
325 | purple_connection_get_account(gc), NULL, NULL, |
|
21175
c6d76b49c206
disapproval of revision '8ba833993a115415727bb1b70362e0bd1603c169'
Richard Laager <rlaager@pidgin.im>
parents:
21174
diff
changeset
|
326 | gc); |
| 11360 | 327 | } |
| 328 | ||
| 15884 | 329 | static void ggp_callback_register_account_ok(PurpleConnection *gc, |
| 330 | PurpleRequestFields *fields) | |
| 11414 | 331 | { |
| 15884 | 332 | PurpleAccount *account; |
| 11414 | 333 | GGPInfo *info = gc->proto_data; |
| 334 | struct gg_http *h = NULL; | |
| 335 | struct gg_pubdir *s; | |
| 336 | uin_t uin; | |
| 337 | gchar *email, *p1, *p2, *t; | |
| 12007 | 338 | GGPToken *token = info->token; |
| 11414 | 339 | |
| 15884 | 340 | email = charset_convert(purple_request_fields_get_string(fields, "email"), |
| 11414 | 341 | "UTF-8", "CP1250"); |
| 15884 | 342 | p1 = charset_convert(purple_request_fields_get_string(fields, "password1"), |
| 11414 | 343 | "UTF-8", "CP1250"); |
| 15884 | 344 | p2 = charset_convert(purple_request_fields_get_string(fields, "password2"), |
| 11414 | 345 | "UTF-8", "CP1250"); |
| 15884 | 346 | t = charset_convert(purple_request_fields_get_string(fields, "token"), |
| 11414 | 347 | "UTF-8", "CP1250"); |
| 348 | ||
| 15884 | 349 | account = purple_connection_get_account(gc); |
| 11414 | 350 | |
| 351 | if (email == NULL || p1 == NULL || p2 == NULL || t == NULL || | |
| 352 | *email == '\0' || *p1 == '\0' || *p2 == '\0' || *t == '\0') { | |
| 21279 | 353 | purple_connection_error_reason (gc, |
| 354 | PURPLE_CONNECTION_ERROR_OTHER_ERROR, | |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
355 | _("You must fill in all registration fields")); |
| 11414 | 356 | goto exit_err; |
| 357 | } | |
| 358 | ||
| 359 | if (g_utf8_collate(p1, p2) != 0) { | |
|
20437
6596f4984a50
Modify gadu-gadu to use purple_connection_error_reason. I'm not sure about
Will Thompson <resiak@pidgin.im>
parents:
19897
diff
changeset
|
360 | purple_connection_error_reason (gc, |
| 21279 | 361 | PURPLE_CONNECTION_ERROR_AUTHENTICATION_FAILED, |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
362 | _("Passwords do not match")); |
| 11414 | 363 | goto exit_err; |
| 364 | } | |
| 365 | ||
|
22622
1ecb840b5101
Fix a bunch of compiler warnings caused by my addition of G_GNUC_PRINTF()
Mark Doliner <markdoliner@pidgin.im>
parents:
22546
diff
changeset
|
366 | purple_debug_info("gg", "register_account_ok: token_id = %s; t = %s\n", |
| 12007 | 367 | token->id, t); |
| 368 | h = gg_register3(email, p1, token->id, t, 0); | |
| 11414 | 369 | if (h == NULL || !(s = h->data) || !s->success) { |
| 21279 | 370 | purple_connection_error_reason (gc, |
| 371 | PURPLE_CONNECTION_ERROR_OTHER_ERROR, | |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
372 | _("Unable to register new account. An unknown error occurred.")); |
| 11414 | 373 | goto exit_err; |
| 374 | } | |
| 375 | ||
| 376 | uin = s->uin; | |
| 15884 | 377 | purple_debug_info("gg", "registered uin: %d\n", uin); |
| 11414 | 378 | |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
379 | g_free(t); |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
380 | t = g_strdup_printf("%u", uin); |
| 15884 | 381 | purple_account_set_username(account, t); |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
382 | /* Save the password if remembering passwords for the account */ |
| 15884 | 383 | purple_account_set_password(account, p1); |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
384 | |
| 15884 | 385 | purple_notify_info(NULL, _("New Gadu-Gadu Account Registered"), |
| 11414 | 386 | _("Registration completed successfully!"), NULL); |
| 387 | ||
|
18997
072dcd2ed1b3
Gadu-Gadu now calls the registration_cb for the account if it is set after performing a registration
Evan Schoenberg <evands@pidgin.im>
parents:
18629
diff
changeset
|
388 | if(account->registration_cb) |
|
072dcd2ed1b3
Gadu-Gadu now calls the registration_cb for the account if it is set after performing a registration
Evan Schoenberg <evands@pidgin.im>
parents:
18629
diff
changeset
|
389 | (account->registration_cb)(account, TRUE, account->registration_cb_user_data); |
| 12007 | 390 | /* TODO: the currently open Accounts Window will not be updated withthe |
| 391 | * new username and etc, we need to somehow have it refresh at this | |
| 392 | * point | |
| 393 | */ | |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
394 | |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
395 | /* Need to disconnect or actually log in. For now, we disconnect. */ |
|
24569
5dbd0617a27d
Build everything with the *_DISABLE_DEPRECATED flags set. This allows us
Richard Laager <rlaager@pidgin.im>
parents:
24043
diff
changeset
|
396 | purple_account_disconnect(account); |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
397 | |
| 11414 | 398 | exit_err: |
|
18997
072dcd2ed1b3
Gadu-Gadu now calls the registration_cb for the account if it is set after performing a registration
Evan Schoenberg <evands@pidgin.im>
parents:
18629
diff
changeset
|
399 | if(account->registration_cb) |
|
072dcd2ed1b3
Gadu-Gadu now calls the registration_cb for the account if it is set after performing a registration
Evan Schoenberg <evands@pidgin.im>
parents:
18629
diff
changeset
|
400 | (account->registration_cb)(account, FALSE, account->registration_cb_user_data); |
|
072dcd2ed1b3
Gadu-Gadu now calls the registration_cb for the account if it is set after performing a registration
Evan Schoenberg <evands@pidgin.im>
parents:
18629
diff
changeset
|
401 | |
| 11414 | 402 | gg_register_free(h); |
| 403 | g_free(email); | |
| 404 | g_free(p1); | |
| 405 | g_free(p2); | |
| 406 | g_free(t); | |
| 12007 | 407 | g_free(token->id); |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
408 | g_free(token); |
| 11414 | 409 | } |
| 410 | ||
| 15884 | 411 | static void ggp_callback_register_account_cancel(PurpleConnection *gc, |
| 412 | PurpleRequestFields *fields) | |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
413 | { |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
414 | GGPInfo *info = gc->proto_data; |
| 12007 | 415 | GGPToken *token = info->token; |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
416 | |
|
24569
5dbd0617a27d
Build everything with the *_DISABLE_DEPRECATED flags set. This allows us
Richard Laager <rlaager@pidgin.im>
parents:
24043
diff
changeset
|
417 | purple_account_disconnect(gc->account); |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
418 | |
| 12007 | 419 | g_free(token->id); |
| 420 | g_free(token->data); | |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
421 | g_free(token); |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
422 | |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
423 | } |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
424 | |
| 15884 | 425 | static void ggp_register_user_dialog(PurpleConnection *gc) |
| 12007 | 426 | { |
| 15884 | 427 | PurpleAccount *account; |
| 428 | PurpleRequestFields *fields; | |
| 429 | PurpleRequestFieldGroup *group; | |
| 430 | PurpleRequestField *field; | |
| 12007 | 431 | |
| 432 | GGPInfo *info = gc->proto_data; | |
| 433 | GGPToken *token = info->token; | |
| 434 | ||
| 435 | ||
| 15884 | 436 | account = purple_connection_get_account(gc); |
| 12007 | 437 | |
| 15884 | 438 | fields = purple_request_fields_new(); |
| 439 | group = purple_request_field_group_new(NULL); | |
| 440 | purple_request_fields_add_group(fields, group); | |
| 12007 | 441 | |
| 15884 | 442 | field = purple_request_field_string_new("email", |
|
23325
a374a26fe217
Use "email" and "Email" consistently. This is potentially controversial,
Richard Laager <rlaager@pidgin.im>
parents:
23295
diff
changeset
|
443 | _("Email"), "", FALSE); |
| 15884 | 444 | purple_request_field_string_set_masked(field, FALSE); |
| 445 | purple_request_field_group_add_field(group, field); | |
| 12007 | 446 | |
| 15884 | 447 | field = purple_request_field_string_new("password1", |
| 12007 | 448 | _("Password"), "", FALSE); |
| 15884 | 449 | purple_request_field_string_set_masked(field, TRUE); |
| 450 | purple_request_field_group_add_field(group, field); | |
| 12007 | 451 | |
| 15884 | 452 | field = purple_request_field_string_new("password2", |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
453 | _("Password (again)"), "", FALSE); |
| 15884 | 454 | purple_request_field_string_set_masked(field, TRUE); |
| 455 | purple_request_field_group_add_field(group, field); | |
| 12007 | 456 | |
| 15884 | 457 | field = purple_request_field_string_new("token", |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
458 | _("Enter captcha text"), "", FALSE); |
| 15884 | 459 | purple_request_field_string_set_masked(field, FALSE); |
| 460 | purple_request_field_group_add_field(group, field); | |
| 12007 | 461 | |
| 462 | /* original size: 60x24 */ | |
| 15884 | 463 | field = purple_request_field_image_new("token_img", |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
464 | _("Captcha"), token->data, token->size); |
| 15884 | 465 | purple_request_field_group_add_field(group, field); |
| 12007 | 466 | |
|
21175
c6d76b49c206
disapproval of revision '8ba833993a115415727bb1b70362e0bd1603c169'
Richard Laager <rlaager@pidgin.im>
parents:
21174
diff
changeset
|
467 | purple_request_fields(account, |
| 12007 | 468 | _("Register New Gadu-Gadu Account"), |
| 469 | _("Register New Gadu-Gadu Account"), | |
| 470 | _("Please, fill in the following fields"), | |
| 471 | fields, | |
| 472 | _("OK"), G_CALLBACK(ggp_callback_register_account_ok), | |
| 473 | _("Cancel"), G_CALLBACK(ggp_callback_register_account_cancel), | |
|
16490
68c22924d66b
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
474 | purple_connection_get_account(gc), NULL, NULL, |
|
21175
c6d76b49c206
disapproval of revision '8ba833993a115415727bb1b70362e0bd1603c169'
Richard Laager <rlaager@pidgin.im>
parents:
21174
diff
changeset
|
475 | gc); |
| 12007 | 476 | } |
| 477 | ||
| 11414 | 478 | /* ----- PUBLIC DIRECTORY SEARCH ---------------------------------------- */ |
| 479 | ||
| 15884 | 480 | static void ggp_callback_show_next(PurpleConnection *gc, GList *row, gpointer user_data) |
| 11414 | 481 | { |
| 482 | GGPInfo *info = gc->proto_data; | |
| 13641 | 483 | GGPSearchForm *form = user_data; |
| 484 | guint32 seq; | |
| 11414 | 485 | |
| 13641 | 486 | g_free(form->offset); |
| 487 | form->offset = g_strdup(form->last_uin); | |
| 488 | ||
| 489 | ggp_search_remove(info->searches, form->seq); | |
|
23584
886e1611b952
Gadu-Gadu Get Info isn't behaving properly. Added debug logging to its traking
Evan Schoenberg <evands@pidgin.im>
parents:
23382
diff
changeset
|
490 | purple_debug_info("gg", "ggp_callback_show_next(): Removed seq %u", form->seq); |
| 13641 | 491 | |
| 492 | seq = ggp_search_start(gc, form); | |
| 493 | ggp_search_add(info->searches, seq, form); | |
|
23584
886e1611b952
Gadu-Gadu Get Info isn't behaving properly. Added debug logging to its traking
Evan Schoenberg <evands@pidgin.im>
parents:
23382
diff
changeset
|
494 | purple_debug_info("gg", "ggp_callback_show_next(): Added seq %u", seq); |
| 11414 | 495 | } |
| 496 | ||
| 15884 | 497 | static void ggp_callback_add_buddy(PurpleConnection *gc, GList *row, gpointer user_data) |
| 11414 | 498 | { |
| 15884 | 499 | purple_blist_request_add_buddy(purple_connection_get_account(gc), |
| 12007 | 500 | g_list_nth_data(row, 0), NULL, NULL); |
| 11414 | 501 | } |
| 502 | ||
| 15884 | 503 | static void ggp_callback_im(PurpleConnection *gc, GList *row, gpointer user_data) |
| 13642 | 504 | { |
| 15884 | 505 | PurpleAccount *account; |
| 506 | PurpleConversation *conv; | |
| 13642 | 507 | char *name; |
| 508 | ||
| 15884 | 509 | account = purple_connection_get_account(gc); |
| 13642 | 510 | |
| 511 | name = g_list_nth_data(row, 0); | |
| 15884 | 512 | conv = purple_conversation_new(PURPLE_CONV_TYPE_IM, account, name); |
| 513 | purple_conversation_present(conv); | |
| 13642 | 514 | } |
| 515 | ||
| 15884 | 516 | static void ggp_callback_find_buddies(PurpleConnection *gc, PurpleRequestFields *fields) |
| 11414 | 517 | { |
| 518 | GGPInfo *info = gc->proto_data; | |
| 519 | GGPSearchForm *form; | |
| 13641 | 520 | guint32 seq; |
| 11414 | 521 | |
| 13641 | 522 | form = ggp_search_form_new(GGP_SEARCH_TYPE_FULL); |
| 11414 | 523 | |
| 13641 | 524 | form->user_data = info; |
| 12007 | 525 | form->lastname = charset_convert( |
| 15884 | 526 | purple_request_fields_get_string(fields, "lastname"), |
| 12007 | 527 | "UTF-8", "CP1250"); |
| 528 | form->firstname = charset_convert( | |
| 15884 | 529 | purple_request_fields_get_string(fields, "firstname"), |
| 12007 | 530 | "UTF-8", "CP1250"); |
| 531 | form->nickname = charset_convert( | |
| 15884 | 532 | purple_request_fields_get_string(fields, "nickname"), |
| 12007 | 533 | "UTF-8", "CP1250"); |
| 534 | form->city = charset_convert( | |
| 15884 | 535 | purple_request_fields_get_string(fields, "city"), |
| 12007 | 536 | "UTF-8", "CP1250"); |
| 537 | form->birthyear = charset_convert( | |
| 15884 | 538 | purple_request_fields_get_string(fields, "year"), |
| 12007 | 539 | "UTF-8", "CP1250"); |
| 11414 | 540 | |
| 15884 | 541 | switch (purple_request_fields_get_choice(fields, "gender")) { |
| 11414 | 542 | case 1: |
| 543 | form->gender = g_strdup(GG_PUBDIR50_GENDER_MALE); | |
| 544 | break; | |
| 545 | case 2: | |
| 546 | form->gender = g_strdup(GG_PUBDIR50_GENDER_FEMALE); | |
| 547 | break; | |
| 548 | default: | |
| 549 | form->gender = NULL; | |
| 550 | break; | |
| 551 | } | |
| 552 | ||
| 15884 | 553 | form->active = purple_request_fields_get_bool(fields, "active") |
| 11414 | 554 | ? g_strdup(GG_PUBDIR50_ACTIVE_TRUE) : NULL; |
| 555 | ||
| 556 | form->offset = g_strdup("0"); | |
| 557 | ||
| 13641 | 558 | seq = ggp_search_start(gc, form); |
| 559 | ggp_search_add(info->searches, seq, form); | |
|
23584
886e1611b952
Gadu-Gadu Get Info isn't behaving properly. Added debug logging to its traking
Evan Schoenberg <evands@pidgin.im>
parents:
23382
diff
changeset
|
560 | purple_debug_info("gg", "ggp_callback_find_buddies(): Added seq %u", seq); |
| 11414 | 561 | } |
| 562 | ||
| 15884 | 563 | static void ggp_find_buddies(PurplePluginAction *action) |
| 11414 | 564 | { |
| 15884 | 565 | PurpleConnection *gc = (PurpleConnection *)action->context; |
| 11414 | 566 | |
| 15884 | 567 | PurpleRequestFields *fields; |
| 568 | PurpleRequestFieldGroup *group; | |
| 569 | PurpleRequestField *field; | |
| 11414 | 570 | |
| 15884 | 571 | fields = purple_request_fields_new(); |
| 572 | group = purple_request_field_group_new(NULL); | |
| 573 | purple_request_fields_add_group(fields, group); | |
| 11414 | 574 | |
| 15884 | 575 | field = purple_request_field_string_new("lastname", |
| 12007 | 576 | _("Last name"), NULL, FALSE); |
| 15884 | 577 | purple_request_field_string_set_masked(field, FALSE); |
| 578 | purple_request_field_group_add_field(group, field); | |
| 11414 | 579 | |
| 15884 | 580 | field = purple_request_field_string_new("firstname", |
| 12007 | 581 | _("First name"), NULL, FALSE); |
| 15884 | 582 | purple_request_field_string_set_masked(field, FALSE); |
| 583 | purple_request_field_group_add_field(group, field); | |
| 11414 | 584 | |
| 15884 | 585 | field = purple_request_field_string_new("nickname", |
| 12007 | 586 | _("Nickname"), NULL, FALSE); |
| 15884 | 587 | purple_request_field_string_set_masked(field, FALSE); |
| 588 | purple_request_field_group_add_field(group, field); | |
| 11414 | 589 | |
| 15884 | 590 | field = purple_request_field_string_new("city", |
| 12007 | 591 | _("City"), NULL, FALSE); |
| 15884 | 592 | purple_request_field_string_set_masked(field, FALSE); |
| 593 | purple_request_field_group_add_field(group, field); | |
| 11414 | 594 | |
| 15884 | 595 | field = purple_request_field_string_new("year", |
| 12007 | 596 | _("Year of birth"), NULL, FALSE); |
| 15884 | 597 | purple_request_field_group_add_field(group, field); |
| 11414 | 598 | |
| 15884 | 599 | field = purple_request_field_choice_new("gender", _("Gender"), 0); |
| 600 | purple_request_field_choice_add(field, _("Male or female")); | |
| 601 | purple_request_field_choice_add(field, _("Male")); | |
| 602 | purple_request_field_choice_add(field, _("Female")); | |
| 603 | purple_request_field_group_add_field(group, field); | |
| 11414 | 604 | |
| 15884 | 605 | field = purple_request_field_bool_new("active", |
| 12007 | 606 | _("Only online"), FALSE); |
| 15884 | 607 | purple_request_field_group_add_field(group, field); |
| 11414 | 608 | |
|
21175
c6d76b49c206
disapproval of revision '8ba833993a115415727bb1b70362e0bd1603c169'
Richard Laager <rlaager@pidgin.im>
parents:
21174
diff
changeset
|
609 | purple_request_fields(gc, |
| 11414 | 610 | _("Find buddies"), |
| 611 | _("Find buddies"), | |
| 612 | _("Please, enter your search criteria below"), | |
| 613 | fields, | |
| 614 | _("OK"), G_CALLBACK(ggp_callback_find_buddies), | |
| 615 | _("Cancel"), NULL, | |
|
16490
68c22924d66b
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
616 | purple_connection_get_account(gc), NULL, NULL, |
|
21175
c6d76b49c206
disapproval of revision '8ba833993a115415727bb1b70362e0bd1603c169'
Richard Laager <rlaager@pidgin.im>
parents:
21174
diff
changeset
|
617 | gc); |
| 11414 | 618 | } |
| 619 | ||
| 620 | /* ----- CHANGE PASSWORD ------------------------------------------------ */ | |
| 621 | ||
| 15884 | 622 | static void ggp_callback_change_passwd_ok(PurpleConnection *gc, PurpleRequestFields *fields) |
| 2393 | 623 | { |
| 15884 | 624 | PurpleAccount *account; |
| 11360 | 625 | GGPInfo *info = gc->proto_data; |
| 626 | struct gg_http *h; | |
| 627 | gchar *cur, *p1, *p2, *t; | |
| 628 | ||
| 12007 | 629 | cur = charset_convert( |
| 15884 | 630 | purple_request_fields_get_string(fields, "password_cur"), |
| 12007 | 631 | "UTF-8", "CP1250"); |
| 632 | p1 = charset_convert( | |
| 15884 | 633 | purple_request_fields_get_string(fields, "password1"), |
| 12007 | 634 | "UTF-8", "CP1250"); |
| 635 | p2 = charset_convert( | |
| 15884 | 636 | purple_request_fields_get_string(fields, "password2"), |
| 12007 | 637 | "UTF-8", "CP1250"); |
| 638 | t = charset_convert( | |
| 15884 | 639 | purple_request_fields_get_string(fields, "token"), |
| 12007 | 640 | "UTF-8", "CP1250"); |
| 11360 | 641 | |
| 15884 | 642 | account = purple_connection_get_account(gc); |
| 11360 | 643 | |
| 644 | if (cur == NULL || p1 == NULL || p2 == NULL || t == NULL || | |
| 645 | *cur == '\0' || *p1 == '\0' || *p2 == '\0' || *t == '\0') { | |
| 15884 | 646 | purple_notify_error(account, NULL, _("Fill in the fields."), NULL); |
| 11360 | 647 | goto exit_err; |
| 648 | } | |
| 649 | ||
| 650 | if (g_utf8_collate(p1, p2) != 0) { | |
| 15884 | 651 | purple_notify_error(account, NULL, |
| 12007 | 652 | _("New passwords do not match."), NULL); |
| 11360 | 653 | goto exit_err; |
| 654 | } | |
| 2393 | 655 | |
|
34022
c49f6e9ea27d
Make all the prpls build.
Paul Aurich <darkrain42@pidgin.im>
parents:
27642
diff
changeset
|
656 | if (g_utf8_collate(cur, purple_connection_get_password(gc)) != 0) { |
| 15884 | 657 | purple_notify_error(account, NULL, |
| 11360 | 658 | _("Your current password is different from the one that you specified."), |
| 659 | NULL); | |
| 660 | goto exit_err; | |
| 661 | } | |
| 662 | ||
| 15884 | 663 | purple_debug_info("gg", "Changing password\n"); |
| 11360 | 664 | |
|
23325
a374a26fe217
Use "email" and "Email" consistently. This is potentially controversial,
Richard Laager <rlaager@pidgin.im>
parents:
23295
diff
changeset
|
665 | /* XXX: this email should be a pref... */ |
| 11360 | 666 | h = gg_change_passwd4(ggp_get_uin(account), |
|
34022
c49f6e9ea27d
Make all the prpls build.
Paul Aurich <darkrain42@pidgin.im>
parents:
27642
diff
changeset
|
667 | "user@example.net", purple_connection_get_password(gc), |
| 12007 | 668 | p1, info->token->id, t, 0); |
| 2393 | 669 | |
| 11360 | 670 | if (h == NULL) { |
| 15884 | 671 | purple_notify_error(account, NULL, |
| 14754 | 672 | _("Unable to change password. Error occurred.\n"), |
| 11360 | 673 | NULL); |
| 674 | goto exit_err; | |
| 675 | } | |
| 676 | ||
| 15884 | 677 | purple_account_set_password(account, p1); |
| 11360 | 678 | |
| 679 | gg_change_passwd_free(h); | |
| 680 | ||
| 15884 | 681 | purple_notify_info(account, _("Change password for the Gadu-Gadu account"), |
| 11360 | 682 | _("Password was changed successfully!"), NULL); |
| 683 | ||
| 684 | exit_err: | |
| 685 | g_free(cur); | |
| 686 | g_free(p1); | |
| 687 | g_free(p2); | |
| 688 | g_free(t); | |
| 12007 | 689 | g_free(info->token->id); |
| 690 | g_free(info->token->data); | |
| 691 | g_free(info->token); | |
| 692 | } | |
| 693 | ||
| 15884 | 694 | static void ggp_change_passwd_dialog(PurpleConnection *gc) |
| 12007 | 695 | { |
| 15884 | 696 | PurpleRequestFields *fields; |
| 697 | PurpleRequestFieldGroup *group; | |
| 698 | PurpleRequestField *field; | |
| 12007 | 699 | |
| 700 | GGPInfo *info = gc->proto_data; | |
| 701 | GGPToken *token = info->token; | |
| 702 | ||
| 703 | char *msg; | |
| 704 | ||
| 705 | ||
| 15884 | 706 | fields = purple_request_fields_new(); |
| 707 | group = purple_request_field_group_new(NULL); | |
| 708 | purple_request_fields_add_group(fields, group); | |
| 12007 | 709 | |
| 15884 | 710 | field = purple_request_field_string_new("password_cur", |
| 12007 | 711 | _("Current password"), "", FALSE); |
| 15884 | 712 | purple_request_field_string_set_masked(field, TRUE); |
| 713 | purple_request_field_group_add_field(group, field); | |
| 12007 | 714 | |
| 15884 | 715 | field = purple_request_field_string_new("password1", |
| 12007 | 716 | _("Password"), "", FALSE); |
| 15884 | 717 | purple_request_field_string_set_masked(field, TRUE); |
| 718 | purple_request_field_group_add_field(group, field); | |
| 12007 | 719 | |
| 15884 | 720 | field = purple_request_field_string_new("password2", |
| 12007 | 721 | _("Password (retype)"), "", FALSE); |
| 15884 | 722 | purple_request_field_string_set_masked(field, TRUE); |
| 723 | purple_request_field_group_add_field(group, field); | |
| 12007 | 724 | |
| 15884 | 725 | field = purple_request_field_string_new("token", |
| 12007 | 726 | _("Enter current token"), "", FALSE); |
| 15884 | 727 | purple_request_field_string_set_masked(field, FALSE); |
| 728 | purple_request_field_group_add_field(group, field); | |
| 12007 | 729 | |
| 730 | /* original size: 60x24 */ | |
| 15884 | 731 | field = purple_request_field_image_new("token_img", |
| 12007 | 732 | _("Current token"), token->data, token->size); |
| 15884 | 733 | purple_request_field_group_add_field(group, field); |
| 12007 | 734 | |
| 735 | msg = g_strdup_printf("%s %d", | |
| 736 | _("Please, enter your current password and your new password for UIN: "), | |
| 15884 | 737 | ggp_get_uin(purple_connection_get_account(gc))); |
| 12007 | 738 | |
|
21175
c6d76b49c206
disapproval of revision '8ba833993a115415727bb1b70362e0bd1603c169'
Richard Laager <rlaager@pidgin.im>
parents:
21174
diff
changeset
|
739 | purple_request_fields(gc, |
| 12007 | 740 | _("Change Gadu-Gadu Password"), |
| 741 | _("Change Gadu-Gadu Password"), | |
| 742 | msg, | |
| 743 | fields, _("OK"), G_CALLBACK(ggp_callback_change_passwd_ok), | |
|
16490
68c22924d66b
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
744 | _("Cancel"), NULL, |
|
68c22924d66b
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
745 | purple_connection_get_account(gc), NULL, NULL, |
|
21175
c6d76b49c206
disapproval of revision '8ba833993a115415727bb1b70362e0bd1603c169'
Richard Laager <rlaager@pidgin.im>
parents:
21174
diff
changeset
|
746 | gc); |
| 12007 | 747 | |
| 748 | g_free(msg); | |
| 11360 | 749 | } |
| 2393 | 750 | |
| 15884 | 751 | static void ggp_change_passwd(PurplePluginAction *action) |
| 11360 | 752 | { |
| 15884 | 753 | PurpleConnection *gc = (PurpleConnection *)action->context; |
| 11360 | 754 | |
| 12007 | 755 | ggp_token_request(gc, ggp_change_passwd_dialog); |
| 11360 | 756 | } |
| 757 | ||
| 11414 | 758 | /* ----- CONFERENCES ---------------------------------------------------- */ |
| 759 | ||
|
25430
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
760 | static void ggp_callback_add_to_chat_ok(PurpleBuddy *buddy, PurpleRequestFields *fields) |
| 11394 | 761 | { |
|
25430
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
762 | GGPInfo *info; |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
763 | PurpleConnection *conn; |
| 15884 | 764 | PurpleRequestField *field; |
|
18190
bcf28ef7e8ff
Re-fix the DBus list handling code by killing const GList* / const GSList*
Richard Laager <rlaager@pidgin.im>
parents:
17455
diff
changeset
|
765 | GList *sel; |
| 11394 | 766 | |
|
25430
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
767 | conn = purple_account_get_connection(purple_buddy_get_account(buddy)); |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
768 | |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
769 | g_return_if_fail(conn != NULL); |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
770 | |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
771 | info = conn->proto_data; |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
772 | |
| 15884 | 773 | field = purple_request_fields_get_field(fields, "name"); |
| 774 | sel = purple_request_field_list_get_selected(field); | |
| 11394 | 775 | |
|
25430
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
776 | if (sel == NULL) { |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
777 | purple_debug_error("gg", "No chat selected\n"); |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
778 | return; |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
779 | } |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
780 | |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
781 | ggp_confer_participants_add_uin(conn, sel->data, |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
782 | ggp_str_to_uin(purple_buddy_get_name(buddy))); |
| 11394 | 783 | } |
| 784 | ||
| 15884 | 785 | static void ggp_bmenu_add_to_chat(PurpleBlistNode *node, gpointer ignored) |
| 11394 | 786 | { |
| 15884 | 787 | PurpleBuddy *buddy; |
| 788 | PurpleConnection *gc; | |
| 11394 | 789 | GGPInfo *info; |
| 790 | ||
| 15884 | 791 | PurpleRequestFields *fields; |
| 792 | PurpleRequestFieldGroup *group; | |
| 793 | PurpleRequestField *field; | |
| 11394 | 794 | |
| 795 | GList *l; | |
| 796 | gchar *msg; | |
| 797 | ||
| 15884 | 798 | buddy = (PurpleBuddy *)node; |
| 799 | gc = purple_account_get_connection(purple_buddy_get_account(buddy)); | |
| 11394 | 800 | info = gc->proto_data; |
| 801 | ||
| 15884 | 802 | fields = purple_request_fields_new(); |
| 803 | group = purple_request_field_group_new(NULL); | |
| 804 | purple_request_fields_add_group(fields, group); | |
| 11394 | 805 | |
| 15884 | 806 | field = purple_request_field_list_new("name", "Chat name"); |
| 11394 | 807 | for (l = info->chats; l != NULL; l = l->next) { |
| 808 | GGPChat *chat = l->data; | |
|
25430
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
809 | purple_request_field_list_add(field, chat->name, chat->name); |
| 11394 | 810 | } |
| 15884 | 811 | purple_request_field_group_add_field(group, field); |
| 11394 | 812 | |
| 12007 | 813 | msg = g_strdup_printf(_("Select a chat for buddy: %s"), |
| 15884 | 814 | purple_buddy_get_alias(buddy)); |
|
21175
c6d76b49c206
disapproval of revision '8ba833993a115415727bb1b70362e0bd1603c169'
Richard Laager <rlaager@pidgin.im>
parents:
21174
diff
changeset
|
815 | purple_request_fields(gc, |
| 11394 | 816 | _("Add to chat..."), |
| 817 | _("Add to chat..."), | |
| 818 | msg, | |
| 819 | fields, | |
| 820 | _("Add"), G_CALLBACK(ggp_callback_add_to_chat_ok), | |
|
16490
68c22924d66b
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
821 | _("Cancel"), NULL, |
|
25430
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
822 | purple_connection_get_account(gc), NULL, NULL, |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
823 | buddy); |
| 11394 | 824 | g_free(msg); |
| 825 | } | |
| 826 | ||
| 11414 | 827 | /* ----- BLOCK BUDDIES -------------------------------------------------- */ |
| 828 | ||
| 15884 | 829 | static void ggp_bmenu_block(PurpleBlistNode *node, gpointer ignored) |
| 11410 | 830 | { |
| 15884 | 831 | PurpleConnection *gc; |
| 832 | PurpleBuddy *buddy; | |
| 11410 | 833 | GGPInfo *info; |
| 834 | uin_t uin; | |
| 835 | ||
| 15884 | 836 | buddy = (PurpleBuddy *)node; |
| 837 | gc = purple_account_get_connection(purple_buddy_get_account(buddy)); | |
| 11410 | 838 | info = gc->proto_data; |
| 839 | ||
| 15884 | 840 | uin = ggp_str_to_uin(purple_buddy_get_name(buddy)); |
| 11410 | 841 | |
| 15884 | 842 | if (purple_blist_node_get_bool(node, "blocked")) { |
| 843 | purple_blist_node_set_bool(node, "blocked", FALSE); | |
| 11410 | 844 | gg_remove_notify_ex(info->session, uin, GG_USER_BLOCKED); |
| 845 | gg_add_notify_ex(info->session, uin, GG_USER_NORMAL); | |
| 15884 | 846 | purple_debug_info("gg", "send: uin=%d; mode=NORMAL\n", uin); |
| 11410 | 847 | } else { |
| 15884 | 848 | purple_blist_node_set_bool(node, "blocked", TRUE); |
| 11410 | 849 | gg_remove_notify_ex(info->session, uin, GG_USER_NORMAL); |
| 850 | gg_add_notify_ex(info->session, uin, GG_USER_BLOCKED); | |
| 15884 | 851 | purple_debug_info("gg", "send: uin=%d; mode=BLOCKED\n", uin); |
| 11410 | 852 | } |
| 853 | } | |
| 854 | ||
| 11360 | 855 | /* ---------------------------------------------------------------------- */ |
| 11414 | 856 | /* ----- INTERNAL CALLBACKS --------------------------------------------- */ |
| 857 | /* ---------------------------------------------------------------------- */ | |
| 858 | ||
|
23381
2f5146434176
Add a prototype for ggp_to_gg_status.
Will Thompson <resiak@pidgin.im>
parents:
23380
diff
changeset
|
859 | /* Prototypes */ |
| 15884 | 860 | static void ggp_set_status(PurpleAccount *account, PurpleStatus *status); |
|
23381
2f5146434176
Add a prototype for ggp_to_gg_status.
Will Thompson <resiak@pidgin.im>
parents:
23380
diff
changeset
|
861 | static int ggp_to_gg_status(PurpleStatus *status, char **msg); |
|
2f5146434176
Add a prototype for ggp_to_gg_status.
Will Thompson <resiak@pidgin.im>
parents:
23380
diff
changeset
|
862 | |
|
27388
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
863 | struct gg_fetch_avatar_data |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
864 | { |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
865 | PurpleConnection *gc; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
866 | gchar *uin; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
867 | gchar *avatar_url; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
868 | }; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
869 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
870 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
871 | static void gg_fetch_avatar_cb(PurpleUtilFetchUrlData *url_data, gpointer user_data, |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
872 | const gchar *data, size_t len, const gchar *error_message) { |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
873 | struct gg_fetch_avatar_data *d = user_data; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
874 | PurpleAccount *account; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
875 | PurpleBuddy *buddy; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
876 | gpointer buddy_icon_data; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
877 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
878 | /* FIXME: This shouldn't be necessary */ |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
879 | if (!PURPLE_CONNECTION_IS_VALID(d->gc)) { |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
880 | g_free(d->uin); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
881 | g_free(d->avatar_url); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
882 | g_free(d); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
883 | g_return_if_reached(); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
884 | } |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
885 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
886 | account = purple_connection_get_account(d->gc); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
887 | buddy = purple_find_buddy(account, d->uin); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
888 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
889 | if (buddy == NULL) |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
890 | goto out; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
891 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
892 | buddy_icon_data = g_memdup(data, len); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
893 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
894 | purple_buddy_icons_set_for_user(account, purple_buddy_get_name(buddy), |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
895 | buddy_icon_data, len, d->avatar_url); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
896 | purple_debug_info("gg", "UIN: %s should have avatar now\n", d->uin); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
897 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
898 | out: |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
899 | g_free(d->uin); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
900 | g_free(d->avatar_url); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
901 | g_free(d); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
902 | } |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
903 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
904 | static void gg_get_avatar_url_cb(PurpleUtilFetchUrlData *url_data, gpointer user_data, |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
905 | const gchar *url_text, size_t len, const gchar *error_message) { |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
906 | struct gg_fetch_avatar_data *data; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
907 | PurpleConnection *gc = user_data; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
908 | PurpleAccount *account; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
909 | PurpleBuddy *buddy; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
910 | const char *uin; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
911 | const char *is_blank; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
912 | const char *checksum; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
913 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
914 | gchar *bigavatar = NULL; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
915 | xmlnode *xml = NULL; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
916 | xmlnode *xmlnode_users; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
917 | xmlnode *xmlnode_user; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
918 | xmlnode *xmlnode_avatars; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
919 | xmlnode *xmlnode_avatar; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
920 | xmlnode *xmlnode_bigavatar; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
921 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
922 | g_return_if_fail(PURPLE_CONNECTION_IS_VALID(gc)); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
923 | account = purple_connection_get_account(gc); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
924 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
925 | if (error_message != NULL) |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
926 | purple_debug_error("gg", "gg_get_avatars_cb error: %s\n", error_message); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
927 | else if (len > 0 && url_text && *url_text) { |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
928 | xml = xmlnode_from_str(url_text, -1); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
929 | if (xml == NULL) |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
930 | goto out; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
931 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
932 | xmlnode_users = xmlnode_get_child(xml, "users"); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
933 | if (xmlnode_users == NULL) |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
934 | goto out; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
935 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
936 | xmlnode_user = xmlnode_get_child(xmlnode_users, "user"); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
937 | if (xmlnode_user == NULL) |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
938 | goto out; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
939 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
940 | uin = xmlnode_get_attrib(xmlnode_user, "uin"); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
941 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
942 | xmlnode_avatars = xmlnode_get_child(xmlnode_user, "avatars"); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
943 | if (xmlnode_avatars == NULL) |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
944 | goto out; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
945 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
946 | xmlnode_avatar = xmlnode_get_child(xmlnode_avatars, "avatar"); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
947 | if (xmlnode_avatar == NULL) |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
948 | goto out; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
949 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
950 | xmlnode_bigavatar = xmlnode_get_child(xmlnode_avatar, "bigAvatar"); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
951 | if (xmlnode_bigavatar == NULL) |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
952 | goto out; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
953 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
954 | is_blank = xmlnode_get_attrib(xmlnode_avatar, "blank"); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
955 | bigavatar = xmlnode_get_data(xmlnode_bigavatar); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
956 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
957 | purple_debug_info("gg", "gg_get_avatar_url_cb: UIN %s, IS_BLANK %s, " |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
958 | "URL %s\n", |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
959 | uin ? uin : "(null)", is_blank ? is_blank : "(null)", |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
960 | bigavatar ? bigavatar : "(null)"); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
961 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
962 | if (uin != NULL && bigavatar != NULL) { |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
963 | buddy = purple_find_buddy(account, uin); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
964 | if (buddy == NULL) |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
965 | goto out; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
966 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
967 | checksum = purple_buddy_icons_get_checksum_for_user(buddy); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
968 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
969 | if (purple_strequal(is_blank, "1")) { |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
970 | purple_buddy_icons_set_for_user(account, |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
971 | purple_buddy_get_name(buddy), NULL, 0, NULL); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
972 | } else if (!purple_strequal(checksum, bigavatar)) { |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
973 | data = g_new0(struct gg_fetch_avatar_data, 1); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
974 | data->gc = gc; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
975 | data->uin = g_strdup(uin); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
976 | data->avatar_url = g_strdup(bigavatar); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
977 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
978 | url_data = purple_util_fetch_url_request_len_with_account(account, |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
979 | bigavatar, TRUE, "Mozilla/4.0 (compatible; MSIE 5.0)", |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
980 | FALSE, NULL, FALSE, -1, gg_fetch_avatar_cb, data); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
981 | } |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
982 | } |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
983 | } |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
984 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
985 | out: |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
986 | if (xml) |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
987 | xmlnode_free(xml); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
988 | g_free(bigavatar); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
989 | } |
| 12964 | 990 | |
| 11414 | 991 | /** |
| 992 | * Handle change of the status of the buddy. | |
| 993 | * | |
| 15884 | 994 | * @param gc PurpleConnection |
| 11414 | 995 | * @param uin UIN of the buddy. |
| 996 | * @param status ID of the status. | |
| 997 | * @param descr Description. | |
| 998 | */ | |
| 15884 | 999 | static void ggp_generic_status_handler(PurpleConnection *gc, uin_t uin, |
| 12007 | 1000 | int status, const char *descr) |
| 11414 | 1001 | { |
| 1002 | gchar *from; | |
| 1003 | const char *st; | |
| 1004 | gchar *msg; | |
|
27388
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
1005 | gchar *avatarurl; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
1006 | PurpleUtilFetchUrlData *url_data; |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
1007 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
1008 | from = g_strdup_printf("%u", uin); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
1009 | avatarurl = g_strdup_printf("http://api.gadu-gadu.pl/avatars/%s/0.xml", from); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
1010 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
1011 | url_data = purple_util_fetch_url_request_len_with_account( |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
1012 | purple_connection_get_account(gc), avatarurl, TRUE, |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
1013 | "Mozilla/4.0 (compatible; MSIE 5.5)", FALSE, NULL, FALSE, -1, |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
1014 | gg_get_avatar_url_cb, gc); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
1015 | |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
1016 | g_free(avatarurl); |
|
e72ccf802d25
Support fetching Gadu-Gadu avatars. Closes #9371.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27371
diff
changeset
|
1017 | |
| 11414 | 1018 | switch (status) { |
| 1019 | case GG_STATUS_NOT_AVAIL: | |
| 1020 | case GG_STATUS_NOT_AVAIL_DESCR: | |
| 1021 | st = "offline"; | |
| 1022 | break; | |
| 1023 | case GG_STATUS_AVAIL: | |
| 1024 | case GG_STATUS_AVAIL_DESCR: | |
|
11638
1821b40269a3
[gaim-migrate @ 13914]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11565
diff
changeset
|
1025 | st = "available"; |
| 11414 | 1026 | break; |
| 1027 | case GG_STATUS_BUSY: | |
| 1028 | case GG_STATUS_BUSY_DESCR: | |
|
12718
34152a2d35fc
[gaim-migrate @ 15062]
Richard Laager <rlaager@pidgin.im>
parents:
12717
diff
changeset
|
1029 | st = "away"; |
| 11414 | 1030 | break; |
| 1031 | case GG_STATUS_BLOCKED: | |
| 1032 | /* user is blocking us.... */ | |
| 1033 | st = "blocked"; | |
| 1034 | break; | |
| 1035 | default: | |
|
11638
1821b40269a3
[gaim-migrate @ 13914]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11565
diff
changeset
|
1036 | st = "available"; |
| 15884 | 1037 | purple_debug_info("gg", |
| 12007 | 1038 | "GG_EVENT_NOTIFY: Unknown status: %d\n", status); |
| 11414 | 1039 | break; |
| 1040 | } | |
| 1041 | ||
| 15884 | 1042 | purple_debug_info("gg", "st = %s\n", st); |
| 11414 | 1043 | msg = charset_convert(descr, "CP1250", "UTF-8"); |
| 15884 | 1044 | purple_prpl_got_user_status(purple_connection_get_account(gc), |
| 12007 | 1045 | from, st, "message", msg, NULL); |
| 11414 | 1046 | g_free(from); |
| 1047 | g_free(msg); | |
| 1048 | } | |
| 1049 | ||
| 13643 | 1050 | static void ggp_sr_close_cb(gpointer user_data) |
| 12220 | 1051 | { |
| 13643 | 1052 | GGPSearchForm *form = user_data; |
| 13641 | 1053 | GGPInfo *info = form->user_data; |
| 12220 | 1054 | |
| 13641 | 1055 | ggp_search_remove(info->searches, form->seq); |
|
23584
886e1611b952
Gadu-Gadu Get Info isn't behaving properly. Added debug logging to its traking
Evan Schoenberg <evands@pidgin.im>
parents:
23382
diff
changeset
|
1056 | purple_debug_info("gg", "ggp_sr_close_cb(): Removed seq %u", form->seq); |
| 13641 | 1057 | ggp_search_form_destroy(form); |
| 12220 | 1058 | } |
| 1059 | ||
| 13645 | 1060 | /** |
| 1061 | * Translate a status' ID to a more user-friendly name. | |
| 1062 | * | |
| 1063 | * @param id The ID of the status. | |
| 1064 | * | |
| 1065 | * @return The user-friendly name of the status. | |
| 1066 | */ | |
| 1067 | static const char *ggp_status_by_id(unsigned int id) | |
| 1068 | { | |
| 1069 | const char *st; | |
| 1070 | ||
| 15884 | 1071 | purple_debug_info("gg", "ggp_status_by_id: %d\n", id); |
| 13645 | 1072 | switch (id) { |
| 1073 | case GG_STATUS_NOT_AVAIL: | |
|
27371
6f8830d73092
Correctly show status in tooltips for GG contacts with status messages.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27255
diff
changeset
|
1074 | case GG_STATUS_NOT_AVAIL_DESCR: |
| 13645 | 1075 | st = _("Offline"); |
| 1076 | break; | |
| 1077 | case GG_STATUS_AVAIL: | |
|
27371
6f8830d73092
Correctly show status in tooltips for GG contacts with status messages.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27255
diff
changeset
|
1078 | case GG_STATUS_AVAIL_DESCR: |
| 13645 | 1079 | st = _("Available"); |
| 1080 | break; | |
| 1081 | case GG_STATUS_BUSY: | |
|
27371
6f8830d73092
Correctly show status in tooltips for GG contacts with status messages.
Krzysztof Klinikowski <kkszysiu@gmail.com>
parents:
27255
diff
changeset
|
1082 | case GG_STATUS_BUSY_DESCR: |
| 13645 | 1083 | st = _("Away"); |
| 1084 | break; | |
| 1085 | default: | |
| 1086 | st = _("Unknown"); | |
| 1087 | break; | |
| 1088 | } | |
| 1089 | ||
| 1090 | return st; | |
| 1091 | } | |
| 1092 | ||
| 15884 | 1093 | static void ggp_pubdir_handle_info(PurpleConnection *gc, gg_pubdir50_t req, |
| 13643 | 1094 | GGPSearchForm *form) |
| 12007 | 1095 | { |
| 15884 | 1096 | PurpleNotifyUserInfo *user_info; |
| 1097 | PurpleBuddy *buddy; | |
| 13643 | 1098 | char *val, *who; |
| 1099 | ||
| 15884 | 1100 | user_info = purple_notify_user_info_new(); |
| 13643 | 1101 | |
| 1102 | val = ggp_search_get_result(req, 0, GG_PUBDIR50_STATUS); | |
| 13645 | 1103 | /* XXX: Use of ggp_str_to_uin() is an ugly hack! */ |
| 15884 | 1104 | purple_notify_user_info_add_pair(user_info, _("Status"), ggp_status_by_id(ggp_str_to_uin(val))); |
| 13643 | 1105 | g_free(val); |
| 1106 | ||
| 1107 | who = ggp_search_get_result(req, 0, GG_PUBDIR50_UIN); | |
| 15884 | 1108 | purple_notify_user_info_add_pair(user_info, _("UIN"), who); |
| 13643 | 1109 | |
| 1110 | val = ggp_search_get_result(req, 0, GG_PUBDIR50_FIRSTNAME); | |
| 15884 | 1111 | purple_notify_user_info_add_pair(user_info, _("First Name"), val); |
| 13643 | 1112 | g_free(val); |
| 1113 | ||
| 1114 | val = ggp_search_get_result(req, 0, GG_PUBDIR50_NICKNAME); | |
| 15884 | 1115 | purple_notify_user_info_add_pair(user_info, _("Nickname"), val); |
| 13643 | 1116 | g_free(val); |
| 1117 | ||
| 1118 | val = ggp_search_get_result(req, 0, GG_PUBDIR50_CITY); | |
| 15884 | 1119 | purple_notify_user_info_add_pair(user_info, _("City"), val); |
| 13643 | 1120 | g_free(val); |
| 1121 | ||
| 1122 | val = ggp_search_get_result(req, 0, GG_PUBDIR50_BIRTHYEAR); | |
|
15205
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
15196
diff
changeset
|
1123 | if (strncmp(val, "0", 1)) { |
| 15884 | 1124 | purple_notify_user_info_add_pair(user_info, _("Birth Year"), val); |
| 13643 | 1125 | } |
| 1126 | g_free(val); | |
| 1127 | ||
| 15294 | 1128 | /* |
| 1129 | * Include a status message, if exists and buddy is in the blist. | |
| 1130 | */ | |
| 15884 | 1131 | buddy = purple_find_buddy(purple_connection_get_account(gc), who); |
| 15294 | 1132 | if (NULL != buddy) { |
| 15884 | 1133 | PurpleStatus *status; |
| 15294 | 1134 | const char *msg; |
| 1135 | char *text; | |
| 13643 | 1136 | |
| 15884 | 1137 | status = purple_presence_get_active_status(purple_buddy_get_presence(buddy)); |
| 1138 | msg = purple_status_get_attr_string(status, "message"); | |
| 13643 | 1139 | |
| 15294 | 1140 | if (msg != NULL) { |
| 1141 | text = g_markup_escape_text(msg, -1); | |
| 15884 | 1142 | purple_notify_user_info_add_pair(user_info, _("Message"), text); |
| 15294 | 1143 | g_free(text); |
| 1144 | } | |
| 1145 | } | |
| 1146 | ||
|
18629
9e78088bfc46
Close temporary Get Info window when showing the real one. Fixes #1720.
Bartosz Oler <bartosz@pidgin.im>
parents:
18190
diff
changeset
|
1147 | purple_notify_userinfo(gc, who, user_info, ggp_sr_close_cb, form); |
| 15294 | 1148 | g_free(who); |
| 15884 | 1149 | purple_notify_user_info_destroy(user_info); |
| 13643 | 1150 | } |
| 1151 | ||
| 15884 | 1152 | static void ggp_pubdir_handle_full(PurpleConnection *gc, gg_pubdir50_t req, |
| 13643 | 1153 | GGPSearchForm *form) |
| 1154 | { | |
| 15884 | 1155 | PurpleNotifySearchResults *results; |
| 1156 | PurpleNotifySearchColumn *column; | |
| 13643 | 1157 | int res_count; |
| 12007 | 1158 | int start; |
| 1159 | int i; | |
| 13641 | 1160 | |
| 13643 | 1161 | g_return_if_fail(form != NULL); |
| 12007 | 1162 | |
| 1163 | res_count = gg_pubdir50_count(req); | |
| 13643 | 1164 | res_count = (res_count > PUBDIR_RESULTS_MAX) ? PUBDIR_RESULTS_MAX : res_count; |
| 12007 | 1165 | |
| 15884 | 1166 | results = purple_notify_searchresults_new(); |
| 12007 | 1167 | |
| 12257 | 1168 | if (results == NULL) { |
| 15884 | 1169 | purple_debug_error("gg", "ggp_pubdir_reply_handler: " |
| 12257 | 1170 | "Unable to display the search results.\n"); |
| 15884 | 1171 | purple_notify_error(gc, NULL, |
| 12257 | 1172 | _("Unable to display the search results."), |
| 1173 | NULL); | |
| 13641 | 1174 | ggp_sr_close_cb(form); |
| 12257 | 1175 | return; |
| 1176 | } | |
| 1177 | ||
| 15884 | 1178 | column = purple_notify_searchresults_column_new(_("UIN")); |
| 1179 | purple_notify_searchresults_column_add(results, column); | |
| 12007 | 1180 | |
| 15884 | 1181 | column = purple_notify_searchresults_column_new(_("First Name")); |
| 1182 | purple_notify_searchresults_column_add(results, column); | |
| 12007 | 1183 | |
| 15884 | 1184 | column = purple_notify_searchresults_column_new(_("Nickname")); |
| 1185 | purple_notify_searchresults_column_add(results, column); | |
| 12007 | 1186 | |
| 15884 | 1187 | column = purple_notify_searchresults_column_new(_("City")); |
| 1188 | purple_notify_searchresults_column_add(results, column); | |
| 12007 | 1189 | |
| 15884 | 1190 | column = purple_notify_searchresults_column_new(_("Birth Year")); |
| 1191 | purple_notify_searchresults_column_add(results, column); | |
| 12007 | 1192 | |
| 15884 | 1193 | purple_debug_info("gg", "Going with %d entries\n", res_count); |
| 12007 | 1194 | |
| 1195 | start = (int)ggp_str_to_uin(gg_pubdir50_get(req, 0, GG_PUBDIR50_START)); | |
| 15884 | 1196 | purple_debug_info("gg", "start = %d\n", start); |
| 12007 | 1197 | |
| 1198 | for (i = 0; i < res_count; i++) { | |
| 1199 | GList *row = NULL; | |
| 1200 | char *birth = ggp_search_get_result(req, i, GG_PUBDIR50_BIRTHYEAR); | |
| 1201 | ||
| 1202 | /* TODO: Status will be displayed as an icon. */ | |
| 1203 | /* row = g_list_append(row, ggp_search_get_result(req, i, GG_PUBDIR50_STATUS)); */ | |
| 1204 | row = g_list_append(row, ggp_search_get_result(req, i, | |
| 1205 | GG_PUBDIR50_UIN)); | |
| 1206 | row = g_list_append(row, ggp_search_get_result(req, i, | |
| 1207 | GG_PUBDIR50_FIRSTNAME)); | |
| 1208 | row = g_list_append(row, ggp_search_get_result(req, i, | |
| 1209 | GG_PUBDIR50_NICKNAME)); | |
| 1210 | row = g_list_append(row, ggp_search_get_result(req, i, | |
| 1211 | GG_PUBDIR50_CITY)); | |
| 1212 | row = g_list_append(row, | |
| 1213 | (birth && strncmp(birth, "0", 1)) ? birth : g_strdup("-")); | |
| 1214 | ||
| 15884 | 1215 | purple_notify_searchresults_row_add(results, row); |
| 12007 | 1216 | |
| 1217 | if (i == res_count - 1) { | |
| 13641 | 1218 | g_free(form->last_uin); |
| 1219 | form->last_uin = ggp_search_get_result(req, i, GG_PUBDIR50_UIN); | |
| 12007 | 1220 | } |
| 1221 | } | |
| 1222 | ||
| 15884 | 1223 | purple_notify_searchresults_button_add(results, PURPLE_NOTIFY_BUTTON_CONTINUE, |
| 12007 | 1224 | ggp_callback_show_next); |
| 15884 | 1225 | purple_notify_searchresults_button_add(results, PURPLE_NOTIFY_BUTTON_ADD, |
| 12007 | 1226 | ggp_callback_add_buddy); |
| 15884 | 1227 | purple_notify_searchresults_button_add(results, PURPLE_NOTIFY_BUTTON_IM, |
| 13642 | 1228 | ggp_callback_im); |
| 13643 | 1229 | |
| 13641 | 1230 | if (form->window == NULL) { |
| 15884 | 1231 | void *h = purple_notify_searchresults(gc, |
| 12007 | 1232 | _("Gadu-Gadu Public Directory"), |
| 12220 | 1233 | _("Search results"), NULL, results, |
| 15884 | 1234 | (PurpleNotifyCloseCallback)ggp_sr_close_cb, |
| 13641 | 1235 | form); |
| 12257 | 1236 | |
|
12277
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1237 | if (h == NULL) { |
| 15884 | 1238 | purple_debug_error("gg", "ggp_pubdir_reply_handler: " |
|
12277
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1239 | "Unable to display the search results.\n"); |
| 15884 | 1240 | purple_notify_error(gc, NULL, |
|
12277
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1241 | _("Unable to display the search results."), |
|
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1242 | NULL); |
|
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1243 | return; |
|
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1244 | } |
|
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1245 | |
| 13641 | 1246 | form->window = h; |
| 12007 | 1247 | } else { |
| 15884 | 1248 | purple_notify_searchresults_new_rows(gc, results, form->window); |
| 12007 | 1249 | } |
| 1250 | } | |
| 1251 | ||
| 15884 | 1252 | static void ggp_pubdir_reply_handler(PurpleConnection *gc, gg_pubdir50_t req) |
| 13643 | 1253 | { |
| 1254 | GGPInfo *info = gc->proto_data; | |
| 1255 | GGPSearchForm *form; | |
| 1256 | int res_count; | |
| 1257 | guint32 seq; | |
| 1258 | ||
| 1259 | seq = gg_pubdir50_seq(req); | |
| 1260 | form = ggp_search_get(info->searches, seq); | |
|
23584
886e1611b952
Gadu-Gadu Get Info isn't behaving properly. Added debug logging to its traking
Evan Schoenberg <evands@pidgin.im>
parents:
23382
diff
changeset
|
1261 | purple_debug_info("gg", "ggp_pubdir_reply_handler(): seq %u --> form %p", seq, form); |
| 13643 | 1262 | /* |
| 1263 | * this can happen when user will request more results | |
| 1264 | * and close the results window before they arrive. | |
| 1265 | */ | |
| 1266 | g_return_if_fail(form != NULL); | |
| 1267 | ||
| 1268 | res_count = gg_pubdir50_count(req); | |
| 1269 | if (res_count < 1) { | |
| 15884 | 1270 | purple_debug_info("gg", "GG_EVENT_PUBDIR50_SEARCH_REPLY: Nothing found\n"); |
| 1271 | purple_notify_error(gc, NULL, | |
| 13643 | 1272 | _("No matching users found"), |
| 1273 | _("There are no users matching your search criteria.")); | |
| 1274 | ggp_sr_close_cb(form); | |
| 1275 | return; | |
| 1276 | } | |
| 1277 | ||
| 1278 | switch (form->search_type) { | |
| 1279 | case GGP_SEARCH_TYPE_INFO: | |
| 1280 | ggp_pubdir_handle_info(gc, req, form); | |
| 1281 | break; | |
| 1282 | case GGP_SEARCH_TYPE_FULL: | |
| 1283 | ggp_pubdir_handle_full(gc, req, form); | |
| 1284 | break; | |
| 1285 | default: | |
| 15884 | 1286 | purple_debug_warning("gg", "Unknown search_type!\n"); |
| 13643 | 1287 | break; |
| 1288 | } | |
| 1289 | } | |
| 1290 | ||
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1291 | static void ggp_recv_image_handler(PurpleConnection *gc, const struct gg_event *ev) |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1292 | { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1293 | gint imgid = 0; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1294 | GGPInfo *info = gc->proto_data; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1295 | GList *entry = g_list_first(info->pending_richtext_messages); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1296 | gchar *handlerid = g_strdup_printf("IMGID_HANDLER-%i", ev->event.image_reply.crc32); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1297 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1298 | imgid = purple_imgstore_add_with_id( |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1299 | g_memdup(ev->event.image_reply.image, ev->event.image_reply.size), |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1300 | ev->event.image_reply.size, |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1301 | ev->event.image_reply.filename); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1302 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1303 | purple_debug_info("gg", "ggp_recv_image_handler: got image with crc32: %u\n", ev->event.image_reply.crc32); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1304 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1305 | while(entry) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1306 | if (strstr((gchar *)entry->data, handlerid) != NULL) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1307 | gchar **split = g_strsplit((gchar *)entry->data, handlerid, 3); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1308 | gchar *text = g_strdup_printf("%s%i%s", split[0], imgid, split[1]); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1309 | purple_debug_info("gg", "ggp_recv_image_handler: found message matching crc32: %s\n", (gchar *)entry->data); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1310 | g_strfreev(split); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1311 | info->pending_richtext_messages = g_list_remove(info->pending_richtext_messages, entry->data); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1312 | /* We don't have any more images to download */ |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1313 | if (strstr(text, "<IMG ID=\"IMGID_HANDLER") == NULL) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1314 | gchar *buf = g_strdup_printf("%lu", (unsigned long int)ev->event.msg.sender); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1315 | serv_got_im(gc, buf, text, PURPLE_MESSAGE_IMAGES, ev->event.msg.time); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1316 | g_free(buf); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1317 | purple_debug_info("gg", "ggp_recv_image_handler: richtext message: %s\n", text); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1318 | g_free(text); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1319 | break; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1320 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1321 | info->pending_richtext_messages = g_list_append(info->pending_richtext_messages, text); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1322 | break; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1323 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1324 | entry = g_list_next(entry); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1325 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1326 | g_free(handlerid); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1327 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1328 | return; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1329 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1330 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1331 | |
| 11414 | 1332 | /** |
| 1333 | * Dispatch a message received from a buddy. | |
| 1334 | * | |
| 15884 | 1335 | * @param gc PurpleConnection. |
| 11414 | 1336 | * @param ev Gadu-Gadu event structure. |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1337 | * |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1338 | * Image receiving, some code borrowed from Kadu http://www.kadu.net |
| 11414 | 1339 | */ |
| 15884 | 1340 | static void ggp_recv_message_handler(PurpleConnection *gc, const struct gg_event *ev) |
| 11414 | 1341 | { |
| 1342 | GGPInfo *info = gc->proto_data; | |
| 15884 | 1343 | PurpleConversation *conv; |
| 11414 | 1344 | gchar *from; |
| 1345 | gchar *msg; | |
| 1346 | gchar *tmp; | |
| 1347 | ||
| 1348 | from = g_strdup_printf("%lu", (unsigned long int)ev->event.msg.sender); | |
| 1349 | ||
| 12961 | 1350 | tmp = charset_convert((const char *)ev->event.msg.message, |
| 12007 | 1351 | "CP1250", "UTF-8"); |
| 15884 | 1352 | purple_str_strip_char(tmp, '\r'); |
| 12961 | 1353 | msg = g_markup_escape_text(tmp, -1); |
| 1354 | g_free(tmp); | |
| 11414 | 1355 | |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1356 | /* We got richtext message */ |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1357 | if (ev->event.msg.formats_length) |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1358 | { |
|
24746
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
1359 | gboolean got_image = FALSE, bold = FALSE, italic = FALSE, under = FALSE; |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1360 | char *cformats = (char *)ev->event.msg.formats; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1361 | char *cformats_end = cformats + ev->event.msg.formats_length; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1362 | gint increased_len = 0; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1363 | struct gg_msg_richtext_format *actformat; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1364 | struct gg_msg_richtext_image *actimage; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1365 | GString *message = g_string_new(msg); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1366 | gchar *handlerid; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1367 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1368 | purple_debug_info("gg", "ggp_recv_message_handler: richtext msg from (%s): %s %i formats\n", from, msg, ev->event.msg.formats_length); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1369 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1370 | while (cformats < cformats_end) |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1371 | { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1372 | gint byteoffset; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1373 | actformat = (struct gg_msg_richtext_format *)cformats; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1374 | cformats += sizeof(struct gg_msg_richtext_format); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1375 | byteoffset = g_utf8_offset_to_pointer(message->str, actformat->position + increased_len) - message->str; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1376 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1377 | if(actformat->position == 0 && actformat->font == 0) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1378 | purple_debug_warning("gg", "ggp_recv_message_handler: bogus formatting (inc: %i)\n", increased_len); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1379 | continue; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1380 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1381 | purple_debug_info("gg", "ggp_recv_message_handler: format at pos: %i, image:%i, bold:%i, italic: %i, under:%i (inc: %i)\n", |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1382 | actformat->position, |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1383 | (actformat->font & GG_FONT_IMAGE) != 0, |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1384 | (actformat->font & GG_FONT_BOLD) != 0, |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1385 | (actformat->font & GG_FONT_ITALIC) != 0, |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1386 | (actformat->font & GG_FONT_UNDERLINE) != 0, |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1387 | increased_len); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1388 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1389 | if (actformat->font & GG_FONT_IMAGE) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1390 | got_image = TRUE; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1391 | actimage = (struct gg_msg_richtext_image*)(cformats); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1392 | cformats += sizeof(struct gg_msg_richtext_image); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1393 | purple_debug_info("gg", "ggp_recv_message_handler: image received, size: %d, crc32: %i\n", actimage->size, actimage->crc32); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1394 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1395 | /* Checking for errors, image size shouldn't be |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1396 | * larger than 255.000 bytes */ |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1397 | if (actimage->size > 255000) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1398 | purple_debug_warning("gg", "ggp_recv_message_handler: received image large than 255 kb\n"); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1399 | continue; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1400 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1401 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1402 | gg_image_request(info->session, ev->event.msg.sender, |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1403 | actimage->size, actimage->crc32); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1404 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1405 | handlerid = g_strdup_printf("<IMG ID=\"IMGID_HANDLER-%i\">", actimage->crc32); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1406 | g_string_insert(message, byteoffset, handlerid); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1407 | increased_len += strlen(handlerid); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1408 | g_free(handlerid); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1409 | continue; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1410 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1411 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1412 | if (actformat->font & GG_FONT_BOLD) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1413 | if (bold == FALSE) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1414 | g_string_insert(message, byteoffset, "<b>"); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1415 | increased_len += 3; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1416 | bold = TRUE; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1417 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1418 | } else if (bold) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1419 | g_string_insert(message, byteoffset, "</b>"); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1420 | increased_len += 4; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1421 | bold = FALSE; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1422 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1423 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1424 | if (actformat->font & GG_FONT_ITALIC) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1425 | if (italic == FALSE) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1426 | g_string_insert(message, byteoffset, "<i>"); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1427 | increased_len += 3; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1428 | italic = TRUE; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1429 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1430 | } else if (italic) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1431 | g_string_insert(message, byteoffset, "</i>"); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1432 | increased_len += 4; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1433 | italic = FALSE; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1434 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1435 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1436 | if (actformat->font & GG_FONT_UNDERLINE) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1437 | if (under == FALSE) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1438 | g_string_insert(message, byteoffset, "<u>"); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1439 | increased_len += 3; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1440 | under = TRUE; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1441 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1442 | } else if (under) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1443 | g_string_insert(message, byteoffset, "</u>"); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1444 | increased_len += 4; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1445 | under = FALSE; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1446 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1447 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1448 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1449 | msg = message->str; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1450 | g_string_free(message, FALSE); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1451 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1452 | if (got_image) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1453 | info->pending_richtext_messages = g_list_append(info->pending_richtext_messages, msg); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1454 | return; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1455 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1456 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1457 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1458 | purple_debug_info("gg", "ggp_recv_message_handler: msg from (%s): %s (class = %d; rcpt_count = %d)\n", |
| 12961 | 1459 | from, msg, ev->event.msg.msgclass, |
| 12007 | 1460 | ev->event.msg.recipients_count); |
| 11414 | 1461 | |
| 1462 | if (ev->event.msg.recipients_count == 0) { | |
| 12961 | 1463 | serv_got_im(gc, from, msg, 0, ev->event.msg.time); |
| 11414 | 1464 | } else { |
|
12373
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1465 | const char *chat_name; |
|
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1466 | int chat_id; |
|
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1467 | char *buddy_name; |
|
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1468 | |
| 11414 | 1469 | chat_name = ggp_confer_find_by_participants(gc, |
| 12007 | 1470 | ev->event.msg.recipients, |
| 1471 | ev->event.msg.recipients_count); | |
| 12961 | 1472 | |
| 11414 | 1473 | if (chat_name == NULL) { |
| 1474 | chat_name = ggp_confer_add_new(gc, NULL); | |
| 1475 | serv_got_joined_chat(gc, info->chats_count, chat_name); | |
| 12007 | 1476 | |
| 1477 | ggp_confer_participants_add_uin(gc, chat_name, | |
| 1478 | ev->event.msg.sender); | |
| 1479 | ||
| 1480 | ggp_confer_participants_add(gc, chat_name, | |
| 1481 | ev->event.msg.recipients, | |
| 1482 | ev->event.msg.recipients_count); | |
| 11414 | 1483 | } |
| 1484 | conv = ggp_confer_find_by_name(gc, chat_name); | |
| 15884 | 1485 | chat_id = purple_conv_chat_get_id(PURPLE_CONV_CHAT(conv)); |
|
12373
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1486 | |
|
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1487 | buddy_name = ggp_buddy_get_name(gc, ev->event.msg.sender); |
|
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1488 | serv_got_chat_in(gc, chat_id, buddy_name, |
| 15884 | 1489 | PURPLE_MESSAGE_RECV, msg, ev->event.msg.time); |
|
12373
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1490 | g_free(buddy_name); |
| 11414 | 1491 | } |
| 12961 | 1492 | g_free(msg); |
| 11414 | 1493 | g_free(from); |
| 1494 | } | |
| 1495 | ||
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1496 | static void ggp_send_image_handler(PurpleConnection *gc, const struct gg_event *ev) |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1497 | { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1498 | GGPInfo *info = gc->proto_data; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1499 | PurpleStoredImage *image; |
|
24747
498c6dda6e48
Fix two warnings introduced by the image patch I committed earlier and make
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24746
diff
changeset
|
1500 | gint imgid = GPOINTER_TO_INT(g_hash_table_lookup(info->pending_images, &ev->event.image_request.crc32)); |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1501 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1502 | purple_debug_info("gg", "ggp_send_image_handler: image request received, crc32: %u\n", ev->event.image_request.crc32); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1503 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1504 | if(imgid) |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1505 | { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1506 | if((image = purple_imgstore_find_by_id(imgid))) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1507 | gint image_size = purple_imgstore_get_size(image); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1508 | gconstpointer image_bin = purple_imgstore_get_data(image); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1509 | const char *image_filename = purple_imgstore_get_filename(image); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1510 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1511 | purple_debug_info("gg", "ggp_send_image_handler: sending image imgid: %i, crc: %u\n", imgid, ev->event.image_request.crc32); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1512 | gg_image_reply(info->session, (unsigned long int)ev->event.image_request.sender, image_filename, image_bin, image_size); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1513 | purple_imgstore_unref(image); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1514 | } else { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1515 | purple_debug_error("gg", "ggp_send_image_handler: image imgid: %i, crc: %u in hash but not found in imgstore!\n", imgid, ev->event.image_request.crc32); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1516 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1517 | g_hash_table_remove(info->pending_images, &ev->event.image_request.crc32); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1518 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1519 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1520 | |
| 15884 | 1521 | static void ggp_callback_recv(gpointer _gc, gint fd, PurpleInputCondition cond) |
| 11414 | 1522 | { |
| 15884 | 1523 | PurpleConnection *gc = _gc; |
| 11414 | 1524 | GGPInfo *info = gc->proto_data; |
| 1525 | struct gg_event *ev; | |
| 1526 | int i; | |
| 1527 | ||
| 1528 | if (!(ev = gg_watch_fd(info->session))) { | |
| 15884 | 1529 | purple_debug_error("gg", |
| 12007 | 1530 | "ggp_callback_recv: gg_watch_fd failed -- CRITICAL!\n"); |
| 21279 | 1531 | purple_connection_error_reason (gc, |
| 1532 | PURPLE_CONNECTION_ERROR_NETWORK_ERROR, | |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
1533 | _("Unable to read from socket")); |
| 11414 | 1534 | return; |
| 1535 | } | |
|
22277
7c386db62c81
Don't send keep-alives if we've received data since in the last KEEPALIVE_INTERVAL seconds
Sean Egan <seanegan@pidgin.im>
parents:
21630
diff
changeset
|
1536 | gc->last_received = time(NULL); |
| 11414 | 1537 | switch (ev->type) { |
| 1538 | case GG_EVENT_NONE: | |
| 1539 | /* Nothing happened. */ | |
| 1540 | break; | |
| 1541 | case GG_EVENT_MSG: | |
| 1542 | ggp_recv_message_handler(gc, ev); | |
| 1543 | break; | |
| 1544 | case GG_EVENT_ACK: | |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1545 | /* Changing %u to %i fixes compiler warning */ |
| 15884 | 1546 | purple_debug_info("gg", |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1547 | "ggp_callback_recv: message sent to: %i, delivery status=%d, seq=%d\n", |
| 12007 | 1548 | ev->event.ack.recipient, ev->event.ack.status, |
| 1549 | ev->event.ack.seq); | |
| 11414 | 1550 | break; |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1551 | case GG_EVENT_IMAGE_REPLY: |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1552 | ggp_recv_image_handler(gc, ev); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1553 | break; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1554 | case GG_EVENT_IMAGE_REQUEST: |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1555 | ggp_send_image_handler(gc, ev); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1556 | break; |
| 11414 | 1557 | case GG_EVENT_NOTIFY: |
| 1558 | case GG_EVENT_NOTIFY_DESCR: | |
| 1559 | { | |
| 1560 | struct gg_notify_reply *n; | |
| 1561 | char *descr; | |
| 1562 | ||
| 15884 | 1563 | purple_debug_info("gg", "notify_pre: (%d) status: %d\n", |
| 11414 | 1564 | ev->event.notify->uin, |
| 1565 | ev->event.notify->status); | |
| 1566 | ||
| 1567 | n = (ev->type == GG_EVENT_NOTIFY) ? ev->event.notify | |
| 1568 | : ev->event.notify_descr.notify; | |
| 1569 | ||
| 1570 | for (; n->uin; n++) { | |
| 1571 | descr = (ev->type == GG_EVENT_NOTIFY) ? NULL | |
| 12007 | 1572 | : ev->event.notify_descr.descr; |
| 1573 | ||
| 15884 | 1574 | purple_debug_info("gg", |
| 12007 | 1575 | "notify: (%d) status: %d; descr: %s\n", |
|
14524
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1576 | n->uin, n->status, descr ? descr : "(null)"); |
| 11414 | 1577 | |
| 1578 | ggp_generic_status_handler(gc, | |
| 12007 | 1579 | n->uin, n->status, descr); |
| 11414 | 1580 | } |
| 1581 | } | |
| 1582 | break; | |
| 1583 | case GG_EVENT_NOTIFY60: | |
| 15884 | 1584 | purple_debug_info("gg", |
| 12007 | 1585 | "notify60_pre: (%d) status=%d; version=%d; descr=%s\n", |
| 1586 | ev->event.notify60->uin, ev->event.notify60->status, | |
|
14524
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1587 | ev->event.notify60->version, |
|
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1588 | ev->event.notify60->descr ? ev->event.notify60->descr : "(null)"); |
| 11414 | 1589 | |
| 1590 | for (i = 0; ev->event.notify60[i].uin; i++) { | |
| 15884 | 1591 | purple_debug_info("gg", |
| 12007 | 1592 | "notify60: (%d) status=%d; version=%d; descr=%s\n", |
| 1593 | ev->event.notify60[i].uin, | |
| 1594 | ev->event.notify60[i].status, | |
| 1595 | ev->event.notify60[i].version, | |
|
14524
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1596 | ev->event.notify60[i].descr ? ev->event.notify60[i].descr : "(null)"); |
| 11414 | 1597 | |
| 12007 | 1598 | ggp_generic_status_handler(gc, ev->event.notify60[i].uin, |
| 1599 | ev->event.notify60[i].status, | |
| 1600 | ev->event.notify60[i].descr); | |
| 11414 | 1601 | } |
| 1602 | break; | |
| 1603 | case GG_EVENT_STATUS: | |
| 15884 | 1604 | purple_debug_info("gg", "status: (%d) status=%d; descr=%s\n", |
| 11414 | 1605 | ev->event.status.uin, ev->event.status.status, |
|
14524
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1606 | ev->event.status.descr ? ev->event.status.descr : "(null)"); |
| 11414 | 1607 | |
| 12007 | 1608 | ggp_generic_status_handler(gc, ev->event.status.uin, |
| 1609 | ev->event.status.status, ev->event.status.descr); | |
| 11414 | 1610 | break; |
| 1611 | case GG_EVENT_STATUS60: | |
| 15884 | 1612 | purple_debug_info("gg", |
| 12007 | 1613 | "status60: (%d) status=%d; version=%d; descr=%s\n", |
| 1614 | ev->event.status60.uin, ev->event.status60.status, | |
|
14524
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1615 | ev->event.status60.version, |
|
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1616 | ev->event.status60.descr ? ev->event.status60.descr : "(null)"); |
| 11414 | 1617 | |
| 12007 | 1618 | ggp_generic_status_handler(gc, ev->event.status60.uin, |
| 1619 | ev->event.status60.status, ev->event.status60.descr); | |
| 11414 | 1620 | break; |
| 1621 | case GG_EVENT_USERLIST: | |
| 1622 | if (ev->event.userlist.type == GG_USERLIST_GET_REPLY) { | |
| 15884 | 1623 | purple_debug_info("gg", "GG_USERLIST_GET_REPLY\n"); |
| 1624 | purple_notify_info(gc, NULL, | |
| 12220 | 1625 | _("Buddy list downloaded"), |
| 1626 | _("Your buddy list was downloaded from the server.")); | |
| 11414 | 1627 | if (ev->event.userlist.reply != NULL) { |
| 12007 | 1628 | ggp_buddylist_load(gc, ev->event.userlist.reply); |
| 11414 | 1629 | } |
| 1630 | } else { | |
| 15884 | 1631 | purple_debug_info("gg", "GG_USERLIST_PUT_REPLY\n"); |
| 1632 | purple_notify_info(gc, NULL, | |
| 12220 | 1633 | _("Buddy list uploaded"), |
| 1634 | _("Your buddy list was stored on the server.")); | |
| 11414 | 1635 | } |
| 1636 | break; | |
| 1637 | case GG_EVENT_PUBDIR50_SEARCH_REPLY: | |
| 12007 | 1638 | ggp_pubdir_reply_handler(gc, ev->event.pubdir50); |
| 1639 | break; | |
| 1640 | default: | |
| 15884 | 1641 | purple_debug_error("gg", |
| 12007 | 1642 | "unsupported event type=%d\n", ev->type); |
| 1643 | break; | |
| 1644 | } | |
| 11414 | 1645 | |
| 12007 | 1646 | gg_free_event(ev); |
| 1647 | } | |
| 11414 | 1648 | |
| 15884 | 1649 | static void ggp_async_login_handler(gpointer _gc, gint fd, PurpleInputCondition cond) |
| 12007 | 1650 | { |
| 15884 | 1651 | PurpleConnection *gc = _gc; |
|
15419
c8f83c72739d
[gaim-migrate @ 18150]
Evan Schoenberg <evands@pidgin.im>
parents:
15294
diff
changeset
|
1652 | GGPInfo *info; |
| 12007 | 1653 | struct gg_event *ev; |
| 11414 | 1654 | |
| 15884 | 1655 | g_return_if_fail(PURPLE_CONNECTION_IS_VALID(gc)); |
|
15419
c8f83c72739d
[gaim-migrate @ 18150]
Evan Schoenberg <evands@pidgin.im>
parents:
15294
diff
changeset
|
1656 | |
|
c8f83c72739d
[gaim-migrate @ 18150]
Evan Schoenberg <evands@pidgin.im>
parents:
15294
diff
changeset
|
1657 | info = gc->proto_data; |
|
c8f83c72739d
[gaim-migrate @ 18150]
Evan Schoenberg <evands@pidgin.im>
parents:
15294
diff
changeset
|
1658 | |
| 15884 | 1659 | purple_debug_info("gg", "login_handler: session: check = %d; state = %d;\n", |
| 12007 | 1660 | info->session->check, info->session->state); |
| 11414 | 1661 | |
| 12007 | 1662 | switch (info->session->state) { |
| 1663 | case GG_STATE_RESOLVING: | |
| 15884 | 1664 | purple_debug_info("gg", "GG_STATE_RESOLVING\n"); |
| 12007 | 1665 | break; |
| 1666 | case GG_STATE_CONNECTING_HUB: | |
| 15884 | 1667 | purple_debug_info("gg", "GG_STATE_CONNECTING_HUB\n"); |
| 12007 | 1668 | break; |
| 1669 | case GG_STATE_READING_DATA: | |
| 15884 | 1670 | purple_debug_info("gg", "GG_STATE_READING_DATA\n"); |
| 12007 | 1671 | break; |
| 1672 | case GG_STATE_CONNECTING_GG: | |
| 15884 | 1673 | purple_debug_info("gg", "GG_STATE_CONNECTING_GG\n"); |
| 12007 | 1674 | break; |
| 1675 | case GG_STATE_READING_KEY: | |
| 15884 | 1676 | purple_debug_info("gg", "GG_STATE_READING_KEY\n"); |
| 12007 | 1677 | break; |
| 1678 | case GG_STATE_READING_REPLY: | |
| 15884 | 1679 | purple_debug_info("gg", "GG_STATE_READING_REPLY\n"); |
| 11414 | 1680 | break; |
| 1681 | default: | |
| 15884 | 1682 | purple_debug_error("gg", "unknown state = %d\n", |
| 12007 | 1683 | info->session->state); |
| 1684 | break; | |
| 1685 | } | |
| 1686 | ||
| 1687 | if (!(ev = gg_watch_fd(info->session))) { | |
| 15884 | 1688 | purple_debug_error("gg", "login_handler: gg_watch_fd failed!\n"); |
| 21279 | 1689 | purple_connection_error_reason (gc, |
| 1690 | PURPLE_CONNECTION_ERROR_NETWORK_ERROR, | |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
1691 | _("Unable to read from socket")); |
| 12007 | 1692 | return; |
| 1693 | } | |
| 15884 | 1694 | purple_debug_info("gg", "login_handler: session->fd = %d\n", info->session->fd); |
| 1695 | purple_debug_info("gg", "login_handler: session: check = %d; state = %d;\n", | |
| 12007 | 1696 | info->session->check, info->session->state); |
| 1697 | ||
| 15884 | 1698 | purple_input_remove(gc->inpa); |
| 12007 | 1699 | |
| 1700 | /** XXX I think that this shouldn't be done if ev->type is GG_EVENT_CONN_FAILED or GG_EVENT_CONN_SUCCESS -datallah */ | |
| 15884 | 1701 | gc->inpa = purple_input_add(info->session->fd, |
| 1702 | (info->session->check == 1) ? PURPLE_INPUT_WRITE | |
| 1703 | : PURPLE_INPUT_READ, | |
| 12007 | 1704 | ggp_async_login_handler, gc); |
| 1705 | ||
| 1706 | switch (ev->type) { | |
| 1707 | case GG_EVENT_NONE: | |
| 1708 | /* Nothing happened. */ | |
| 15884 | 1709 | purple_debug_info("gg", "GG_EVENT_NONE\n"); |
| 12007 | 1710 | break; |
| 1711 | case GG_EVENT_CONN_SUCCESS: | |
| 12964 | 1712 | { |
| 15884 | 1713 | purple_debug_info("gg", "GG_EVENT_CONN_SUCCESS\n"); |
| 1714 | purple_input_remove(gc->inpa); | |
| 1715 | gc->inpa = purple_input_add(info->session->fd, | |
| 1716 | PURPLE_INPUT_READ, | |
| 12964 | 1717 | ggp_callback_recv, gc); |
|
27642
6ae79601ad84
Patch from kkszysiu to make the GG prpl support
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27626
diff
changeset
|
1718 | |
|
6ae79601ad84
Patch from kkszysiu to make the GG prpl support
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27626
diff
changeset
|
1719 | ggp_buddylist_send(gc); |
|
6ae79601ad84
Patch from kkszysiu to make the GG prpl support
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27626
diff
changeset
|
1720 | purple_connection_update_progress(gc, _("Connected"), 2, 2); |
| 15884 | 1721 | purple_connection_set_state(gc, PURPLE_CONNECTED); |
| 12964 | 1722 | } |
| 12007 | 1723 | break; |
| 1724 | case GG_EVENT_CONN_FAILED: | |
| 15884 | 1725 | purple_input_remove(gc->inpa); |
| 12007 | 1726 | gc->inpa = 0; |
|
20437
6596f4984a50
Modify gadu-gadu to use purple_connection_error_reason. I'm not sure about
Will Thompson <resiak@pidgin.im>
parents:
19897
diff
changeset
|
1727 | purple_connection_error_reason (gc, |
| 21279 | 1728 | PURPLE_CONNECTION_ERROR_NETWORK_ERROR, |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
1729 | _("Connection failed")); |
| 12007 | 1730 | break; |
| 1731 | default: | |
| 15884 | 1732 | purple_debug_error("gg", "strange event: %d\n", ev->type); |
| 11414 | 1733 | break; |
| 1734 | } | |
| 1735 | ||
| 1736 | gg_free_event(ev); | |
| 1737 | } | |
| 1738 | ||
| 1739 | /* ---------------------------------------------------------------------- */ | |
| 15884 | 1740 | /* ----- PurplePluginProtocolInfo ----------------------------------------- */ |
| 11360 | 1741 | /* ---------------------------------------------------------------------- */ |
| 1742 | ||
| 15884 | 1743 | static const char *ggp_list_icon(PurpleAccount *account, PurpleBuddy *buddy) |
| 11360 | 1744 | { |
| 1745 | return "gadu-gadu"; | |
| 1746 | } | |
| 1747 | ||
| 15884 | 1748 | static char *ggp_status_text(PurpleBuddy *b) |
|
2846
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1749 | { |
| 15884 | 1750 | PurpleStatus *status; |
| 11360 | 1751 | const char *msg; |
| 1752 | char *text; | |
| 1753 | char *tmp; | |
|
2846
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1754 | |
| 15884 | 1755 | status = purple_presence_get_active_status(purple_buddy_get_presence(b)); |
|
2846
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1756 | |
| 15884 | 1757 | msg = purple_status_get_attr_string(status, "message"); |
|
2846
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1758 | |
| 11360 | 1759 | if (msg != NULL) { |
| 15884 | 1760 | tmp = purple_markup_strip_html(msg); |
| 11360 | 1761 | text = g_markup_escape_text(tmp, -1); |
| 1762 | g_free(tmp); | |
|
2846
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1763 | |
| 11360 | 1764 | return text; |
| 1765 | } else { | |
| 15884 | 1766 | tmp = purple_utf8_salvage(purple_status_get_name(status)); |
| 11360 | 1767 | text = g_markup_escape_text(tmp, -1); |
| 1768 | g_free(tmp); | |
| 1769 | ||
| 1770 | return text; | |
| 8997 | 1771 | } |
|
2846
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1772 | } |
|
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1773 | |
| 15884 | 1774 | static void ggp_tooltip_text(PurpleBuddy *b, PurpleNotifyUserInfo *user_info, gboolean full) |
| 11360 | 1775 | { |
| 15884 | 1776 | PurpleStatus *status; |
|
15205
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
15196
diff
changeset
|
1777 | char *text, *tmp; |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1778 | const char *msg, *name, *alias; |
| 11360 | 1779 | |
| 15005 | 1780 | g_return_if_fail(b != NULL); |
| 1781 | ||
| 15884 | 1782 | status = purple_presence_get_active_status(purple_buddy_get_presence(b)); |
| 1783 | msg = purple_status_get_attr_string(status, "message"); | |
| 1784 | name = purple_status_get_name(status); | |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1785 | alias = purple_buddy_get_alias(b); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1786 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1787 | purple_notify_user_info_add_pair (user_info, _("Alias"), alias); |
| 11360 | 1788 | |
| 1789 | if (msg != NULL) { | |
| 13455 | 1790 | text = g_markup_escape_text(msg, -1); |
| 15884 | 1791 | if (PURPLE_BUDDY_IS_ONLINE(b)) { |
|
15205
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
15196
diff
changeset
|
1792 | tmp = g_strdup_printf("%s: %s", name, text); |
| 15884 | 1793 | purple_notify_user_info_add_pair(user_info, _("Status"), tmp); |
|
15205
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
15196
diff
changeset
|
1794 | g_free(tmp); |
| 15196 | 1795 | } else { |
| 15884 | 1796 | purple_notify_user_info_add_pair(user_info, _("Message"), text); |
| 15196 | 1797 | } |
| 11360 | 1798 | g_free(text); |
| 15227 | 1799 | /* We don't want to duplicate 'Status: Offline'. */ |
| 15884 | 1800 | } else if (PURPLE_BUDDY_IS_ONLINE(b)) { |
| 1801 | purple_notify_user_info_add_pair(user_info, _("Status"), name); | |
| 11360 | 1802 | } |
| 1803 | } | |
| 1804 | ||
| 15884 | 1805 | static GList *ggp_status_types(PurpleAccount *account) |
| 11360 | 1806 | { |
| 15884 | 1807 | PurpleStatusType *type; |
| 11360 | 1808 | GList *types = NULL; |
| 1809 | ||
| 15884 | 1810 | type = purple_status_type_new_with_attrs( |
| 1811 | PURPLE_STATUS_AVAILABLE, NULL, NULL, TRUE, TRUE, FALSE, | |
| 1812 | "message", _("Message"), purple_value_new(PURPLE_TYPE_STRING), | |
|
12595
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1813 | NULL); |
| 11360 | 1814 | types = g_list_append(types, type); |
| 1815 | ||
| 1816 | /* | |
|
11638
1821b40269a3
[gaim-migrate @ 13914]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11565
diff
changeset
|
1817 | * Without this selecting Invisible as own status doesn't |
| 11360 | 1818 | * work. It's not used and not needed to show status of buddies. |
| 1819 | */ | |
| 15884 | 1820 | type = purple_status_type_new_with_attrs( |
| 1821 | PURPLE_STATUS_INVISIBLE, NULL, NULL, TRUE, TRUE, FALSE, | |
| 1822 | "message", _("Message"), purple_value_new(PURPLE_TYPE_STRING), | |
|
12595
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1823 | NULL); |
| 11360 | 1824 | types = g_list_append(types, type); |
| 1825 | ||
| 15884 | 1826 | type = purple_status_type_new_with_attrs( |
| 1827 | PURPLE_STATUS_AWAY, NULL, NULL, TRUE, TRUE, FALSE, | |
| 1828 | "message", _("Message"), purple_value_new(PURPLE_TYPE_STRING), | |
|
12595
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1829 | NULL); |
| 11360 | 1830 | types = g_list_append(types, type); |
| 1831 | ||
| 12964 | 1832 | /* |
| 1833 | * This status is necessary to display guys who are blocking *us*. | |
| 1834 | */ | |
| 15884 | 1835 | type = purple_status_type_new_with_attrs( |
| 1836 | PURPLE_STATUS_INVISIBLE, "blocked", _("Blocked"), TRUE, FALSE, FALSE, | |
| 1837 | "message", _("Message"), purple_value_new(PURPLE_TYPE_STRING), NULL); | |
| 11360 | 1838 | types = g_list_append(types, type); |
| 1839 | ||
| 15884 | 1840 | type = purple_status_type_new_with_attrs( |
| 1841 | PURPLE_STATUS_OFFLINE, NULL, NULL, TRUE, TRUE, FALSE, | |
| 1842 | "message", _("Message"), purple_value_new(PURPLE_TYPE_STRING), | |
|
12658
4aa7a873628d
[gaim-migrate @ 15001]
Mark Doliner <markdoliner@pidgin.im>
parents:
12645
diff
changeset
|
1843 | NULL); |
|
4aa7a873628d
[gaim-migrate @ 15001]
Mark Doliner <markdoliner@pidgin.im>
parents:
12645
diff
changeset
|
1844 | types = g_list_append(types, type); |
|
4aa7a873628d
[gaim-migrate @ 15001]
Mark Doliner <markdoliner@pidgin.im>
parents:
12645
diff
changeset
|
1845 | |
| 11360 | 1846 | return types; |
| 1847 | } | |
| 1848 | ||
| 15884 | 1849 | static GList *ggp_blist_node_menu(PurpleBlistNode *node) |
| 2393 | 1850 | { |
| 15884 | 1851 | PurpleMenuAction *act; |
| 2393 | 1852 | GList *m = NULL; |
|
25430
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
1853 | PurpleAccount *account; |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
1854 | GGPInfo *info; |
|
4333
f4c095774bc2
[gaim-migrate @ 4597]
Mark Doliner <markdoliner@pidgin.im>
parents:
4229
diff
changeset
|
1855 | |
| 15884 | 1856 | if (!PURPLE_BLIST_NODE_IS_BUDDY(node)) |
| 11360 | 1857 | return NULL; |
|
4333
f4c095774bc2
[gaim-migrate @ 4597]
Mark Doliner <markdoliner@pidgin.im>
parents:
4229
diff
changeset
|
1858 | |
|
25430
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
1859 | account = purple_buddy_get_account((PurpleBuddy *) node); |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
1860 | info = purple_account_get_connection(account)->proto_data; |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
1861 | if (info->chats) { |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
1862 | act = purple_menu_action_new(_("Add to chat"), |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
1863 | PURPLE_CALLBACK(ggp_bmenu_add_to_chat), |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
1864 | NULL, NULL); |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
1865 | m = g_list_append(m, act); |
|
78be70c986d3
Fix some bogocity related to the GG "Add To Chat" menu item. Fixes #8112.
Daniel Atallah <datallah@pidgin.im>
parents:
24747
diff
changeset
|
1866 | } |
| 11410 | 1867 | |
| 12641 | 1868 | /* Using a blist node boolean here is also wrong. |
| 1869 | * Once the Block and Unblock actions are added to the core, | |
| 1870 | * this will have to go. -- rlaager */ | |
| 15884 | 1871 | if (purple_blist_node_get_bool(node, "blocked")) { |
| 1872 | act = purple_menu_action_new(_("Unblock"), | |
| 1873 | PURPLE_CALLBACK(ggp_bmenu_block), | |
| 12919 | 1874 | NULL, NULL); |
| 12007 | 1875 | } else { |
| 15884 | 1876 | act = purple_menu_action_new(_("Block"), |
| 1877 | PURPLE_CALLBACK(ggp_bmenu_block), | |
| 12919 | 1878 | NULL, NULL); |
| 12007 | 1879 | } |
| 11394 | 1880 | m = g_list_append(m, act); |
| 2393 | 1881 | |
| 1882 | return m; | |
| 1883 | } | |
| 1884 | ||
| 15884 | 1885 | static GList *ggp_chat_info(PurpleConnection *gc) |
| 11394 | 1886 | { |
| 1887 | GList *m = NULL; | |
| 1888 | struct proto_chat_entry *pce; | |
| 1889 | ||
| 1890 | pce = g_new0(struct proto_chat_entry, 1); | |
| 1891 | pce->label = _("Chat _name:"); | |
| 1892 | pce->identifier = "name"; | |
| 1893 | pce->required = TRUE; | |
| 1894 | m = g_list_append(m, pce); | |
| 1895 | ||
| 1896 | return m; | |
| 1897 | } | |
| 1898 | ||
| 15884 | 1899 | static void ggp_login(PurpleAccount *account) |
| 2393 | 1900 | { |
| 15884 | 1901 | PurpleConnection *gc; |
|
23382
8dfecaa62e66
Restore status on login on GG, rather than setting Available first.
Will Thompson <resiak@pidgin.im>
parents:
23381
diff
changeset
|
1902 | PurplePresence *presence; |
|
8dfecaa62e66
Restore status on login on GG, rather than setting Available first.
Will Thompson <resiak@pidgin.im>
parents:
23381
diff
changeset
|
1903 | PurpleStatus *status; |
| 13515 | 1904 | struct gg_login_params *glp; |
| 1905 | GGPInfo *info; | |
|
27255
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1906 | const char *address; |
| 13515 | 1907 | |
| 1908 | if (ggp_setup_proxy(account) == -1) | |
| 1909 | return; | |
| 1910 | ||
| 15884 | 1911 | gc = purple_account_get_connection(account); |
| 13515 | 1912 | glp = g_new0(struct gg_login_params, 1); |
| 1913 | info = g_new0(GGPInfo, 1); | |
| 11360 | 1914 | |
| 12007 | 1915 | /* Probably this should be moved to *_new() function. */ |
| 11360 | 1916 | info->session = NULL; |
| 11394 | 1917 | info->chats = NULL; |
| 1918 | info->chats_count = 0; | |
| 12007 | 1919 | info->token = NULL; |
| 13641 | 1920 | info->searches = ggp_search_new(); |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1921 | info->pending_richtext_messages = NULL; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1922 | info->pending_images = g_hash_table_new(g_int_hash, g_int_equal); |
| 11360 | 1923 | |
| 1924 | gc->proto_data = info; | |
| 1925 | ||
| 1926 | glp->uin = ggp_get_uin(account); | |
|
34022
c49f6e9ea27d
Make all the prpls build.
Paul Aurich <darkrain42@pidgin.im>
parents:
27642
diff
changeset
|
1927 | glp->password = (char *)purple_connection_get_password(gc); |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1928 | glp->image_size = 255; |
| 11360 | 1929 | |
|
23382
8dfecaa62e66
Restore status on login on GG, rather than setting Available first.
Will Thompson <resiak@pidgin.im>
parents:
23381
diff
changeset
|
1930 | presence = purple_account_get_presence(account); |
|
8dfecaa62e66
Restore status on login on GG, rather than setting Available first.
Will Thompson <resiak@pidgin.im>
parents:
23381
diff
changeset
|
1931 | status = purple_presence_get_active_status(presence); |
|
8dfecaa62e66
Restore status on login on GG, rather than setting Available first.
Will Thompson <resiak@pidgin.im>
parents:
23381
diff
changeset
|
1932 | |
| 12007 | 1933 | glp->async = 1; |
|
23382
8dfecaa62e66
Restore status on login on GG, rather than setting Available first.
Will Thompson <resiak@pidgin.im>
parents:
23381
diff
changeset
|
1934 | glp->status = ggp_to_gg_status(status, &glp->status_descr); |
| 11360 | 1935 | glp->tls = 0; |
| 1936 | ||
|
27255
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1937 | address = purple_account_get_string(account, "gg_server", ""); |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1938 | if (address && *address) { |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
1939 | /* TODO: Make this non-blocking */ |
|
27255
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1940 | struct in_addr *addr = gg_gethostbyname(address); |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1941 | |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1942 | purple_debug_info("gg", "Using gg server given by user (%s)\n", address); |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1943 | |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1944 | if (addr == NULL) { |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
1945 | gchar *tmp = g_strdup_printf(_("Unable to resolve hostname '%s': %s"), |
|
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
1946 | address, g_strerror(errno)); |
|
27255
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1947 | purple_connection_error_reason(gc, |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1948 | PURPLE_CONNECTION_ERROR_NETWORK_ERROR, /* should this be a settings error? */ |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
1949 | tmp); |
|
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
1950 | g_free(tmp); |
|
27255
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1951 | return; |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1952 | } |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1953 | |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1954 | glp->server_addr = inet_addr(inet_ntoa(*addr)); |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1955 | glp->server_port = 8074; |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1956 | } else |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1957 | purple_debug_info("gg", "Trying to retrieve address from gg appmsg service\n"); |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
1958 | |
| 11360 | 1959 | info->session = gg_login(glp); |
|
27642
6ae79601ad84
Patch from kkszysiu to make the GG prpl support
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27626
diff
changeset
|
1960 | purple_connection_update_progress(gc, _("Connecting"), 1, 2); |
| 11360 | 1961 | if (info->session == NULL) { |
| 21279 | 1962 | purple_connection_error_reason (gc, |
| 1963 | PURPLE_CONNECTION_ERROR_NETWORK_ERROR, | |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
1964 | _("Connection failed")); |
| 11360 | 1965 | g_free(glp); |
| 1966 | return; | |
| 1967 | } | |
| 15884 | 1968 | gc->inpa = purple_input_add(info->session->fd, PURPLE_INPUT_READ, |
| 12007 | 1969 | ggp_async_login_handler, gc); |
| 11360 | 1970 | } |
| 1971 | ||
| 15884 | 1972 | static void ggp_close(PurpleConnection *gc) |
| 11360 | 1973 | { |
| 8997 | 1974 | |
| 11360 | 1975 | if (gc == NULL) { |
| 15884 | 1976 | purple_debug_info("gg", "gc == NULL\n"); |
| 11360 | 1977 | return; |
| 1978 | } | |
| 1979 | ||
|
11538
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
1980 | if (gc->proto_data) { |
| 15884 | 1981 | PurpleAccount *account = purple_connection_get_account(gc); |
| 1982 | PurpleStatus *status; | |
|
11538
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
1983 | GGPInfo *info = gc->proto_data; |
| 12964 | 1984 | |
| 15884 | 1985 | status = purple_account_get_active_status(account); |
| 12964 | 1986 | |
|
11538
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
1987 | if (info->session != NULL) { |
| 12964 | 1988 | ggp_set_status(account, status); |
|
11538
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
1989 | gg_logoff(info->session); |
|
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
1990 | gg_free_session(info->session); |
|
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
1991 | } |
| 13641 | 1992 | |
|
14060
e1a87aabd80c
[gaim-migrate @ 16583]
Evan Schoenberg <evands@pidgin.im>
parents:
13645
diff
changeset
|
1993 | /* Immediately close any notifications on this handle since that process depends |
|
e1a87aabd80c
[gaim-migrate @ 16583]
Evan Schoenberg <evands@pidgin.im>
parents:
13645
diff
changeset
|
1994 | * upon the contents of info->searches, which we are about to destroy. |
|
e1a87aabd80c
[gaim-migrate @ 16583]
Evan Schoenberg <evands@pidgin.im>
parents:
13645
diff
changeset
|
1995 | */ |
| 15884 | 1996 | purple_notify_close_with_handle(gc); |
|
14060
e1a87aabd80c
[gaim-migrate @ 16583]
Evan Schoenberg <evands@pidgin.im>
parents:
13645
diff
changeset
|
1997 | |
| 13641 | 1998 | ggp_search_destroy(info->searches); |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
1999 | g_list_free(info->pending_richtext_messages); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2000 | g_hash_table_destroy(info->pending_images); |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
2001 | g_free(info); |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
2002 | gc->proto_data = NULL; |
|
11538
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
2003 | } |
| 11360 | 2004 | |
| 2005 | if (gc->inpa > 0) | |
| 15884 | 2006 | purple_input_remove(gc->inpa); |
| 11360 | 2007 | |
| 15884 | 2008 | purple_debug_info("gg", "Connection closed.\n"); |
| 11360 | 2009 | } |
| 2010 | ||
| 15884 | 2011 | static int ggp_send_im(PurpleConnection *gc, const char *who, const char *msg, |
| 2012 | PurpleMessageFlags flags) | |
| 11360 | 2013 | { |
| 2014 | GGPInfo *info = gc->proto_data; | |
|
12216
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
2015 | char *tmp, *plain; |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2016 | int ret = 1; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2017 | unsigned char format[1024]; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2018 | unsigned int format_length = sizeof(struct gg_msg_richtext); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2019 | gint pos = 0; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2020 | GData *attribs; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2021 | const char *start, *end = NULL, *last; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2022 | |
|
24747
498c6dda6e48
Fix two warnings introduced by the image patch I committed earlier and make
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24746
diff
changeset
|
2023 | if (msg == NULL || *msg == '\0') { |
| 15287 | 2024 | return 0; |
| 2025 | } | |
| 2026 | ||
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2027 | last = msg; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2028 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2029 | /* Check if the message is richtext */ |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2030 | /* TODO: Check formatting, too */ |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2031 | if(purple_markup_find_tag("img", last, &start, &end, &attribs)) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2032 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2033 | GString *string_buffer = g_string_new(NULL); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2034 | struct gg_msg_richtext fmt; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2035 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2036 | do { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2037 | PurpleStoredImage *image; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2038 | const char *id; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2039 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2040 | /* Add text before the image */ |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2041 | if(start - last) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2042 | pos = pos + g_utf8_strlen(last, start - last); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2043 | g_string_append_len(string_buffer, last, start - last); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2044 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2045 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2046 | if((id = g_datalist_get_data(&attribs, "id")) && (image = purple_imgstore_find_by_id(atoi(id)))) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2047 | struct gg_msg_richtext_format actformat; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2048 | struct gg_msg_richtext_image actimage; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2049 | gint image_size = purple_imgstore_get_size(image); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2050 | gconstpointer image_bin = purple_imgstore_get_data(image); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2051 | const char *image_filename = purple_imgstore_get_filename(image); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2052 | uint32_t crc32 = gg_crc32(0, image_bin, image_size); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2053 | |
|
24747
498c6dda6e48
Fix two warnings introduced by the image patch I committed earlier and make
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24746
diff
changeset
|
2054 | g_hash_table_insert(info->pending_images, &crc32, GINT_TO_POINTER(atoi(id))); |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2055 | purple_imgstore_ref(image); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2056 | purple_debug_info("gg", "ggp_send_im_richtext: got crc: %i for imgid: %i\n", crc32, atoi(id)); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2057 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2058 | actformat.font = GG_FONT_IMAGE; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2059 | actformat.position = pos; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2060 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2061 | actimage.unknown1 = 0x0109; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2062 | actimage.size = gg_fix32(image_size); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2063 | actimage.crc32 = gg_fix32(crc32); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2064 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2065 | if (actimage.size > 255000) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2066 | purple_debug_warning("gg", "ggp_send_im_richtext: image over 255kb!\n"); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2067 | continue; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2068 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2069 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2070 | purple_debug_info("gg", "ggp_send_im_richtext: adding images to richtext, size: %i, crc32: %u, name: %s\n", actimage.size, actimage.crc32, image_filename); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2071 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2072 | memcpy(format + format_length, &actformat, sizeof(actformat)); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2073 | format_length += sizeof(actformat); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2074 | memcpy(format + format_length, &actimage, sizeof(actimage)); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2075 | format_length += sizeof(actimage); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2076 | } else { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2077 | purple_debug_error("gg", "ggp_send_im_richtext: image not found in the image store!"); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2078 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2079 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2080 | last = end + 1; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2081 | g_datalist_clear(&attribs); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2082 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2083 | } while(purple_markup_find_tag("img", last, &start, &end, &attribs)); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2084 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2085 | /* Add text after the images */ |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2086 | if(last && *last) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2087 | pos = pos + g_utf8_strlen(last, -1); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2088 | g_string_append(string_buffer, last); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2089 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2090 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2091 | fmt.flag = 2; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2092 | fmt.length = format_length - sizeof(fmt); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2093 | memcpy(format, &fmt, sizeof(fmt)); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2094 | |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2095 | purple_debug_info("gg", "ggp_send_im: richtext msg = %s\n", string_buffer->str); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2096 | plain = purple_unescape_html(string_buffer->str); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2097 | g_string_free(string_buffer, TRUE); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2098 | } else { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2099 | purple_debug_info("gg", "ggp_send_im: msg = %s\n", msg); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2100 | plain = purple_unescape_html(msg); |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2101 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2102 | |
| 15287 | 2103 | tmp = charset_convert(plain, "UTF-8", "CP1250"); |
| 11360 | 2104 | |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2105 | if (tmp && (format_length - sizeof(struct gg_msg_richtext))) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2106 | if(gg_send_message_richtext(info->session, GG_CLASS_CHAT, ggp_str_to_uin(who), (unsigned char *)tmp, format, format_length) < 0) { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2107 | ret = -1; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2108 | } else { |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2109 | ret = 1; |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2110 | } |
|
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2111 | } else if (NULL == tmp || *tmp == 0) { |
| 15287 | 2112 | ret = 0; |
| 2113 | } else if (strlen(tmp) > GG_MSG_MAXSIZE) { | |
| 2114 | ret = -E2BIG; | |
| 2115 | } else if (gg_send_message(info->session, GG_CLASS_CHAT, | |
| 2116 | ggp_str_to_uin(who), (unsigned char *)tmp) < 0) { | |
| 2117 | ret = -1; | |
| 2118 | } else { | |
| 2119 | ret = 1; | |
| 2120 | } | |
| 2121 | ||
|
12216
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
2122 | g_free(plain); |
| 11565 | 2123 | g_free(tmp); |
| 11360 | 2124 | |
| 15287 | 2125 | return ret; |
| 11360 | 2126 | } |
| 2127 | ||
| 15884 | 2128 | static void ggp_get_info(PurpleConnection *gc, const char *name) |
| 11360 | 2129 | { |
| 2130 | GGPInfo *info = gc->proto_data; | |
| 2131 | GGPSearchForm *form; | |
| 13641 | 2132 | guint32 seq; |
| 2393 | 2133 | |
| 13641 | 2134 | form = ggp_search_form_new(GGP_SEARCH_TYPE_INFO); |
| 12220 | 2135 | |
| 13641 | 2136 | form->user_data = info; |
| 11360 | 2137 | form->uin = g_strdup(name); |
| 2138 | form->offset = g_strdup("0"); | |
| 2139 | form->last_uin = g_strdup("0"); | |
| 2140 | ||
| 13641 | 2141 | seq = ggp_search_start(gc, form); |
| 2142 | ggp_search_add(info->searches, seq, form); | |
|
23584
886e1611b952
Gadu-Gadu Get Info isn't behaving properly. Added debug logging to its traking
Evan Schoenberg <evands@pidgin.im>
parents:
23382
diff
changeset
|
2143 | purple_debug_info("gg", "ggp_get_info(): Added seq %u", seq); |
| 11360 | 2144 | } |
| 2145 | ||
|
23380
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2146 | static int ggp_to_gg_status(PurpleStatus *status, char **msg) |
| 11360 | 2147 | { |
|
23380
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2148 | const char *status_id = purple_status_get_id(status); |
| 11360 | 2149 | int new_status, new_status_descr; |
|
23380
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2150 | const char *new_msg; |
| 11360 | 2151 | |
|
24043
47da129e16d1
Fixed an inverted g_return_val_if_fail() which caused gadu-gadu to always set an available status with no status message
Evan Schoenberg <evands@pidgin.im>
parents:
23584
diff
changeset
|
2152 | g_return_val_if_fail(msg != NULL, 0); |
| 11360 | 2153 | |
|
23380
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2154 | purple_debug_info("gg", "ggp_to_gg_status: Requested status = %s\n", |
| 12007 | 2155 | status_id); |
| 2393 | 2156 | |
| 11360 | 2157 | if (strcmp(status_id, "available") == 0) { |
| 2158 | new_status = GG_STATUS_AVAIL; | |
| 2159 | new_status_descr = GG_STATUS_AVAIL_DESCR; | |
| 2160 | } else if (strcmp(status_id, "away") == 0) { | |
| 2161 | new_status = GG_STATUS_BUSY; | |
| 2162 | new_status_descr = GG_STATUS_BUSY_DESCR; | |
| 2163 | } else if (strcmp(status_id, "invisible") == 0) { | |
| 2164 | new_status = GG_STATUS_INVISIBLE; | |
| 2165 | new_status_descr = GG_STATUS_INVISIBLE_DESCR; | |
| 12964 | 2166 | } else if (strcmp(status_id, "offline") == 0) { |
| 2167 | new_status = GG_STATUS_NOT_AVAIL; | |
| 2168 | new_status_descr = GG_STATUS_NOT_AVAIL_DESCR; | |
| 11360 | 2169 | } else { |
| 2170 | new_status = GG_STATUS_AVAIL; | |
| 2171 | new_status_descr = GG_STATUS_AVAIL_DESCR; | |
| 15884 | 2172 | purple_debug_info("gg", |
|
23380
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2173 | "ggp_set_status: unknown status requested (status_id=%s)\n", |
| 12007 | 2174 | status_id); |
| 11360 | 2175 | } |
| 4916 | 2176 | |
|
23380
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2177 | new_msg = purple_status_get_attr_string(status, "message"); |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2178 | |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2179 | if(new_msg) { |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2180 | char *tmp = purple_markup_strip_html(new_msg); |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2181 | *msg = charset_convert(tmp, "UTF-8", "CP1250"); |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2182 | g_free(tmp); |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2183 | |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2184 | return new_status_descr; |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2185 | } else { |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2186 | *msg = NULL; |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2187 | return new_status; |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2188 | } |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2189 | } |
| 11360 | 2190 | |
|
23380
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2191 | static void ggp_set_status(PurpleAccount *account, PurpleStatus *status) |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2192 | { |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2193 | PurpleConnection *gc; |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2194 | GGPInfo *info; |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2195 | int new_status; |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2196 | char *new_msg = NULL; |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2197 | |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2198 | if (!purple_status_is_active(status)) |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2199 | return; |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2200 | |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2201 | gc = purple_account_get_connection(account); |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2202 | info = gc->proto_data; |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2203 | |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2204 | new_status = ggp_to_gg_status(status, &new_msg); |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2205 | |
|
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2206 | if (new_msg == NULL) { |
| 11360 | 2207 | gg_change_status(info->session, new_status); |
| 2208 | } else { | |
|
23380
1f2dda5756b9
Extract converting a PurpleStatus to GG's format to its own function.
Will Thompson <resiak@pidgin.im>
parents:
23379
diff
changeset
|
2209 | gg_change_status_descr(info->session, new_status, new_msg); |
| 12964 | 2210 | g_free(new_msg); |
| 11360 | 2211 | } |
|
20289
5c844288fbec
applied changes from 32f31e981f0618a4167aa98bcc22c2dab13d1550
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20288
diff
changeset
|
2212 | |
|
5c844288fbec
applied changes from 32f31e981f0618a4167aa98bcc22c2dab13d1550
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20288
diff
changeset
|
2213 | ggp_status_fake_to_self(account); |
|
5c844288fbec
applied changes from 32f31e981f0618a4167aa98bcc22c2dab13d1550
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20288
diff
changeset
|
2214 | |
| 11360 | 2215 | } |
| 2216 | ||
| 15884 | 2217 | static void ggp_add_buddy(PurpleConnection *gc, PurpleBuddy *buddy, PurpleGroup *group) |
| 11360 | 2218 | { |
|
20289
5c844288fbec
applied changes from 32f31e981f0618a4167aa98bcc22c2dab13d1550
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20288
diff
changeset
|
2219 | PurpleAccount *account; |
| 11360 | 2220 | GGPInfo *info = gc->proto_data; |
|
24939
d25fdf62ae92
moved gg to use the api rather than structs directly
Gary Kramlich <grim@reaperworld.com>
parents:
24043
diff
changeset
|
2221 | const gchar *name = purple_buddy_get_name(buddy); |
| 11360 | 2222 | |
|
24939
d25fdf62ae92
moved gg to use the api rather than structs directly
Gary Kramlich <grim@reaperworld.com>
parents:
24043
diff
changeset
|
2223 | gg_add_notify(info->session, ggp_str_to_uin(name)); |
|
20289
5c844288fbec
applied changes from 32f31e981f0618a4167aa98bcc22c2dab13d1550
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20288
diff
changeset
|
2224 | |
|
5c844288fbec
applied changes from 32f31e981f0618a4167aa98bcc22c2dab13d1550
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20288
diff
changeset
|
2225 | account = purple_connection_get_account(gc); |
|
24939
d25fdf62ae92
moved gg to use the api rather than structs directly
Gary Kramlich <grim@reaperworld.com>
parents:
24043
diff
changeset
|
2226 | if (strcmp(purple_account_get_username(account), name) == 0) { |
|
20289
5c844288fbec
applied changes from 32f31e981f0618a4167aa98bcc22c2dab13d1550
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20288
diff
changeset
|
2227 | ggp_status_fake_to_self(account); |
|
5c844288fbec
applied changes from 32f31e981f0618a4167aa98bcc22c2dab13d1550
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20288
diff
changeset
|
2228 | } |
| 11360 | 2229 | } |
| 2230 | ||
| 15884 | 2231 | static void ggp_remove_buddy(PurpleConnection *gc, PurpleBuddy *buddy, |
| 2232 | PurpleGroup *group) | |
| 11360 | 2233 | { |
| 2234 | GGPInfo *info = gc->proto_data; | |
| 2235 | ||
|
24939
d25fdf62ae92
moved gg to use the api rather than structs directly
Gary Kramlich <grim@reaperworld.com>
parents:
24043
diff
changeset
|
2236 | gg_remove_notify(info->session, ggp_str_to_uin(purple_buddy_get_name(buddy))); |
| 11360 | 2237 | } |
| 2238 | ||
| 15884 | 2239 | static void ggp_join_chat(PurpleConnection *gc, GHashTable *data) |
| 11394 | 2240 | { |
| 2241 | GGPInfo *info = gc->proto_data; | |
| 2242 | GGPChat *chat; | |
| 2243 | char *chat_name; | |
| 2244 | GList *l; | |
| 15884 | 2245 | PurpleConversation *conv; |
| 2246 | PurpleAccount *account = purple_connection_get_account(gc); | |
| 11394 | 2247 | |
| 2248 | chat_name = g_hash_table_lookup(data, "name"); | |
| 2249 | ||
| 2250 | if (chat_name == NULL) | |
| 2251 | return; | |
| 2252 | ||
| 15884 | 2253 | purple_debug_info("gg", "joined %s chat\n", chat_name); |
| 11394 | 2254 | |
| 2255 | for (l = info->chats; l != NULL; l = l->next) { | |
| 2256 | chat = l->data; | |
| 2257 | ||
| 2258 | if (chat != NULL && g_utf8_collate(chat->name, chat_name) == 0) { | |
| 15884 | 2259 | purple_notify_error(gc, _("Chat error"), |
| 12007 | 2260 | _("This chat name is already in use"), NULL); |
| 11394 | 2261 | return; |
| 2262 | } | |
| 2263 | } | |
| 2264 | ||
| 11414 | 2265 | ggp_confer_add_new(gc, chat_name); |
| 12961 | 2266 | conv = serv_got_joined_chat(gc, info->chats_count, chat_name); |
| 15884 | 2267 | purple_conv_chat_add_user(PURPLE_CONV_CHAT(conv), |
| 2268 | purple_account_get_username(account), NULL, | |
| 2269 | PURPLE_CBFLAGS_NONE, TRUE); | |
| 11394 | 2270 | } |
| 2271 | ||
| 2272 | static char *ggp_get_chat_name(GHashTable *data) { | |
| 2273 | return g_strdup(g_hash_table_lookup(data, "name")); | |
| 2274 | } | |
| 2275 | ||
| 15884 | 2276 | static int ggp_chat_send(PurpleConnection *gc, int id, const char *message, PurpleMessageFlags flags) |
| 11394 | 2277 | { |
| 15884 | 2278 | PurpleConversation *conv; |
| 11394 | 2279 | GGPInfo *info = gc->proto_data; |
| 2280 | GGPChat *chat = NULL; | |
| 2281 | GList *l; | |
|
12216
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
2282 | char *msg, *plain; |
| 11394 | 2283 | uin_t *uins; |
| 2284 | int count = 0; | |
| 2285 | ||
| 15884 | 2286 | if ((conv = purple_find_chat(gc, id)) == NULL) |
| 11394 | 2287 | return -EINVAL; |
| 2288 | ||
| 2289 | for (l = info->chats; l != NULL; l = l->next) { | |
| 2290 | chat = l->data; | |
| 2291 | ||
| 2292 | if (g_utf8_collate(chat->name, conv->name) == 0) { | |
| 2293 | break; | |
| 2294 | } | |
| 2295 | ||
| 2296 | chat = NULL; | |
| 2297 | } | |
| 2298 | ||
| 2299 | if (chat == NULL) { | |
| 15884 | 2300 | purple_debug_error("gg", |
| 12007 | 2301 | "ggp_chat_send: Hm... that's strange. No such chat?\n"); |
| 11394 | 2302 | return -EINVAL; |
| 2303 | } | |
| 2304 | ||
| 2305 | uins = g_new0(uin_t, g_list_length(chat->participants)); | |
| 12961 | 2306 | |
| 11394 | 2307 | for (l = chat->participants; l != NULL; l = l->next) { |
| 12961 | 2308 | uin_t uin = GPOINTER_TO_INT(l->data); |
| 11394 | 2309 | |
| 12961 | 2310 | uins[count++] = uin; |
| 11394 | 2311 | } |
| 2312 | ||
| 15884 | 2313 | plain = purple_unescape_html(message); |
|
12216
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
2314 | msg = charset_convert(plain, "UTF-8", "CP1250"); |
|
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
2315 | g_free(plain); |
| 12007 | 2316 | gg_send_message_confer(info->session, GG_CLASS_CHAT, count, uins, |
| 12961 | 2317 | (unsigned char *)msg); |
| 11394 | 2318 | g_free(msg); |
| 2319 | g_free(uins); | |
| 2320 | ||
| 12007 | 2321 | serv_got_chat_in(gc, id, |
| 15884 | 2322 | purple_account_get_username(purple_connection_get_account(gc)), |
|
23295
5d3a2fd59439
When calling serv_got_chat_in() after sending a group chat message (to let
Evan Schoenberg <evands@pidgin.im>
parents:
23277
diff
changeset
|
2323 | flags, message, time(NULL)); |
| 11394 | 2324 | |
| 2325 | return 0; | |
| 2326 | } | |
| 2327 | ||
| 15884 | 2328 | static void ggp_keepalive(PurpleConnection *gc) |
| 11360 | 2329 | { |
| 2330 | GGPInfo *info = gc->proto_data; | |
| 2331 | ||
| 15884 | 2332 | /* purple_debug_info("gg", "Keeping connection alive....\n"); */ |
| 11360 | 2333 | |
| 2334 | if (gg_ping(info->session) < 0) { | |
| 15884 | 2335 | purple_debug_info("gg", "Not connected to the server " |
| 11360 | 2336 | "or gg_session is not correct\n"); |
| 21279 | 2337 | purple_connection_error_reason (gc, |
| 2338 | PURPLE_CONNECTION_ERROR_NETWORK_ERROR, | |
|
27626
62fbae50be08
Connection error message changes for gg, and a few other strings changes.
Mark Doliner <markdoliner@pidgin.im>
parents:
27388
diff
changeset
|
2339 | _("Not connected to the server")); |
| 4916 | 2340 | } |
| 2393 | 2341 | } |
| 11360 | 2342 | |
| 15884 | 2343 | static void ggp_register_user(PurpleAccount *account) |
| 11360 | 2344 | { |
| 15884 | 2345 | PurpleConnection *gc = purple_account_get_connection(account); |
| 11360 | 2346 | GGPInfo *info; |
| 2347 | ||
| 12007 | 2348 | info = gc->proto_data = g_new0(GGPInfo, 1); |
| 11360 | 2349 | |
| 12007 | 2350 | ggp_token_request(gc, ggp_register_user_dialog); |
| 2393 | 2351 | } |
| 2352 | ||
| 15884 | 2353 | static GList *ggp_actions(PurplePlugin *plugin, gpointer context) |
|
8775
6cb5dddaad4f
[gaim-migrate @ 9537]
Andrew Wellington <proton@users.sourceforge.net>
parents:
8749
diff
changeset
|
2354 | { |
| 11360 | 2355 | GList *m = NULL; |
| 15884 | 2356 | PurplePluginAction *act; |
| 11360 | 2357 | |
| 15884 | 2358 | act = purple_plugin_action_new(_("Find buddies..."), |
| 12007 | 2359 | ggp_find_buddies); |
| 11360 | 2360 | m = g_list_append(m, act); |
| 2361 | ||
| 2362 | m = g_list_append(m, NULL); | |
| 2363 | ||
| 15884 | 2364 | act = purple_plugin_action_new(_("Change password..."), |
| 12007 | 2365 | ggp_change_passwd); |
| 11360 | 2366 | m = g_list_append(m, act); |
| 2367 | ||
| 2368 | m = g_list_append(m, NULL); | |
| 2369 | ||
| 15884 | 2370 | act = purple_plugin_action_new(_("Upload buddylist to Server"), |
| 12007 | 2371 | ggp_action_buddylist_put); |
| 11360 | 2372 | m = g_list_append(m, act); |
|
8775
6cb5dddaad4f
[gaim-migrate @ 9537]
Andrew Wellington <proton@users.sourceforge.net>
parents:
8749
diff
changeset
|
2373 | |
| 15884 | 2374 | act = purple_plugin_action_new(_("Download buddylist from Server"), |
| 12007 | 2375 | ggp_action_buddylist_get); |
| 11360 | 2376 | m = g_list_append(m, act); |
| 2377 | ||
| 15884 | 2378 | act = purple_plugin_action_new(_("Delete buddylist from Server"), |
| 12007 | 2379 | ggp_action_buddylist_delete); |
| 11360 | 2380 | m = g_list_append(m, act); |
| 2381 | ||
| 15884 | 2382 | act = purple_plugin_action_new(_("Save buddylist to file..."), |
| 12007 | 2383 | ggp_action_buddylist_save); |
| 11360 | 2384 | m = g_list_append(m, act); |
|
8775
6cb5dddaad4f
[gaim-migrate @ 9537]
Andrew Wellington <proton@users.sourceforge.net>
parents:
8749
diff
changeset
|
2385 | |
| 15884 | 2386 | act = purple_plugin_action_new(_("Load buddylist from file..."), |
| 12007 | 2387 | ggp_action_buddylist_load); |
| 11360 | 2388 | m = g_list_append(m, act); |
| 2389 | ||
| 2390 | return m; | |
|
8775
6cb5dddaad4f
[gaim-migrate @ 9537]
Andrew Wellington <proton@users.sourceforge.net>
parents:
8749
diff
changeset
|
2391 | } |
|
6cb5dddaad4f
[gaim-migrate @ 9537]
Andrew Wellington <proton@users.sourceforge.net>
parents:
8749
diff
changeset
|
2392 | |
| 15884 | 2393 | static gboolean ggp_offline_message(const PurpleBuddy *buddy) |
|
13298
7a41e676010b
[gaim-migrate @ 15663]
Richard Laager <rlaager@pidgin.im>
parents:
13297
diff
changeset
|
2394 | { |
|
7a41e676010b
[gaim-migrate @ 15663]
Richard Laager <rlaager@pidgin.im>
parents:
13297
diff
changeset
|
2395 | return TRUE; |
|
7a41e676010b
[gaim-migrate @ 15663]
Richard Laager <rlaager@pidgin.im>
parents:
13297
diff
changeset
|
2396 | } |
|
7a41e676010b
[gaim-migrate @ 15663]
Richard Laager <rlaager@pidgin.im>
parents:
13297
diff
changeset
|
2397 | |
| 15884 | 2398 | static PurplePluginProtocolInfo prpl_info = |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2399 | { |
|
24745
511df62cb366
Support displaying buddy icons from Gadu-Gadu buddies. Fixes #220.
Adam Strzelecki <ono@java.pl>
parents:
24683
diff
changeset
|
2400 | OPT_PROTO_REGISTER_NOSCREENNAME | OPT_PROTO_IM_IMAGE, |
| 12007 | 2401 | NULL, /* user_splits */ |
| 2402 | NULL, /* protocol_options */ | |
|
22546
3f7e366741a3
Patch from Tomasz Salacinski to allow setting buddy icons in GG prpl.
Bartosz Oler <bartosz@pidgin.im>
parents:
22277
diff
changeset
|
2403 | {"png", 32, 32, 96, 96, 0, PURPLE_ICON_SCALE_DISPLAY}, /* icon_spec */ |
| 11360 | 2404 | ggp_list_icon, /* list_icon */ |
| 15524 | 2405 | NULL, /* list_emblem */ |
| 11360 | 2406 | ggp_status_text, /* status_text */ |
| 2407 | ggp_tooltip_text, /* tooltip_text */ | |
| 2408 | ggp_status_types, /* status_types */ | |
| 12007 | 2409 | ggp_blist_node_menu, /* blist_node_menu */ |
| 11394 | 2410 | ggp_chat_info, /* chat_info */ |
| 12007 | 2411 | NULL, /* chat_info_defaults */ |
| 2412 | ggp_login, /* login */ | |
| 2413 | ggp_close, /* close */ | |
| 11360 | 2414 | ggp_send_im, /* send_im */ |
| 12007 | 2415 | NULL, /* set_info */ |
| 2416 | NULL, /* send_typing */ | |
| 11360 | 2417 | ggp_get_info, /* get_info */ |
| 2418 | ggp_set_status, /* set_away */ | |
| 12007 | 2419 | NULL, /* set_idle */ |
| 2420 | NULL, /* change_passwd */ | |
| 11360 | 2421 | ggp_add_buddy, /* add_buddy */ |
| 12007 | 2422 | NULL, /* add_buddies */ |
| 11360 | 2423 | ggp_remove_buddy, /* remove_buddy */ |
| 12007 | 2424 | NULL, /* remove_buddies */ |
| 2425 | NULL, /* add_permit */ | |
| 2426 | NULL, /* add_deny */ | |
| 2427 | NULL, /* rem_permit */ | |
| 2428 | NULL, /* rem_deny */ | |
| 2429 | NULL, /* set_permit_deny */ | |
| 11394 | 2430 | ggp_join_chat, /* join_chat */ |
| 12007 | 2431 | NULL, /* reject_chat */ |
| 11394 | 2432 | ggp_get_chat_name, /* get_chat_name */ |
| 12007 | 2433 | NULL, /* chat_invite */ |
| 2434 | NULL, /* chat_leave */ | |
| 2435 | NULL, /* chat_whisper */ | |
| 11394 | 2436 | ggp_chat_send, /* chat_send */ |
| 11360 | 2437 | ggp_keepalive, /* keepalive */ |
| 2438 | ggp_register_user, /* register_user */ | |
| 12007 | 2439 | NULL, /* get_cb_info */ |
| 2440 | NULL, /* get_cb_away */ | |
| 2441 | NULL, /* alias_buddy */ | |
| 2442 | NULL, /* group_buddy */ | |
| 2443 | NULL, /* rename_group */ | |
| 2444 | NULL, /* buddy_free */ | |
| 2445 | NULL, /* convo_closed */ | |
| 2446 | NULL, /* normalize */ | |
| 2447 | NULL, /* set_buddy_icon */ | |
| 2448 | NULL, /* remove_group */ | |
| 2449 | NULL, /* get_cb_real_name */ | |
| 2450 | NULL, /* set_chat_topic */ | |
| 2451 | NULL, /* find_blist_chat */ | |
| 2452 | NULL, /* roomlist_get_list */ | |
| 2453 | NULL, /* roomlist_cancel */ | |
| 2454 | NULL, /* roomlist_expand_category */ | |
| 2455 | NULL, /* can_receive_file */ | |
|
12143
09f216663302
[gaim-migrate @ 14444]
Evan Schoenberg <evands@pidgin.im>
parents:
12007
diff
changeset
|
2456 | NULL, /* send_file */ |
|
12600
7ecd4441fdc7
[gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents:
12595
diff
changeset
|
2457 | NULL, /* new_xfer */ |
|
13298
7a41e676010b
[gaim-migrate @ 15663]
Richard Laager <rlaager@pidgin.im>
parents:
13297
diff
changeset
|
2458 | ggp_offline_message, /* offline_message */ |
|
12600
7ecd4441fdc7
[gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents:
12595
diff
changeset
|
2459 | NULL, /* whiteboard_prpl_ops */ |
| 14604 | 2460 | NULL, /* send_raw */ |
| 15185 | 2461 | NULL, /* roomlist_room_serialize */ |
|
22071
4c47e360e467
Fix the prplinfo structs and get rid of some compile warnings.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22069
diff
changeset
|
2462 | NULL, /* unregister_user */ |
|
4c47e360e467
Fix the prplinfo structs and get rid of some compile warnings.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22069
diff
changeset
|
2463 | NULL, /* send_attention */ |
|
4c47e360e467
Fix the prplinfo structs and get rid of some compile warnings.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22069
diff
changeset
|
2464 | NULL, /* get_attention_types */ |
|
23276
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22622
diff
changeset
|
2465 | sizeof(PurplePluginProtocolInfo), /* struct_size */ |
|
23707
480f94157418
propagate from branch 'im.pidgin.pidgin' (head bd5f7f61d9349053ee4738efc0d17453f0574057)
Sadrul Habib Chowdhury <sadrul@pidgin.im>
diff
changeset
|
2466 | NULL, /* get_account_text_table */ |
|
480f94157418
propagate from branch 'im.pidgin.pidgin' (head bd5f7f61d9349053ee4738efc0d17453f0574057)
Sadrul Habib Chowdhury <sadrul@pidgin.im>
diff
changeset
|
2467 | NULL, /* initiate_media */ |
|
480f94157418
propagate from branch 'im.pidgin.pidgin' (head bd5f7f61d9349053ee4738efc0d17453f0574057)
Sadrul Habib Chowdhury <sadrul@pidgin.im>
diff
changeset
|
2468 | NULL /* can_do_media */ |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2469 | }; |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2470 | |
| 15884 | 2471 | static PurplePluginInfo info = { |
|
24746
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2472 | PURPLE_PLUGIN_MAGIC, /* magic */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2473 | PURPLE_MAJOR_VERSION, /* major_version */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2474 | PURPLE_MINOR_VERSION, /* minor_version */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2475 | PURPLE_PLUGIN_PROTOCOL, /* plugin type */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2476 | NULL, /* ui_requirement */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2477 | 0, /* flags */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2478 | NULL, /* dependencies */ |
| 15884 | 2479 | PURPLE_PRIORITY_DEFAULT, /* priority */ |
| 11360 | 2480 | |
|
24746
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2481 | "prpl-gg", /* id */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2482 | "Gadu-Gadu", /* name */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2483 | DISPLAY_VERSION, /* version */ |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2484 | |
| 11360 | 2485 | N_("Gadu-Gadu Protocol Plugin"), /* summary */ |
| 2486 | N_("Polish popular IM"), /* description */ | |
|
24746
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2487 | "boler@sourceforge.net", /* author */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2488 | PURPLE_WEBSITE, /* homepage */ |
| 11360 | 2489 | |
|
24746
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2490 | NULL, /* load */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2491 | NULL, /* unload */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2492 | NULL, /* destroy */ |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2493 | |
|
24746
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2494 | NULL, /* ui_info */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2495 | &prpl_info, /* extra_info */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2496 | NULL, /* prefs_info */ |
|
ffee942a34b2
Kill off a bajillion comments that just needlessly duplicate function
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
24745
diff
changeset
|
2497 | ggp_actions, /* actions */ |
|
16746
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16490
diff
changeset
|
2498 | |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16490
diff
changeset
|
2499 | /* padding */ |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16490
diff
changeset
|
2500 | NULL, |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16490
diff
changeset
|
2501 | NULL, |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16490
diff
changeset
|
2502 | NULL, |
|
72faf41c3c4f
And now the protocols
Gary Kramlich <grim@reaperworld.com>
parents:
16490
diff
changeset
|
2503 | NULL |
| 11360 | 2504 | }; |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2505 | |
| 15884 | 2506 | static void purple_gg_debug_handler(int level, const char * format, va_list args) { |
| 2507 | PurpleDebugLevel purple_level; | |
|
11541
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2508 | char *msg = g_strdup_vprintf(format, args); |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2509 | |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2510 | /* This is pretty pointless since the GG_DEBUG levels don't correspond to |
| 15884 | 2511 | * the purple ones */ |
|
11541
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2512 | switch (level) { |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2513 | case GG_DEBUG_FUNCTION: |
| 15884 | 2514 | purple_level = PURPLE_DEBUG_INFO; |
|
11541
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2515 | break; |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2516 | case GG_DEBUG_MISC: |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2517 | case GG_DEBUG_NET: |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2518 | case GG_DEBUG_DUMP: |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2519 | case GG_DEBUG_TRAFFIC: |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2520 | default: |
| 15884 | 2521 | purple_level = PURPLE_DEBUG_MISC; |
|
11541
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2522 | break; |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2523 | } |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2524 | |
|
24683
3481a3320313
Backport the 'purple_debug_*(msg)' -> 'purple_debug_*("%s", msg);' fixes.
Richard Laager <rlaager@pidgin.im>
parents:
24569
diff
changeset
|
2525 | purple_debug(purple_level, "gg", "%s", msg); |
|
11541
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2526 | g_free(msg); |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2527 | } |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2528 | |
| 15884 | 2529 | static void init_plugin(PurplePlugin *plugin) |
| 2393 | 2530 | { |
| 15884 | 2531 | PurpleAccountOption *option; |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2532 | |
| 15884 | 2533 | option = purple_account_option_string_new(_("Nickname"), |
| 12007 | 2534 | "nick", _("Gadu-Gadu User")); |
| 2535 | prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | |
| 2536 | option); | |
| 3572 | 2537 | |
|
27255
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
2538 | option = purple_account_option_string_new(_("GG server"), |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
2539 | "gg_server", ""); |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
2540 | prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
2541 | option); |
|
d2284774cfed
Allow Gadu-Gadu accounts to specify Connect Server. Refs #6691.
Paul Aurich <darkrain42@pidgin.im>
parents:
27197
diff
changeset
|
2542 | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2543 | my_protocol = plugin; |
|
11541
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2544 | |
| 15884 | 2545 | gg_debug_handler = purple_gg_debug_handler; |
| 2393 | 2546 | } |
| 2547 | ||
| 15884 | 2548 | PURPLE_INIT_PLUGIN(gg, init_plugin, info); |
| 11360 | 2549 | |
| 12007 | 2550 | /* vim: set ts=8 sts=0 sw=8 noet: */ |