Thu, 09 Nov 2006 22:28:56 +0000
[gaim-migrate @ 17715]
gg: Don't display additional status line if buddy is offline.
| 11394 | 1 | /** |
| 2 | * @file gg.c Gadu-Gadu protocol plugin | |
| 3 | * | |
| 4 | * gaim | |
| 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> |
| 10 | * | |
| 11 | * Thanks to Google's Summer of Code Program. | |
| 12 | * | |
| 13 | * This program is free software; you can redistribute it and/or modify | |
| 14 | * it under the terms of the GNU General Public License as published by | |
| 15 | * the Free Software Foundation; either version 2 of the License, or | |
| 16 | * (at your option) any later version. | |
| 17 | * | |
| 18 | * This program is distributed in the hope that it will be useful, | |
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 21 | * GNU General Public License for more details. | |
| 22 | * | |
| 23 | * You should have received a copy of the GNU General Public License | |
| 24 | * along with this program; if not, write to the Free Software | |
| 25 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 26 | */ | |
| 27 | ||
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
28 | #include "internal.h" |
| 2393 | 29 | |
| 11360 | 30 | #include "plugin.h" |
| 31 | #include "version.h" | |
| 32 | #include "notify.h" | |
| 33 | #include "status.h" | |
|
9030
7b574a641391
[gaim-migrate @ 9806]
Mark Doliner <markdoliner@pidgin.im>
parents:
9015
diff
changeset
|
34 | #include "blist.h" |
| 11360 | 35 | #include "accountopt.h" |
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
36 | #include "debug.h" |
|
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
37 | #include "util.h" |
| 11360 | 38 | #include "request.h" |
| 2393 | 39 | |
| 13318 | 40 | #include <libgadu.h> |
| 5603 | 41 | |
| 11414 | 42 | #include "gg.h" |
| 43 | #include "confer.h" | |
| 44 | #include "search.h" | |
| 45 | #include "buddylist.h" | |
|
13627
44233a1064f9
[gaim-migrate @ 16013]
Evan Schoenberg <evands@pidgin.im>
parents:
13573
diff
changeset
|
46 | #include "gg-utils.h" |
| 11394 | 47 | |
| 11414 | 48 | static GaimPlugin *my_protocol = NULL; |
| 11394 | 49 | |
| 11360 | 50 | /* ---------------------------------------------------------------------- */ |
| 11414 | 51 | /* ----- EXTERNAL CALLBACKS --------------------------------------------- */ |
| 11360 | 52 | /* ---------------------------------------------------------------------- */ |
| 9950 | 53 | |
| 12007 | 54 | |
| 55 | /* ----- HELPERS -------------------------------------------------------- */ | |
| 56 | ||
| 13515 | 57 | /** |
| 58 | * Set up libgadu's proxy. | |
| 59 | * | |
| 60 | * @param account Account for which to set up the proxy. | |
| 61 | * | |
| 62 | * @return Zero if proxy setup is valid, otherwise -1. | |
| 63 | */ | |
| 64 | /* static int ggp_setup_proxy(GaimAccount *account) {{{ */ | |
| 65 | static int ggp_setup_proxy(GaimAccount *account) | |
| 66 | { | |
| 67 | GaimProxyInfo *gpi; | |
| 68 | ||
| 69 | gpi = gaim_proxy_get_setup(account); | |
| 70 | ||
| 71 | if ((gaim_proxy_info_get_type(gpi) != GAIM_PROXY_NONE) && | |
| 72 | (gaim_proxy_info_get_host(gpi) == NULL || | |
| 73 | gaim_proxy_info_get_port(gpi) <= 0)) { | |
| 74 | ||
| 75 | gg_proxy_enabled = 0; | |
| 76 | gaim_notify_error(NULL, NULL, _("Invalid proxy settings"), | |
| 77 | _("Either the host name or port number specified for your given proxy type is invalid.")); | |
| 78 | return -1; | |
| 79 | } else if (gaim_proxy_info_get_type(gpi) != GAIM_PROXY_NONE) { | |
| 80 | gg_proxy_enabled = 1; | |
| 81 | gg_proxy_host = g_strdup(gaim_proxy_info_get_host(gpi)); | |
| 82 | gg_proxy_port = gaim_proxy_info_get_port(gpi); | |
| 83 | gg_proxy_username = g_strdup(gaim_proxy_info_get_username(gpi)); | |
| 84 | gg_proxy_password = g_strdup(gaim_proxy_info_get_password(gpi)); | |
| 85 | } else { | |
| 86 | gg_proxy_enabled = 0; | |
| 87 | } | |
| 88 | ||
| 89 | return 0; | |
| 90 | } | |
| 91 | /* }}} */ | |
| 92 | ||
| 12007 | 93 | /* |
| 94 | */ | |
| 95 | /* static void ggp_async_token_handler(gpointer _gc, gint fd, GaimInputCondition cond) {{{ */ | |
| 96 | static void ggp_async_token_handler(gpointer _gc, gint fd, GaimInputCondition cond) | |
| 97 | { | |
| 98 | GaimConnection *gc = _gc; | |
| 99 | GGPInfo *info = gc->proto_data; | |
| 100 | GGPToken *token = info->token; | |
| 101 | GGPTokenCallback cb; | |
| 102 | ||
| 103 | struct gg_token *t = NULL; | |
| 104 | ||
| 105 | gaim_debug_info("gg", "token_handler: token->req: check = %d; state = %d;\n", | |
| 106 | token->req->check, token->req->state); | |
| 107 | ||
| 108 | if (gg_token_watch_fd(token->req) == -1 || token->req->state == GG_STATE_ERROR) { | |
| 109 | gaim_debug_error("gg", "token error (1): %d\n", token->req->error); | |
| 110 | gaim_input_remove(token->inpa); | |
| 111 | gg_token_free(token->req); | |
| 112 | token->req = NULL; | |
| 113 | ||
| 114 | gaim_notify_error(gaim_connection_get_account(gc), | |
| 115 | _("Token Error"), | |
| 116 | _("Unable to fetch the token.\n"), NULL); | |
| 117 | return; | |
| 118 | } | |
| 119 | ||
| 120 | if (token->req->state != GG_STATE_DONE) { | |
| 121 | gaim_input_remove(token->inpa); | |
| 122 | token->inpa = gaim_input_add(token->req->fd, | |
| 123 | (token->req->check == 1) | |
| 124 | ? GAIM_INPUT_WRITE | |
| 125 | : GAIM_INPUT_READ, | |
| 126 | ggp_async_token_handler, gc); | |
| 127 | return; | |
| 128 | } | |
| 129 | ||
| 130 | if (!(t = token->req->data) || !token->req->body) { | |
| 131 | gaim_debug_error("gg", "token error (2): %d\n", token->req->error); | |
| 132 | gaim_input_remove(token->inpa); | |
| 133 | gg_token_free(token->req); | |
| 134 | token->req = NULL; | |
| 135 | ||
| 136 | gaim_notify_error(gaim_connection_get_account(gc), | |
| 137 | _("Token Error"), | |
| 138 | _("Unable to fetch the token.\n"), NULL); | |
| 139 | return; | |
| 140 | } | |
| 141 | ||
| 142 | gaim_input_remove(token->inpa); | |
| 143 | ||
| 144 | token->id = g_strdup(t->tokenid); | |
| 145 | token->size = token->req->body_size; | |
| 146 | token->data = g_new0(char, token->size); | |
| 147 | memcpy(token->data, token->req->body, token->size); | |
| 148 | ||
| 149 | gaim_debug_info("gg", "TOKEN! tokenid = %s; size = %d\n", | |
| 150 | token->id, token->size); | |
| 151 | ||
| 152 | gg_token_free(token->req); | |
| 153 | token->req = NULL; | |
| 154 | token->inpa = 0; | |
| 155 | ||
| 156 | cb = token->cb; | |
| 157 | token->cb = NULL; | |
| 158 | cb(gc); | |
| 159 | } | |
| 160 | /* }}} */ | |
| 161 | ||
| 162 | /* | |
| 163 | */ | |
| 164 | /* static void ggp_token_request(GaimConnection *gc, GGPTokenCallback cb) {{{ */ | |
| 165 | static void ggp_token_request(GaimConnection *gc, GGPTokenCallback cb) | |
| 166 | { | |
| 13515 | 167 | GaimAccount *account; |
| 12007 | 168 | struct gg_http *req; |
| 13515 | 169 | GGPInfo *info; |
| 170 | ||
| 171 | account = gaim_connection_get_account(gc); | |
| 172 | ||
| 173 | if (ggp_setup_proxy(account) == -1) | |
| 174 | return; | |
| 175 | ||
| 176 | info = gc->proto_data; | |
| 12007 | 177 | |
| 178 | if ((req = gg_token(1)) == NULL) { | |
| 13515 | 179 | gaim_notify_error(account, |
| 12007 | 180 | _("Token Error"), |
| 181 | _("Unable to fetch the token.\n"), NULL); | |
| 182 | return; | |
| 183 | } | |
| 184 | ||
| 185 | info->token = g_new(GGPToken, 1); | |
| 186 | info->token->cb = cb; | |
| 187 | ||
| 188 | info->token->req = req; | |
| 189 | info->token->inpa = gaim_input_add(req->fd, GAIM_INPUT_READ, | |
| 190 | ggp_async_token_handler, gc); | |
| 191 | } | |
| 192 | /* }}} */ | |
| 193 | ||
| 194 | /* ---------------------------------------------------------------------- */ | |
| 195 | ||
| 11360 | 196 | /** |
| 197 | * Request buddylist from the server. | |
| 198 | * Buddylist is received in the ggp_callback_recv(). | |
| 199 | * | |
| 200 | * @param Current action handler. | |
| 201 | */ | |
| 202 | /* static void ggp_action_buddylist_get(GaimPluginAction *action) {{{ */ | |
| 203 | static void ggp_action_buddylist_get(GaimPluginAction *action) | |
| 204 | { | |
| 205 | GaimConnection *gc = (GaimConnection *)action->context; | |
| 206 | GGPInfo *info = gc->proto_data; | |
| 207 | ||
| 208 | gaim_debug_info("gg", "Downloading...\n"); | |
| 209 | ||
| 210 | gg_userlist_request(info->session, GG_USERLIST_GET, NULL); | |
| 211 | } | |
| 212 | /* }}} */ | |
| 213 | ||
| 214 | /** | |
| 215 | * Upload the buddylist to the server. | |
| 216 | * | |
| 217 | * @param action Current action handler. | |
| 218 | */ | |
| 219 | /* static void ggp_action_buddylist_put(GaimPluginAction *action) {{{ */ | |
| 220 | static void ggp_action_buddylist_put(GaimPluginAction *action) | |
| 221 | { | |
| 222 | GaimConnection *gc = (GaimConnection *)action->context; | |
| 223 | GGPInfo *info = gc->proto_data; | |
| 224 | ||
| 225 | char *buddylist = ggp_buddylist_dump(gaim_connection_get_account(gc)); | |
| 226 | ||
| 227 | gaim_debug_info("gg", "Uploading...\n"); | |
| 228 | ||
| 229 | if (buddylist == NULL) | |
| 230 | return; | |
| 231 | ||
| 232 | gg_userlist_request(info->session, GG_USERLIST_PUT, buddylist); | |
| 233 | g_free(buddylist); | |
| 234 | } | |
| 235 | /* }}} */ | |
| 236 | ||
| 237 | /** | |
| 238 | * Delete buddylist from the server. | |
| 239 | * | |
| 240 | * @param action Current action handler. | |
| 241 | */ | |
| 242 | /* static void ggp_action_buddylist_delete(GaimPluginAction *action) {{{ */ | |
| 243 | static void ggp_action_buddylist_delete(GaimPluginAction *action) | |
| 244 | { | |
| 245 | GaimConnection *gc = (GaimConnection *)action->context; | |
| 246 | GGPInfo *info = gc->proto_data; | |
| 247 | ||
| 248 | gaim_debug_info("gg", "Deleting...\n"); | |
| 249 | ||
| 250 | gg_userlist_request(info->session, GG_USERLIST_PUT, NULL); | |
| 251 | } | |
| 252 | /* }}} */ | |
| 253 | ||
| 254 | /* | |
| 255 | */ | |
| 256 | /* static void ggp_callback_buddylist_save_ok(GaimConnection *gc, gchar *file) {{{ */ | |
| 257 | static void ggp_callback_buddylist_save_ok(GaimConnection *gc, gchar *file) | |
| 258 | { | |
| 259 | GaimAccount *account = gaim_connection_get_account(gc); | |
| 260 | ||
| 261 | FILE *fh; | |
| 262 | char *buddylist = ggp_buddylist_dump(account); | |
| 263 | gchar *msg; | |
| 264 | ||
| 265 | gaim_debug_info("gg", "Saving...\n"); | |
| 266 | gaim_debug_info("gg", "file = %s\n", file); | |
| 267 | ||
| 268 | if (buddylist == NULL) { | |
| 269 | gaim_notify_info(account, _("Save Buddylist..."), | |
| 12007 | 270 | _("Your buddylist is empty, nothing was written to the file."), |
| 271 | NULL); | |
|
2792
f40db99e87c7
[gaim-migrate @ 2805]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2791
diff
changeset
|
272 | return; |
|
f40db99e87c7
[gaim-migrate @ 2805]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2791
diff
changeset
|
273 | } |
| 2393 | 274 | |
| 11360 | 275 | if ((fh = g_fopen(file, "wb")) == NULL) { |
| 276 | msg = g_strconcat(_("Couldn't open file"), ": ", file, "\n", NULL); | |
| 277 | gaim_debug_error("gg", "Could not open file: %s\n", file); | |
| 278 | gaim_notify_error(account, _("Couldn't open file"), msg, NULL); | |
| 279 | g_free(msg); | |
| 280 | g_free(file); | |
| 281 | return; | |
| 282 | } | |
| 283 | ||
| 284 | fwrite(buddylist, sizeof(char), g_utf8_strlen(buddylist, -1), fh); | |
| 285 | fclose(fh); | |
| 286 | g_free(buddylist); | |
| 287 | ||
| 288 | gaim_notify_info(account, _("Save Buddylist..."), | |
| 289 | _("Buddylist saved successfully!"), NULL); | |
| 290 | } | |
| 291 | /* }}} */ | |
|
2806
1576edefc75a
[gaim-migrate @ 2819]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2792
diff
changeset
|
292 | |
| 11360 | 293 | /* |
| 294 | */ | |
| 295 | /* static void ggp_callback_buddylist_load_ok(GaimConnection *gc, gchar *file) {{{ */ | |
| 296 | static void ggp_callback_buddylist_load_ok(GaimConnection *gc, gchar *file) | |
| 297 | { | |
| 298 | GaimAccount *account = gaim_connection_get_account(gc); | |
| 12007 | 299 | GError *error = NULL; |
| 300 | char *buddylist = NULL; | |
| 301 | gsize length; | |
| 11360 | 302 | |
| 303 | gaim_debug_info("gg", "file_name = %s\n", file); | |
| 304 | ||
| 12007 | 305 | if (!g_file_get_contents(file, &buddylist, &length, &error)) { |
| 306 | gaim_notify_error(account, | |
| 307 | _("Couldn't load buddylist"), | |
| 308 | _("Couldn't load buddylist"), | |
| 309 | error->message); | |
| 310 | ||
| 311 | gaim_debug_error("gg", | |
| 312 | "Couldn't load buddylist. file = %s; error = %s\n", | |
| 313 | file, error->message); | |
| 314 | ||
| 315 | g_error_free(error); | |
| 316 | ||
|
2806
1576edefc75a
[gaim-migrate @ 2819]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2792
diff
changeset
|
317 | return; |
|
1576edefc75a
[gaim-migrate @ 2819]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2792
diff
changeset
|
318 | } |
| 11360 | 319 | |
| 320 | ggp_buddylist_load(gc, buddylist); | |
| 321 | g_free(buddylist); | |
| 322 | ||
| 323 | gaim_notify_info(account, | |
| 324 | _("Load Buddylist..."), | |
| 325 | _("Buddylist loaded successfully!"), NULL); | |
|
2806
1576edefc75a
[gaim-migrate @ 2819]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2792
diff
changeset
|
326 | } |
| 11360 | 327 | /* }}} */ |
| 328 | ||
| 329 | /* | |
| 330 | */ | |
| 331 | /* static void ggp_action_buddylist_save(GaimPluginAction *action) {{{ */ | |
| 332 | static void ggp_action_buddylist_save(GaimPluginAction *action) | |
| 333 | { | |
| 334 | GaimConnection *gc = (GaimConnection *)action->context; | |
| 335 | ||
| 336 | gaim_request_file(action, _("Save buddylist..."), NULL, TRUE, | |
| 12007 | 337 | G_CALLBACK(ggp_callback_buddylist_save_ok), NULL, gc); |
| 11360 | 338 | } |
| 339 | /* }}} */ | |
|
2806
1576edefc75a
[gaim-migrate @ 2819]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2792
diff
changeset
|
340 | |
| 11360 | 341 | /* |
| 342 | */ | |
| 343 | /* static void ggp_action_buddylist_load(GaimPluginAction *action) {{{ */ | |
| 344 | static void ggp_action_buddylist_load(GaimPluginAction *action) | |
| 345 | { | |
| 346 | GaimConnection *gc = (GaimConnection *)action->context; | |
| 347 | ||
| 348 | gaim_request_file(action, "Load buddylist from file...", NULL, FALSE, | |
| 12007 | 349 | G_CALLBACK(ggp_callback_buddylist_load_ok), NULL, gc); |
| 11360 | 350 | } |
| 351 | /* }}} */ | |
| 352 | ||
| 353 | /* | |
| 354 | */ | |
| 11414 | 355 | /* static void ggp_callback_register_account_ok(GaimConnection *gc, GaimRequestFields *fields) {{{ */ |
| 12007 | 356 | static void ggp_callback_register_account_ok(GaimConnection *gc, |
| 357 | GaimRequestFields *fields) | |
| 11414 | 358 | { |
| 359 | GaimAccount *account; | |
| 360 | GGPInfo *info = gc->proto_data; | |
| 361 | struct gg_http *h = NULL; | |
| 362 | struct gg_pubdir *s; | |
| 363 | uin_t uin; | |
| 364 | gchar *email, *p1, *p2, *t; | |
| 12007 | 365 | GGPToken *token = info->token; |
| 11414 | 366 | |
| 367 | email = charset_convert(gaim_request_fields_get_string(fields, "email"), | |
| 368 | "UTF-8", "CP1250"); | |
| 369 | p1 = charset_convert(gaim_request_fields_get_string(fields, "password1"), | |
| 370 | "UTF-8", "CP1250"); | |
| 371 | p2 = charset_convert(gaim_request_fields_get_string(fields, "password2"), | |
| 372 | "UTF-8", "CP1250"); | |
| 373 | t = charset_convert(gaim_request_fields_get_string(fields, "token"), | |
| 374 | "UTF-8", "CP1250"); | |
| 375 | ||
| 376 | account = gaim_connection_get_account(gc); | |
| 377 | ||
| 378 | if (email == NULL || p1 == NULL || p2 == NULL || t == NULL || | |
| 379 | *email == '\0' || *p1 == '\0' || *p2 == '\0' || *t == '\0') { | |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
380 | gaim_connection_error(gc, _("Fill in the registration fields.")); |
| 11414 | 381 | goto exit_err; |
| 382 | } | |
| 383 | ||
| 384 | if (g_utf8_collate(p1, p2) != 0) { | |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
385 | gaim_connection_error(gc, _("Passwords do not match.")); |
| 11414 | 386 | goto exit_err; |
| 387 | } | |
| 388 | ||
| 12007 | 389 | gaim_debug_info("gg", "register_account_ok: token_id = %d; t = %s\n", |
| 390 | token->id, t); | |
| 391 | h = gg_register3(email, p1, token->id, t, 0); | |
| 11414 | 392 | if (h == NULL || !(s = h->data) || !s->success) { |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
393 | gaim_connection_error(gc, |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
394 | _("Unable to register new account. Error occurred.\n")); |
| 11414 | 395 | goto exit_err; |
| 396 | } | |
| 397 | ||
| 398 | uin = s->uin; | |
| 399 | gaim_debug_info("gg", "registered uin: %d\n", uin); | |
| 400 | ||
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
401 | g_free(t); |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
402 | t = g_strdup_printf("%u", uin); |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
403 | gaim_account_set_username(account, t); |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
404 | /* Save the password if remembering passwords for the account */ |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
405 | gaim_account_set_password(account, p1); |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
406 | |
| 11414 | 407 | gaim_notify_info(NULL, _("New Gadu-Gadu Account Registered"), |
| 408 | _("Registration completed successfully!"), NULL); | |
| 409 | ||
| 12007 | 410 | /* TODO: the currently open Accounts Window will not be updated withthe |
| 411 | * new username and etc, we need to somehow have it refresh at this | |
| 412 | * point | |
| 413 | */ | |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
414 | |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
415 | /* Need to disconnect or actually log in. For now, we disconnect. */ |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
416 | gaim_connection_destroy(gc); |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
417 | |
| 11414 | 418 | exit_err: |
| 419 | gg_register_free(h); | |
| 420 | g_free(email); | |
| 421 | g_free(p1); | |
| 422 | g_free(p2); | |
| 423 | g_free(t); | |
| 12007 | 424 | g_free(token->id); |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
425 | g_free(token); |
| 11414 | 426 | } |
| 427 | /* }}} */ | |
| 428 | ||
| 11565 | 429 | /* |
| 430 | */ | |
| 431 | /* static void ggp_callback_register_account_cancel(GaimConnection *gc, GaimRequestFields *fields) {{{ */ | |
| 12007 | 432 | static void ggp_callback_register_account_cancel(GaimConnection *gc, |
| 433 | GaimRequestFields *fields) | |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
434 | { |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
435 | GGPInfo *info = gc->proto_data; |
| 12007 | 436 | GGPToken *token = info->token; |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
437 | |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
438 | gaim_connection_destroy(gc); |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
439 | |
| 12007 | 440 | g_free(token->id); |
| 441 | g_free(token->data); | |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
442 | g_free(token); |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
443 | |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
444 | } |
| 11565 | 445 | /* }}} */ |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
446 | |
| 12007 | 447 | /* |
| 448 | */ | |
| 449 | /* static void ggp_register_user_dialog(GaimConnection *gc) {{{ */ | |
| 450 | static void ggp_register_user_dialog(GaimConnection *gc) | |
| 451 | { | |
| 452 | GaimAccount *account; | |
| 453 | GaimRequestFields *fields; | |
| 454 | GaimRequestFieldGroup *group; | |
| 455 | GaimRequestField *field; | |
| 456 | ||
| 457 | GGPInfo *info = gc->proto_data; | |
| 458 | GGPToken *token = info->token; | |
| 459 | ||
| 460 | ||
| 461 | account = gaim_connection_get_account(gc); | |
| 462 | ||
| 463 | fields = gaim_request_fields_new(); | |
| 464 | group = gaim_request_field_group_new(NULL); | |
| 465 | gaim_request_fields_add_group(fields, group); | |
| 466 | ||
| 467 | field = gaim_request_field_string_new("email", | |
|
13546
0700f0c29e14
[gaim-migrate @ 15922]
Richard Laager <rlaager@pidgin.im>
parents:
13518
diff
changeset
|
468 | _("E-mail"), "", FALSE); |
| 12007 | 469 | gaim_request_field_string_set_masked(field, FALSE); |
| 470 | gaim_request_field_group_add_field(group, field); | |
| 471 | ||
| 472 | field = gaim_request_field_string_new("password1", | |
| 473 | _("Password"), "", FALSE); | |
| 474 | gaim_request_field_string_set_masked(field, TRUE); | |
| 475 | gaim_request_field_group_add_field(group, field); | |
| 476 | ||
| 477 | field = gaim_request_field_string_new("password2", | |
| 478 | _("Password (retype)"), "", FALSE); | |
| 479 | gaim_request_field_string_set_masked(field, TRUE); | |
| 480 | gaim_request_field_group_add_field(group, field); | |
| 481 | ||
| 482 | field = gaim_request_field_string_new("token", | |
| 483 | _("Enter current token"), "", FALSE); | |
| 484 | gaim_request_field_string_set_masked(field, FALSE); | |
| 485 | gaim_request_field_group_add_field(group, field); | |
| 486 | ||
| 487 | /* original size: 60x24 */ | |
| 488 | field = gaim_request_field_image_new("token_img", | |
| 489 | _("Current token"), token->data, token->size); | |
| 490 | gaim_request_field_group_add_field(group, field); | |
| 491 | ||
| 492 | gaim_request_fields(account, | |
| 493 | _("Register New Gadu-Gadu Account"), | |
| 494 | _("Register New Gadu-Gadu Account"), | |
| 495 | _("Please, fill in the following fields"), | |
| 496 | fields, | |
| 497 | _("OK"), G_CALLBACK(ggp_callback_register_account_ok), | |
| 498 | _("Cancel"), G_CALLBACK(ggp_callback_register_account_cancel), | |
| 499 | gc); | |
| 500 | } | |
| 501 | /* }}} */ | |
| 502 | ||
| 11414 | 503 | /* ----- PUBLIC DIRECTORY SEARCH ---------------------------------------- */ |
| 504 | ||
| 505 | /* | |
| 506 | */ | |
| 13642 | 507 | /* static void ggp_callback_show_next(GaimConnection *gc, GList *row, gpointer user_data) {{{ */ |
| 508 | static void ggp_callback_show_next(GaimConnection *gc, GList *row, gpointer user_data) | |
| 11414 | 509 | { |
| 510 | GGPInfo *info = gc->proto_data; | |
| 13641 | 511 | GGPSearchForm *form = user_data; |
| 512 | guint32 seq; | |
| 11414 | 513 | |
| 13641 | 514 | g_free(form->offset); |
| 515 | form->offset = g_strdup(form->last_uin); | |
| 516 | ||
| 517 | ggp_search_remove(info->searches, form->seq); | |
| 518 | ||
| 519 | seq = ggp_search_start(gc, form); | |
| 520 | ggp_search_add(info->searches, seq, form); | |
| 11414 | 521 | } |
| 522 | /* }}} */ | |
| 523 | ||
| 524 | /* | |
| 525 | */ | |
| 13642 | 526 | /* static void ggp_callback_add_buddy(GaimConnection *gc, GList *row, gpointer user_data) {{{ */ |
| 527 | static void ggp_callback_add_buddy(GaimConnection *gc, GList *row, gpointer user_data) | |
| 11414 | 528 | { |
| 529 | gaim_blist_request_add_buddy(gaim_connection_get_account(gc), | |
| 12007 | 530 | g_list_nth_data(row, 0), NULL, NULL); |
| 11414 | 531 | } |
| 532 | /* }}} */ | |
| 533 | ||
| 534 | /* | |
| 535 | */ | |
| 13642 | 536 | /* static void ggp_callback_im(GaimConnection *gc, GList *row, gpointer user_data) {{{ */ |
| 537 | static void ggp_callback_im(GaimConnection *gc, GList *row, gpointer user_data) | |
| 538 | { | |
| 539 | GaimAccount *account; | |
| 540 | GaimConversation *conv; | |
| 541 | char *name; | |
| 542 | ||
| 543 | account = gaim_connection_get_account(gc); | |
| 544 | ||
| 545 | name = g_list_nth_data(row, 0); | |
| 546 | conv = gaim_conversation_new(GAIM_CONV_TYPE_IM, account, name); | |
| 547 | gaim_conversation_present(conv); | |
| 548 | } | |
| 549 | /* }}} */ | |
| 550 | ||
| 551 | /* | |
| 552 | */ | |
| 11414 | 553 | /* static void ggp_callback_find_buddies(GaimConnection *gc, GaimRequestFields *fields) {{{ */ |
| 554 | static void ggp_callback_find_buddies(GaimConnection *gc, GaimRequestFields *fields) | |
| 555 | { | |
| 556 | GGPInfo *info = gc->proto_data; | |
| 557 | GGPSearchForm *form; | |
| 13641 | 558 | guint32 seq; |
| 11414 | 559 | |
| 13641 | 560 | form = ggp_search_form_new(GGP_SEARCH_TYPE_FULL); |
| 11414 | 561 | |
| 13641 | 562 | form->user_data = info; |
| 12007 | 563 | form->lastname = charset_convert( |
| 564 | gaim_request_fields_get_string(fields, "lastname"), | |
| 565 | "UTF-8", "CP1250"); | |
| 566 | form->firstname = charset_convert( | |
| 567 | gaim_request_fields_get_string(fields, "firstname"), | |
| 568 | "UTF-8", "CP1250"); | |
| 569 | form->nickname = charset_convert( | |
| 570 | gaim_request_fields_get_string(fields, "nickname"), | |
| 571 | "UTF-8", "CP1250"); | |
| 572 | form->city = charset_convert( | |
| 573 | gaim_request_fields_get_string(fields, "city"), | |
| 574 | "UTF-8", "CP1250"); | |
| 575 | form->birthyear = charset_convert( | |
| 576 | gaim_request_fields_get_string(fields, "year"), | |
| 577 | "UTF-8", "CP1250"); | |
| 11414 | 578 | |
| 579 | switch (gaim_request_fields_get_choice(fields, "gender")) { | |
| 580 | case 1: | |
| 581 | form->gender = g_strdup(GG_PUBDIR50_GENDER_MALE); | |
| 582 | break; | |
| 583 | case 2: | |
| 584 | form->gender = g_strdup(GG_PUBDIR50_GENDER_FEMALE); | |
| 585 | break; | |
| 586 | default: | |
| 587 | form->gender = NULL; | |
| 588 | break; | |
| 589 | } | |
| 590 | ||
| 591 | form->active = gaim_request_fields_get_bool(fields, "active") | |
| 592 | ? g_strdup(GG_PUBDIR50_ACTIVE_TRUE) : NULL; | |
| 593 | ||
| 594 | form->offset = g_strdup("0"); | |
| 595 | ||
| 13641 | 596 | seq = ggp_search_start(gc, form); |
| 597 | ggp_search_add(info->searches, seq, form); | |
| 11414 | 598 | } |
| 599 | /* }}} */ | |
| 600 | ||
| 601 | /* | |
| 602 | */ | |
| 603 | /* static void ggp_find_buddies(GaimPluginAction *action) {{{ */ | |
| 604 | static void ggp_find_buddies(GaimPluginAction *action) | |
| 605 | { | |
| 606 | GaimConnection *gc = (GaimConnection *)action->context; | |
| 607 | ||
| 608 | GaimRequestFields *fields; | |
| 609 | GaimRequestFieldGroup *group; | |
| 610 | GaimRequestField *field; | |
| 611 | ||
| 612 | fields = gaim_request_fields_new(); | |
| 613 | group = gaim_request_field_group_new(NULL); | |
| 614 | gaim_request_fields_add_group(fields, group); | |
| 615 | ||
| 12007 | 616 | field = gaim_request_field_string_new("lastname", |
| 617 | _("Last name"), NULL, FALSE); | |
| 11414 | 618 | gaim_request_field_string_set_masked(field, FALSE); |
| 619 | gaim_request_field_group_add_field(group, field); | |
| 620 | ||
| 12007 | 621 | field = gaim_request_field_string_new("firstname", |
| 622 | _("First name"), NULL, FALSE); | |
| 11414 | 623 | gaim_request_field_string_set_masked(field, FALSE); |
| 624 | gaim_request_field_group_add_field(group, field); | |
| 625 | ||
| 12007 | 626 | field = gaim_request_field_string_new("nickname", |
| 627 | _("Nickname"), NULL, FALSE); | |
| 11414 | 628 | gaim_request_field_string_set_masked(field, FALSE); |
| 629 | gaim_request_field_group_add_field(group, field); | |
| 630 | ||
| 12007 | 631 | field = gaim_request_field_string_new("city", |
| 632 | _("City"), NULL, FALSE); | |
| 11414 | 633 | gaim_request_field_string_set_masked(field, FALSE); |
| 634 | gaim_request_field_group_add_field(group, field); | |
| 635 | ||
| 12007 | 636 | field = gaim_request_field_string_new("year", |
| 637 | _("Year of birth"), NULL, FALSE); | |
| 11414 | 638 | gaim_request_field_group_add_field(group, field); |
| 639 | ||
| 12007 | 640 | field = gaim_request_field_choice_new("gender", _("Gender"), 0); |
| 641 | gaim_request_field_choice_add(field, _("Male or female")); | |
| 642 | gaim_request_field_choice_add(field, _("Male")); | |
| 643 | gaim_request_field_choice_add(field, _("Female")); | |
| 11414 | 644 | gaim_request_field_group_add_field(group, field); |
| 645 | ||
| 12007 | 646 | field = gaim_request_field_bool_new("active", |
| 647 | _("Only online"), FALSE); | |
| 11414 | 648 | gaim_request_field_group_add_field(group, field); |
| 649 | ||
| 650 | gaim_request_fields(gc, | |
| 651 | _("Find buddies"), | |
| 652 | _("Find buddies"), | |
| 653 | _("Please, enter your search criteria below"), | |
| 654 | fields, | |
| 655 | _("OK"), G_CALLBACK(ggp_callback_find_buddies), | |
| 656 | _("Cancel"), NULL, | |
| 657 | gc); | |
| 658 | } | |
| 659 | /* }}} */ | |
| 660 | ||
| 661 | /* ----- CHANGE PASSWORD ------------------------------------------------ */ | |
| 662 | ||
| 663 | /* | |
| 664 | */ | |
| 11360 | 665 | /* static void ggp_callback_change_passwd_ok(GaimConnection *gc, GaimRequestFields *fields) {{{ */ |
| 666 | static void ggp_callback_change_passwd_ok(GaimConnection *gc, GaimRequestFields *fields) | |
| 2393 | 667 | { |
| 11360 | 668 | GaimAccount *account; |
| 669 | GGPInfo *info = gc->proto_data; | |
| 670 | struct gg_http *h; | |
| 671 | gchar *cur, *p1, *p2, *t; | |
| 672 | ||
| 12007 | 673 | cur = charset_convert( |
| 674 | gaim_request_fields_get_string(fields, "password_cur"), | |
| 675 | "UTF-8", "CP1250"); | |
| 676 | p1 = charset_convert( | |
| 677 | gaim_request_fields_get_string(fields, "password1"), | |
| 678 | "UTF-8", "CP1250"); | |
| 679 | p2 = charset_convert( | |
| 680 | gaim_request_fields_get_string(fields, "password2"), | |
| 681 | "UTF-8", "CP1250"); | |
| 682 | t = charset_convert( | |
| 683 | gaim_request_fields_get_string(fields, "token"), | |
| 684 | "UTF-8", "CP1250"); | |
| 11360 | 685 | |
| 686 | account = gaim_connection_get_account(gc); | |
| 687 | ||
| 688 | if (cur == NULL || p1 == NULL || p2 == NULL || t == NULL || | |
| 689 | *cur == '\0' || *p1 == '\0' || *p2 == '\0' || *t == '\0') { | |
| 690 | gaim_notify_error(account, NULL, _("Fill in the fields."), NULL); | |
| 691 | goto exit_err; | |
| 692 | } | |
| 693 | ||
| 694 | if (g_utf8_collate(p1, p2) != 0) { | |
| 12007 | 695 | gaim_notify_error(account, NULL, |
| 696 | _("New passwords do not match."), NULL); | |
| 11360 | 697 | goto exit_err; |
| 698 | } | |
| 2393 | 699 | |
| 11360 | 700 | if (g_utf8_collate(cur, gaim_account_get_password(account)) != 0) { |
| 701 | gaim_notify_error(account, NULL, | |
| 702 | _("Your current password is different from the one that you specified."), | |
| 703 | NULL); | |
| 704 | goto exit_err; | |
| 705 | } | |
| 706 | ||
|
12457
6d2633b10f1d
[gaim-migrate @ 14766]
Casey Harkins <charkins@pidgin.im>
parents:
12373
diff
changeset
|
707 | gaim_debug_info("gg", "Changing password\n"); |
| 11360 | 708 | |
| 709 | /* XXX: this e-mail should be a pref... */ | |
| 710 | h = gg_change_passwd4(ggp_get_uin(account), | |
| 711 | "user@example.net", gaim_account_get_password(account), | |
| 12007 | 712 | p1, info->token->id, t, 0); |
| 2393 | 713 | |
| 11360 | 714 | if (h == NULL) { |
| 715 | gaim_notify_error(account, NULL, | |
| 14754 | 716 | _("Unable to change password. Error occurred.\n"), |
| 11360 | 717 | NULL); |
| 718 | goto exit_err; | |
| 719 | } | |
| 720 | ||
| 721 | gaim_account_set_password(account, p1); | |
| 722 | ||
| 723 | gg_change_passwd_free(h); | |
| 724 | ||
| 725 | gaim_notify_info(account, _("Change password for the Gadu-Gadu account"), | |
| 726 | _("Password was changed successfully!"), NULL); | |
| 727 | ||
| 728 | exit_err: | |
| 729 | g_free(cur); | |
| 730 | g_free(p1); | |
| 731 | g_free(p2); | |
| 732 | g_free(t); | |
| 12007 | 733 | g_free(info->token->id); |
| 734 | g_free(info->token->data); | |
| 735 | g_free(info->token); | |
| 736 | } | |
| 737 | /* }}} */ | |
| 738 | ||
| 739 | /* | |
| 740 | */ | |
| 741 | /* static void ggp_change_passwd_dialog(GaimConnection *gc) {{{ */ | |
| 742 | static void ggp_change_passwd_dialog(GaimConnection *gc) | |
| 743 | { | |
| 744 | GaimRequestFields *fields; | |
| 745 | GaimRequestFieldGroup *group; | |
| 746 | GaimRequestField *field; | |
| 747 | ||
| 748 | GGPInfo *info = gc->proto_data; | |
| 749 | GGPToken *token = info->token; | |
| 750 | ||
| 751 | char *msg; | |
| 752 | ||
| 753 | ||
| 754 | fields = gaim_request_fields_new(); | |
| 755 | group = gaim_request_field_group_new(NULL); | |
| 756 | gaim_request_fields_add_group(fields, group); | |
| 757 | ||
| 758 | field = gaim_request_field_string_new("password_cur", | |
| 759 | _("Current password"), "", FALSE); | |
| 760 | gaim_request_field_string_set_masked(field, TRUE); | |
| 761 | gaim_request_field_group_add_field(group, field); | |
| 762 | ||
| 763 | field = gaim_request_field_string_new("password1", | |
| 764 | _("Password"), "", FALSE); | |
| 765 | gaim_request_field_string_set_masked(field, TRUE); | |
| 766 | gaim_request_field_group_add_field(group, field); | |
| 767 | ||
| 768 | field = gaim_request_field_string_new("password2", | |
| 769 | _("Password (retype)"), "", FALSE); | |
| 770 | gaim_request_field_string_set_masked(field, TRUE); | |
| 771 | gaim_request_field_group_add_field(group, field); | |
| 772 | ||
| 773 | field = gaim_request_field_string_new("token", | |
| 774 | _("Enter current token"), "", FALSE); | |
| 775 | gaim_request_field_string_set_masked(field, FALSE); | |
| 776 | gaim_request_field_group_add_field(group, field); | |
| 777 | ||
| 778 | /* original size: 60x24 */ | |
| 779 | field = gaim_request_field_image_new("token_img", | |
| 780 | _("Current token"), token->data, token->size); | |
| 781 | gaim_request_field_group_add_field(group, field); | |
| 782 | ||
| 783 | msg = g_strdup_printf("%s %d", | |
| 784 | _("Please, enter your current password and your new password for UIN: "), | |
| 785 | ggp_get_uin(gaim_connection_get_account(gc))); | |
| 786 | ||
| 787 | gaim_request_fields(gc, | |
| 788 | _("Change Gadu-Gadu Password"), | |
| 789 | _("Change Gadu-Gadu Password"), | |
| 790 | msg, | |
| 791 | fields, _("OK"), G_CALLBACK(ggp_callback_change_passwd_ok), | |
| 792 | _("Cancel"), NULL, gc); | |
| 793 | ||
| 794 | g_free(msg); | |
| 11360 | 795 | } |
| 796 | /* }}} */ | |
| 2393 | 797 | |
| 11360 | 798 | /* |
| 799 | */ | |
| 800 | /* static void ggp_change_passwd(GaimPluginAction *action) {{{ */ | |
| 801 | static void ggp_change_passwd(GaimPluginAction *action) | |
| 802 | { | |
| 803 | GaimConnection *gc = (GaimConnection *)action->context; | |
| 804 | ||
| 12007 | 805 | ggp_token_request(gc, ggp_change_passwd_dialog); |
| 11360 | 806 | } |
| 807 | /* }}} */ | |
| 808 | ||
| 11414 | 809 | /* ----- CONFERENCES ---------------------------------------------------- */ |
| 810 | ||
| 11394 | 811 | /* |
| 812 | */ | |
| 813 | /* static void ggp_callback_add_to_chat_ok(GaimConnection *gc, GaimRequestFields *fields) {{{ */ | |
| 814 | static void ggp_callback_add_to_chat_ok(GaimConnection *gc, GaimRequestFields *fields) | |
| 815 | { | |
| 816 | GGPInfo *info = gc->proto_data; | |
| 817 | GaimRequestField *field; | |
| 12961 | 818 | const GList *sel; |
| 11394 | 819 | |
| 820 | field = gaim_request_fields_get_field(fields, "name"); | |
| 821 | sel = gaim_request_field_list_get_selected(field); | |
| 822 | ||
| 12961 | 823 | ggp_confer_participants_add_uin(gc, sel->data, info->tmp_buddy); |
| 824 | info->tmp_buddy = 0; | |
| 11394 | 825 | } |
| 826 | /* }}} */ | |
| 827 | ||
| 828 | /* | |
| 829 | */ | |
| 830 | /* static void ggp_bmenu_add_to_chat(GaimBlistNode *node, gpointer ignored) {{{ */ | |
| 831 | static void ggp_bmenu_add_to_chat(GaimBlistNode *node, gpointer ignored) | |
| 832 | { | |
| 833 | GaimBuddy *buddy; | |
| 834 | GaimConnection *gc; | |
| 835 | GGPInfo *info; | |
| 836 | ||
| 837 | GaimRequestFields *fields; | |
| 838 | GaimRequestFieldGroup *group; | |
| 839 | GaimRequestField *field; | |
| 840 | ||
| 841 | GList *l; | |
| 842 | gchar *msg; | |
| 843 | ||
| 844 | buddy = (GaimBuddy *)node; | |
| 845 | gc = gaim_account_get_connection(gaim_buddy_get_account(buddy)); | |
| 846 | info = gc->proto_data; | |
| 847 | ||
| 12961 | 848 | /* TODO: It tmp_buddy != 0 then stop! */ |
| 849 | info->tmp_buddy = ggp_str_to_uin(gaim_buddy_get_name(buddy)); | |
| 11394 | 850 | |
| 851 | fields = gaim_request_fields_new(); | |
| 852 | group = gaim_request_field_group_new(NULL); | |
| 853 | gaim_request_fields_add_group(fields, group); | |
| 854 | ||
| 855 | field = gaim_request_field_list_new("name", "Chat name"); | |
| 856 | for (l = info->chats; l != NULL; l = l->next) { | |
| 857 | GGPChat *chat = l->data; | |
| 12007 | 858 | gaim_request_field_list_add(field, g_strdup(chat->name), |
| 859 | g_strdup(chat->name)); | |
| 11394 | 860 | } |
| 861 | gaim_request_field_group_add_field(group, field); | |
| 862 | ||
| 12007 | 863 | msg = g_strdup_printf(_("Select a chat for buddy: %s"), |
| 13466 | 864 | gaim_buddy_get_alias(buddy)); |
| 11394 | 865 | gaim_request_fields(gc, |
| 866 | _("Add to chat..."), | |
| 867 | _("Add to chat..."), | |
| 868 | msg, | |
| 869 | fields, | |
| 870 | _("Add"), G_CALLBACK(ggp_callback_add_to_chat_ok), | |
| 871 | _("Cancel"), NULL, gc); | |
| 872 | g_free(msg); | |
| 873 | } | |
| 874 | /* }}} */ | |
| 875 | ||
| 11414 | 876 | /* ----- BLOCK BUDDIES -------------------------------------------------- */ |
| 877 | ||
| 11410 | 878 | /* |
| 879 | */ | |
| 880 | /* static void ggp_bmenu_block(GaimBlistNode *node, gpointer ignored) {{{ */ | |
| 881 | static void ggp_bmenu_block(GaimBlistNode *node, gpointer ignored) | |
| 882 | { | |
| 883 | GaimConnection *gc; | |
| 884 | GaimBuddy *buddy; | |
| 885 | GGPInfo *info; | |
| 886 | uin_t uin; | |
| 887 | ||
| 888 | buddy = (GaimBuddy *)node; | |
| 889 | gc = gaim_account_get_connection(gaim_buddy_get_account(buddy)); | |
| 890 | info = gc->proto_data; | |
| 891 | ||
| 892 | uin = ggp_str_to_uin(gaim_buddy_get_name(buddy)); | |
| 893 | ||
| 894 | if (gaim_blist_node_get_bool(node, "blocked")) { | |
| 895 | gaim_blist_node_set_bool(node, "blocked", FALSE); | |
| 896 | gg_remove_notify_ex(info->session, uin, GG_USER_BLOCKED); | |
| 897 | gg_add_notify_ex(info->session, uin, GG_USER_NORMAL); | |
| 898 | gaim_debug_info("gg", "send: uin=%d; mode=NORMAL\n", uin); | |
| 899 | } else { | |
| 900 | gaim_blist_node_set_bool(node, "blocked", TRUE); | |
| 901 | gg_remove_notify_ex(info->session, uin, GG_USER_NORMAL); | |
| 902 | gg_add_notify_ex(info->session, uin, GG_USER_BLOCKED); | |
| 903 | gaim_debug_info("gg", "send: uin=%d; mode=BLOCKED\n", uin); | |
| 904 | } | |
| 905 | } | |
| 906 | /* }}} */ | |
| 907 | ||
| 11360 | 908 | /* ---------------------------------------------------------------------- */ |
| 11414 | 909 | /* ----- INTERNAL CALLBACKS --------------------------------------------- */ |
| 910 | /* ---------------------------------------------------------------------- */ | |
| 911 | ||
| 12964 | 912 | /* just a prototype */ |
| 913 | static void ggp_set_status(GaimAccount *account, GaimStatus *status); | |
| 914 | ||
| 11414 | 915 | /** |
| 916 | * Handle change of the status of the buddy. | |
| 917 | * | |
| 918 | * @param gc GaimConnection | |
| 919 | * @param uin UIN of the buddy. | |
| 920 | * @param status ID of the status. | |
| 921 | * @param descr Description. | |
| 922 | */ | |
| 923 | /* static void ggp_generic_status_handler(GaimConnection *gc, uin_t uin, int status, const char *descr) {{{ */ | |
| 12007 | 924 | static void ggp_generic_status_handler(GaimConnection *gc, uin_t uin, |
| 925 | int status, const char *descr) | |
| 11414 | 926 | { |
| 927 | gchar *from; | |
| 928 | const char *st; | |
| 929 | gchar *msg; | |
| 930 | ||
| 931 | from = g_strdup_printf("%ld", (unsigned long int)uin); | |
| 932 | switch (status) { | |
| 933 | case GG_STATUS_NOT_AVAIL: | |
| 934 | case GG_STATUS_NOT_AVAIL_DESCR: | |
| 935 | st = "offline"; | |
| 936 | break; | |
| 937 | case GG_STATUS_AVAIL: | |
| 938 | case GG_STATUS_AVAIL_DESCR: | |
|
11638
1821b40269a3
[gaim-migrate @ 13914]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11565
diff
changeset
|
939 | st = "available"; |
| 11414 | 940 | break; |
| 941 | case GG_STATUS_BUSY: | |
| 942 | case GG_STATUS_BUSY_DESCR: | |
|
12718
34152a2d35fc
[gaim-migrate @ 15062]
Richard Laager <rlaager@pidgin.im>
parents:
12717
diff
changeset
|
943 | st = "away"; |
| 11414 | 944 | break; |
| 945 | case GG_STATUS_BLOCKED: | |
| 946 | /* user is blocking us.... */ | |
| 947 | st = "blocked"; | |
| 948 | break; | |
| 949 | default: | |
|
11638
1821b40269a3
[gaim-migrate @ 13914]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11565
diff
changeset
|
950 | st = "available"; |
| 12007 | 951 | gaim_debug_info("gg", |
| 952 | "GG_EVENT_NOTIFY: Unknown status: %d\n", status); | |
| 11414 | 953 | break; |
| 954 | } | |
| 955 | ||
| 956 | gaim_debug_info("gg", "st = %s\n", st); | |
| 957 | msg = charset_convert(descr, "CP1250", "UTF-8"); | |
| 12007 | 958 | gaim_prpl_got_user_status(gaim_connection_get_account(gc), |
| 959 | from, st, "message", msg, NULL); | |
| 11414 | 960 | g_free(from); |
| 961 | g_free(msg); | |
| 962 | } | |
| 963 | /* }}} */ | |
| 964 | ||
| 12007 | 965 | /* |
| 966 | */ | |
| 13643 | 967 | /* static void ggp_sr_close_cb(gpointer user_data) {{{ */ |
| 968 | static void ggp_sr_close_cb(gpointer user_data) | |
| 12220 | 969 | { |
| 13643 | 970 | GGPSearchForm *form = user_data; |
| 13641 | 971 | GGPInfo *info = form->user_data; |
| 12220 | 972 | |
| 13641 | 973 | ggp_search_remove(info->searches, form->seq); |
| 974 | ggp_search_form_destroy(form); | |
| 12220 | 975 | } |
| 976 | /* }}} */ | |
| 977 | ||
| 13645 | 978 | /** |
| 979 | * Translate a status' ID to a more user-friendly name. | |
| 980 | * | |
| 981 | * @param id The ID of the status. | |
| 982 | * | |
| 983 | * @return The user-friendly name of the status. | |
| 984 | */ | |
| 985 | /* static const char *ggp_status_by_id(unsigned int id) {{{ */ | |
| 986 | static const char *ggp_status_by_id(unsigned int id) | |
| 987 | { | |
| 988 | const char *st; | |
| 989 | ||
| 990 | gaim_debug_info("gg", "ggp_status_by_id: %d\n", id); | |
| 991 | switch (id) { | |
| 992 | case GG_STATUS_NOT_AVAIL: | |
| 993 | st = _("Offline"); | |
| 994 | break; | |
| 995 | case GG_STATUS_AVAIL: | |
| 996 | st = _("Available"); | |
| 997 | break; | |
| 998 | case GG_STATUS_BUSY: | |
| 999 | st = _("Away"); | |
| 1000 | break; | |
| 1001 | default: | |
| 1002 | st = _("Unknown"); | |
| 1003 | break; | |
| 1004 | } | |
| 1005 | ||
| 1006 | return st; | |
| 1007 | } | |
| 1008 | /* }}} */ | |
| 1009 | ||
| 12220 | 1010 | /* |
| 1011 | */ | |
| 13643 | 1012 | /* static void ggp_pubdir_handle_info(GaimConnection *gc, gg_pubdir50_t req, GGPSearchForm *form) {{{ */ |
| 1013 | static void ggp_pubdir_handle_info(GaimConnection *gc, gg_pubdir50_t req, | |
| 1014 | GGPSearchForm *form) | |
| 12007 | 1015 | { |
| 13643 | 1016 | GString *text; |
| 1017 | char *val, *who; | |
| 1018 | ||
| 1019 | text = g_string_new(""); | |
| 1020 | ||
| 1021 | val = ggp_search_get_result(req, 0, GG_PUBDIR50_STATUS); | |
| 13645 | 1022 | /* XXX: Use of ggp_str_to_uin() is an ugly hack! */ |
| 13643 | 1023 | g_string_append_printf(text, "<b>%s:</b> %s<br/>", |
| 13645 | 1024 | _("Status"), ggp_status_by_id(ggp_str_to_uin(val))); |
| 13643 | 1025 | g_free(val); |
| 1026 | ||
| 1027 | who = ggp_search_get_result(req, 0, GG_PUBDIR50_UIN); | |
| 1028 | g_string_append_printf(text, "<b>%s:</b> %s<br/>", | |
| 1029 | _("UIN"), who); | |
| 1030 | ||
| 1031 | val = ggp_search_get_result(req, 0, GG_PUBDIR50_FIRSTNAME); | |
| 1032 | g_string_append_printf(text, "<b>%s:</b> %s<br/>", | |
| 1033 | _("First Name"), val); | |
| 1034 | g_free(val); | |
| 1035 | ||
| 1036 | val = ggp_search_get_result(req, 0, GG_PUBDIR50_NICKNAME); | |
| 1037 | g_string_append_printf(text, "<b>%s:</b> %s<br/>", | |
| 1038 | _("Nickname"), val); | |
| 1039 | g_free(val); | |
| 1040 | ||
| 1041 | val = ggp_search_get_result(req, 0, GG_PUBDIR50_CITY); | |
| 1042 | g_string_append_printf(text, "<b>%s:</b> %s<br/>", | |
| 1043 | _("City"), val); | |
| 1044 | g_free(val); | |
| 1045 | ||
| 1046 | val = ggp_search_get_result(req, 0, GG_PUBDIR50_BIRTHYEAR); | |
| 1047 | if (strncmp(val, "0", 1) == 0) { | |
| 1048 | g_free(val); | |
| 1049 | val = g_strdup(""); | |
| 1050 | } | |
| 1051 | g_string_append_printf(text, "<b>%s:</b> %s<br/>", | |
| 1052 | _("Birth Year"), val); | |
| 1053 | g_free(val); | |
| 1054 | ||
| 1055 | val = ggp_buddy_get_name(gc, ggp_str_to_uin(who)); | |
| 1056 | g_free(who); | |
| 1057 | who = val; | |
| 1058 | ||
| 1059 | val = gaim_strdup_withhtml(text->str); | |
| 1060 | ||
| 1061 | gaim_notify_userinfo(gc, who, val, ggp_sr_close_cb, form); | |
| 1062 | ||
| 1063 | g_string_free(text, TRUE); | |
| 1064 | g_free(val); | |
| 1065 | g_free(who); | |
| 1066 | } | |
| 1067 | /* }}} */ | |
| 1068 | ||
| 1069 | /* | |
| 1070 | */ | |
| 1071 | /* static void ggp_pubdir_handle_full(GaimConnection *gc, gg_pubdir50_t req, GGPSearchForm *form) {{{ */ | |
| 1072 | static void ggp_pubdir_handle_full(GaimConnection *gc, gg_pubdir50_t req, | |
| 1073 | GGPSearchForm *form) | |
| 1074 | { | |
| 12007 | 1075 | GaimNotifySearchResults *results; |
| 1076 | GaimNotifySearchColumn *column; | |
| 13643 | 1077 | int res_count; |
| 12007 | 1078 | int start; |
| 1079 | int i; | |
| 13641 | 1080 | |
| 13643 | 1081 | g_return_if_fail(form != NULL); |
| 12007 | 1082 | |
| 1083 | res_count = gg_pubdir50_count(req); | |
| 13643 | 1084 | res_count = (res_count > PUBDIR_RESULTS_MAX) ? PUBDIR_RESULTS_MAX : res_count; |
| 12007 | 1085 | |
| 1086 | results = gaim_notify_searchresults_new(); | |
| 1087 | ||
| 12257 | 1088 | if (results == NULL) { |
| 1089 | gaim_debug_error("gg", "ggp_pubdir_reply_handler: " | |
| 1090 | "Unable to display the search results.\n"); | |
| 1091 | gaim_notify_error(gc, NULL, | |
| 1092 | _("Unable to display the search results."), | |
| 1093 | NULL); | |
| 13641 | 1094 | ggp_sr_close_cb(form); |
| 12257 | 1095 | return; |
| 1096 | } | |
| 1097 | ||
| 12220 | 1098 | column = gaim_notify_searchresults_column_new(_("UIN")); |
| 12007 | 1099 | gaim_notify_searchresults_column_add(results, column); |
| 1100 | ||
|
13573
b054b0e348fe
[gaim-migrate @ 15951]
Richard Laager <rlaager@pidgin.im>
parents:
13546
diff
changeset
|
1101 | column = gaim_notify_searchresults_column_new(_("First Name")); |
| 12007 | 1102 | gaim_notify_searchresults_column_add(results, column); |
| 1103 | ||
|
12489
14274d68d499
[gaim-migrate @ 14801]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
12467
diff
changeset
|
1104 | column = gaim_notify_searchresults_column_new(_("Nickname")); |
| 12007 | 1105 | gaim_notify_searchresults_column_add(results, column); |
| 1106 | ||
| 12220 | 1107 | column = gaim_notify_searchresults_column_new(_("City")); |
| 12007 | 1108 | gaim_notify_searchresults_column_add(results, column); |
| 1109 | ||
|
13573
b054b0e348fe
[gaim-migrate @ 15951]
Richard Laager <rlaager@pidgin.im>
parents:
13546
diff
changeset
|
1110 | column = gaim_notify_searchresults_column_new(_("Birth Year")); |
| 12007 | 1111 | gaim_notify_searchresults_column_add(results, column); |
| 1112 | ||
| 1113 | gaim_debug_info("gg", "Going with %d entries\n", res_count); | |
| 1114 | ||
| 1115 | start = (int)ggp_str_to_uin(gg_pubdir50_get(req, 0, GG_PUBDIR50_START)); | |
| 1116 | gaim_debug_info("gg", "start = %d\n", start); | |
| 1117 | ||
| 1118 | for (i = 0; i < res_count; i++) { | |
| 1119 | GList *row = NULL; | |
| 1120 | char *birth = ggp_search_get_result(req, i, GG_PUBDIR50_BIRTHYEAR); | |
| 1121 | ||
| 1122 | /* TODO: Status will be displayed as an icon. */ | |
| 1123 | /* row = g_list_append(row, ggp_search_get_result(req, i, GG_PUBDIR50_STATUS)); */ | |
| 1124 | row = g_list_append(row, ggp_search_get_result(req, i, | |
| 1125 | GG_PUBDIR50_UIN)); | |
| 1126 | row = g_list_append(row, ggp_search_get_result(req, i, | |
| 1127 | GG_PUBDIR50_FIRSTNAME)); | |
| 1128 | row = g_list_append(row, ggp_search_get_result(req, i, | |
| 1129 | GG_PUBDIR50_NICKNAME)); | |
| 1130 | row = g_list_append(row, ggp_search_get_result(req, i, | |
| 1131 | GG_PUBDIR50_CITY)); | |
| 1132 | row = g_list_append(row, | |
| 1133 | (birth && strncmp(birth, "0", 1)) ? birth : g_strdup("-")); | |
| 1134 | ||
| 1135 | gaim_notify_searchresults_row_add(results, row); | |
| 1136 | ||
| 1137 | if (i == res_count - 1) { | |
| 13641 | 1138 | g_free(form->last_uin); |
| 1139 | form->last_uin = ggp_search_get_result(req, i, GG_PUBDIR50_UIN); | |
| 12007 | 1140 | } |
| 1141 | } | |
| 1142 | ||
| 1143 | gaim_notify_searchresults_button_add(results, GAIM_NOTIFY_BUTTON_CONTINUE, | |
| 1144 | ggp_callback_show_next); | |
|
12624
c1c92f08976b
[gaim-migrate @ 14960]
Christopher O'Brien <siege@pidgin.im>
parents:
12600
diff
changeset
|
1145 | gaim_notify_searchresults_button_add(results, GAIM_NOTIFY_BUTTON_ADD, |
| 12007 | 1146 | ggp_callback_add_buddy); |
| 13642 | 1147 | gaim_notify_searchresults_button_add(results, GAIM_NOTIFY_BUTTON_IM, |
| 1148 | ggp_callback_im); | |
| 13643 | 1149 | |
| 13641 | 1150 | if (form->window == NULL) { |
| 12007 | 1151 | void *h = gaim_notify_searchresults(gc, |
| 1152 | _("Gadu-Gadu Public Directory"), | |
| 12220 | 1153 | _("Search results"), NULL, results, |
| 12257 | 1154 | (GaimNotifyCloseCallback)ggp_sr_close_cb, |
| 13641 | 1155 | form); |
| 12257 | 1156 | |
|
12277
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1157 | if (h == NULL) { |
|
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1158 | gaim_debug_error("gg", "ggp_pubdir_reply_handler: " |
|
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1159 | "Unable to display the search results.\n"); |
|
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1160 | gaim_notify_error(gc, NULL, |
|
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1161 | _("Unable to display the search results."), |
|
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1162 | NULL); |
|
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1163 | return; |
|
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1164 | } |
|
6e45a609022c
[gaim-migrate @ 14581]
Richard Laager <rlaager@pidgin.im>
parents:
12258
diff
changeset
|
1165 | |
| 13641 | 1166 | form->window = h; |
| 12007 | 1167 | } else { |
| 13641 | 1168 | gaim_notify_searchresults_new_rows(gc, results, form->window); |
| 12007 | 1169 | } |
| 1170 | } | |
| 1171 | /* }}} */ | |
| 1172 | ||
| 13643 | 1173 | /* |
| 1174 | */ | |
| 1175 | /* static void ggp_pubdir_reply_handler(GaimConnection *gc, gg_pubdir50_t req) {{{ */ | |
| 1176 | static void ggp_pubdir_reply_handler(GaimConnection *gc, gg_pubdir50_t req) | |
| 1177 | { | |
| 1178 | GGPInfo *info = gc->proto_data; | |
| 1179 | GGPSearchForm *form; | |
| 1180 | int res_count; | |
| 1181 | guint32 seq; | |
| 1182 | ||
| 1183 | seq = gg_pubdir50_seq(req); | |
| 1184 | form = ggp_search_get(info->searches, seq); | |
| 1185 | ||
| 1186 | /* | |
| 1187 | * this can happen when user will request more results | |
| 1188 | * and close the results window before they arrive. | |
| 1189 | */ | |
| 1190 | g_return_if_fail(form != NULL); | |
| 1191 | ||
| 1192 | res_count = gg_pubdir50_count(req); | |
| 1193 | if (res_count < 1) { | |
| 1194 | gaim_debug_info("gg", "GG_EVENT_PUBDIR50_SEARCH_REPLY: Nothing found\n"); | |
| 1195 | gaim_notify_error(gc, NULL, | |
| 1196 | _("No matching users found"), | |
| 1197 | _("There are no users matching your search criteria.")); | |
| 1198 | ggp_sr_close_cb(form); | |
| 1199 | return; | |
| 1200 | } | |
| 1201 | ||
| 1202 | switch (form->search_type) { | |
| 1203 | case GGP_SEARCH_TYPE_INFO: | |
| 1204 | ggp_pubdir_handle_info(gc, req, form); | |
| 1205 | break; | |
| 1206 | case GGP_SEARCH_TYPE_FULL: | |
| 1207 | ggp_pubdir_handle_full(gc, req, form); | |
| 1208 | break; | |
| 1209 | default: | |
| 1210 | gaim_debug_warning("gg", "Unknown search_type!\n"); | |
| 1211 | break; | |
| 1212 | } | |
| 1213 | } | |
| 1214 | /* }}} */ | |
| 1215 | ||
| 11414 | 1216 | /** |
| 1217 | * Dispatch a message received from a buddy. | |
| 1218 | * | |
| 1219 | * @param gc GaimConnection. | |
| 1220 | * @param ev Gadu-Gadu event structure. | |
| 1221 | */ | |
| 1222 | /* static void ggp_recv_message_handler(GaimConnection *gc, const struct gg_event *ev) {{{ */ | |
| 1223 | static void ggp_recv_message_handler(GaimConnection *gc, const struct gg_event *ev) | |
| 1224 | { | |
| 1225 | GGPInfo *info = gc->proto_data; | |
| 1226 | GaimConversation *conv; | |
| 1227 | gchar *from; | |
| 1228 | gchar *msg; | |
| 1229 | gchar *tmp; | |
| 1230 | ||
| 1231 | from = g_strdup_printf("%lu", (unsigned long int)ev->event.msg.sender); | |
| 1232 | ||
| 12961 | 1233 | tmp = charset_convert((const char *)ev->event.msg.message, |
| 12007 | 1234 | "CP1250", "UTF-8"); |
| 12961 | 1235 | gaim_str_strip_char(tmp, '\r'); |
| 1236 | msg = g_markup_escape_text(tmp, -1); | |
| 1237 | g_free(tmp); | |
| 11414 | 1238 | |
| 1239 | gaim_debug_info("gg", "msg form (%s): %s (class = %d; rcpt_count = %d)\n", | |
| 12961 | 1240 | from, msg, ev->event.msg.msgclass, |
| 12007 | 1241 | ev->event.msg.recipients_count); |
| 11414 | 1242 | |
| 1243 | if (ev->event.msg.recipients_count == 0) { | |
| 12961 | 1244 | serv_got_im(gc, from, msg, 0, ev->event.msg.time); |
| 11414 | 1245 | } else { |
|
12373
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1246 | const char *chat_name; |
|
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1247 | int chat_id; |
|
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1248 | char *buddy_name; |
|
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1249 | |
| 11414 | 1250 | chat_name = ggp_confer_find_by_participants(gc, |
| 12007 | 1251 | ev->event.msg.recipients, |
| 1252 | ev->event.msg.recipients_count); | |
| 12961 | 1253 | |
| 11414 | 1254 | if (chat_name == NULL) { |
| 1255 | chat_name = ggp_confer_add_new(gc, NULL); | |
| 1256 | serv_got_joined_chat(gc, info->chats_count, chat_name); | |
| 12007 | 1257 | |
| 1258 | ggp_confer_participants_add_uin(gc, chat_name, | |
| 1259 | ev->event.msg.sender); | |
| 1260 | ||
| 1261 | ggp_confer_participants_add(gc, chat_name, | |
| 1262 | ev->event.msg.recipients, | |
| 1263 | ev->event.msg.recipients_count); | |
| 11414 | 1264 | } |
| 1265 | conv = ggp_confer_find_by_name(gc, chat_name); | |
| 1266 | chat_id = gaim_conv_chat_get_id(GAIM_CONV_CHAT(conv)); | |
|
12373
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1267 | |
|
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1268 | buddy_name = ggp_buddy_get_name(gc, ev->event.msg.sender); |
|
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1269 | serv_got_chat_in(gc, chat_id, buddy_name, |
| 12961 | 1270 | GAIM_MESSAGE_RECV, msg, ev->event.msg.time); |
|
12373
a8f71f73576d
[gaim-migrate @ 14677]
Richard Laager <rlaager@pidgin.im>
parents:
12277
diff
changeset
|
1271 | g_free(buddy_name); |
| 11414 | 1272 | } |
| 12961 | 1273 | g_free(msg); |
| 11414 | 1274 | g_free(from); |
| 1275 | } | |
| 1276 | /* }}} */ | |
| 1277 | ||
| 1278 | /* | |
| 1279 | */ | |
| 1280 | /* static void ggp_callback_recv(gpointer _gc, gint fd, GaimInputCondition cond) {{{ */ | |
| 1281 | static void ggp_callback_recv(gpointer _gc, gint fd, GaimInputCondition cond) | |
| 1282 | { | |
| 1283 | GaimConnection *gc = _gc; | |
| 1284 | GGPInfo *info = gc->proto_data; | |
| 1285 | struct gg_event *ev; | |
| 1286 | int i; | |
| 1287 | ||
| 1288 | if (!(ev = gg_watch_fd(info->session))) { | |
| 12007 | 1289 | gaim_debug_error("gg", |
| 1290 | "ggp_callback_recv: gg_watch_fd failed -- CRITICAL!\n"); | |
| 11414 | 1291 | gaim_connection_error(gc, _("Unable to read socket")); |
| 1292 | return; | |
| 1293 | } | |
| 1294 | ||
| 1295 | switch (ev->type) { | |
| 1296 | case GG_EVENT_NONE: | |
| 1297 | /* Nothing happened. */ | |
| 1298 | break; | |
| 1299 | case GG_EVENT_MSG: | |
| 1300 | ggp_recv_message_handler(gc, ev); | |
| 1301 | break; | |
| 1302 | case GG_EVENT_ACK: | |
| 12007 | 1303 | gaim_debug_info("gg", |
| 1304 | "message sent to: %ld, delivery status=%d, seq=%d\n", | |
| 1305 | ev->event.ack.recipient, ev->event.ack.status, | |
| 1306 | ev->event.ack.seq); | |
| 11414 | 1307 | break; |
| 1308 | case GG_EVENT_NOTIFY: | |
| 1309 | case GG_EVENT_NOTIFY_DESCR: | |
| 1310 | { | |
| 1311 | struct gg_notify_reply *n; | |
| 1312 | char *descr; | |
| 1313 | ||
| 1314 | gaim_debug_info("gg", "notify_pre: (%d) status: %d\n", | |
| 1315 | ev->event.notify->uin, | |
| 1316 | ev->event.notify->status); | |
| 1317 | ||
| 1318 | n = (ev->type == GG_EVENT_NOTIFY) ? ev->event.notify | |
| 1319 | : ev->event.notify_descr.notify; | |
| 1320 | ||
| 1321 | for (; n->uin; n++) { | |
| 1322 | descr = (ev->type == GG_EVENT_NOTIFY) ? NULL | |
| 12007 | 1323 | : ev->event.notify_descr.descr; |
| 1324 | ||
| 1325 | gaim_debug_info("gg", | |
| 1326 | "notify: (%d) status: %d; descr: %s\n", | |
|
14524
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1327 | n->uin, n->status, descr ? descr : "(null)"); |
| 11414 | 1328 | |
| 1329 | ggp_generic_status_handler(gc, | |
| 12007 | 1330 | n->uin, n->status, descr); |
| 11414 | 1331 | } |
| 1332 | } | |
| 1333 | break; | |
| 1334 | case GG_EVENT_NOTIFY60: | |
| 12007 | 1335 | gaim_debug_info("gg", |
| 1336 | "notify60_pre: (%d) status=%d; version=%d; descr=%s\n", | |
| 1337 | ev->event.notify60->uin, ev->event.notify60->status, | |
|
14524
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1338 | ev->event.notify60->version, |
|
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1339 | ev->event.notify60->descr ? ev->event.notify60->descr : "(null)"); |
| 11414 | 1340 | |
| 1341 | for (i = 0; ev->event.notify60[i].uin; i++) { | |
| 12007 | 1342 | gaim_debug_info("gg", |
| 1343 | "notify60: (%d) status=%d; version=%d; descr=%s\n", | |
| 1344 | ev->event.notify60[i].uin, | |
| 1345 | ev->event.notify60[i].status, | |
| 1346 | ev->event.notify60[i].version, | |
|
14524
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1347 | ev->event.notify60[i].descr ? ev->event.notify60[i].descr : "(null)"); |
| 11414 | 1348 | |
| 12007 | 1349 | ggp_generic_status_handler(gc, ev->event.notify60[i].uin, |
| 1350 | ev->event.notify60[i].status, | |
| 1351 | ev->event.notify60[i].descr); | |
| 11414 | 1352 | } |
| 1353 | break; | |
| 1354 | case GG_EVENT_STATUS: | |
| 1355 | gaim_debug_info("gg", "status: (%d) status=%d; descr=%s\n", | |
| 1356 | ev->event.status.uin, ev->event.status.status, | |
|
14524
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1357 | ev->event.status.descr ? ev->event.status.descr : "(null)"); |
| 11414 | 1358 | |
| 12007 | 1359 | ggp_generic_status_handler(gc, ev->event.status.uin, |
| 1360 | ev->event.status.status, ev->event.status.descr); | |
| 11414 | 1361 | break; |
| 1362 | case GG_EVENT_STATUS60: | |
| 12007 | 1363 | gaim_debug_info("gg", |
| 1364 | "status60: (%d) status=%d; version=%d; descr=%s\n", | |
| 1365 | ev->event.status60.uin, ev->event.status60.status, | |
|
14524
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1366 | ev->event.status60.version, |
|
9637518e9703
[gaim-migrate @ 17176]
Daniel Atallah <datallah@pidgin.im>
parents:
14521
diff
changeset
|
1367 | ev->event.status60.descr ? ev->event.status60.descr : "(null)"); |
| 11414 | 1368 | |
| 12007 | 1369 | ggp_generic_status_handler(gc, ev->event.status60.uin, |
| 1370 | ev->event.status60.status, ev->event.status60.descr); | |
| 11414 | 1371 | break; |
| 1372 | case GG_EVENT_USERLIST: | |
| 1373 | if (ev->event.userlist.type == GG_USERLIST_GET_REPLY) { | |
| 1374 | gaim_debug_info("gg", "GG_USERLIST_GET_REPLY\n"); | |
| 12220 | 1375 | gaim_notify_info(gc, NULL, |
| 1376 | _("Buddy list downloaded"), | |
| 1377 | _("Your buddy list was downloaded from the server.")); | |
| 11414 | 1378 | if (ev->event.userlist.reply != NULL) { |
| 12007 | 1379 | ggp_buddylist_load(gc, ev->event.userlist.reply); |
| 11414 | 1380 | } |
| 1381 | } else { | |
| 12220 | 1382 | gaim_debug_info("gg", "GG_USERLIST_PUT_REPLY\n"); |
| 1383 | gaim_notify_info(gc, NULL, | |
| 1384 | _("Buddy list uploaded"), | |
| 1385 | _("Your buddy list was stored on the server.")); | |
| 11414 | 1386 | } |
| 1387 | break; | |
| 1388 | case GG_EVENT_PUBDIR50_SEARCH_REPLY: | |
| 12007 | 1389 | ggp_pubdir_reply_handler(gc, ev->event.pubdir50); |
| 1390 | break; | |
| 1391 | default: | |
| 1392 | gaim_debug_error("gg", | |
| 1393 | "unsupported event type=%d\n", ev->type); | |
| 1394 | break; | |
| 1395 | } | |
| 11414 | 1396 | |
| 12007 | 1397 | gg_free_event(ev); |
| 1398 | } | |
| 1399 | /* }}} */ | |
| 11414 | 1400 | |
| 12007 | 1401 | /* |
| 1402 | */ | |
| 1403 | /* static void ggp_async_login_handler(gpointer _gc, gint fd, GaimInputCondition cond) {{{ */ | |
| 1404 | static void ggp_async_login_handler(gpointer _gc, gint fd, GaimInputCondition cond) | |
| 1405 | { | |
| 1406 | GaimConnection *gc = _gc; | |
| 1407 | GGPInfo *info = gc->proto_data; | |
| 1408 | struct gg_event *ev; | |
| 11414 | 1409 | |
| 12007 | 1410 | gaim_debug_info("gg", "login_handler: session: check = %d; state = %d;\n", |
| 1411 | info->session->check, info->session->state); | |
| 11414 | 1412 | |
| 12007 | 1413 | switch (info->session->state) { |
| 1414 | case GG_STATE_RESOLVING: | |
| 1415 | gaim_debug_info("gg", "GG_STATE_RESOLVING\n"); | |
| 1416 | break; | |
| 1417 | case GG_STATE_CONNECTING_HUB: | |
| 1418 | gaim_debug_info("gg", "GG_STATE_CONNECTING_HUB\n"); | |
| 1419 | break; | |
| 1420 | case GG_STATE_READING_DATA: | |
| 1421 | gaim_debug_info("gg", "GG_STATE_READING_DATA\n"); | |
| 1422 | break; | |
| 1423 | case GG_STATE_CONNECTING_GG: | |
| 1424 | gaim_debug_info("gg", "GG_STATE_CONNECTING_GG\n"); | |
| 1425 | break; | |
| 1426 | case GG_STATE_READING_KEY: | |
| 1427 | gaim_debug_info("gg", "GG_STATE_READING_KEY\n"); | |
| 1428 | break; | |
| 1429 | case GG_STATE_READING_REPLY: | |
| 1430 | gaim_debug_info("gg", "GG_STATE_READING_REPLY\n"); | |
| 11414 | 1431 | break; |
| 1432 | default: | |
| 12007 | 1433 | gaim_debug_error("gg", "unknown state = %d\n", |
| 1434 | info->session->state); | |
| 1435 | break; | |
| 1436 | } | |
| 1437 | ||
| 1438 | if (!(ev = gg_watch_fd(info->session))) { | |
| 1439 | gaim_debug_error("gg", "login_handler: gg_watch_fd failed!\n"); | |
| 1440 | gaim_connection_error(gc, _("Unable to read socket")); | |
| 1441 | return; | |
| 1442 | } | |
| 1443 | gaim_debug_info("gg", "login_handler: session->fd = %d\n", info->session->fd); | |
| 1444 | gaim_debug_info("gg", "login_handler: session: check = %d; state = %d;\n", | |
| 1445 | info->session->check, info->session->state); | |
| 1446 | ||
| 1447 | gaim_input_remove(gc->inpa); | |
| 1448 | ||
| 1449 | /** XXX I think that this shouldn't be done if ev->type is GG_EVENT_CONN_FAILED or GG_EVENT_CONN_SUCCESS -datallah */ | |
| 1450 | gc->inpa = gaim_input_add(info->session->fd, | |
| 1451 | (info->session->check == 1) ? GAIM_INPUT_WRITE | |
| 1452 | : GAIM_INPUT_READ, | |
| 1453 | ggp_async_login_handler, gc); | |
| 1454 | ||
| 1455 | switch (ev->type) { | |
| 1456 | case GG_EVENT_NONE: | |
| 1457 | /* Nothing happened. */ | |
| 1458 | gaim_debug_info("gg", "GG_EVENT_NONE\n"); | |
| 1459 | break; | |
| 1460 | case GG_EVENT_CONN_SUCCESS: | |
| 12964 | 1461 | { |
| 1462 | GaimAccount *account; | |
| 1463 | GaimPresence *presence; | |
| 1464 | GaimStatus *status; | |
| 1465 | ||
| 1466 | gaim_debug_info("gg", "GG_EVENT_CONN_SUCCESS\n"); | |
| 1467 | gaim_input_remove(gc->inpa); | |
| 1468 | gc->inpa = gaim_input_add(info->session->fd, | |
| 1469 | GAIM_INPUT_READ, | |
| 1470 | ggp_callback_recv, gc); | |
| 12007 | 1471 | |
| 12964 | 1472 | /* gg_change_status(info->session, GG_STATUS_AVAIL); */ |
| 1473 | ||
| 1474 | account = gaim_connection_get_account(gc); | |
| 1475 | presence = gaim_account_get_presence(account); | |
| 1476 | status = gaim_presence_get_active_status(presence); | |
| 1477 | ||
| 1478 | ggp_set_status(account, status); | |
| 1479 | gaim_connection_set_state(gc, GAIM_CONNECTED); | |
| 1480 | ggp_buddylist_send(gc); | |
| 1481 | } | |
| 12007 | 1482 | break; |
| 1483 | case GG_EVENT_CONN_FAILED: | |
| 1484 | gaim_input_remove(gc->inpa); | |
| 1485 | gc->inpa = 0; | |
| 1486 | gaim_connection_error(gc, _("Connection failed.")); | |
| 1487 | break; | |
| 1488 | default: | |
| 1489 | gaim_debug_error("gg", "strange event: %d\n", ev->type); | |
| 11414 | 1490 | break; |
| 1491 | } | |
| 1492 | ||
| 1493 | gg_free_event(ev); | |
| 1494 | } | |
| 1495 | /* }}} */ | |
| 1496 | ||
| 1497 | /* ---------------------------------------------------------------------- */ | |
| 11360 | 1498 | /* ----- GaimPluginProtocolInfo ----------------------------------------- */ |
| 1499 | /* ---------------------------------------------------------------------- */ | |
| 1500 | ||
| 1501 | /* static const char *ggp_list_icon(GaimAccount *account, GaimBuddy *buddy) {{{ */ | |
| 1502 | static const char *ggp_list_icon(GaimAccount *account, GaimBuddy *buddy) | |
| 1503 | { | |
| 1504 | return "gadu-gadu"; | |
| 1505 | } | |
| 1506 | /* }}} */ | |
| 1507 | ||
| 1508 | /* static void ggp_list_emblems(GaimBuddy *b, const char **se, const char **sw, const char **nw, const char **ne) {{{ */ | |
| 12007 | 1509 | static void ggp_list_emblems(GaimBuddy *b, const char **se, const char **sw, |
| 1510 | const char **nw, const char **ne) | |
| 11360 | 1511 | { |
| 1512 | GaimPresence *presence = gaim_buddy_get_presence(b); | |
| 1513 | ||
| 1514 | /* | |
| 1515 | * Note to myself: | |
| 1516 | * The only valid status types are those defined | |
| 1517 | * in prpl_info->status_types. | |
| 1518 | * | |
|
12595
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1519 | * Usable icons: away, blocked, dnd, extended_away, |
| 11360 | 1520 | * freeforchat, ignored, invisible, na, offline. |
| 1521 | */ | |
| 1522 | ||
| 1523 | if (!GAIM_BUDDY_IS_ONLINE(b)) { | |
| 1524 | *se = "offline"; | |
|
12595
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1525 | } else if (gaim_presence_is_status_primitive_active(presence, GAIM_STATUS_AWAY)) { |
| 11360 | 1526 | *se = "away"; |
| 1527 | } else if (gaim_presence_is_status_active(presence, "blocked")) { | |
| 1528 | *se = "blocked"; | |
| 1529 | } | |
| 2393 | 1530 | } |
| 11360 | 1531 | /* }}} */ |
| 2393 | 1532 | |
| 11360 | 1533 | /* static char *ggp_status_text(GaimBuddy *b) {{{ */ |
| 1534 | static char *ggp_status_text(GaimBuddy *b) | |
|
2846
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1535 | { |
| 11360 | 1536 | GaimStatus *status; |
| 1537 | const char *msg; | |
| 1538 | char *text; | |
| 1539 | char *tmp; | |
|
2846
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1540 | |
| 11360 | 1541 | status = gaim_presence_get_active_status(gaim_buddy_get_presence(b)); |
|
2846
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1542 | |
| 11360 | 1543 | msg = gaim_status_get_attr_string(status, "message"); |
|
2846
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1544 | |
| 11360 | 1545 | if (msg != NULL) { |
| 1546 | tmp = gaim_markup_strip_html(msg); | |
| 1547 | text = g_markup_escape_text(tmp, -1); | |
| 1548 | g_free(tmp); | |
|
2846
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1549 | |
| 11360 | 1550 | return text; |
| 1551 | } else { | |
|
14521
fbdec89a9c87
[gaim-migrate @ 17173]
Daniel Atallah <datallah@pidgin.im>
parents:
14254
diff
changeset
|
1552 | tmp = gaim_utf8_salvage(gaim_status_get_name(status)); |
| 11360 | 1553 | text = g_markup_escape_text(tmp, -1); |
| 1554 | g_free(tmp); | |
| 1555 | ||
| 1556 | return text; | |
| 8997 | 1557 | } |
|
2846
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1558 | } |
| 11360 | 1559 | /* }}} */ |
|
2846
4f0435806f95
[gaim-migrate @ 2859]
Arkadiusz Miskiewicz <arekm@maven.pl>
parents:
2835
diff
changeset
|
1560 | |
|
12970
c2f3b4dcf711
[gaim-migrate @ 15323]
Richard Laager <rlaager@pidgin.im>
parents:
12964
diff
changeset
|
1561 | /* static void ggp_tooltip_text(GaimBuddy *b, GString *str, gboolean full) {{{ */ |
|
c2f3b4dcf711
[gaim-migrate @ 15323]
Richard Laager <rlaager@pidgin.im>
parents:
12964
diff
changeset
|
1562 | static void ggp_tooltip_text(GaimBuddy *b, GString *str, gboolean full) |
| 11360 | 1563 | { |
| 1564 | GaimStatus *status; | |
| 1565 | char *text; | |
| 1566 | const char *msg, *name; | |
| 1567 | ||
| 15005 | 1568 | g_return_if_fail(b != NULL); |
| 1569 | ||
| 1570 | if (!GAIM_BUDDY_IS_ONLINE(b)) { | |
| 1571 | return; | |
| 1572 | } | |
| 1573 | ||
| 11360 | 1574 | status = gaim_presence_get_active_status(gaim_buddy_get_presence(b)); |
| 1575 | msg = gaim_status_get_attr_string(status, "message"); | |
| 1576 | name = gaim_status_get_name(status); | |
| 1577 | ||
| 1578 | if (msg != NULL) { | |
| 13455 | 1579 | text = g_markup_escape_text(msg, -1); |
|
12970
c2f3b4dcf711
[gaim-migrate @ 15323]
Richard Laager <rlaager@pidgin.im>
parents:
12964
diff
changeset
|
1580 | g_string_append_printf(str, "\n<b>%s:</b> %s: %s", |
|
c2f3b4dcf711
[gaim-migrate @ 15323]
Richard Laager <rlaager@pidgin.im>
parents:
12964
diff
changeset
|
1581 | _("Status"), name, text); |
| 11360 | 1582 | g_free(text); |
| 1583 | } else { | |
|
12970
c2f3b4dcf711
[gaim-migrate @ 15323]
Richard Laager <rlaager@pidgin.im>
parents:
12964
diff
changeset
|
1584 | g_string_append_printf(str, "\n<b>%s:</b> %s", |
|
c2f3b4dcf711
[gaim-migrate @ 15323]
Richard Laager <rlaager@pidgin.im>
parents:
12964
diff
changeset
|
1585 | _("Status"), name); |
| 11360 | 1586 | } |
| 1587 | } | |
| 1588 | /* }}} */ | |
| 1589 | ||
| 1590 | /* static GList *ggp_status_types(GaimAccount *account) {{{ */ | |
| 1591 | static GList *ggp_status_types(GaimAccount *account) | |
| 1592 | { | |
| 1593 | GaimStatusType *type; | |
| 1594 | GList *types = NULL; | |
| 1595 | ||
|
12595
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1596 | type = gaim_status_type_new_with_attrs( |
|
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1597 | GAIM_STATUS_AVAILABLE, NULL, NULL, TRUE, TRUE, FALSE, |
|
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1598 | "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING), |
|
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1599 | NULL); |
| 11360 | 1600 | types = g_list_append(types, type); |
| 1601 | ||
| 1602 | /* | |
|
11638
1821b40269a3
[gaim-migrate @ 13914]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11565
diff
changeset
|
1603 | * Without this selecting Invisible as own status doesn't |
| 11360 | 1604 | * work. It's not used and not needed to show status of buddies. |
| 1605 | */ | |
|
12595
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1606 | type = gaim_status_type_new_with_attrs( |
|
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1607 | GAIM_STATUS_INVISIBLE, NULL, NULL, TRUE, TRUE, FALSE, |
|
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1608 | "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING), |
|
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1609 | NULL); |
| 11360 | 1610 | types = g_list_append(types, type); |
| 1611 | ||
|
12595
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1612 | type = gaim_status_type_new_with_attrs( |
|
12718
34152a2d35fc
[gaim-migrate @ 15062]
Richard Laager <rlaager@pidgin.im>
parents:
12717
diff
changeset
|
1613 | GAIM_STATUS_AWAY, NULL, NULL, TRUE, TRUE, FALSE, |
|
12595
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1614 | "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING), |
|
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1615 | NULL); |
| 11360 | 1616 | types = g_list_append(types, type); |
| 1617 | ||
| 12964 | 1618 | /* |
| 1619 | * This status is necessary to display guys who are blocking *us*. | |
| 1620 | */ | |
|
12595
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1621 | type = gaim_status_type_new_with_attrs( |
| 12641 | 1622 | GAIM_STATUS_INVISIBLE, "blocked", _("Blocked"), TRUE, FALSE, FALSE, |
|
12595
8108c22aa723
[gaim-migrate @ 14925]
Richard Laager <rlaager@pidgin.im>
parents:
12489
diff
changeset
|
1623 | "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING), NULL); |
| 11360 | 1624 | types = g_list_append(types, type); |
| 1625 | ||
|
12658
4aa7a873628d
[gaim-migrate @ 15001]
Mark Doliner <markdoliner@pidgin.im>
parents:
12645
diff
changeset
|
1626 | type = gaim_status_type_new_with_attrs( |
|
4aa7a873628d
[gaim-migrate @ 15001]
Mark Doliner <markdoliner@pidgin.im>
parents:
12645
diff
changeset
|
1627 | GAIM_STATUS_OFFLINE, NULL, NULL, TRUE, TRUE, FALSE, |
|
4aa7a873628d
[gaim-migrate @ 15001]
Mark Doliner <markdoliner@pidgin.im>
parents:
12645
diff
changeset
|
1628 | "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING), |
|
4aa7a873628d
[gaim-migrate @ 15001]
Mark Doliner <markdoliner@pidgin.im>
parents:
12645
diff
changeset
|
1629 | NULL); |
|
4aa7a873628d
[gaim-migrate @ 15001]
Mark Doliner <markdoliner@pidgin.im>
parents:
12645
diff
changeset
|
1630 | types = g_list_append(types, type); |
|
4aa7a873628d
[gaim-migrate @ 15001]
Mark Doliner <markdoliner@pidgin.im>
parents:
12645
diff
changeset
|
1631 | |
| 11360 | 1632 | return types; |
| 1633 | } | |
| 1634 | /* }}} */ | |
| 1635 | ||
| 1636 | /* static GList *ggp_blist_node_menu(GaimBlistNode *node) {{{ */ | |
| 1637 | static GList *ggp_blist_node_menu(GaimBlistNode *node) | |
| 2393 | 1638 | { |
| 12919 | 1639 | GaimMenuAction *act; |
| 2393 | 1640 | GList *m = NULL; |
|
4333
f4c095774bc2
[gaim-migrate @ 4597]
Mark Doliner <markdoliner@pidgin.im>
parents:
4229
diff
changeset
|
1641 | |
| 11360 | 1642 | if (!GAIM_BLIST_NODE_IS_BUDDY(node)) |
| 1643 | return NULL; | |
|
4333
f4c095774bc2
[gaim-migrate @ 4597]
Mark Doliner <markdoliner@pidgin.im>
parents:
4229
diff
changeset
|
1644 | |
| 12919 | 1645 | act = gaim_menu_action_new(_("Add to chat"), |
| 1646 | GAIM_CALLBACK(ggp_bmenu_add_to_chat), | |
| 1647 | NULL, NULL); | |
| 11410 | 1648 | m = g_list_append(m, act); |
| 1649 | ||
| 12641 | 1650 | /* Using a blist node boolean here is also wrong. |
| 1651 | * Once the Block and Unblock actions are added to the core, | |
| 1652 | * this will have to go. -- rlaager */ | |
| 12007 | 1653 | if (gaim_blist_node_get_bool(node, "blocked")) { |
| 12919 | 1654 | act = gaim_menu_action_new(_("Unblock"), |
| 1655 | GAIM_CALLBACK(ggp_bmenu_block), | |
| 1656 | NULL, NULL); | |
| 12007 | 1657 | } else { |
| 12919 | 1658 | act = gaim_menu_action_new(_("Block"), |
| 1659 | GAIM_CALLBACK(ggp_bmenu_block), | |
| 1660 | NULL, NULL); | |
| 12007 | 1661 | } |
| 11394 | 1662 | m = g_list_append(m, act); |
| 2393 | 1663 | |
| 1664 | return m; | |
| 1665 | } | |
| 11360 | 1666 | /* }}} */ |
| 2393 | 1667 | |
| 11394 | 1668 | /* static GList *ggp_chat_info(GaimConnection *gc) {{{ */ |
| 1669 | static GList *ggp_chat_info(GaimConnection *gc) | |
| 1670 | { | |
| 1671 | GList *m = NULL; | |
| 1672 | struct proto_chat_entry *pce; | |
| 1673 | ||
| 1674 | pce = g_new0(struct proto_chat_entry, 1); | |
| 1675 | pce->label = _("Chat _name:"); | |
| 1676 | pce->identifier = "name"; | |
| 1677 | pce->required = TRUE; | |
| 1678 | m = g_list_append(m, pce); | |
| 1679 | ||
| 1680 | return m; | |
| 1681 | } | |
| 1682 | /* }}} */ | |
| 1683 | ||
| 12007 | 1684 | /* static void ggp_login(GaimAccount *account) {{{ */ |
|
11837
2f1206084fef
[gaim-migrate @ 14128]
Mark Doliner <markdoliner@pidgin.im>
parents:
11718
diff
changeset
|
1685 | static void ggp_login(GaimAccount *account) |
| 2393 | 1686 | { |
| 13515 | 1687 | GaimConnection *gc; |
| 1688 | struct gg_login_params *glp; | |
| 1689 | GGPInfo *info; | |
| 1690 | ||
| 1691 | if (ggp_setup_proxy(account) == -1) | |
| 1692 | return; | |
| 1693 | ||
| 1694 | gc = gaim_account_get_connection(account); | |
| 1695 | glp = g_new0(struct gg_login_params, 1); | |
| 1696 | info = g_new0(GGPInfo, 1); | |
| 11360 | 1697 | |
| 12007 | 1698 | /* Probably this should be moved to *_new() function. */ |
| 11360 | 1699 | info->session = NULL; |
| 11394 | 1700 | info->chats = NULL; |
| 1701 | info->chats_count = 0; | |
| 12007 | 1702 | info->token = NULL; |
| 13641 | 1703 | info->searches = ggp_search_new(); |
| 11360 | 1704 | |
| 1705 | gc->proto_data = info; | |
| 1706 | ||
| 1707 | glp->uin = ggp_get_uin(account); | |
| 1708 | glp->password = (char *)gaim_account_get_password(account); | |
| 1709 | ||
| 12007 | 1710 | glp->async = 1; |
| 11360 | 1711 | glp->status = GG_STATUS_AVAIL; |
| 1712 | glp->tls = 0; | |
| 1713 | ||
| 1714 | info->session = gg_login(glp); | |
| 1715 | if (info->session == NULL) { | |
| 1716 | gaim_connection_error(gc, _("Connection failed.")); | |
| 1717 | g_free(glp); | |
| 1718 | return; | |
| 1719 | } | |
| 12007 | 1720 | gc->inpa = gaim_input_add(info->session->fd, GAIM_INPUT_READ, |
| 1721 | ggp_async_login_handler, gc); | |
| 11360 | 1722 | } |
| 1723 | /* }}} */ | |
| 1724 | ||
| 1725 | /* static void ggp_close(GaimConnection *gc) {{{ */ | |
| 1726 | static void ggp_close(GaimConnection *gc) | |
| 1727 | { | |
| 8997 | 1728 | |
| 11360 | 1729 | if (gc == NULL) { |
| 1730 | gaim_debug_info("gg", "gc == NULL\n"); | |
| 1731 | return; | |
| 1732 | } | |
| 1733 | ||
|
11538
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
1734 | if (gc->proto_data) { |
| 12964 | 1735 | GaimAccount *account = gaim_connection_get_account(gc); |
| 1736 | GaimStatus *status; | |
|
11538
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
1737 | GGPInfo *info = gc->proto_data; |
| 12964 | 1738 | |
| 1739 | status = gaim_account_get_active_status(account); | |
| 1740 | ||
|
11538
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
1741 | if (info->session != NULL) { |
| 12964 | 1742 | ggp_set_status(account, status); |
|
11538
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
1743 | gg_logoff(info->session); |
|
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
1744 | gg_free_session(info->session); |
|
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
1745 | } |
| 13641 | 1746 | |
|
14060
e1a87aabd80c
[gaim-migrate @ 16583]
Evan Schoenberg <evands@pidgin.im>
parents:
13645
diff
changeset
|
1747 | /* Immediately close any notifications on this handle since that process depends |
|
e1a87aabd80c
[gaim-migrate @ 16583]
Evan Schoenberg <evands@pidgin.im>
parents:
13645
diff
changeset
|
1748 | * 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
|
1749 | */ |
|
e1a87aabd80c
[gaim-migrate @ 16583]
Evan Schoenberg <evands@pidgin.im>
parents:
13645
diff
changeset
|
1750 | gaim_notify_close_with_handle(gc); |
|
e1a87aabd80c
[gaim-migrate @ 16583]
Evan Schoenberg <evands@pidgin.im>
parents:
13645
diff
changeset
|
1751 | |
| 13641 | 1752 | ggp_search_destroy(info->searches); |
|
11545
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
1753 | g_free(info); |
|
df2f9bb3fd6e
[gaim-migrate @ 13800]
Daniel Atallah <datallah@pidgin.im>
parents:
11544
diff
changeset
|
1754 | gc->proto_data = NULL; |
|
11538
d87f3717d5a5
[gaim-migrate @ 13792]
Daniel Atallah <datallah@pidgin.im>
parents:
11522
diff
changeset
|
1755 | } |
| 11360 | 1756 | |
| 1757 | if (gc->inpa > 0) | |
| 1758 | gaim_input_remove(gc->inpa); | |
| 1759 | ||
| 1760 | ggp_buddylist_offline(gc); | |
| 2393 | 1761 | |
| 11360 | 1762 | gaim_debug_info("gg", "Connection closed.\n"); |
| 1763 | } | |
| 1764 | /* }}} */ | |
| 1765 | ||
|
12216
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
1766 | /* static int ggp_send_im(GaimConnection *gc, const char *who, const char *msg, GaimMessageFlags flags) {{{ */ |
| 12007 | 1767 | static int ggp_send_im(GaimConnection *gc, const char *who, const char *msg, |
|
12216
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
1768 | GaimMessageFlags flags) |
| 11360 | 1769 | { |
| 1770 | GGPInfo *info = gc->proto_data; | |
|
12216
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
1771 | char *tmp, *plain; |
| 11360 | 1772 | |
| 1773 | if (strlen(msg) == 0) | |
| 1774 | return 1; | |
| 1775 | ||
|
12216
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
1776 | plain = gaim_unescape_html(msg); |
| 11565 | 1777 | gaim_debug_info("gg", "ggp_send_im: msg = %s\n", msg); |
|
12216
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
1778 | tmp = charset_convert(plain, "UTF-8", "CP1250"); |
|
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
1779 | g_free(plain); |
| 2393 | 1780 | |
| 11360 | 1781 | if (tmp != NULL && strlen(tmp) > 0) { |
| 12007 | 1782 | if (gg_send_message(info->session, GG_CLASS_CHAT, |
| 1783 | ggp_str_to_uin(who), (unsigned char *)tmp) < 0) { | |
| 11360 | 1784 | return -1; |
| 1785 | } | |
| 1786 | } | |
| 11565 | 1787 | g_free(tmp); |
| 11360 | 1788 | |
| 1789 | return 1; | |
| 1790 | } | |
| 1791 | /* }}} */ | |
| 1792 | ||
| 1793 | /* static void ggp_get_info(GaimConnection *gc, const char *name) { {{{ */ | |
| 1794 | static void ggp_get_info(GaimConnection *gc, const char *name) | |
| 1795 | { | |
| 1796 | GGPInfo *info = gc->proto_data; | |
| 1797 | GGPSearchForm *form; | |
| 13641 | 1798 | guint32 seq; |
| 2393 | 1799 | |
| 13641 | 1800 | form = ggp_search_form_new(GGP_SEARCH_TYPE_INFO); |
| 12220 | 1801 | |
| 13641 | 1802 | form->user_data = info; |
| 11360 | 1803 | form->uin = g_strdup(name); |
| 1804 | form->offset = g_strdup("0"); | |
| 1805 | form->last_uin = g_strdup("0"); | |
| 1806 | ||
| 13641 | 1807 | seq = ggp_search_start(gc, form); |
| 1808 | ggp_search_add(info->searches, seq, form); | |
| 11360 | 1809 | } |
| 1810 | /* }}} */ | |
| 1811 | ||
| 1812 | /* static void ggp_set_status(GaimAccount *account, GaimStatus *status) {{{ */ | |
| 1813 | static void ggp_set_status(GaimAccount *account, GaimStatus *status) | |
| 1814 | { | |
| 1815 | GaimConnection *gc; | |
| 1816 | GGPInfo *info; | |
|
11397
5347ffe54c17
[gaim-migrate @ 13629]
Mark Doliner <markdoliner@pidgin.im>
parents:
11394
diff
changeset
|
1817 | const char *status_id, *msg; |
| 11360 | 1818 | int new_status, new_status_descr; |
| 1819 | ||
| 1820 | if (!gaim_status_is_active(status)) | |
| 1821 | return; | |
| 1822 | ||
| 1823 | gc = gaim_account_get_connection(account); | |
| 1824 | info = gc->proto_data; | |
| 1825 | ||
| 1826 | status_id = gaim_status_get_id(status); | |
| 1827 | ||
| 12007 | 1828 | gaim_debug_info("gg", "ggp_set_status: Requested status = %s\n", |
| 1829 | status_id); | |
| 2393 | 1830 | |
| 11360 | 1831 | if (strcmp(status_id, "available") == 0) { |
| 1832 | new_status = GG_STATUS_AVAIL; | |
| 1833 | new_status_descr = GG_STATUS_AVAIL_DESCR; | |
| 1834 | } else if (strcmp(status_id, "away") == 0) { | |
| 1835 | new_status = GG_STATUS_BUSY; | |
| 1836 | new_status_descr = GG_STATUS_BUSY_DESCR; | |
| 1837 | } else if (strcmp(status_id, "invisible") == 0) { | |
| 1838 | new_status = GG_STATUS_INVISIBLE; | |
| 1839 | new_status_descr = GG_STATUS_INVISIBLE_DESCR; | |
| 12964 | 1840 | } else if (strcmp(status_id, "offline") == 0) { |
| 1841 | new_status = GG_STATUS_NOT_AVAIL; | |
| 1842 | new_status_descr = GG_STATUS_NOT_AVAIL_DESCR; | |
| 11360 | 1843 | } else { |
| 1844 | new_status = GG_STATUS_AVAIL; | |
| 1845 | new_status_descr = GG_STATUS_AVAIL_DESCR; | |
| 12007 | 1846 | gaim_debug_info("gg", |
| 1847 | "ggp_set_status: uknown status requested (status_id=%s)\n", | |
| 1848 | status_id); | |
| 11360 | 1849 | } |
| 4916 | 1850 | |
|
11397
5347ffe54c17
[gaim-migrate @ 13629]
Mark Doliner <markdoliner@pidgin.im>
parents:
11394
diff
changeset
|
1851 | msg = gaim_status_get_attr_string(status, "message"); |
| 11360 | 1852 | |
| 1853 | if (msg == NULL) { | |
| 1854 | gg_change_status(info->session, new_status); | |
| 1855 | } else { | |
| 12964 | 1856 | gchar *tmp, *new_msg; |
| 1857 | ||
| 13455 | 1858 | tmp = charset_convert(msg, "UTF-8", "CP1250"); |
| 1859 | new_msg = gaim_markup_strip_html(tmp); | |
| 12964 | 1860 | g_free(tmp); |
| 1861 | ||
| 13455 | 1862 | gg_change_status_descr(info->session, new_status_descr, new_msg); |
| 12964 | 1863 | g_free(new_msg); |
| 11360 | 1864 | } |
| 1865 | } | |
| 1866 | /* }}} */ | |
| 1867 | ||
| 1868 | /* static void ggp_add_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group) {{{ */ | |
| 1869 | static void ggp_add_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group) | |
| 1870 | { | |
| 1871 | GGPInfo *info = gc->proto_data; | |
| 1872 | ||
| 1873 | gg_add_notify(info->session, ggp_str_to_uin(buddy->name)); | |
| 1874 | } | |
| 1875 | /* }}} */ | |
| 1876 | ||
| 1877 | /* static void ggp_remove_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group) {{{ */ | |
| 12007 | 1878 | static void ggp_remove_buddy(GaimConnection *gc, GaimBuddy *buddy, |
| 1879 | GaimGroup *group) | |
| 11360 | 1880 | { |
| 1881 | GGPInfo *info = gc->proto_data; | |
| 1882 | ||
| 1883 | gg_remove_notify(info->session, ggp_str_to_uin(buddy->name)); | |
| 1884 | } | |
| 1885 | /* }}} */ | |
| 1886 | ||
| 11394 | 1887 | /* static void ggp_join_chat(GaimConnection *gc, GHashTable *data) {{{ */ |
| 1888 | static void ggp_join_chat(GaimConnection *gc, GHashTable *data) | |
| 1889 | { | |
| 1890 | GGPInfo *info = gc->proto_data; | |
| 1891 | GGPChat *chat; | |
| 1892 | char *chat_name; | |
| 1893 | GList *l; | |
| 12961 | 1894 | GaimConversation *conv; |
| 1895 | GaimAccount *account = gaim_connection_get_account(gc); | |
| 11394 | 1896 | |
| 1897 | chat_name = g_hash_table_lookup(data, "name"); | |
| 1898 | ||
| 1899 | if (chat_name == NULL) | |
| 1900 | return; | |
| 1901 | ||
| 1902 | gaim_debug_info("gg", "joined %s chat\n", chat_name); | |
| 1903 | ||
| 1904 | for (l = info->chats; l != NULL; l = l->next) { | |
| 1905 | chat = l->data; | |
| 1906 | ||
| 1907 | if (chat != NULL && g_utf8_collate(chat->name, chat_name) == 0) { | |
| 1908 | gaim_notify_error(gc, _("Chat error"), | |
| 12007 | 1909 | _("This chat name is already in use"), NULL); |
| 11394 | 1910 | return; |
| 1911 | } | |
| 1912 | } | |
| 1913 | ||
| 11414 | 1914 | ggp_confer_add_new(gc, chat_name); |
| 12961 | 1915 | conv = serv_got_joined_chat(gc, info->chats_count, chat_name); |
| 1916 | gaim_conv_chat_add_user(GAIM_CONV_CHAT(conv), | |
| 1917 | gaim_account_get_username(account), NULL, | |
| 1918 | GAIM_CBFLAGS_NONE, TRUE); | |
| 11394 | 1919 | } |
| 1920 | /* }}} */ | |
| 1921 | ||
| 1922 | /* static char *ggp_get_chat_name(GHashTable *data) { {{{ */ | |
| 1923 | static char *ggp_get_chat_name(GHashTable *data) { | |
| 1924 | return g_strdup(g_hash_table_lookup(data, "name")); | |
| 1925 | } | |
| 1926 | /* }}} */ | |
| 1927 | ||
|
12216
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
1928 | /* static int ggp_chat_send(GaimConnection *gc, int id, const char *message, GaimMessageFlags flags) {{{ */ |
|
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
1929 | static int ggp_chat_send(GaimConnection *gc, int id, const char *message, GaimMessageFlags flags) |
| 11394 | 1930 | { |
| 1931 | GaimConversation *conv; | |
| 1932 | GGPInfo *info = gc->proto_data; | |
| 1933 | GGPChat *chat = NULL; | |
| 1934 | GList *l; | |
|
12216
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
1935 | char *msg, *plain; |
| 11394 | 1936 | uin_t *uins; |
| 1937 | int count = 0; | |
| 1938 | ||
| 1939 | if ((conv = gaim_find_chat(gc, id)) == NULL) | |
| 1940 | return -EINVAL; | |
| 1941 | ||
| 1942 | for (l = info->chats; l != NULL; l = l->next) { | |
| 1943 | chat = l->data; | |
| 1944 | ||
| 1945 | if (g_utf8_collate(chat->name, conv->name) == 0) { | |
| 1946 | break; | |
| 1947 | } | |
| 1948 | ||
| 1949 | chat = NULL; | |
| 1950 | } | |
| 1951 | ||
| 1952 | if (chat == NULL) { | |
| 12007 | 1953 | gaim_debug_error("gg", |
| 1954 | "ggp_chat_send: Hm... that's strange. No such chat?\n"); | |
| 11394 | 1955 | return -EINVAL; |
| 1956 | } | |
| 1957 | ||
| 1958 | uins = g_new0(uin_t, g_list_length(chat->participants)); | |
| 12961 | 1959 | |
| 11394 | 1960 | for (l = chat->participants; l != NULL; l = l->next) { |
| 12961 | 1961 | uin_t uin = GPOINTER_TO_INT(l->data); |
| 11394 | 1962 | |
| 12961 | 1963 | uins[count++] = uin; |
| 11394 | 1964 | } |
| 1965 | ||
|
12216
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
1966 | plain = gaim_unescape_html(message); |
|
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
1967 | msg = charset_convert(plain, "UTF-8", "CP1250"); |
|
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
1968 | g_free(plain); |
| 12007 | 1969 | gg_send_message_confer(info->session, GG_CLASS_CHAT, count, uins, |
| 12961 | 1970 | (unsigned char *)msg); |
| 11394 | 1971 | g_free(msg); |
| 1972 | g_free(uins); | |
| 1973 | ||
| 12007 | 1974 | serv_got_chat_in(gc, id, |
| 1975 | gaim_account_get_username(gaim_connection_get_account(gc)), | |
| 1976 | 0, message, time(NULL)); | |
| 11394 | 1977 | |
| 1978 | return 0; | |
| 1979 | } | |
| 1980 | /* }}} */ | |
| 1981 | ||
| 11360 | 1982 | /* static void ggp_keepalive(GaimConnection *gc) {{{ */ |
| 1983 | static void ggp_keepalive(GaimConnection *gc) | |
| 1984 | { | |
| 1985 | GGPInfo *info = gc->proto_data; | |
| 1986 | ||
| 1987 | /* gaim_debug_info("gg", "Keeping connection alive....\n"); */ | |
| 1988 | ||
| 1989 | if (gg_ping(info->session) < 0) { | |
| 1990 | gaim_debug_info("gg", "Not connected to the server " | |
| 1991 | "or gg_session is not correct\n"); | |
| 1992 | gaim_connection_error(gc, _("Not connected to the server.")); | |
| 4916 | 1993 | } |
| 2393 | 1994 | } |
| 11360 | 1995 | /* }}} */ |
| 1996 | ||
| 1997 | /* static void ggp_register_user(GaimAccount *account) {{{ */ | |
| 1998 | static void ggp_register_user(GaimAccount *account) | |
| 1999 | { | |
|
11542
fabce19a4ccf
[gaim-migrate @ 13797]
Daniel Atallah <datallah@pidgin.im>
parents:
11541
diff
changeset
|
2000 | GaimConnection *gc = gaim_account_get_connection(account); |
| 11360 | 2001 | GGPInfo *info; |
| 2002 | ||
| 12007 | 2003 | info = gc->proto_data = g_new0(GGPInfo, 1); |
| 11360 | 2004 | |
| 12007 | 2005 | ggp_token_request(gc, ggp_register_user_dialog); |
| 2393 | 2006 | } |
| 11360 | 2007 | /* }}} */ |
| 2393 | 2008 | |
| 11360 | 2009 | /* static GList *ggp_actions(GaimPlugin *plugin, gpointer context) {{{ */ |
| 2010 | static GList *ggp_actions(GaimPlugin *plugin, gpointer context) | |
|
8775
6cb5dddaad4f
[gaim-migrate @ 9537]
Andrew Wellington <proton@users.sourceforge.net>
parents:
8749
diff
changeset
|
2011 | { |
| 11360 | 2012 | GList *m = NULL; |
| 2013 | GaimPluginAction *act; | |
| 2014 | ||
| 12220 | 2015 | act = gaim_plugin_action_new(_("Find buddies..."), |
| 12007 | 2016 | ggp_find_buddies); |
| 11360 | 2017 | m = g_list_append(m, act); |
| 2018 | ||
| 2019 | m = g_list_append(m, NULL); | |
| 2020 | ||
| 12220 | 2021 | act = gaim_plugin_action_new(_("Change password..."), |
| 12007 | 2022 | ggp_change_passwd); |
| 11360 | 2023 | m = g_list_append(m, act); |
| 2024 | ||
| 2025 | m = g_list_append(m, NULL); | |
| 2026 | ||
| 12007 | 2027 | act = gaim_plugin_action_new(_("Upload buddylist to Server"), |
| 2028 | ggp_action_buddylist_put); | |
| 11360 | 2029 | m = g_list_append(m, act); |
|
8775
6cb5dddaad4f
[gaim-migrate @ 9537]
Andrew Wellington <proton@users.sourceforge.net>
parents:
8749
diff
changeset
|
2030 | |
| 12007 | 2031 | act = gaim_plugin_action_new(_("Download buddylist from Server"), |
| 2032 | ggp_action_buddylist_get); | |
| 11360 | 2033 | m = g_list_append(m, act); |
| 2034 | ||
| 12007 | 2035 | act = gaim_plugin_action_new(_("Delete buddylist from Server"), |
| 2036 | ggp_action_buddylist_delete); | |
| 11360 | 2037 | m = g_list_append(m, act); |
| 2038 | ||
| 12220 | 2039 | act = gaim_plugin_action_new(_("Save buddylist to file..."), |
| 12007 | 2040 | ggp_action_buddylist_save); |
| 11360 | 2041 | m = g_list_append(m, act); |
|
8775
6cb5dddaad4f
[gaim-migrate @ 9537]
Andrew Wellington <proton@users.sourceforge.net>
parents:
8749
diff
changeset
|
2042 | |
| 12220 | 2043 | act = gaim_plugin_action_new(_("Load buddylist from file..."), |
| 12007 | 2044 | ggp_action_buddylist_load); |
| 11360 | 2045 | m = g_list_append(m, act); |
| 2046 | ||
| 2047 | return m; | |
|
8775
6cb5dddaad4f
[gaim-migrate @ 9537]
Andrew Wellington <proton@users.sourceforge.net>
parents:
8749
diff
changeset
|
2048 | } |
| 11360 | 2049 | /* }}} */ |
|
8775
6cb5dddaad4f
[gaim-migrate @ 9537]
Andrew Wellington <proton@users.sourceforge.net>
parents:
8749
diff
changeset
|
2050 | |
|
13300
2003b857b5ca
[gaim-migrate @ 15665]
Richard Laager <rlaager@pidgin.im>
parents:
13298
diff
changeset
|
2051 | /* static gboolean ggp_offline_message(const GaimBuddy *buddy) {{{ */ |
|
2003b857b5ca
[gaim-migrate @ 15665]
Richard Laager <rlaager@pidgin.im>
parents:
13298
diff
changeset
|
2052 | static gboolean ggp_offline_message(const GaimBuddy *buddy) |
|
13298
7a41e676010b
[gaim-migrate @ 15663]
Richard Laager <rlaager@pidgin.im>
parents:
13297
diff
changeset
|
2053 | { |
|
7a41e676010b
[gaim-migrate @ 15663]
Richard Laager <rlaager@pidgin.im>
parents:
13297
diff
changeset
|
2054 | return TRUE; |
|
7a41e676010b
[gaim-migrate @ 15663]
Richard Laager <rlaager@pidgin.im>
parents:
13297
diff
changeset
|
2055 | } |
|
7a41e676010b
[gaim-migrate @ 15663]
Richard Laager <rlaager@pidgin.im>
parents:
13297
diff
changeset
|
2056 | /* }}} */ |
|
7a41e676010b
[gaim-migrate @ 15663]
Richard Laager <rlaager@pidgin.im>
parents:
13297
diff
changeset
|
2057 | |
| 11360 | 2058 | /* prpl_info setup {{{ */ |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2059 | static GaimPluginProtocolInfo prpl_info = |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2060 | { |
| 11360 | 2061 | OPT_PROTO_REGISTER_NOSCREENNAME, |
| 12007 | 2062 | NULL, /* user_splits */ |
| 2063 | NULL, /* protocol_options */ | |
| 9950 | 2064 | NO_BUDDY_ICONS, /* icon_spec */ |
| 11360 | 2065 | ggp_list_icon, /* list_icon */ |
| 2066 | ggp_list_emblems, /* list_emblems */ | |
| 2067 | ggp_status_text, /* status_text */ | |
| 2068 | ggp_tooltip_text, /* tooltip_text */ | |
| 2069 | ggp_status_types, /* status_types */ | |
| 12007 | 2070 | ggp_blist_node_menu, /* blist_node_menu */ |
| 11394 | 2071 | ggp_chat_info, /* chat_info */ |
| 12007 | 2072 | NULL, /* chat_info_defaults */ |
| 2073 | ggp_login, /* login */ | |
| 2074 | ggp_close, /* close */ | |
| 11360 | 2075 | ggp_send_im, /* send_im */ |
| 12007 | 2076 | NULL, /* set_info */ |
| 2077 | NULL, /* send_typing */ | |
| 11360 | 2078 | ggp_get_info, /* get_info */ |
| 2079 | ggp_set_status, /* set_away */ | |
| 12007 | 2080 | NULL, /* set_idle */ |
| 2081 | NULL, /* change_passwd */ | |
| 11360 | 2082 | ggp_add_buddy, /* add_buddy */ |
| 12007 | 2083 | NULL, /* add_buddies */ |
| 11360 | 2084 | ggp_remove_buddy, /* remove_buddy */ |
| 12007 | 2085 | NULL, /* remove_buddies */ |
| 2086 | NULL, /* add_permit */ | |
| 2087 | NULL, /* add_deny */ | |
| 2088 | NULL, /* rem_permit */ | |
| 2089 | NULL, /* rem_deny */ | |
| 2090 | NULL, /* set_permit_deny */ | |
| 11394 | 2091 | ggp_join_chat, /* join_chat */ |
| 12007 | 2092 | NULL, /* reject_chat */ |
| 11394 | 2093 | ggp_get_chat_name, /* get_chat_name */ |
| 12007 | 2094 | NULL, /* chat_invite */ |
| 2095 | NULL, /* chat_leave */ | |
| 2096 | NULL, /* chat_whisper */ | |
| 11394 | 2097 | ggp_chat_send, /* chat_send */ |
| 11360 | 2098 | ggp_keepalive, /* keepalive */ |
| 2099 | ggp_register_user, /* register_user */ | |
| 12007 | 2100 | NULL, /* get_cb_info */ |
| 2101 | NULL, /* get_cb_away */ | |
| 2102 | NULL, /* alias_buddy */ | |
| 2103 | NULL, /* group_buddy */ | |
| 2104 | NULL, /* rename_group */ | |
| 2105 | NULL, /* buddy_free */ | |
| 2106 | NULL, /* convo_closed */ | |
| 2107 | NULL, /* normalize */ | |
| 2108 | NULL, /* set_buddy_icon */ | |
| 2109 | NULL, /* remove_group */ | |
| 2110 | NULL, /* get_cb_real_name */ | |
| 2111 | NULL, /* set_chat_topic */ | |
| 2112 | NULL, /* find_blist_chat */ | |
| 2113 | NULL, /* roomlist_get_list */ | |
| 2114 | NULL, /* roomlist_cancel */ | |
| 2115 | NULL, /* roomlist_expand_category */ | |
| 2116 | NULL, /* can_receive_file */ | |
|
12143
09f216663302
[gaim-migrate @ 14444]
Evan Schoenberg <evands@pidgin.im>
parents:
12007
diff
changeset
|
2117 | NULL, /* send_file */ |
|
12600
7ecd4441fdc7
[gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents:
12595
diff
changeset
|
2118 | NULL, /* new_xfer */ |
|
13298
7a41e676010b
[gaim-migrate @ 15663]
Richard Laager <rlaager@pidgin.im>
parents:
13297
diff
changeset
|
2119 | ggp_offline_message, /* offline_message */ |
|
12600
7ecd4441fdc7
[gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents:
12595
diff
changeset
|
2120 | NULL, /* whiteboard_prpl_ops */ |
| 14604 | 2121 | NULL, /* send_raw */ |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2122 | }; |
| 11360 | 2123 | /* }}} */ |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2124 | |
| 11360 | 2125 | /* GaimPluginInfo setup {{{ */ |
| 2126 | static GaimPluginInfo info = { | |
| 2127 | GAIM_PLUGIN_MAGIC, /* magic */ | |
| 2128 | GAIM_MAJOR_VERSION, /* major_version */ | |
| 2129 | GAIM_MINOR_VERSION, /* minor_version */ | |
| 2130 | GAIM_PLUGIN_PROTOCOL, /* plugin type */ | |
| 2131 | NULL, /* ui_requirement */ | |
| 2132 | 0, /* flags */ | |
| 2133 | NULL, /* dependencies */ | |
| 2134 | GAIM_PRIORITY_DEFAULT, /* priority */ | |
| 2135 | ||
| 2136 | "prpl-gg", /* id */ | |
| 2137 | "Gadu-Gadu", /* name */ | |
| 2138 | VERSION, /* version */ | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2139 | |
| 11360 | 2140 | N_("Gadu-Gadu Protocol Plugin"), /* summary */ |
| 2141 | N_("Polish popular IM"), /* description */ | |
| 2142 | "boler@sourceforge.net", /* author */ | |
| 2143 | GAIM_WEBSITE, /* homepage */ | |
| 2144 | ||
| 2145 | NULL, /* load */ | |
| 2146 | NULL, /* unload */ | |
| 2147 | NULL, /* destroy */ | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2148 | |
| 11360 | 2149 | NULL, /* ui_info */ |
| 2150 | &prpl_info, /* extra_info */ | |
| 2151 | NULL, /* prefs_info */ | |
| 2152 | ggp_actions /* actions */ | |
| 2153 | }; | |
| 2154 | /* }}} */ | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2155 | |
| 11565 | 2156 | /* static void gaim_gg_debug_handler(int level, const char * format, va_list args) {{{ */ |
|
11541
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2157 | static void gaim_gg_debug_handler(int level, const char * format, va_list args) { |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2158 | GaimDebugLevel gaim_level; |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2159 | char *msg = g_strdup_vprintf(format, args); |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2160 | |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2161 | /* This is pretty pointless since the GG_DEBUG levels don't correspond to |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2162 | * the gaim ones */ |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2163 | switch (level) { |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2164 | case GG_DEBUG_FUNCTION: |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2165 | gaim_level = GAIM_DEBUG_INFO; |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2166 | break; |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2167 | case GG_DEBUG_MISC: |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2168 | case GG_DEBUG_NET: |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2169 | case GG_DEBUG_DUMP: |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2170 | case GG_DEBUG_TRAFFIC: |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2171 | default: |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2172 | gaim_level = GAIM_DEBUG_MISC; |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2173 | break; |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2174 | } |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2175 | |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2176 | gaim_debug(gaim_level, "gg", msg); |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2177 | g_free(msg); |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2178 | } |
| 11565 | 2179 | /* }}} */ |
|
11541
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2180 | |
| 11360 | 2181 | /* |
| 2182 | */ | |
| 2183 | /* static void init_plugin(GaimPlugin *plugin) {{{ */ | |
| 2184 | static void init_plugin(GaimPlugin *plugin) | |
| 2393 | 2185 | { |
|
5638
53e752c88ea1
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5618
diff
changeset
|
2186 | GaimAccountOption *option; |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2187 | |
| 12007 | 2188 | option = gaim_account_option_string_new(_("Nickname"), |
| 2189 | "nick", _("Gadu-Gadu User")); | |
| 2190 | prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | |
| 2191 | option); | |
| 3572 | 2192 | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2193 | my_protocol = plugin; |
|
11541
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2194 | |
|
b1468184879c
[gaim-migrate @ 13796]
Daniel Atallah <datallah@pidgin.im>
parents:
11538
diff
changeset
|
2195 | gg_debug_handler = gaim_gg_debug_handler; |
| 2393 | 2196 | } |
| 11360 | 2197 | /* }}} */ |
| 2393 | 2198 | |
|
11909
a0a7331365e1
[gaim-migrate @ 14200]
Evan Schoenberg <evands@pidgin.im>
parents:
11837
diff
changeset
|
2199 | GAIM_INIT_PLUGIN(gg, init_plugin, info); |
| 11360 | 2200 | |
| 12007 | 2201 | /* vim: set ts=8 sts=0 sw=8 noet: */ |