[b7d3cc34] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
[ecf8fa8] | 4 | * Copyright 2002-2006 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; |
---|
| 30 | if not, write to the Free Software Foundation, Inc., 59 Temple Place, |
---|
| 31 | Suite 330, Boston, MA 02111-1307 USA |
---|
| 32 | */ |
---|
| 33 | |
---|
| 34 | #define BITLBEE_CORE |
---|
| 35 | #include "nogaim.h" |
---|
| 36 | #include <ctype.h> |
---|
| 37 | |
---|
[764b163d] | 38 | static int remove_chat_buddy_silent( struct groupchat *b, const char *handle ); |
---|
[b7d3cc34] | 39 | |
---|
| 40 | GSList *connections; |
---|
| 41 | |
---|
[65e2ce1] | 42 | #ifdef WITH_PLUGINS |
---|
[7b23afd] | 43 | gboolean load_plugin(char *path) |
---|
| 44 | { |
---|
| 45 | void (*init_function) (void); |
---|
| 46 | |
---|
| 47 | GModule *mod = g_module_open(path, G_MODULE_BIND_LAZY); |
---|
| 48 | |
---|
| 49 | if(!mod) { |
---|
[8ad90fb] | 50 | log_message(LOGLVL_ERROR, "Can't find `%s', not loading (%s)\n", path, g_module_error()); |
---|
[7b23afd] | 51 | return FALSE; |
---|
| 52 | } |
---|
| 53 | |
---|
| 54 | if(!g_module_symbol(mod,"init_plugin",(gpointer *) &init_function)) { |
---|
| 55 | log_message(LOGLVL_WARNING, "Can't find function `init_plugin' in `%s'\n", path); |
---|
| 56 | return FALSE; |
---|
| 57 | } |
---|
| 58 | |
---|
| 59 | init_function(); |
---|
| 60 | |
---|
| 61 | return TRUE; |
---|
| 62 | } |
---|
[b7d3cc34] | 63 | |
---|
[65e2ce1] | 64 | void load_plugins(void) |
---|
| 65 | { |
---|
| 66 | GDir *dir; |
---|
| 67 | GError *error = NULL; |
---|
| 68 | |
---|
[4bfca70] | 69 | dir = g_dir_open(global.conf->plugindir, 0, &error); |
---|
[65e2ce1] | 70 | |
---|
| 71 | if (dir) { |
---|
| 72 | const gchar *entry; |
---|
| 73 | char *path; |
---|
| 74 | |
---|
| 75 | while ((entry = g_dir_read_name(dir))) { |
---|
[4bfca70] | 76 | path = g_build_filename(global.conf->plugindir, entry, NULL); |
---|
[65e2ce1] | 77 | if(!path) { |
---|
| 78 | log_message(LOGLVL_WARNING, "Can't build path for %s\n", entry); |
---|
| 79 | continue; |
---|
| 80 | } |
---|
| 81 | |
---|
| 82 | load_plugin(path); |
---|
| 83 | |
---|
| 84 | g_free(path); |
---|
| 85 | } |
---|
| 86 | |
---|
| 87 | g_dir_close(dir); |
---|
| 88 | } |
---|
| 89 | } |
---|
| 90 | #endif |
---|
[b7d3cc34] | 91 | |
---|
| 92 | /* nogaim.c */ |
---|
| 93 | |
---|
[7b23afd] | 94 | GList *protocols = NULL; |
---|
| 95 | |
---|
| 96 | void register_protocol (struct prpl *p) |
---|
| 97 | { |
---|
| 98 | protocols = g_list_append(protocols, p); |
---|
| 99 | } |
---|
| 100 | |
---|
| 101 | struct prpl *find_protocol(const char *name) |
---|
| 102 | { |
---|
| 103 | GList *gl; |
---|
| 104 | for (gl = protocols; gl; gl = gl->next) |
---|
| 105 | { |
---|
| 106 | struct prpl *proto = gl->data; |
---|
| 107 | if(!g_strcasecmp(proto->name, name)) |
---|
| 108 | return proto; |
---|
| 109 | } |
---|
| 110 | return NULL; |
---|
| 111 | } |
---|
| 112 | |
---|
| 113 | /* nogaim.c */ |
---|
[b7d3cc34] | 114 | void nogaim_init() |
---|
| 115 | { |
---|
[0da65d5] | 116 | extern void msn_initmodule(); |
---|
| 117 | extern void oscar_initmodule(); |
---|
| 118 | extern void byahoo_initmodule(); |
---|
| 119 | extern void jabber_initmodule(); |
---|
[7b23afd] | 120 | |
---|
[b7d3cc34] | 121 | #ifdef WITH_MSN |
---|
[0da65d5] | 122 | msn_initmodule(); |
---|
[b7d3cc34] | 123 | #endif |
---|
| 124 | |
---|
| 125 | #ifdef WITH_OSCAR |
---|
[0da65d5] | 126 | oscar_initmodule(); |
---|
[b7d3cc34] | 127 | #endif |
---|
| 128 | |
---|
| 129 | #ifdef WITH_YAHOO |
---|
[0da65d5] | 130 | byahoo_initmodule(); |
---|
[b7d3cc34] | 131 | #endif |
---|
| 132 | |
---|
| 133 | #ifdef WITH_JABBER |
---|
[0da65d5] | 134 | jabber_initmodule(); |
---|
[b7d3cc34] | 135 | #endif |
---|
[7b23afd] | 136 | |
---|
[65e2ce1] | 137 | #ifdef WITH_PLUGINS |
---|
| 138 | load_plugins(); |
---|
[b7d3cc34] | 139 | #endif |
---|
| 140 | } |
---|
| 141 | |
---|
| 142 | GSList *get_connections() { return connections; } |
---|
| 143 | |
---|
| 144 | /* multi.c */ |
---|
| 145 | |
---|
[84b045d] | 146 | struct im_connection *imcb_new( account_t *acc ) |
---|
[b7d3cc34] | 147 | { |
---|
[0da65d5] | 148 | struct im_connection *ic; |
---|
[b7d3cc34] | 149 | |
---|
[0da65d5] | 150 | ic = g_new0( struct im_connection, 1 ); |
---|
[b7d3cc34] | 151 | |
---|
[0da65d5] | 152 | ic->irc = acc->irc; |
---|
| 153 | ic->acc = acc; |
---|
| 154 | acc->ic = ic; |
---|
[b7d3cc34] | 155 | |
---|
[0da65d5] | 156 | connections = g_slist_append( connections, ic ); |
---|
[b7d3cc34] | 157 | |
---|
[0da65d5] | 158 | return( ic ); |
---|
[b7d3cc34] | 159 | } |
---|
| 160 | |
---|
[aef4828] | 161 | void imc_free( struct im_connection *ic ) |
---|
[b7d3cc34] | 162 | { |
---|
| 163 | account_t *a; |
---|
| 164 | |
---|
| 165 | /* Destroy the pointer to this connection from the account list */ |
---|
[0da65d5] | 166 | for( a = ic->irc->accounts; a; a = a->next ) |
---|
| 167 | if( a->ic == ic ) |
---|
[b7d3cc34] | 168 | { |
---|
[0da65d5] | 169 | a->ic = NULL; |
---|
[b7d3cc34] | 170 | break; |
---|
| 171 | } |
---|
| 172 | |
---|
[0da65d5] | 173 | connections = g_slist_remove( connections, ic ); |
---|
| 174 | g_free( ic ); |
---|
[b7d3cc34] | 175 | } |
---|
| 176 | |
---|
[aef4828] | 177 | static void serv_got_crap( struct im_connection *ic, char *format, ... ) |
---|
[b7d3cc34] | 178 | { |
---|
| 179 | va_list params; |
---|
[e27661d] | 180 | char *text; |
---|
[dfde8e0] | 181 | account_t *a; |
---|
[b7d3cc34] | 182 | |
---|
| 183 | va_start( params, format ); |
---|
[e27661d] | 184 | text = g_strdup_vprintf( format, params ); |
---|
[b7d3cc34] | 185 | va_end( params ); |
---|
| 186 | |
---|
[0da65d5] | 187 | if( ( g_strcasecmp( set_getstr( &ic->irc->set, "strip_html" ), "always" ) == 0 ) || |
---|
[6bbb939] | 188 | ( ( ic->flags & OPT_DOES_HTML ) && set_getbool( &ic->irc->set, "strip_html" ) ) ) |
---|
[e27661d] | 189 | strip_html( text ); |
---|
[b7d3cc34] | 190 | |
---|
[dfde8e0] | 191 | /* Try to find a different connection on the same protocol. */ |
---|
[0da65d5] | 192 | for( a = ic->irc->accounts; a; a = a->next ) |
---|
| 193 | if( a->prpl == ic->acc->prpl && a->ic != ic ) |
---|
[dfde8e0] | 194 | break; |
---|
| 195 | |
---|
[e27661d] | 196 | /* If we found one, include the screenname in the message. */ |
---|
[dfde8e0] | 197 | if( a ) |
---|
[c2fb3809] | 198 | irc_usermsg( ic->irc, "%s(%s) - %s", ic->acc->prpl->name, ic->acc->user, text ); |
---|
[dfde8e0] | 199 | else |
---|
[0da65d5] | 200 | irc_usermsg( ic->irc, "%s - %s", ic->acc->prpl->name, text ); |
---|
[7b07dc6] | 201 | |
---|
[e27661d] | 202 | g_free( text ); |
---|
[b7d3cc34] | 203 | } |
---|
| 204 | |
---|
[84b045d] | 205 | void imcb_log( struct im_connection *ic, char *format, ... ) |
---|
[aef4828] | 206 | { |
---|
| 207 | va_list params; |
---|
| 208 | char *text; |
---|
| 209 | |
---|
| 210 | va_start( params, format ); |
---|
| 211 | text = g_strdup_vprintf( format, params ); |
---|
| 212 | va_end( params ); |
---|
| 213 | |
---|
| 214 | if( ic->flags & OPT_LOGGED_IN ) |
---|
| 215 | serv_got_crap( ic, "%s", text ); |
---|
| 216 | else |
---|
| 217 | serv_got_crap( ic, "Logging in: %s", text ); |
---|
| 218 | |
---|
| 219 | g_free( text ); |
---|
| 220 | } |
---|
| 221 | |
---|
[84b045d] | 222 | void imcb_error( struct im_connection *ic, char *format, ... ) |
---|
[aef4828] | 223 | { |
---|
| 224 | va_list params; |
---|
| 225 | char *text; |
---|
| 226 | |
---|
| 227 | va_start( params, format ); |
---|
| 228 | text = g_strdup_vprintf( format, params ); |
---|
| 229 | va_end( params ); |
---|
| 230 | |
---|
| 231 | if( ic->flags & OPT_LOGGED_IN ) |
---|
| 232 | serv_got_crap( ic, "Error: %s", text ); |
---|
| 233 | else |
---|
| 234 | serv_got_crap( ic, "Couldn't log in: %s", text ); |
---|
| 235 | |
---|
| 236 | g_free( text ); |
---|
| 237 | } |
---|
| 238 | |
---|
[ba9edaa] | 239 | static gboolean send_keepalive( gpointer d, gint fd, b_input_condition cond ) |
---|
[b7d3cc34] | 240 | { |
---|
[0da65d5] | 241 | struct im_connection *ic = d; |
---|
[b7d3cc34] | 242 | |
---|
[0da65d5] | 243 | if( ic->acc->prpl->keepalive ) |
---|
| 244 | ic->acc->prpl->keepalive( ic ); |
---|
[b7d3cc34] | 245 | |
---|
| 246 | return TRUE; |
---|
| 247 | } |
---|
| 248 | |
---|
[84b045d] | 249 | void imcb_connected( struct im_connection *ic ) |
---|
[b7d3cc34] | 250 | { |
---|
| 251 | user_t *u; |
---|
| 252 | |
---|
| 253 | /* MSN servers sometimes redirect you to a different server and do |
---|
[84c1a0a] | 254 | the whole login sequence again, so these "late" calls to this |
---|
[b7d3cc34] | 255 | function should be handled correctly. (IOW, ignored) */ |
---|
[0da65d5] | 256 | if( ic->flags & OPT_LOGGED_IN ) |
---|
[b7d3cc34] | 257 | return; |
---|
| 258 | |
---|
[0da65d5] | 259 | u = user_find( ic->irc, ic->irc->nick ); |
---|
[b7d3cc34] | 260 | |
---|
[84b045d] | 261 | imcb_log( ic, "Logged in" ); |
---|
[b7d3cc34] | 262 | |
---|
[0da65d5] | 263 | ic->keepalive = b_timeout_add( 60000, send_keepalive, ic ); |
---|
| 264 | ic->flags |= OPT_LOGGED_IN; |
---|
[b7d3cc34] | 265 | |
---|
[61dddd0] | 266 | /* Also necessary when we're not away, at least for some of the |
---|
| 267 | protocols. */ |
---|
[84b045d] | 268 | imc_set_away( ic, u->away ); |
---|
[b7d3cc34] | 269 | } |
---|
| 270 | |
---|
[ba9edaa] | 271 | gboolean auto_reconnect( gpointer data, gint fd, b_input_condition cond ) |
---|
[b7d3cc34] | 272 | { |
---|
| 273 | account_t *a = data; |
---|
| 274 | |
---|
| 275 | a->reconnect = 0; |
---|
| 276 | account_on( a->irc, a ); |
---|
| 277 | |
---|
| 278 | return( FALSE ); /* Only have to run the timeout once */ |
---|
| 279 | } |
---|
| 280 | |
---|
| 281 | void cancel_auto_reconnect( account_t *a ) |
---|
| 282 | { |
---|
[c98be00] | 283 | b_event_remove( a->reconnect ); |
---|
[b7d3cc34] | 284 | a->reconnect = 0; |
---|
| 285 | } |
---|
| 286 | |
---|
[c2fb3809] | 287 | void imc_logout( struct im_connection *ic, int allow_reconnect ) |
---|
[b7d3cc34] | 288 | { |
---|
[0da65d5] | 289 | irc_t *irc = ic->irc; |
---|
[c9c7ca7] | 290 | user_t *t, *u; |
---|
[b7d3cc34] | 291 | account_t *a; |
---|
| 292 | |
---|
[8d74291] | 293 | /* Nested calls might happen sometimes, this is probably the best |
---|
| 294 | place to catch them. */ |
---|
[0da65d5] | 295 | if( ic->flags & OPT_LOGGING_OUT ) |
---|
[8d74291] | 296 | return; |
---|
[66f783f] | 297 | else |
---|
[0da65d5] | 298 | ic->flags |= OPT_LOGGING_OUT; |
---|
[8d74291] | 299 | |
---|
[84b045d] | 300 | imcb_log( ic, "Signing off.." ); |
---|
[fb62f81f] | 301 | |
---|
[0da65d5] | 302 | b_event_remove( ic->keepalive ); |
---|
| 303 | ic->keepalive = 0; |
---|
| 304 | ic->acc->prpl->logout( ic ); |
---|
| 305 | b_event_remove( ic->inpa ); |
---|
[b7d3cc34] | 306 | |
---|
[c9c7ca7] | 307 | u = irc->users; |
---|
[b7d3cc34] | 308 | while( u ) |
---|
| 309 | { |
---|
[0da65d5] | 310 | if( u->ic == ic ) |
---|
[b7d3cc34] | 311 | { |
---|
| 312 | t = u->next; |
---|
| 313 | user_del( irc, u->nick ); |
---|
| 314 | u = t; |
---|
| 315 | } |
---|
| 316 | else |
---|
| 317 | u = u->next; |
---|
| 318 | } |
---|
| 319 | |
---|
[0da65d5] | 320 | query_del_by_conn( ic->irc, ic ); |
---|
[b7d3cc34] | 321 | |
---|
| 322 | for( a = irc->accounts; a; a = a->next ) |
---|
[0da65d5] | 323 | if( a->ic == ic ) |
---|
[b7d3cc34] | 324 | break; |
---|
| 325 | |
---|
| 326 | if( !a ) |
---|
| 327 | { |
---|
| 328 | /* Uhm... This is very sick. */ |
---|
| 329 | } |
---|
[c2fb3809] | 330 | else if( allow_reconnect && set_getbool( &irc->set, "auto_reconnect" ) && |
---|
[00a5270] | 331 | set_getbool( &a->set, "auto_reconnect" ) ) |
---|
[b7d3cc34] | 332 | { |
---|
[5c9512f] | 333 | int delay = set_getint( &irc->set, "auto_reconnect_delay" ); |
---|
[b7d3cc34] | 334 | |
---|
[84b045d] | 335 | imcb_log( ic, "Reconnecting in %d seconds..", delay ); |
---|
[c98be00] | 336 | a->reconnect = b_timeout_add( delay * 1000, auto_reconnect, a ); |
---|
[b7d3cc34] | 337 | } |
---|
| 338 | |
---|
[aef4828] | 339 | imc_free( ic ); |
---|
[b7d3cc34] | 340 | } |
---|
| 341 | |
---|
| 342 | |
---|
| 343 | /* dialogs.c */ |
---|
| 344 | |
---|
[84b045d] | 345 | void imcb_ask( struct im_connection *ic, char *msg, void *data, void *doit, void *dont ) |
---|
[b7d3cc34] | 346 | { |
---|
[0da65d5] | 347 | query_add( ic->irc, ic, msg, doit, dont, data ); |
---|
[b7d3cc34] | 348 | } |
---|
| 349 | |
---|
| 350 | |
---|
| 351 | /* list.c */ |
---|
| 352 | |
---|
[f0cb961] | 353 | void imcb_add_buddy( struct im_connection *ic, char *handle, char *group ) |
---|
[b7d3cc34] | 354 | { |
---|
| 355 | user_t *u; |
---|
[f0cb961] | 356 | char nick[MAX_NICK_LENGTH+1], *s; |
---|
[0da65d5] | 357 | irc_t *irc = ic->irc; |
---|
[b7d3cc34] | 358 | |
---|
[0da65d5] | 359 | if( user_findhandle( ic, handle ) ) |
---|
[b7d3cc34] | 360 | { |
---|
[d5ccd83] | 361 | if( set_getbool( &irc->set, "debug" ) ) |
---|
[84b045d] | 362 | imcb_log( ic, "User already exists, ignoring add request: %s", handle ); |
---|
[b7d3cc34] | 363 | |
---|
| 364 | return; |
---|
| 365 | |
---|
[f0cb961] | 366 | /* Buddy seems to exist already. Let's ignore this request then... |
---|
| 367 | Eventually subsequent calls to this function *should* be possible |
---|
| 368 | when a buddy is in multiple groups. But for now BitlBee doesn't |
---|
| 369 | even support groups so let's silently ignore this for now. */ |
---|
[b7d3cc34] | 370 | } |
---|
| 371 | |
---|
| 372 | memset( nick, 0, MAX_NICK_LENGTH + 1 ); |
---|
[d323394c] | 373 | strcpy( nick, nick_get( ic->acc, handle ) ); |
---|
[b7d3cc34] | 374 | |
---|
[0da65d5] | 375 | u = user_add( ic->irc, nick ); |
---|
[b7d3cc34] | 376 | |
---|
[f0cb961] | 377 | // if( !realname || !*realname ) realname = nick; |
---|
| 378 | // u->realname = g_strdup( realname ); |
---|
[b7d3cc34] | 379 | |
---|
| 380 | if( ( s = strchr( handle, '@' ) ) ) |
---|
| 381 | { |
---|
| 382 | u->host = g_strdup( s + 1 ); |
---|
| 383 | u->user = g_strndup( handle, s - handle ); |
---|
| 384 | } |
---|
[0da65d5] | 385 | else if( ic->acc->server ) |
---|
[b7d3cc34] | 386 | { |
---|
[f0cb961] | 387 | u->host = g_strdup( ic->acc->server ); |
---|
[b7d3cc34] | 388 | u->user = g_strdup( handle ); |
---|
| 389 | |
---|
| 390 | /* s/ /_/ ... important for AOL screennames */ |
---|
| 391 | for( s = u->user; *s; s ++ ) |
---|
| 392 | if( *s == ' ' ) |
---|
| 393 | *s = '_'; |
---|
| 394 | } |
---|
| 395 | else |
---|
| 396 | { |
---|
[0da65d5] | 397 | u->host = g_strdup( ic->acc->prpl->name ); |
---|
[b7d3cc34] | 398 | u->user = g_strdup( handle ); |
---|
| 399 | } |
---|
| 400 | |
---|
[0da65d5] | 401 | u->ic = ic; |
---|
[b7d3cc34] | 402 | u->handle = g_strdup( handle ); |
---|
[9b8a38b] | 403 | if( group ) u->group = g_strdup( group ); |
---|
[b7d3cc34] | 404 | u->send_handler = buddy_send_handler; |
---|
| 405 | u->last_typing_notice = 0; |
---|
| 406 | } |
---|
| 407 | |
---|
[f0cb961] | 408 | struct buddy *imcb_find_buddy( struct im_connection *ic, char *handle ) |
---|
[b7d3cc34] | 409 | { |
---|
| 410 | static struct buddy b[1]; |
---|
| 411 | user_t *u; |
---|
| 412 | |
---|
[0da65d5] | 413 | u = user_findhandle( ic, handle ); |
---|
[b7d3cc34] | 414 | |
---|
| 415 | if( !u ) |
---|
| 416 | return( NULL ); |
---|
[9624fdf] | 417 | |
---|
[b7d3cc34] | 418 | memset( b, 0, sizeof( b ) ); |
---|
| 419 | strncpy( b->name, handle, 80 ); |
---|
| 420 | strncpy( b->show, u->realname, BUDDY_ALIAS_MAXLEN ); |
---|
| 421 | b->present = u->online; |
---|
[0da65d5] | 422 | b->ic = u->ic; |
---|
[b7d3cc34] | 423 | |
---|
| 424 | return( b ); |
---|
| 425 | } |
---|
| 426 | |
---|
[f0cb961] | 427 | void imcb_rename_buddy( struct im_connection *ic, char *handle, char *realname ) |
---|
[b7d3cc34] | 428 | { |
---|
[0da65d5] | 429 | user_t *u = user_findhandle( ic, handle ); |
---|
[b7d3cc34] | 430 | |
---|
[f0cb961] | 431 | if( !u || !realname ) return; |
---|
[b7d3cc34] | 432 | |
---|
[e27661d] | 433 | if( g_strcasecmp( u->realname, realname ) != 0 ) |
---|
[b7d3cc34] | 434 | { |
---|
| 435 | if( u->realname != u->nick ) g_free( u->realname ); |
---|
| 436 | |
---|
[e27661d] | 437 | u->realname = g_strdup( realname ); |
---|
[b7d3cc34] | 438 | |
---|
[0da65d5] | 439 | if( ( ic->flags & OPT_LOGGED_IN ) && set_getbool( &ic->irc->set, "display_namechanges" ) ) |
---|
[84b045d] | 440 | imcb_log( ic, "User `%s' changed name to `%s'", u->nick, u->realname ); |
---|
[b7d3cc34] | 441 | } |
---|
| 442 | } |
---|
| 443 | |
---|
[998b103] | 444 | void imcb_remove_buddy( struct im_connection *ic, char *handle, char *group ) |
---|
| 445 | { |
---|
| 446 | user_t *u; |
---|
| 447 | |
---|
| 448 | if( ( u = user_findhandle( ic, handle ) ) ) |
---|
| 449 | user_del( ic->irc, u->nick ); |
---|
| 450 | } |
---|
| 451 | |
---|
[d06eabf] | 452 | /* Mainly meant for ICQ (and now also for Jabber conferences) to allow IM |
---|
| 453 | modules to suggest a nickname for a handle. */ |
---|
| 454 | void imcb_buddy_nick_hint( struct im_connection *ic, char *handle, char *nick ) |
---|
| 455 | { |
---|
| 456 | user_t *u = user_findhandle( ic, handle ); |
---|
[43d8cc5] | 457 | char newnick[MAX_NICK_LENGTH+1], *orig_nick; |
---|
[d06eabf] | 458 | |
---|
[e0e2a71] | 459 | if( u && !u->online && !nick_saved( ic->acc, handle ) ) |
---|
[d06eabf] | 460 | { |
---|
| 461 | /* Only do this if the person isn't online yet (which should |
---|
| 462 | be the case if we just added it) and if the user hasn't |
---|
| 463 | assigned a nickname to this buddy already. */ |
---|
| 464 | |
---|
[e0e2a71] | 465 | strncpy( newnick, nick, MAX_NICK_LENGTH ); |
---|
| 466 | newnick[MAX_NICK_LENGTH] = 0; |
---|
[d06eabf] | 467 | |
---|
| 468 | /* Some processing to make sure this string is a valid IRC nickname. */ |
---|
| 469 | nick_strip( newnick ); |
---|
| 470 | if( set_getbool( &ic->irc->set, "lcnicks" ) ) |
---|
| 471 | nick_lc( newnick ); |
---|
| 472 | |
---|
[1962ac1] | 473 | if( strcmp( u->nick, newnick ) != 0 ) |
---|
| 474 | { |
---|
| 475 | /* Only do this if newnick is different from the current one. |
---|
| 476 | If rejoining a channel, maybe we got this nick already |
---|
| 477 | (and dedupe would only add an underscore. */ |
---|
| 478 | nick_dedupe( ic->acc, handle, newnick ); |
---|
| 479 | |
---|
| 480 | /* u->nick will be freed halfway the process, so it can't be |
---|
| 481 | passed as an argument. */ |
---|
| 482 | orig_nick = g_strdup( u->nick ); |
---|
| 483 | user_rename( ic->irc, orig_nick, newnick ); |
---|
| 484 | g_free( orig_nick ); |
---|
| 485 | } |
---|
[d06eabf] | 486 | } |
---|
| 487 | } |
---|
[b7d3cc34] | 488 | |
---|
| 489 | /* prpl.c */ |
---|
| 490 | |
---|
[7bf0f5f0] | 491 | struct show_got_added_data |
---|
| 492 | { |
---|
[0da65d5] | 493 | struct im_connection *ic; |
---|
[7bf0f5f0] | 494 | char *handle; |
---|
| 495 | }; |
---|
| 496 | |
---|
| 497 | void show_got_added_no( gpointer w, struct show_got_added_data *data ) |
---|
| 498 | { |
---|
| 499 | g_free( data->handle ); |
---|
| 500 | g_free( data ); |
---|
| 501 | } |
---|
| 502 | |
---|
| 503 | void show_got_added_yes( gpointer w, struct show_got_added_data *data ) |
---|
| 504 | { |
---|
[0da65d5] | 505 | data->ic->acc->prpl->add_buddy( data->ic, data->handle, NULL ); |
---|
[f0cb961] | 506 | /* imcb_add_buddy( data->ic, NULL, data->handle, data->handle ); */ |
---|
[7bf0f5f0] | 507 | |
---|
| 508 | return show_got_added_no( w, data ); |
---|
| 509 | } |
---|
| 510 | |
---|
[84b045d] | 511 | void imcb_ask_add( struct im_connection *ic, char *handle, const char *realname ) |
---|
[b7d3cc34] | 512 | { |
---|
[7bf0f5f0] | 513 | struct show_got_added_data *data = g_new0( struct show_got_added_data, 1 ); |
---|
| 514 | char *s; |
---|
| 515 | |
---|
| 516 | /* TODO: Make a setting for this! */ |
---|
[0da65d5] | 517 | if( user_findhandle( ic, handle ) != NULL ) |
---|
[7bf0f5f0] | 518 | return; |
---|
| 519 | |
---|
| 520 | s = g_strdup_printf( "The user %s is not in your buddy list yet. Do you want to add him/her now?", handle ); |
---|
| 521 | |
---|
[0da65d5] | 522 | data->ic = ic; |
---|
[7bf0f5f0] | 523 | data->handle = g_strdup( handle ); |
---|
[0da65d5] | 524 | query_add( ic->irc, ic, s, show_got_added_yes, show_got_added_no, data ); |
---|
[b7d3cc34] | 525 | } |
---|
| 526 | |
---|
| 527 | |
---|
| 528 | /* server.c */ |
---|
| 529 | |
---|
[6bbb939] | 530 | void imcb_buddy_status( struct im_connection *ic, const char *handle, int flags, const char *state, const char *message ) |
---|
[b7d3cc34] | 531 | { |
---|
| 532 | user_t *u; |
---|
| 533 | int oa, oo; |
---|
| 534 | |
---|
[6bbb939] | 535 | u = user_findhandle( ic, (char*) handle ); |
---|
[b7d3cc34] | 536 | |
---|
| 537 | if( !u ) |
---|
| 538 | { |
---|
[0da65d5] | 539 | if( g_strcasecmp( set_getstr( &ic->irc->set, "handle_unknown" ), "add" ) == 0 ) |
---|
[b7d3cc34] | 540 | { |
---|
[f0cb961] | 541 | imcb_add_buddy( ic, (char*) handle, NULL ); |
---|
[6bbb939] | 542 | u = user_findhandle( ic, (char*) handle ); |
---|
[b7d3cc34] | 543 | } |
---|
| 544 | else |
---|
| 545 | { |
---|
[0da65d5] | 546 | if( set_getbool( &ic->irc->set, "debug" ) || g_strcasecmp( set_getstr( &ic->irc->set, "handle_unknown" ), "ignore" ) != 0 ) |
---|
[b7d3cc34] | 547 | { |
---|
[6bbb939] | 548 | imcb_log( ic, "imcb_buddy_status() for unknown handle %s:", handle ); |
---|
| 549 | imcb_log( ic, "flags = %d, state = %s, message = %s", flags, |
---|
| 550 | state ? state : "NULL", message ? message : "NULL" ); |
---|
[b7d3cc34] | 551 | } |
---|
| 552 | |
---|
| 553 | return; |
---|
| 554 | } |
---|
| 555 | } |
---|
| 556 | |
---|
| 557 | oa = u->away != NULL; |
---|
| 558 | oo = u->online; |
---|
| 559 | |
---|
| 560 | if( u->away ) |
---|
| 561 | { |
---|
| 562 | g_free( u->away ); |
---|
| 563 | u->away = NULL; |
---|
| 564 | } |
---|
| 565 | |
---|
[6bbb939] | 566 | if( ( flags & OPT_LOGGED_IN ) && !u->online ) |
---|
[b7d3cc34] | 567 | { |
---|
[0da65d5] | 568 | irc_spawn( ic->irc, u ); |
---|
[b7d3cc34] | 569 | u->online = 1; |
---|
| 570 | } |
---|
[6bbb939] | 571 | else if( !( flags & OPT_LOGGED_IN ) && u->online ) |
---|
[b7d3cc34] | 572 | { |
---|
[0da65d5] | 573 | struct groupchat *c; |
---|
[b7d3cc34] | 574 | |
---|
[0da65d5] | 575 | irc_kill( ic->irc, u ); |
---|
[b7d3cc34] | 576 | u->online = 0; |
---|
| 577 | |
---|
[e35d1a1] | 578 | /* Remove him/her from the groupchats to prevent PART messages after he/she QUIT already */ |
---|
| 579 | for( c = ic->groupchats; c; c = c->next ) |
---|
[764b163d] | 580 | remove_chat_buddy_silent( c, handle ); |
---|
[b7d3cc34] | 581 | } |
---|
| 582 | |
---|
[6bbb939] | 583 | if( flags & OPT_AWAY ) |
---|
[b7d3cc34] | 584 | { |
---|
[6bbb939] | 585 | if( state && message ) |
---|
| 586 | { |
---|
| 587 | u->away = g_strdup_printf( "%s (%s)", state, message ); |
---|
| 588 | } |
---|
| 589 | else if( state ) |
---|
| 590 | { |
---|
| 591 | u->away = g_strdup( state ); |
---|
| 592 | } |
---|
| 593 | else if( message ) |
---|
| 594 | { |
---|
| 595 | u->away = g_strdup( message ); |
---|
| 596 | } |
---|
| 597 | else |
---|
| 598 | { |
---|
| 599 | u->away = g_strdup( "Away" ); |
---|
| 600 | } |
---|
[b7d3cc34] | 601 | } |
---|
[6bbb939] | 602 | /* else waste_any_state_information_for_now(); */ |
---|
[b7d3cc34] | 603 | |
---|
| 604 | /* LISPy... */ |
---|
[0da65d5] | 605 | if( ( set_getbool( &ic->irc->set, "away_devoice" ) ) && /* Don't do a thing when user doesn't want it */ |
---|
[b7d3cc34] | 606 | ( u->online ) && /* Don't touch offline people */ |
---|
| 607 | ( ( ( u->online != oo ) && !u->away ) || /* Voice joining people */ |
---|
| 608 | ( ( u->online == oo ) && ( oa == !u->away ) ) ) ) /* (De)voice people changing state */ |
---|
| 609 | { |
---|
[1186382] | 610 | char *from; |
---|
| 611 | |
---|
| 612 | if( set_getbool( &ic->irc->set, "simulate_netsplit" ) ) |
---|
| 613 | { |
---|
| 614 | from = g_strdup( ic->irc->myhost ); |
---|
| 615 | } |
---|
| 616 | else |
---|
| 617 | { |
---|
| 618 | from = g_strdup_printf( "%s!%s@%s", ic->irc->mynick, ic->irc->mynick, |
---|
| 619 | ic->irc->myhost ); |
---|
| 620 | } |
---|
| 621 | irc_write( ic->irc, ":%s MODE %s %cv %s", from, ic->irc->channel, |
---|
| 622 | u->away?'-':'+', u->nick ); |
---|
| 623 | g_free( from ); |
---|
[b7d3cc34] | 624 | } |
---|
| 625 | } |
---|
| 626 | |
---|
[9624fdf] | 627 | void imcb_buddy_msg( struct im_connection *ic, char *handle, char *msg, u_int32_t flags, time_t sent_at ) |
---|
[b7d3cc34] | 628 | { |
---|
[0da65d5] | 629 | irc_t *irc = ic->irc; |
---|
[d444c09] | 630 | char *wrapped; |
---|
[b7d3cc34] | 631 | user_t *u; |
---|
| 632 | |
---|
[0da65d5] | 633 | u = user_findhandle( ic, handle ); |
---|
[b7d3cc34] | 634 | |
---|
| 635 | if( !u ) |
---|
| 636 | { |
---|
[5c9512f] | 637 | char *h = set_getstr( &irc->set, "handle_unknown" ); |
---|
[b7d3cc34] | 638 | |
---|
| 639 | if( g_strcasecmp( h, "ignore" ) == 0 ) |
---|
| 640 | { |
---|
[d5ccd83] | 641 | if( set_getbool( &irc->set, "debug" ) ) |
---|
[84b045d] | 642 | imcb_log( ic, "Ignoring message from unknown handle %s", handle ); |
---|
[b7d3cc34] | 643 | |
---|
| 644 | return; |
---|
| 645 | } |
---|
| 646 | else if( g_strncasecmp( h, "add", 3 ) == 0 ) |
---|
| 647 | { |
---|
[d5ccd83] | 648 | int private = set_getbool( &irc->set, "private" ); |
---|
[b7d3cc34] | 649 | |
---|
| 650 | if( h[3] ) |
---|
| 651 | { |
---|
| 652 | if( g_strcasecmp( h + 3, "_private" ) == 0 ) |
---|
| 653 | private = 1; |
---|
| 654 | else if( g_strcasecmp( h + 3, "_channel" ) == 0 ) |
---|
| 655 | private = 0; |
---|
| 656 | } |
---|
| 657 | |
---|
[f0cb961] | 658 | imcb_add_buddy( ic, handle, NULL ); |
---|
[0da65d5] | 659 | u = user_findhandle( ic, handle ); |
---|
[b7d3cc34] | 660 | u->is_private = private; |
---|
| 661 | } |
---|
| 662 | else |
---|
| 663 | { |
---|
[84b045d] | 664 | imcb_log( ic, "Message from unknown handle %s:", handle ); |
---|
[b7d3cc34] | 665 | u = user_find( irc, irc->mynick ); |
---|
| 666 | } |
---|
| 667 | } |
---|
| 668 | |
---|
[0da65d5] | 669 | if( ( g_strcasecmp( set_getstr( &ic->irc->set, "strip_html" ), "always" ) == 0 ) || |
---|
[6bbb939] | 670 | ( ( ic->flags & OPT_DOES_HTML ) && set_getbool( &ic->irc->set, "strip_html" ) ) ) |
---|
[b7d3cc34] | 671 | strip_html( msg ); |
---|
| 672 | |
---|
[d444c09] | 673 | wrapped = word_wrap( msg, 425 ); |
---|
| 674 | irc_msgfrom( irc, u->nick, wrapped ); |
---|
| 675 | g_free( wrapped ); |
---|
[b7d3cc34] | 676 | } |
---|
| 677 | |
---|
[9624fdf] | 678 | void imcb_buddy_typing( struct im_connection *ic, char *handle, u_int32_t flags ) |
---|
[b7d3cc34] | 679 | { |
---|
| 680 | user_t *u; |
---|
| 681 | |
---|
[0da65d5] | 682 | if( !set_getbool( &ic->irc->set, "typing_notice" ) ) |
---|
[b7d3cc34] | 683 | return; |
---|
| 684 | |
---|
[9624fdf] | 685 | if( ( u = user_findhandle( ic, handle ) ) ) |
---|
| 686 | { |
---|
| 687 | char buf[256]; |
---|
| 688 | |
---|
| 689 | g_snprintf( buf, 256, "\1TYPING %d\1", ( flags >> 8 ) & 3 ); |
---|
| 690 | irc_privmsg( ic->irc, u, "PRIVMSG", ic->irc->nick, NULL, buf ); |
---|
[e7f46c5] | 691 | } |
---|
[b7d3cc34] | 692 | } |
---|
| 693 | |
---|
[e35d1a1] | 694 | void imcb_chat_free( struct groupchat *c ) |
---|
[b7d3cc34] | 695 | { |
---|
[0da65d5] | 696 | struct im_connection *ic = c->ic; |
---|
[e35d1a1] | 697 | struct groupchat *l; |
---|
[b7d3cc34] | 698 | GList *ir; |
---|
| 699 | |
---|
[0da65d5] | 700 | if( set_getbool( &ic->irc->set, "debug" ) ) |
---|
[84b045d] | 701 | imcb_log( ic, "You were removed from conversation 0x%x", (int) c ); |
---|
[b7d3cc34] | 702 | |
---|
| 703 | if( c ) |
---|
| 704 | { |
---|
| 705 | if( c->joined ) |
---|
| 706 | { |
---|
| 707 | user_t *u, *r; |
---|
| 708 | |
---|
[0da65d5] | 709 | r = user_find( ic->irc, ic->irc->mynick ); |
---|
| 710 | irc_privmsg( ic->irc, r, "PRIVMSG", c->channel, "", "Cleaning up channel, bye!" ); |
---|
[b7d3cc34] | 711 | |
---|
[0da65d5] | 712 | u = user_find( ic->irc, ic->irc->nick ); |
---|
| 713 | irc_kick( ic->irc, u, c->channel, r ); |
---|
| 714 | /* irc_part( ic->irc, u, c->channel ); */ |
---|
[b7d3cc34] | 715 | } |
---|
| 716 | |
---|
[e35d1a1] | 717 | /* Find the previous chat in the linked list. */ |
---|
| 718 | for( l = ic->groupchats; l && l->next != c; l = l->next ); |
---|
| 719 | |
---|
[b7d3cc34] | 720 | if( l ) |
---|
| 721 | l->next = c->next; |
---|
| 722 | else |
---|
[e35d1a1] | 723 | ic->groupchats = c->next; |
---|
[b7d3cc34] | 724 | |
---|
| 725 | for( ir = c->in_room; ir; ir = ir->next ) |
---|
| 726 | g_free( ir->data ); |
---|
| 727 | g_list_free( c->in_room ); |
---|
| 728 | g_free( c->channel ); |
---|
| 729 | g_free( c->title ); |
---|
| 730 | g_free( c ); |
---|
| 731 | } |
---|
| 732 | } |
---|
| 733 | |
---|
[61ae52c] | 734 | void imcb_chat_msg( struct groupchat *c, char *who, char *msg, u_int32_t flags, time_t sent_at ) |
---|
[b7d3cc34] | 735 | { |
---|
[0da65d5] | 736 | struct im_connection *ic = c->ic; |
---|
[d444c09] | 737 | char *wrapped; |
---|
[b7d3cc34] | 738 | user_t *u; |
---|
| 739 | |
---|
| 740 | /* Gaim sends own messages through this too. IRC doesn't want this, so kill them */ |
---|
[c2fb3809] | 741 | if( g_strcasecmp( who, ic->acc->user ) == 0 ) |
---|
[b7d3cc34] | 742 | return; |
---|
| 743 | |
---|
[0da65d5] | 744 | u = user_findhandle( ic, who ); |
---|
[b7d3cc34] | 745 | |
---|
[0da65d5] | 746 | if( ( g_strcasecmp( set_getstr( &ic->irc->set, "strip_html" ), "always" ) == 0 ) || |
---|
[6bbb939] | 747 | ( ( ic->flags & OPT_DOES_HTML ) && set_getbool( &ic->irc->set, "strip_html" ) ) ) |
---|
[b7d3cc34] | 748 | strip_html( msg ); |
---|
| 749 | |
---|
[d444c09] | 750 | wrapped = word_wrap( msg, 425 ); |
---|
[b7d3cc34] | 751 | if( c && u ) |
---|
[d444c09] | 752 | { |
---|
| 753 | irc_privmsg( ic->irc, u, "PRIVMSG", c->channel, "", wrapped ); |
---|
| 754 | } |
---|
[b7d3cc34] | 755 | else |
---|
[d444c09] | 756 | { |
---|
| 757 | imcb_log( ic, "Message from/to conversation %s@0x%x (unknown conv/user): %s", who, (int) c, wrapped ); |
---|
| 758 | } |
---|
| 759 | g_free( wrapped ); |
---|
[b7d3cc34] | 760 | } |
---|
| 761 | |
---|
[ef5c185] | 762 | void imcb_chat_topic( struct groupchat *c, char *who, char *topic, time_t set_at ) |
---|
[50e1776] | 763 | { |
---|
| 764 | struct im_connection *ic = c->ic; |
---|
| 765 | user_t *u = NULL; |
---|
| 766 | |
---|
| 767 | if( who == NULL) |
---|
[ef5c185] | 768 | u = user_find( ic->irc, ic->irc->mynick ); |
---|
[50e1776] | 769 | else if( g_strcasecmp( who, ic->acc->user ) == 0 ) |
---|
[ef5c185] | 770 | u = user_find( ic->irc, ic->irc->nick ); |
---|
[50e1776] | 771 | else |
---|
| 772 | u = user_findhandle( ic, who ); |
---|
| 773 | |
---|
| 774 | if( ( g_strcasecmp( set_getstr( &ic->irc->set, "strip_html" ), "always" ) == 0 ) || |
---|
| 775 | ( ( ic->flags & OPT_DOES_HTML ) && set_getbool( &ic->irc->set, "strip_html" ) ) ) |
---|
| 776 | strip_html( topic ); |
---|
| 777 | |
---|
| 778 | g_free( c->topic ); |
---|
| 779 | c->topic = g_strdup( topic ); |
---|
| 780 | |
---|
| 781 | if( c->joined && u ) |
---|
| 782 | irc_write( ic->irc, ":%s!%s@%s TOPIC %s :%s", u->nick, u->user, u->host, c->channel, topic ); |
---|
| 783 | } |
---|
| 784 | |
---|
[61ae52c] | 785 | struct groupchat *imcb_chat_new( struct im_connection *ic, char *handle ) |
---|
[b7d3cc34] | 786 | { |
---|
[0da65d5] | 787 | struct groupchat *c; |
---|
[b7d3cc34] | 788 | |
---|
| 789 | /* This one just creates the conversation structure, user won't see anything yet */ |
---|
| 790 | |
---|
[e35d1a1] | 791 | if( ic->groupchats ) |
---|
[b7d3cc34] | 792 | { |
---|
[e35d1a1] | 793 | for( c = ic->groupchats; c->next; c = c->next ); |
---|
[0da65d5] | 794 | c = c->next = g_new0( struct groupchat, 1 ); |
---|
[b7d3cc34] | 795 | } |
---|
| 796 | else |
---|
[e35d1a1] | 797 | ic->groupchats = c = g_new0( struct groupchat, 1 ); |
---|
[b7d3cc34] | 798 | |
---|
[0da65d5] | 799 | c->ic = ic; |
---|
[b7d3cc34] | 800 | c->title = g_strdup( handle ); |
---|
[0da65d5] | 801 | c->channel = g_strdup_printf( "&chat_%03d", ic->irc->c_id++ ); |
---|
[50e1776] | 802 | c->topic = g_strdup_printf( "%s :BitlBee groupchat: \"%s\". Please keep in mind that root-commands won't work here. Have fun!", c->channel, c->title ); |
---|
[b7d3cc34] | 803 | |
---|
[0da65d5] | 804 | if( set_getbool( &ic->irc->set, "debug" ) ) |
---|
[84b045d] | 805 | imcb_log( ic, "Creating new conversation: (id=0x%x,handle=%s)", (int) c, handle ); |
---|
[b7d3cc34] | 806 | |
---|
[fa29d093] | 807 | return c; |
---|
[b7d3cc34] | 808 | } |
---|
| 809 | |
---|
| 810 | |
---|
| 811 | /* buddy_chat.c */ |
---|
| 812 | |
---|
[61ae52c] | 813 | void imcb_chat_add_buddy( struct groupchat *b, char *handle ) |
---|
[b7d3cc34] | 814 | { |
---|
[0da65d5] | 815 | user_t *u = user_findhandle( b->ic, handle ); |
---|
[b7d3cc34] | 816 | int me = 0; |
---|
| 817 | |
---|
[0da65d5] | 818 | if( set_getbool( &b->ic->irc->set, "debug" ) ) |
---|
[84b045d] | 819 | imcb_log( b->ic, "User %s added to conversation 0x%x", handle, (int) b ); |
---|
[b7d3cc34] | 820 | |
---|
| 821 | /* It might be yourself! */ |
---|
[c2fb3809] | 822 | if( b->ic->acc->prpl->handle_cmp( handle, b->ic->acc->user ) == 0 ) |
---|
[b7d3cc34] | 823 | { |
---|
[0da65d5] | 824 | u = user_find( b->ic->irc, b->ic->irc->nick ); |
---|
[b7d3cc34] | 825 | if( !b->joined ) |
---|
[0da65d5] | 826 | irc_join( b->ic->irc, u, b->channel ); |
---|
[b7d3cc34] | 827 | b->joined = me = 1; |
---|
| 828 | } |
---|
| 829 | |
---|
| 830 | /* Most protocols allow people to join, even when they're not in |
---|
| 831 | your contact list. Try to handle that here */ |
---|
| 832 | if( !u ) |
---|
| 833 | { |
---|
[f0cb961] | 834 | imcb_add_buddy( b->ic, handle, NULL ); |
---|
[0da65d5] | 835 | u = user_findhandle( b->ic, handle ); |
---|
[b7d3cc34] | 836 | } |
---|
| 837 | |
---|
| 838 | /* Add the handle to the room userlist, if it's not 'me' */ |
---|
| 839 | if( !me ) |
---|
| 840 | { |
---|
| 841 | if( b->joined ) |
---|
[0da65d5] | 842 | irc_join( b->ic->irc, u, b->channel ); |
---|
[b7d3cc34] | 843 | b->in_room = g_list_append( b->in_room, g_strdup( handle ) ); |
---|
| 844 | } |
---|
| 845 | } |
---|
| 846 | |
---|
[2d317bb] | 847 | /* This function is one BIG hack... :-( EREWRITE */ |
---|
[61ae52c] | 848 | void imcb_chat_remove_buddy( struct groupchat *b, char *handle, char *reason ) |
---|
[b7d3cc34] | 849 | { |
---|
| 850 | user_t *u; |
---|
| 851 | int me = 0; |
---|
| 852 | |
---|
[0da65d5] | 853 | if( set_getbool( &b->ic->irc->set, "debug" ) ) |
---|
[84b045d] | 854 | imcb_log( b->ic, "User %s removed from conversation 0x%x (%s)", handle, (int) b, reason ? reason : "" ); |
---|
[b7d3cc34] | 855 | |
---|
| 856 | /* It might be yourself! */ |
---|
[c2fb3809] | 857 | if( g_strcasecmp( handle, b->ic->acc->user ) == 0 ) |
---|
[b7d3cc34] | 858 | { |
---|
[2d317bb] | 859 | if( b->joined == 0 ) |
---|
| 860 | return; |
---|
| 861 | |
---|
[0da65d5] | 862 | u = user_find( b->ic->irc, b->ic->irc->nick ); |
---|
[b7d3cc34] | 863 | b->joined = 0; |
---|
| 864 | me = 1; |
---|
| 865 | } |
---|
| 866 | else |
---|
| 867 | { |
---|
[0da65d5] | 868 | u = user_findhandle( b->ic, handle ); |
---|
[b7d3cc34] | 869 | } |
---|
| 870 | |
---|
[2d317bb] | 871 | if( me || ( remove_chat_buddy_silent( b, handle ) && b->joined && u ) ) |
---|
| 872 | irc_part( b->ic->irc, u, b->channel ); |
---|
[b7d3cc34] | 873 | } |
---|
| 874 | |
---|
[764b163d] | 875 | static int remove_chat_buddy_silent( struct groupchat *b, const char *handle ) |
---|
[b7d3cc34] | 876 | { |
---|
| 877 | GList *i; |
---|
| 878 | |
---|
| 879 | /* Find the handle in the room userlist and shoot it */ |
---|
| 880 | i = b->in_room; |
---|
| 881 | while( i ) |
---|
| 882 | { |
---|
| 883 | if( g_strcasecmp( handle, i->data ) == 0 ) |
---|
| 884 | { |
---|
| 885 | g_free( i->data ); |
---|
| 886 | b->in_room = g_list_remove( b->in_room, i->data ); |
---|
| 887 | return( 1 ); |
---|
| 888 | } |
---|
| 889 | |
---|
| 890 | i = i->next; |
---|
| 891 | } |
---|
| 892 | |
---|
| 893 | return( 0 ); |
---|
| 894 | } |
---|
| 895 | |
---|
| 896 | |
---|
| 897 | /* Misc. BitlBee stuff which shouldn't really be here */ |
---|
| 898 | |
---|
[5c9512f] | 899 | char *set_eval_away_devoice( set_t *set, char *value ) |
---|
[b7d3cc34] | 900 | { |
---|
[5c9512f] | 901 | irc_t *irc = set->data; |
---|
[b7d3cc34] | 902 | int st; |
---|
| 903 | |
---|
| 904 | if( ( g_strcasecmp( value, "true" ) == 0 ) || ( g_strcasecmp( value, "yes" ) == 0 ) || ( g_strcasecmp( value, "on" ) == 0 ) ) |
---|
| 905 | st = 1; |
---|
| 906 | else if( ( g_strcasecmp( value, "false" ) == 0 ) || ( g_strcasecmp( value, "no" ) == 0 ) || ( g_strcasecmp( value, "off" ) == 0 ) ) |
---|
| 907 | st = 0; |
---|
| 908 | else if( sscanf( value, "%d", &st ) != 1 ) |
---|
| 909 | return( NULL ); |
---|
| 910 | |
---|
| 911 | st = st != 0; |
---|
| 912 | |
---|
| 913 | /* Horror.... */ |
---|
| 914 | |
---|
[d5ccd83] | 915 | if( st != set_getbool( &irc->set, "away_devoice" ) ) |
---|
[b7d3cc34] | 916 | { |
---|
| 917 | char list[80] = ""; |
---|
| 918 | user_t *u = irc->users; |
---|
| 919 | int i = 0, count = 0; |
---|
| 920 | char pm; |
---|
| 921 | char v[80]; |
---|
| 922 | |
---|
| 923 | if( st ) |
---|
| 924 | pm = '+'; |
---|
| 925 | else |
---|
| 926 | pm = '-'; |
---|
| 927 | |
---|
| 928 | while( u ) |
---|
| 929 | { |
---|
[0da65d5] | 930 | if( u->ic && u->online && !u->away ) |
---|
[b7d3cc34] | 931 | { |
---|
| 932 | if( ( strlen( list ) + strlen( u->nick ) ) >= 79 ) |
---|
| 933 | { |
---|
| 934 | for( i = 0; i < count; v[i++] = 'v' ); v[i] = 0; |
---|
[2087159] | 935 | irc_write( irc, ":%s MODE %s %c%s%s", |
---|
| 936 | irc->myhost, |
---|
[b7d3cc34] | 937 | irc->channel, pm, v, list ); |
---|
| 938 | |
---|
| 939 | *list = 0; |
---|
| 940 | count = 0; |
---|
| 941 | } |
---|
| 942 | |
---|
| 943 | sprintf( list + strlen( list ), " %s", u->nick ); |
---|
| 944 | count ++; |
---|
| 945 | } |
---|
| 946 | u = u->next; |
---|
| 947 | } |
---|
| 948 | |
---|
| 949 | /* $v = 'v' x $i */ |
---|
| 950 | for( i = 0; i < count; v[i++] = 'v' ); v[i] = 0; |
---|
[2087159] | 951 | irc_write( irc, ":%s MODE %s %c%s%s", irc->myhost, |
---|
[b7d3cc34] | 952 | irc->channel, pm, v, list ); |
---|
| 953 | } |
---|
| 954 | |
---|
[5c9512f] | 955 | return( set_eval_bool( set, value ) ); |
---|
[b7d3cc34] | 956 | } |
---|
| 957 | |
---|
[226fce1] | 958 | |
---|
| 959 | |
---|
| 960 | |
---|
| 961 | /* The plan is to not allow straight calls to prpl functions anymore, but do |
---|
| 962 | them all from some wrappers. We'll start to define some down here: */ |
---|
| 963 | |
---|
[84b045d] | 964 | int imc_buddy_msg( struct im_connection *ic, char *handle, char *msg, int flags ) |
---|
[b7d3cc34] | 965 | { |
---|
[e27661d] | 966 | char *buf = NULL; |
---|
| 967 | int st; |
---|
[b7d3cc34] | 968 | |
---|
[6bbb939] | 969 | if( ( ic->flags & OPT_DOES_HTML ) && ( g_strncasecmp( msg, "<html>", 6 ) != 0 ) ) |
---|
[c572dd6] | 970 | { |
---|
[e27661d] | 971 | buf = escape_html( msg ); |
---|
[c572dd6] | 972 | msg = buf; |
---|
[b7d3cc34] | 973 | } |
---|
| 974 | |
---|
[f6c963b] | 975 | st = ic->acc->prpl->buddy_msg( ic, handle, msg, flags ); |
---|
[e27661d] | 976 | g_free( buf ); |
---|
| 977 | |
---|
| 978 | return st; |
---|
[b7d3cc34] | 979 | } |
---|
| 980 | |
---|
[84b045d] | 981 | int imc_chat_msg( struct groupchat *c, char *msg, int flags ) |
---|
[b7d3cc34] | 982 | { |
---|
[e27661d] | 983 | char *buf = NULL; |
---|
[b7d3cc34] | 984 | |
---|
[6bbb939] | 985 | if( ( c->ic->flags & OPT_DOES_HTML ) && ( g_strncasecmp( msg, "<html>", 6 ) != 0 ) ) |
---|
[e27661d] | 986 | { |
---|
| 987 | buf = escape_html( msg ); |
---|
[b7d3cc34] | 988 | msg = buf; |
---|
| 989 | } |
---|
| 990 | |
---|
[f6c963b] | 991 | c->ic->acc->prpl->chat_msg( c, msg, flags ); |
---|
[e27661d] | 992 | g_free( buf ); |
---|
| 993 | |
---|
[0da65d5] | 994 | return 1; |
---|
[b7d3cc34] | 995 | } |
---|
[226fce1] | 996 | |
---|
[84b045d] | 997 | static char *imc_away_alias_find( GList *gcm, char *away ); |
---|
[226fce1] | 998 | |
---|
[84b045d] | 999 | int imc_set_away( struct im_connection *ic, char *away ) |
---|
[226fce1] | 1000 | { |
---|
| 1001 | GList *m, *ms; |
---|
| 1002 | char *s; |
---|
| 1003 | |
---|
| 1004 | if( !away ) away = ""; |
---|
[0da65d5] | 1005 | ms = m = ic->acc->prpl->away_states( ic ); |
---|
[226fce1] | 1006 | |
---|
| 1007 | while( m ) |
---|
| 1008 | { |
---|
| 1009 | if( *away ) |
---|
| 1010 | { |
---|
| 1011 | if( g_strncasecmp( m->data, away, strlen( m->data ) ) == 0 ) |
---|
| 1012 | break; |
---|
| 1013 | } |
---|
| 1014 | else |
---|
| 1015 | { |
---|
| 1016 | if( g_strcasecmp( m->data, "Available" ) == 0 ) |
---|
| 1017 | break; |
---|
| 1018 | if( g_strcasecmp( m->data, "Online" ) == 0 ) |
---|
| 1019 | break; |
---|
| 1020 | } |
---|
| 1021 | m = m->next; |
---|
| 1022 | } |
---|
| 1023 | |
---|
| 1024 | if( m ) |
---|
| 1025 | { |
---|
[0da65d5] | 1026 | ic->acc->prpl->set_away( ic, m->data, *away ? away : NULL ); |
---|
[226fce1] | 1027 | } |
---|
| 1028 | else |
---|
| 1029 | { |
---|
[84b045d] | 1030 | s = imc_away_alias_find( ms, away ); |
---|
[226fce1] | 1031 | if( s ) |
---|
| 1032 | { |
---|
[0da65d5] | 1033 | ic->acc->prpl->set_away( ic, s, away ); |
---|
| 1034 | if( set_getbool( &ic->irc->set, "debug" ) ) |
---|
[84b045d] | 1035 | imcb_log( ic, "Setting away state to %s", s ); |
---|
[226fce1] | 1036 | } |
---|
| 1037 | else |
---|
[0da65d5] | 1038 | ic->acc->prpl->set_away( ic, GAIM_AWAY_CUSTOM, away ); |
---|
[226fce1] | 1039 | } |
---|
| 1040 | |
---|
| 1041 | return( 1 ); |
---|
| 1042 | } |
---|
| 1043 | |
---|
[84b045d] | 1044 | static char *imc_away_alias_list[8][5] = |
---|
[226fce1] | 1045 | { |
---|
| 1046 | { "Away from computer", "Away", "Extended away", NULL }, |
---|
| 1047 | { "NA", "N/A", "Not available", NULL }, |
---|
| 1048 | { "Busy", "Do not disturb", "DND", "Occupied", NULL }, |
---|
| 1049 | { "Be right back", "BRB", NULL }, |
---|
| 1050 | { "On the phone", "Phone", "On phone", NULL }, |
---|
| 1051 | { "Out to lunch", "Lunch", "Food", NULL }, |
---|
| 1052 | { "Invisible", "Hidden" }, |
---|
| 1053 | { NULL } |
---|
| 1054 | }; |
---|
| 1055 | |
---|
[84b045d] | 1056 | static char *imc_away_alias_find( GList *gcm, char *away ) |
---|
[226fce1] | 1057 | { |
---|
| 1058 | GList *m; |
---|
| 1059 | int i, j; |
---|
| 1060 | |
---|
[84b045d] | 1061 | for( i = 0; *imc_away_alias_list[i]; i ++ ) |
---|
[226fce1] | 1062 | { |
---|
[84b045d] | 1063 | for( j = 0; imc_away_alias_list[i][j]; j ++ ) |
---|
| 1064 | if( g_strncasecmp( away, imc_away_alias_list[i][j], strlen( imc_away_alias_list[i][j] ) ) == 0 ) |
---|
[226fce1] | 1065 | break; |
---|
| 1066 | |
---|
[84b045d] | 1067 | if( !imc_away_alias_list[i][j] ) /* If we reach the end, this row */ |
---|
[226fce1] | 1068 | continue; /* is not what we want. Next! */ |
---|
| 1069 | |
---|
| 1070 | /* Now find an entry in this row which exists in gcm */ |
---|
[84b045d] | 1071 | for( j = 0; imc_away_alias_list[i][j]; j ++ ) |
---|
[226fce1] | 1072 | { |
---|
| 1073 | m = gcm; |
---|
| 1074 | while( m ) |
---|
| 1075 | { |
---|
[84b045d] | 1076 | if( g_strcasecmp( imc_away_alias_list[i][j], m->data ) == 0 ) |
---|
| 1077 | return( imc_away_alias_list[i][j] ); |
---|
[226fce1] | 1078 | m = m->next; |
---|
| 1079 | } |
---|
| 1080 | } |
---|
| 1081 | } |
---|
| 1082 | |
---|
| 1083 | return( NULL ); |
---|
| 1084 | } |
---|
[da3b536] | 1085 | |
---|
[84b045d] | 1086 | void imc_add_allow( struct im_connection *ic, char *handle ) |
---|
[da3b536] | 1087 | { |
---|
[0da65d5] | 1088 | if( g_slist_find_custom( ic->permit, handle, (GCompareFunc) ic->acc->prpl->handle_cmp ) == NULL ) |
---|
[da3b536] | 1089 | { |
---|
[0da65d5] | 1090 | ic->permit = g_slist_prepend( ic->permit, g_strdup( handle ) ); |
---|
[da3b536] | 1091 | } |
---|
| 1092 | |
---|
[0da65d5] | 1093 | ic->acc->prpl->add_permit( ic, handle ); |
---|
[da3b536] | 1094 | } |
---|
| 1095 | |
---|
[84b045d] | 1096 | void imc_rem_allow( struct im_connection *ic, char *handle ) |
---|
[da3b536] | 1097 | { |
---|
| 1098 | GSList *l; |
---|
| 1099 | |
---|
[0da65d5] | 1100 | if( ( l = g_slist_find_custom( ic->permit, handle, (GCompareFunc) ic->acc->prpl->handle_cmp ) ) ) |
---|
[da3b536] | 1101 | { |
---|
| 1102 | g_free( l->data ); |
---|
[0da65d5] | 1103 | ic->permit = g_slist_delete_link( ic->permit, l ); |
---|
[da3b536] | 1104 | } |
---|
| 1105 | |
---|
[0da65d5] | 1106 | ic->acc->prpl->rem_permit( ic, handle ); |
---|
[da3b536] | 1107 | } |
---|
| 1108 | |
---|
[84b045d] | 1109 | void imc_add_block( struct im_connection *ic, char *handle ) |
---|
[da3b536] | 1110 | { |
---|
[0da65d5] | 1111 | if( g_slist_find_custom( ic->deny, handle, (GCompareFunc) ic->acc->prpl->handle_cmp ) == NULL ) |
---|
[da3b536] | 1112 | { |
---|
[0da65d5] | 1113 | ic->deny = g_slist_prepend( ic->deny, g_strdup( handle ) ); |
---|
[da3b536] | 1114 | } |
---|
| 1115 | |
---|
[0da65d5] | 1116 | ic->acc->prpl->add_deny( ic, handle ); |
---|
[da3b536] | 1117 | } |
---|
| 1118 | |
---|
[84b045d] | 1119 | void imc_rem_block( struct im_connection *ic, char *handle ) |
---|
[da3b536] | 1120 | { |
---|
| 1121 | GSList *l; |
---|
| 1122 | |
---|
[0da65d5] | 1123 | if( ( l = g_slist_find_custom( ic->deny, handle, (GCompareFunc) ic->acc->prpl->handle_cmp ) ) ) |
---|
[da3b536] | 1124 | { |
---|
| 1125 | g_free( l->data ); |
---|
[0da65d5] | 1126 | ic->deny = g_slist_delete_link( ic->deny, l ); |
---|
[da3b536] | 1127 | } |
---|
| 1128 | |
---|
[0da65d5] | 1129 | ic->acc->prpl->rem_deny( ic, handle ); |
---|
[da3b536] | 1130 | } |
---|
[85023c6] | 1131 | |
---|
| 1132 | void imcb_clean_handle( struct im_connection *ic, char *handle ) |
---|
| 1133 | { |
---|
| 1134 | /* Accepts a handle and does whatever is necessary to make it |
---|
| 1135 | BitlBee-friendly. Currently this means removing everything |
---|
| 1136 | outside 33-127 (ASCII printable excl spaces), @ (only one |
---|
| 1137 | is allowed) and ! and : */ |
---|
| 1138 | char out[strlen(handle)+1]; |
---|
| 1139 | int s, d; |
---|
| 1140 | |
---|
| 1141 | s = d = 0; |
---|
| 1142 | while( handle[s] ) |
---|
| 1143 | { |
---|
| 1144 | if( handle[s] > ' ' && handle[s] != '!' && handle[s] != ':' && |
---|
| 1145 | ( handle[s] & 0x80 ) == 0 ) |
---|
| 1146 | { |
---|
| 1147 | if( handle[s] == '@' ) |
---|
| 1148 | { |
---|
| 1149 | /* See if we got an @ already? */ |
---|
| 1150 | out[d] = 0; |
---|
| 1151 | if( strchr( out, '@' ) ) |
---|
| 1152 | continue; |
---|
| 1153 | } |
---|
| 1154 | |
---|
| 1155 | out[d++] = handle[s]; |
---|
| 1156 | } |
---|
| 1157 | s ++; |
---|
| 1158 | } |
---|
| 1159 | out[d] = handle[s]; |
---|
| 1160 | |
---|
| 1161 | strcpy( handle, out ); |
---|
| 1162 | } |
---|