[5ebff60] | 1 | /********************************************************************\ |
---|
[b7d3cc34] | 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
[0e788f5] | 4 | * Copyright 2002-2012 Wilmer van der Gaast and others * |
---|
[b7d3cc34] | 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* |
---|
| 8 | * nogaim |
---|
| 9 | * |
---|
| 10 | * Gaim without gaim - for BitlBee |
---|
| 11 | * |
---|
| 12 | * This file contains functions called by the Gaim IM-modules. It's written |
---|
| 13 | * from scratch for BitlBee and doesn't contain any code from Gaim anymore |
---|
| 14 | * (except for the function names). |
---|
| 15 | */ |
---|
| 16 | |
---|
| 17 | /* |
---|
| 18 | This program is free software; you can redistribute it and/or modify |
---|
| 19 | it under the terms of the GNU General Public License as published by |
---|
| 20 | the Free Software Foundation; either version 2 of the License, or |
---|
| 21 | (at your option) any later version. |
---|
| 22 | |
---|
| 23 | This program is distributed in the hope that it will be useful, |
---|
| 24 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 25 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 26 | GNU General Public License for more details. |
---|
| 27 | |
---|
| 28 | You should have received a copy of the GNU General Public License with |
---|
| 29 | the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; |
---|
[6f10697] | 30 | if not, write to the Free Software Foundation, Inc., 51 Franklin St., |
---|
| 31 | Fifth Floor, Boston, MA 02110-1301 USA |
---|
[b7d3cc34] | 32 | */ |
---|
| 33 | |
---|
| 34 | #define BITLBEE_CORE |
---|
| 35 | #include <ctype.h> |
---|
| 36 | |
---|
[4cf80bb] | 37 | #include "nogaim.h" |
---|
| 38 | |
---|
[b7d3cc34] | 39 | GSList *connections; |
---|
| 40 | |
---|
[65e2ce1] | 41 | #ifdef WITH_PLUGINS |
---|
[7b23afd] | 42 | gboolean load_plugin(char *path) |
---|
| 43 | { |
---|
| 44 | void (*init_function) (void); |
---|
[5ebff60] | 45 | |
---|
[7b23afd] | 46 | GModule *mod = g_module_open(path, G_MODULE_BIND_LAZY); |
---|
| 47 | |
---|
[5ebff60] | 48 | if (!mod) { |
---|
[8ad90fb] | 49 | log_message(LOGLVL_ERROR, "Can't find `%s', not loading (%s)\n", path, g_module_error()); |
---|
[7b23afd] | 50 | return FALSE; |
---|
| 51 | } |
---|
| 52 | |
---|
[5ebff60] | 53 | if (!g_module_symbol(mod, "init_plugin", (gpointer *) &init_function)) { |
---|
[7b23afd] | 54 | log_message(LOGLVL_WARNING, "Can't find function `init_plugin' in `%s'\n", path); |
---|
| 55 | return FALSE; |
---|
| 56 | } |
---|
| 57 | |
---|
| 58 | init_function(); |
---|
| 59 | |
---|
| 60 | return TRUE; |
---|
| 61 | } |
---|
[b7d3cc34] | 62 | |
---|
[65e2ce1] | 63 | void load_plugins(void) |
---|
| 64 | { |
---|
| 65 | GDir *dir; |
---|
| 66 | GError *error = NULL; |
---|
| 67 | |
---|
[4bfca70] | 68 | dir = g_dir_open(global.conf->plugindir, 0, &error); |
---|
[65e2ce1] | 69 | |
---|
| 70 | if (dir) { |
---|
| 71 | const gchar *entry; |
---|
| 72 | char *path; |
---|
| 73 | |
---|
| 74 | while ((entry = g_dir_read_name(dir))) { |
---|
[4bfca70] | 75 | path = g_build_filename(global.conf->plugindir, entry, NULL); |
---|
[5ebff60] | 76 | if (!path) { |
---|
[65e2ce1] | 77 | log_message(LOGLVL_WARNING, "Can't build path for %s\n", entry); |
---|
| 78 | continue; |
---|
| 79 | } |
---|
| 80 | |
---|
| 81 | load_plugin(path); |
---|
| 82 | |
---|
| 83 | g_free(path); |
---|
| 84 | } |
---|
| 85 | |
---|
| 86 | g_dir_close(dir); |
---|
| 87 | } |
---|
| 88 | } |
---|
| 89 | #endif |
---|
[b7d3cc34] | 90 | |
---|
[7b23afd] | 91 | GList *protocols = NULL; |
---|
[5ebff60] | 92 | |
---|
| 93 | void register_protocol(struct prpl *p) |
---|
[7b23afd] | 94 | { |
---|
[90cd6c4] | 95 | int i; |
---|
| 96 | gboolean refused = global.conf->protocols != NULL; |
---|
[5ebff60] | 97 | |
---|
| 98 | for (i = 0; global.conf->protocols && global.conf->protocols[i]; i++) { |
---|
| 99 | if (g_strcasecmp(p->name, global.conf->protocols[i]) == 0) { |
---|
[90cd6c4] | 100 | refused = FALSE; |
---|
[5ebff60] | 101 | } |
---|
| 102 | } |
---|
[90cd6c4] | 103 | |
---|
[5ebff60] | 104 | if (refused) { |
---|
[90cd6c4] | 105 | log_message(LOGLVL_WARNING, "Protocol %s disabled\n", p->name); |
---|
[5ebff60] | 106 | } else { |
---|
[90cd6c4] | 107 | protocols = g_list_append(protocols, p); |
---|
[5ebff60] | 108 | } |
---|
[7b23afd] | 109 | } |
---|
| 110 | |
---|
| 111 | struct prpl *find_protocol(const char *name) |
---|
| 112 | { |
---|
| 113 | GList *gl; |
---|
[5ebff60] | 114 | |
---|
| 115 | for (gl = protocols; gl; gl = gl->next) { |
---|
| 116 | struct prpl *proto = gl->data; |
---|
| 117 | |
---|
| 118 | if (g_strcasecmp(proto->name, name) == 0) { |
---|
[7b23afd] | 119 | return proto; |
---|
[5ebff60] | 120 | } |
---|
| 121 | } |
---|
| 122 | |
---|
| 123 | return NULL; |
---|
[7b23afd] | 124 | } |
---|
| 125 | |
---|
[b7d3cc34] | 126 | void nogaim_init() |
---|
| 127 | { |
---|
[0da65d5] | 128 | extern void msn_initmodule(); |
---|
| 129 | extern void oscar_initmodule(); |
---|
| 130 | extern void byahoo_initmodule(); |
---|
| 131 | extern void jabber_initmodule(); |
---|
[1b221e0] | 132 | extern void twitter_initmodule(); |
---|
[796da03] | 133 | extern void purple_initmodule(); |
---|
[66aefeb] | 134 | extern void rpc_initmodule(); |
---|
[7b23afd] | 135 | |
---|
[b7d3cc34] | 136 | #ifdef WITH_MSN |
---|
[0da65d5] | 137 | msn_initmodule(); |
---|
[b7d3cc34] | 138 | #endif |
---|
| 139 | |
---|
| 140 | #ifdef WITH_OSCAR |
---|
[0da65d5] | 141 | oscar_initmodule(); |
---|
[b7d3cc34] | 142 | #endif |
---|
[5ebff60] | 143 | |
---|
[b7d3cc34] | 144 | #ifdef WITH_YAHOO |
---|
[0da65d5] | 145 | byahoo_initmodule(); |
---|
[b7d3cc34] | 146 | #endif |
---|
[5ebff60] | 147 | |
---|
[b7d3cc34] | 148 | #ifdef WITH_JABBER |
---|
[0da65d5] | 149 | jabber_initmodule(); |
---|
[b7d3cc34] | 150 | #endif |
---|
[7b23afd] | 151 | |
---|
[1b221e0] | 152 | #ifdef WITH_TWITTER |
---|
| 153 | twitter_initmodule(); |
---|
| 154 | #endif |
---|
| 155 | |
---|
[796da03] | 156 | #ifdef WITH_PURPLE |
---|
| 157 | purple_initmodule(); |
---|
| 158 | #endif |
---|
[7b23afd] | 159 | |
---|
[66aefeb] | 160 | #ifdef WITH_RPC |
---|
| 161 | rpc_initmodule(); |
---|
| 162 | #endif |
---|
| 163 | |
---|
[65e2ce1] | 164 | #ifdef WITH_PLUGINS |
---|
| 165 | load_plugins(); |
---|
[b7d3cc34] | 166 | #endif |
---|
| 167 | } |
---|
| 168 | |
---|
[5ebff60] | 169 | GSList *get_connections() |
---|
| 170 | { |
---|
| 171 | return connections; |
---|
| 172 | } |
---|
[b7d3cc34] | 173 | |
---|
[5ebff60] | 174 | struct im_connection *imcb_new(account_t *acc) |
---|
[b7d3cc34] | 175 | { |
---|
[0da65d5] | 176 | struct im_connection *ic; |
---|
[5ebff60] | 177 | |
---|
| 178 | ic = g_new0(struct im_connection, 1); |
---|
| 179 | |
---|
[81e04e1] | 180 | ic->bee = acc->bee; |
---|
[0da65d5] | 181 | ic->acc = acc; |
---|
| 182 | acc->ic = ic; |
---|
[5ebff60] | 183 | |
---|
| 184 | connections = g_slist_append(connections, ic); |
---|
| 185 | |
---|
| 186 | return(ic); |
---|
[b7d3cc34] | 187 | } |
---|
| 188 | |
---|
[5ebff60] | 189 | void imc_free(struct im_connection *ic) |
---|
[b7d3cc34] | 190 | { |
---|
| 191 | account_t *a; |
---|
[5ebff60] | 192 | |
---|
[b7d3cc34] | 193 | /* Destroy the pointer to this connection from the account list */ |
---|
[5ebff60] | 194 | for (a = ic->bee->accounts; a; a = a->next) { |
---|
| 195 | if (a->ic == ic) { |
---|
[0da65d5] | 196 | a->ic = NULL; |
---|
[b7d3cc34] | 197 | break; |
---|
| 198 | } |
---|
[5ebff60] | 199 | } |
---|
| 200 | |
---|
| 201 | connections = g_slist_remove(connections, ic); |
---|
| 202 | g_free(ic); |
---|
[b7d3cc34] | 203 | } |
---|
| 204 | |
---|
[5ebff60] | 205 | static void serv_got_crap(struct im_connection *ic, char *format, ...) |
---|
[b7d3cc34] | 206 | { |
---|
| 207 | va_list params; |
---|
[e27661d] | 208 | char *text; |
---|
[dfde8e0] | 209 | account_t *a; |
---|
[5ebff60] | 210 | |
---|
| 211 | va_start(params, format); |
---|
| 212 | text = g_strdup_vprintf(format, params); |
---|
| 213 | va_end(params); |
---|
| 214 | |
---|
| 215 | if ((g_strcasecmp(set_getstr(&ic->bee->set, "strip_html"), "always") == 0) || |
---|
| 216 | ((ic->flags & OPT_DOES_HTML) && set_getbool(&ic->bee->set, "strip_html"))) { |
---|
| 217 | strip_html(text); |
---|
| 218 | } |
---|
| 219 | |
---|
[dfde8e0] | 220 | /* Try to find a different connection on the same protocol. */ |
---|
[5ebff60] | 221 | for (a = ic->bee->accounts; a; a = a->next) { |
---|
| 222 | if (a->prpl == ic->acc->prpl && a->ic != ic) { |
---|
[dfde8e0] | 223 | break; |
---|
[5ebff60] | 224 | } |
---|
| 225 | } |
---|
| 226 | |
---|
[e27661d] | 227 | /* If we found one, include the screenname in the message. */ |
---|
[5ebff60] | 228 | if (a) { |
---|
[81e04e1] | 229 | /* FIXME(wilmer): ui_log callback or so */ |
---|
[5ebff60] | 230 | irc_rootmsg(ic->bee->ui_data, "%s - %s", ic->acc->tag, text); |
---|
| 231 | } else { |
---|
| 232 | irc_rootmsg(ic->bee->ui_data, "%s - %s", ic->acc->prpl->name, text); |
---|
| 233 | } |
---|
| 234 | |
---|
| 235 | g_free(text); |
---|
[b7d3cc34] | 236 | } |
---|
| 237 | |
---|
[5ebff60] | 238 | void imcb_log(struct im_connection *ic, char *format, ...) |
---|
[aef4828] | 239 | { |
---|
| 240 | va_list params; |
---|
| 241 | char *text; |
---|
[5ebff60] | 242 | |
---|
| 243 | va_start(params, format); |
---|
| 244 | text = g_strdup_vprintf(format, params); |
---|
| 245 | va_end(params); |
---|
| 246 | |
---|
| 247 | if (ic->flags & OPT_LOGGED_IN) { |
---|
| 248 | serv_got_crap(ic, "%s", text); |
---|
| 249 | } else { |
---|
| 250 | serv_got_crap(ic, "Logging in: %s", text); |
---|
| 251 | } |
---|
| 252 | |
---|
| 253 | g_free(text); |
---|
[aef4828] | 254 | } |
---|
| 255 | |
---|
[5ebff60] | 256 | void imcb_error(struct im_connection *ic, char *format, ...) |
---|
[aef4828] | 257 | { |
---|
| 258 | va_list params; |
---|
| 259 | char *text; |
---|
[5ebff60] | 260 | |
---|
| 261 | va_start(params, format); |
---|
| 262 | text = g_strdup_vprintf(format, params); |
---|
| 263 | va_end(params); |
---|
| 264 | |
---|
| 265 | if (ic->flags & OPT_LOGGED_IN) { |
---|
| 266 | serv_got_crap(ic, "Error: %s", text); |
---|
| 267 | } else { |
---|
| 268 | serv_got_crap(ic, "Login error: %s", text); |
---|
| 269 | } |
---|
| 270 | |
---|
| 271 | g_free(text); |
---|
[aef4828] | 272 | } |
---|
| 273 | |
---|
[5ebff60] | 274 | static gboolean send_keepalive(gpointer d, gint fd, b_input_condition cond) |
---|
[b7d3cc34] | 275 | { |
---|
[0da65d5] | 276 | struct im_connection *ic = d; |
---|
[5ebff60] | 277 | |
---|
| 278 | if ((ic->flags & OPT_PONGS) && !(ic->flags & OPT_PONGED)) { |
---|
[e132b60] | 279 | /* This protocol is expected to ack keepalives and hasn't |
---|
| 280 | since the last time we were here. */ |
---|
[5ebff60] | 281 | imcb_error(ic, "Connection timeout"); |
---|
| 282 | imc_logout(ic, TRUE); |
---|
[e132b60] | 283 | return FALSE; |
---|
| 284 | } |
---|
| 285 | ic->flags &= ~OPT_PONGED; |
---|
[5ebff60] | 286 | |
---|
| 287 | if (ic->acc->prpl->keepalive) { |
---|
| 288 | ic->acc->prpl->keepalive(ic); |
---|
| 289 | } |
---|
| 290 | |
---|
[b7d3cc34] | 291 | return TRUE; |
---|
| 292 | } |
---|
| 293 | |
---|
[5ebff60] | 294 | void start_keepalives(struct im_connection *ic, int interval) |
---|
[e132b60] | 295 | { |
---|
[5ebff60] | 296 | b_event_remove(ic->keepalive); |
---|
| 297 | ic->keepalive = b_timeout_add(interval, send_keepalive, ic); |
---|
| 298 | |
---|
[e132b60] | 299 | /* Connecting successfully counts as a first successful pong. */ |
---|
[5ebff60] | 300 | if (ic->flags & OPT_PONGS) { |
---|
[e132b60] | 301 | ic->flags |= OPT_PONGED; |
---|
[5ebff60] | 302 | } |
---|
[e132b60] | 303 | } |
---|
| 304 | |
---|
[5ebff60] | 305 | void imcb_connected(struct im_connection *ic) |
---|
[b7d3cc34] | 306 | { |
---|
| 307 | /* MSN servers sometimes redirect you to a different server and do |
---|
[84c1a0a] | 308 | the whole login sequence again, so these "late" calls to this |
---|
[b7d3cc34] | 309 | function should be handled correctly. (IOW, ignored) */ |
---|
[5ebff60] | 310 | if (ic->flags & OPT_LOGGED_IN) { |
---|
[b7d3cc34] | 311 | return; |
---|
[5ebff60] | 312 | } |
---|
[11e7828] | 313 | |
---|
[5ebff60] | 314 | if (ic->acc->flags & ACC_FLAG_LOCAL) { |
---|
[11e7828] | 315 | GHashTableIter nicks; |
---|
| 316 | gpointer k, v; |
---|
[5ebff60] | 317 | g_hash_table_iter_init(&nicks, ic->acc->nicks); |
---|
| 318 | while (g_hash_table_iter_next(&nicks, &k, &v)) { |
---|
| 319 | ic->acc->prpl->add_buddy(ic, (char *) k, NULL); |
---|
[11e7828] | 320 | } |
---|
| 321 | } |
---|
[5ebff60] | 322 | |
---|
| 323 | imcb_log(ic, "Logged in"); |
---|
| 324 | |
---|
[0da65d5] | 325 | ic->flags |= OPT_LOGGED_IN; |
---|
[5ebff60] | 326 | start_keepalives(ic, 60000); |
---|
| 327 | |
---|
[58adb7e] | 328 | /* Necessary to send initial presence status, even if we're not away. */ |
---|
[5ebff60] | 329 | imc_away_send_update(ic); |
---|
| 330 | |
---|
[280e655] | 331 | /* Apparently we're connected successfully, so reset the |
---|
| 332 | exponential backoff timer. */ |
---|
| 333 | ic->acc->auto_reconnect_delay = 0; |
---|
[5ebff60] | 334 | |
---|
| 335 | if (ic->bee->ui->imc_connected) { |
---|
| 336 | ic->bee->ui->imc_connected(ic); |
---|
| 337 | } |
---|
[b7d3cc34] | 338 | } |
---|
| 339 | |
---|
[5ebff60] | 340 | gboolean auto_reconnect(gpointer data, gint fd, b_input_condition cond) |
---|
[b7d3cc34] | 341 | { |
---|
| 342 | account_t *a = data; |
---|
[5ebff60] | 343 | |
---|
[b7d3cc34] | 344 | a->reconnect = 0; |
---|
[5ebff60] | 345 | account_on(a->bee, a); |
---|
| 346 | |
---|
| 347 | return(FALSE); /* Only have to run the timeout once */ |
---|
[b7d3cc34] | 348 | } |
---|
| 349 | |
---|
[5ebff60] | 350 | void cancel_auto_reconnect(account_t *a) |
---|
[b7d3cc34] | 351 | { |
---|
[5ebff60] | 352 | b_event_remove(a->reconnect); |
---|
[b7d3cc34] | 353 | a->reconnect = 0; |
---|
| 354 | } |
---|
| 355 | |
---|
[5ebff60] | 356 | void imc_logout(struct im_connection *ic, int allow_reconnect) |
---|
[b7d3cc34] | 357 | { |
---|
[81e04e1] | 358 | bee_t *bee = ic->bee; |
---|
[b7d3cc34] | 359 | account_t *a; |
---|
[81e04e1] | 360 | GSList *l; |
---|
[4230221] | 361 | int delay; |
---|
[5ebff60] | 362 | |
---|
[8d74291] | 363 | /* Nested calls might happen sometimes, this is probably the best |
---|
| 364 | place to catch them. */ |
---|
[5ebff60] | 365 | if (ic->flags & OPT_LOGGING_OUT) { |
---|
[8d74291] | 366 | return; |
---|
[5ebff60] | 367 | } else { |
---|
[0da65d5] | 368 | ic->flags |= OPT_LOGGING_OUT; |
---|
[5ebff60] | 369 | } |
---|
| 370 | |
---|
| 371 | if (ic->bee->ui->imc_disconnected) { |
---|
| 372 | ic->bee->ui->imc_disconnected(ic); |
---|
| 373 | } |
---|
| 374 | |
---|
| 375 | imcb_log(ic, "Signing off.."); |
---|
| 376 | |
---|
[0dd6570] | 377 | /* TBH I don't remember anymore why I didn't just use ic->acc... */ |
---|
[5ebff60] | 378 | for (a = bee->accounts; a; a = a->next) { |
---|
| 379 | if (a->ic == ic) { |
---|
[0dd6570] | 380 | break; |
---|
[5ebff60] | 381 | } |
---|
| 382 | } |
---|
| 383 | |
---|
| 384 | if (a && !allow_reconnect && !(ic->flags & OPT_LOGGED_IN) && |
---|
| 385 | set_getbool(&a->set, "oauth")) { |
---|
[0dd6570] | 386 | /* If this account supports OAuth, we're not logged in yet and |
---|
| 387 | not allowed to retry, assume there were auth issues. Give a |
---|
| 388 | helpful message on what might be necessary to fix this. */ |
---|
[5ebff60] | 389 | imcb_log(ic, "If you're having problems logging in, try re-requesting " |
---|
| 390 | "an OAuth token: account %s set password \"\"", a->tag); |
---|
[0dd6570] | 391 | } |
---|
[5ebff60] | 392 | |
---|
| 393 | for (l = bee->users; l; ) { |
---|
[81e04e1] | 394 | bee_user_t *bu = l->data; |
---|
[eabc9d2] | 395 | GSList *next = l->next; |
---|
[5ebff60] | 396 | |
---|
| 397 | if (bu->ic == ic) { |
---|
| 398 | bee_user_free(bee, bu); |
---|
| 399 | } |
---|
| 400 | |
---|
[eabc9d2] | 401 | l = next; |
---|
[b7d3cc34] | 402 | } |
---|
[5ebff60] | 403 | |
---|
| 404 | b_event_remove(ic->keepalive); |
---|
[be7a180] | 405 | ic->keepalive = 0; |
---|
[5ebff60] | 406 | ic->acc->prpl->logout(ic); |
---|
| 407 | b_event_remove(ic->inpa); |
---|
| 408 | |
---|
| 409 | g_free(ic->away); |
---|
[be7a180] | 410 | ic->away = NULL; |
---|
[5ebff60] | 411 | |
---|
| 412 | query_del_by_conn((irc_t *) ic->bee->ui_data, ic); |
---|
| 413 | |
---|
| 414 | if (!a) { |
---|
[b7d3cc34] | 415 | /* Uhm... This is very sick. */ |
---|
[5ebff60] | 416 | } else if (allow_reconnect && set_getbool(&bee->set, "auto_reconnect") && |
---|
| 417 | set_getbool(&a->set, "auto_reconnect") && |
---|
| 418 | (delay = account_reconnect_delay(a)) > 0) { |
---|
| 419 | imcb_log(ic, "Reconnecting in %d seconds..", delay); |
---|
| 420 | a->reconnect = b_timeout_add(delay * 1000, auto_reconnect, a); |
---|
[b7d3cc34] | 421 | } |
---|
[5ebff60] | 422 | |
---|
| 423 | imc_free(ic); |
---|
[b7d3cc34] | 424 | } |
---|
| 425 | |
---|
[5ebff60] | 426 | void imcb_ask(struct im_connection *ic, char *msg, void *data, |
---|
| 427 | query_callback doit, query_callback dont) |
---|
[b7d3cc34] | 428 | { |
---|
[5ebff60] | 429 | query_add((irc_t *) ic->bee->ui_data, ic, msg, doit, dont, g_free, data); |
---|
[b7d3cc34] | 430 | } |
---|
| 431 | |
---|
[5ebff60] | 432 | void imcb_ask_with_free(struct im_connection *ic, char *msg, void *data, |
---|
| 433 | query_callback doit, query_callback dont, query_callback myfree) |
---|
[d0527c1] | 434 | { |
---|
[5ebff60] | 435 | query_add((irc_t *) ic->bee->ui_data, ic, msg, doit, dont, myfree, data); |
---|
[d0527c1] | 436 | } |
---|
| 437 | |
---|
[5ebff60] | 438 | void imcb_add_buddy(struct im_connection *ic, const char *handle, const char *group) |
---|
[b7d3cc34] | 439 | { |
---|
[81e04e1] | 440 | bee_user_t *bu; |
---|
| 441 | bee_t *bee = ic->bee; |
---|
[8b61469] | 442 | bee_group_t *oldg; |
---|
[5ebff60] | 443 | |
---|
| 444 | if (!(bu = bee_user_by_handle(bee, ic, handle))) { |
---|
| 445 | bu = bee_user_new(bee, ic, handle, 0); |
---|
| 446 | } |
---|
| 447 | |
---|
[8b61469] | 448 | oldg = bu->group; |
---|
[5ebff60] | 449 | bu->group = bee_group_by_name(bee, group, TRUE); |
---|
| 450 | |
---|
| 451 | if (bee->ui->user_group && bu->group != oldg) { |
---|
| 452 | bee->ui->user_group(bee, bu); |
---|
| 453 | } |
---|
[b7d3cc34] | 454 | } |
---|
| 455 | |
---|
[5ebff60] | 456 | void imcb_rename_buddy(struct im_connection *ic, const char *handle, const char *fullname) |
---|
[b7d3cc34] | 457 | { |
---|
[1d39159] | 458 | bee_t *bee = ic->bee; |
---|
[5ebff60] | 459 | bee_user_t *bu = bee_user_by_handle(bee, ic, handle); |
---|
| 460 | |
---|
| 461 | if (!bu || !fullname) { |
---|
| 462 | return; |
---|
| 463 | } |
---|
| 464 | |
---|
| 465 | if (!bu->fullname || strcmp(bu->fullname, fullname) != 0) { |
---|
| 466 | g_free(bu->fullname); |
---|
| 467 | bu->fullname = g_strdup(fullname); |
---|
| 468 | |
---|
| 469 | if (bee->ui->user_fullname) { |
---|
| 470 | bee->ui->user_fullname(bee, bu); |
---|
| 471 | } |
---|
[b7d3cc34] | 472 | } |
---|
| 473 | } |
---|
| 474 | |
---|
[5ebff60] | 475 | void imcb_remove_buddy(struct im_connection *ic, const char *handle, char *group) |
---|
[998b103] | 476 | { |
---|
[5ebff60] | 477 | bee_user_free(ic->bee, bee_user_by_handle(ic->bee, ic, handle)); |
---|
[998b103] | 478 | } |
---|
| 479 | |
---|
[d06eabf] | 480 | /* Mainly meant for ICQ (and now also for Jabber conferences) to allow IM |
---|
| 481 | modules to suggest a nickname for a handle. */ |
---|
[5ebff60] | 482 | void imcb_buddy_nick_hint(struct im_connection *ic, const char *handle, const char *nick) |
---|
[d06eabf] | 483 | { |
---|
[6ef9065] | 484 | bee_t *bee = ic->bee; |
---|
[5ebff60] | 485 | bee_user_t *bu = bee_user_by_handle(bee, ic, handle); |
---|
| 486 | |
---|
| 487 | if (!bu || !nick) { |
---|
| 488 | return; |
---|
| 489 | } |
---|
| 490 | |
---|
| 491 | g_free(bu->nick); |
---|
| 492 | bu->nick = g_strdup(nick); |
---|
| 493 | |
---|
| 494 | if (bee->ui->user_nick_hint) { |
---|
| 495 | bee->ui->user_nick_hint(bee, bu, nick); |
---|
| 496 | } |
---|
[d06eabf] | 497 | } |
---|
[b7d3cc34] | 498 | |
---|
| 499 | |
---|
[5ebff60] | 500 | struct imcb_ask_cb_data { |
---|
[0da65d5] | 501 | struct im_connection *ic; |
---|
[7bf0f5f0] | 502 | char *handle; |
---|
| 503 | }; |
---|
| 504 | |
---|
[098a75b] | 505 | static void imcb_ask_cb_free(void *data) |
---|
| 506 | { |
---|
| 507 | struct imcb_ask_cb_data *cbd = data; |
---|
| 508 | |
---|
| 509 | g_free(cbd->handle); |
---|
| 510 | g_free(cbd); |
---|
| 511 | } |
---|
| 512 | |
---|
[5ebff60] | 513 | static void imcb_ask_auth_cb_no(void *data) |
---|
[7bf0f5f0] | 514 | { |
---|
[fa295e36] | 515 | struct imcb_ask_cb_data *cbd = data; |
---|
[5ebff60] | 516 | |
---|
| 517 | cbd->ic->acc->prpl->auth_deny(cbd->ic, cbd->handle); |
---|
| 518 | |
---|
[098a75b] | 519 | imcb_ask_cb_free(cbd); |
---|
[fa295e36] | 520 | } |
---|
| 521 | |
---|
[5ebff60] | 522 | static void imcb_ask_auth_cb_yes(void *data) |
---|
[fa295e36] | 523 | { |
---|
| 524 | struct imcb_ask_cb_data *cbd = data; |
---|
[5ebff60] | 525 | |
---|
| 526 | cbd->ic->acc->prpl->auth_allow(cbd->ic, cbd->handle); |
---|
| 527 | |
---|
[098a75b] | 528 | imcb_ask_cb_free(cbd); |
---|
[fa295e36] | 529 | } |
---|
| 530 | |
---|
[5ebff60] | 531 | void imcb_ask_auth(struct im_connection *ic, const char *handle, const char *realname) |
---|
[fa295e36] | 532 | { |
---|
[5ebff60] | 533 | struct imcb_ask_cb_data *data = g_new0(struct imcb_ask_cb_data, 1); |
---|
[fa295e36] | 534 | char *s, *realname_ = NULL; |
---|
[5ebff60] | 535 | |
---|
| 536 | if (realname != NULL) { |
---|
| 537 | realname_ = g_strdup_printf(" (%s)", realname); |
---|
| 538 | } |
---|
| 539 | |
---|
| 540 | s = g_strdup_printf("The user %s%s wants to add you to his/her buddy list.", |
---|
| 541 | handle, realname_ ? realname_ : ""); |
---|
| 542 | |
---|
| 543 | g_free(realname_); |
---|
| 544 | |
---|
[fa295e36] | 545 | data->ic = ic; |
---|
[5ebff60] | 546 | data->handle = g_strdup(handle); |
---|
| 547 | query_add((irc_t *) ic->bee->ui_data, ic, s, |
---|
[098a75b] | 548 | imcb_ask_auth_cb_yes, imcb_ask_auth_cb_no, imcb_ask_cb_free, data); |
---|
[fa295e36] | 549 | |
---|
[098a75b] | 550 | g_free(s); |
---|
[7bf0f5f0] | 551 | } |
---|
| 552 | |
---|
[5ebff60] | 553 | static void imcb_ask_add_cb_yes(void *data) |
---|
[7bf0f5f0] | 554 | { |
---|
[fa295e36] | 555 | struct imcb_ask_cb_data *cbd = data; |
---|
[5ebff60] | 556 | |
---|
| 557 | cbd->ic->acc->prpl->add_buddy(cbd->ic, cbd->handle, NULL); |
---|
| 558 | |
---|
[098a75b] | 559 | imcb_ask_cb_free(data); |
---|
[7bf0f5f0] | 560 | } |
---|
| 561 | |
---|
[5ebff60] | 562 | void imcb_ask_add(struct im_connection *ic, const char *handle, const char *realname) |
---|
[b7d3cc34] | 563 | { |
---|
[098a75b] | 564 | struct imcb_ask_cb_data *data; |
---|
[7bf0f5f0] | 565 | char *s; |
---|
[5ebff60] | 566 | |
---|
[7bf0f5f0] | 567 | /* TODO: Make a setting for this! */ |
---|
[5ebff60] | 568 | if (bee_user_by_handle(ic->bee, ic, handle) != NULL) { |
---|
[7bf0f5f0] | 569 | return; |
---|
[5ebff60] | 570 | } |
---|
| 571 | |
---|
[098a75b] | 572 | data = g_new0(struct imcb_ask_cb_data, 1); |
---|
| 573 | |
---|
[5ebff60] | 574 | s = g_strdup_printf("The user %s is not in your buddy list yet. Do you want to add him/her now?", handle); |
---|
| 575 | |
---|
[0da65d5] | 576 | data->ic = ic; |
---|
[5ebff60] | 577 | data->handle = g_strdup(handle); |
---|
| 578 | query_add((irc_t *) ic->bee->ui_data, ic, s, |
---|
[098a75b] | 579 | imcb_ask_add_cb_yes, imcb_ask_cb_free, imcb_ask_cb_free, data); |
---|
| 580 | |
---|
| 581 | g_free(s); |
---|
[b7d3cc34] | 582 | } |
---|
| 583 | |
---|
[5ebff60] | 584 | struct bee_user *imcb_buddy_by_handle(struct im_connection *ic, const char *handle) |
---|
[81e04e1] | 585 | { |
---|
[5ebff60] | 586 | return bee_user_by_handle(ic->bee, ic, handle); |
---|
[b7d3cc34] | 587 | } |
---|
| 588 | |
---|
[226fce1] | 589 | /* The plan is to not allow straight calls to prpl functions anymore, but do |
---|
| 590 | them all from some wrappers. We'll start to define some down here: */ |
---|
| 591 | |
---|
[5ebff60] | 592 | int imc_chat_msg(struct groupchat *c, char *msg, int flags) |
---|
[b7d3cc34] | 593 | { |
---|
[e27661d] | 594 | char *buf = NULL; |
---|
[5ebff60] | 595 | |
---|
| 596 | if ((c->ic->flags & OPT_DOES_HTML) && (g_strncasecmp(msg, "<html>", 6) != 0)) { |
---|
| 597 | buf = escape_html(msg); |
---|
[b7d3cc34] | 598 | msg = buf; |
---|
| 599 | } |
---|
[5ebff60] | 600 | |
---|
| 601 | c->ic->acc->prpl->chat_msg(c, msg, flags); |
---|
| 602 | g_free(buf); |
---|
| 603 | |
---|
[0da65d5] | 604 | return 1; |
---|
[b7d3cc34] | 605 | } |
---|
[226fce1] | 606 | |
---|
[5ebff60] | 607 | static char *imc_away_state_find(GList *gcm, char *away, char **message); |
---|
[226fce1] | 608 | |
---|
[5ebff60] | 609 | int imc_away_send_update(struct im_connection *ic) |
---|
[226fce1] | 610 | { |
---|
[3e1ef92c] | 611 | char *away, *msg = NULL; |
---|
[5ebff60] | 612 | |
---|
| 613 | if (ic->acc->prpl->away_states == NULL || |
---|
| 614 | ic->acc->prpl->set_away == NULL) { |
---|
[91cec2f] | 615 | return 0; |
---|
[58adb7e] | 616 | } |
---|
[5ebff60] | 617 | |
---|
| 618 | away = set_getstr(&ic->acc->set, "away") ? |
---|
| 619 | : set_getstr(&ic->bee->set, "away"); |
---|
| 620 | if (away && *away) { |
---|
| 621 | GList *m = ic->acc->prpl->away_states(ic); |
---|
| 622 | msg = ic->acc->flags & ACC_FLAG_AWAY_MESSAGE ? away : NULL; |
---|
| 623 | away = imc_away_state_find(m, away, &msg) ? : m->data; |
---|
| 624 | } else if (ic->acc->flags & ACC_FLAG_STATUS_MESSAGE) { |
---|
[58adb7e] | 625 | away = NULL; |
---|
[5ebff60] | 626 | msg = set_getstr(&ic->acc->set, "status") ? |
---|
| 627 | : set_getstr(&ic->bee->set, "status"); |
---|
[226fce1] | 628 | } |
---|
[5ebff60] | 629 | |
---|
| 630 | ic->acc->prpl->set_away(ic, away, msg); |
---|
| 631 | |
---|
[34fbbf9] | 632 | return 1; |
---|
[226fce1] | 633 | } |
---|
| 634 | |
---|
[84b045d] | 635 | static char *imc_away_alias_list[8][5] = |
---|
[226fce1] | 636 | { |
---|
| 637 | { "Away from computer", "Away", "Extended away", NULL }, |
---|
| 638 | { "NA", "N/A", "Not available", NULL }, |
---|
| 639 | { "Busy", "Do not disturb", "DND", "Occupied", NULL }, |
---|
| 640 | { "Be right back", "BRB", NULL }, |
---|
| 641 | { "On the phone", "Phone", "On phone", NULL }, |
---|
| 642 | { "Out to lunch", "Lunch", "Food", NULL }, |
---|
| 643 | { "Invisible", "Hidden" }, |
---|
| 644 | { NULL } |
---|
| 645 | }; |
---|
| 646 | |
---|
[5ebff60] | 647 | static char *imc_away_state_find(GList *gcm, char *away, char **message) |
---|
[226fce1] | 648 | { |
---|
| 649 | GList *m; |
---|
| 650 | int i, j; |
---|
[5ebff60] | 651 | |
---|
| 652 | for (m = gcm; m; m = m->next) { |
---|
| 653 | if (g_strncasecmp(m->data, away, strlen(m->data)) == 0) { |
---|
[34fbbf9] | 654 | /* At least the Yahoo! module works better if message |
---|
| 655 | contains no data unless it adds something to what |
---|
| 656 | we have in state already. */ |
---|
[5ebff60] | 657 | if (strlen(m->data) == strlen(away)) { |
---|
[34fbbf9] | 658 | *message = NULL; |
---|
[5ebff60] | 659 | } |
---|
| 660 | |
---|
[34fbbf9] | 661 | return m->data; |
---|
| 662 | } |
---|
[5ebff60] | 663 | } |
---|
| 664 | |
---|
| 665 | for (i = 0; *imc_away_alias_list[i]; i++) { |
---|
[34fbbf9] | 666 | int keep_message; |
---|
[5ebff60] | 667 | |
---|
| 668 | for (j = 0; imc_away_alias_list[i][j]; j++) { |
---|
| 669 | if (g_strncasecmp(away, imc_away_alias_list[i][j], strlen(imc_away_alias_list[i][j])) == 0) { |
---|
| 670 | keep_message = strlen(away) != strlen(imc_away_alias_list[i][j]); |
---|
[226fce1] | 671 | break; |
---|
[34fbbf9] | 672 | } |
---|
[5ebff60] | 673 | } |
---|
| 674 | |
---|
| 675 | if (!imc_away_alias_list[i][j]) { /* If we reach the end, this row */ |
---|
| 676 | continue; /* is not what we want. Next! */ |
---|
| 677 | |
---|
| 678 | } |
---|
[226fce1] | 679 | /* Now find an entry in this row which exists in gcm */ |
---|
[5ebff60] | 680 | for (j = 0; imc_away_alias_list[i][j]; j++) { |
---|
| 681 | for (m = gcm; m; m = m->next) { |
---|
| 682 | if (g_strcasecmp(imc_away_alias_list[i][j], m->data) == 0) { |
---|
| 683 | if (!keep_message) { |
---|
[34fbbf9] | 684 | *message = NULL; |
---|
[5ebff60] | 685 | } |
---|
| 686 | |
---|
[34fbbf9] | 687 | return imc_away_alias_list[i][j]; |
---|
| 688 | } |
---|
[5ebff60] | 689 | } |
---|
[226fce1] | 690 | } |
---|
[5ebff60] | 691 | |
---|
[34fbbf9] | 692 | /* No need to look further, apparently this state doesn't |
---|
| 693 | have any good alias for this protocol. */ |
---|
| 694 | break; |
---|
[226fce1] | 695 | } |
---|
[5ebff60] | 696 | |
---|
[34fbbf9] | 697 | return NULL; |
---|
[226fce1] | 698 | } |
---|
[da3b536] | 699 | |
---|
[5ebff60] | 700 | void imc_add_allow(struct im_connection *ic, char *handle) |
---|
[da3b536] | 701 | { |
---|
[5ebff60] | 702 | if (g_slist_find_custom(ic->permit, handle, (GCompareFunc) ic->acc->prpl->handle_cmp) == NULL) { |
---|
| 703 | ic->permit = g_slist_prepend(ic->permit, g_strdup(handle)); |
---|
[da3b536] | 704 | } |
---|
[5ebff60] | 705 | |
---|
| 706 | ic->acc->prpl->add_permit(ic, handle); |
---|
[da3b536] | 707 | } |
---|
| 708 | |
---|
[5ebff60] | 709 | void imc_rem_allow(struct im_connection *ic, char *handle) |
---|
[da3b536] | 710 | { |
---|
| 711 | GSList *l; |
---|
[5ebff60] | 712 | |
---|
| 713 | if ((l = g_slist_find_custom(ic->permit, handle, (GCompareFunc) ic->acc->prpl->handle_cmp))) { |
---|
| 714 | g_free(l->data); |
---|
| 715 | ic->permit = g_slist_delete_link(ic->permit, l); |
---|
[da3b536] | 716 | } |
---|
[5ebff60] | 717 | |
---|
| 718 | ic->acc->prpl->rem_permit(ic, handle); |
---|
[da3b536] | 719 | } |
---|
| 720 | |
---|
[5ebff60] | 721 | void imc_add_block(struct im_connection *ic, char *handle) |
---|
[da3b536] | 722 | { |
---|
[5ebff60] | 723 | if (g_slist_find_custom(ic->deny, handle, (GCompareFunc) ic->acc->prpl->handle_cmp) == NULL) { |
---|
| 724 | ic->deny = g_slist_prepend(ic->deny, g_strdup(handle)); |
---|
[da3b536] | 725 | } |
---|
[5ebff60] | 726 | |
---|
| 727 | ic->acc->prpl->add_deny(ic, handle); |
---|
[da3b536] | 728 | } |
---|
| 729 | |
---|
[5ebff60] | 730 | void imc_rem_block(struct im_connection *ic, char *handle) |
---|
[da3b536] | 731 | { |
---|
| 732 | GSList *l; |
---|
[5ebff60] | 733 | |
---|
| 734 | if ((l = g_slist_find_custom(ic->deny, handle, (GCompareFunc) ic->acc->prpl->handle_cmp))) { |
---|
| 735 | g_free(l->data); |
---|
| 736 | ic->deny = g_slist_delete_link(ic->deny, l); |
---|
[da3b536] | 737 | } |
---|
[5ebff60] | 738 | |
---|
| 739 | ic->acc->prpl->rem_deny(ic, handle); |
---|
[da3b536] | 740 | } |
---|
[85023c6] | 741 | |
---|
[5ebff60] | 742 | void imcb_clean_handle(struct im_connection *ic, char *handle) |
---|
[85023c6] | 743 | { |
---|
| 744 | /* Accepts a handle and does whatever is necessary to make it |
---|
| 745 | BitlBee-friendly. Currently this means removing everything |
---|
| 746 | outside 33-127 (ASCII printable excl spaces), @ (only one |
---|
| 747 | is allowed) and ! and : */ |
---|
[5ebff60] | 748 | char out[strlen(handle) + 1]; |
---|
[85023c6] | 749 | int s, d; |
---|
[5ebff60] | 750 | |
---|
[85023c6] | 751 | s = d = 0; |
---|
[5ebff60] | 752 | while (handle[s]) { |
---|
| 753 | if (handle[s] > ' ' && handle[s] != '!' && handle[s] != ':' && |
---|
| 754 | (handle[s] & 0x80) == 0) { |
---|
| 755 | if (handle[s] == '@') { |
---|
[85023c6] | 756 | /* See if we got an @ already? */ |
---|
| 757 | out[d] = 0; |
---|
[5ebff60] | 758 | if (strchr(out, '@')) { |
---|
[85023c6] | 759 | continue; |
---|
[5ebff60] | 760 | } |
---|
[85023c6] | 761 | } |
---|
[5ebff60] | 762 | |
---|
[85023c6] | 763 | out[d++] = handle[s]; |
---|
| 764 | } |
---|
[5ebff60] | 765 | s++; |
---|
[85023c6] | 766 | } |
---|
| 767 | out[d] = handle[s]; |
---|
[5ebff60] | 768 | |
---|
| 769 | strcpy(handle, out); |
---|
[85023c6] | 770 | } |
---|