[5ebff60] | 1 | /********************************************************************\ |
---|
[81e04e1] | 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
[0e788f5] | 4 | * Copyright 2002-2012 Wilmer van der Gaast and others * |
---|
[81e04e1] | 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* Some glue to put the IRC and the IM stuff together. */ |
---|
| 8 | |
---|
| 9 | /* |
---|
| 10 | This program is free software; you can redistribute it and/or modify |
---|
| 11 | it under the terms of the GNU General Public License as published by |
---|
| 12 | the Free Software Foundation; either version 2 of the License, or |
---|
| 13 | (at your option) any later version. |
---|
| 14 | |
---|
| 15 | This program is distributed in the hope that it will be useful, |
---|
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 18 | GNU General Public License for more details. |
---|
| 19 | |
---|
| 20 | You should have received a copy of the GNU General Public License with |
---|
| 21 | the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; |
---|
[6f10697] | 22 | if not, write to the Free Software Foundation, Inc., 51 Franklin St., |
---|
| 23 | Fifth Floor, Boston, MA 02110-1301 USA |
---|
[81e04e1] | 24 | */ |
---|
| 25 | |
---|
| 26 | #include "bitlbee.h" |
---|
[17a6ee9] | 27 | #include "dcc.h" |
---|
[d860a8d] | 28 | |
---|
[e4816ea] | 29 | /* IM->IRC callbacks: Simple IM/buddy-related stuff. */ |
---|
[d860a8d] | 30 | |
---|
[81e04e1] | 31 | static const struct irc_user_funcs irc_user_im_funcs; |
---|
| 32 | |
---|
[5ebff60] | 33 | static void bee_irc_imc_connected(struct im_connection *ic) |
---|
[5c7b45c] | 34 | { |
---|
[5ebff60] | 35 | irc_t *irc = (irc_t *) ic->bee->ui_data; |
---|
| 36 | |
---|
| 37 | irc_channel_auto_joins(irc, ic->acc); |
---|
[5c7b45c] | 38 | } |
---|
| 39 | |
---|
[5ebff60] | 40 | static void bee_irc_imc_disconnected(struct im_connection *ic) |
---|
[5c7b45c] | 41 | { |
---|
| 42 | /* Maybe try to send /QUITs here instead of later on. */ |
---|
| 43 | } |
---|
| 44 | |
---|
[5ebff60] | 45 | static gboolean bee_irc_user_new(bee_t *bee, bee_user_t *bu) |
---|
[81e04e1] | 46 | { |
---|
| 47 | irc_user_t *iu; |
---|
[5ebff60] | 48 | irc_t *irc = (irc_t *) bee->ui_data; |
---|
| 49 | char nick[MAX_NICK_LENGTH + 1], *s; |
---|
| 50 | |
---|
| 51 | memset(nick, 0, MAX_NICK_LENGTH + 1); |
---|
[5535a47] | 52 | strncpy(nick, nick_get(bu), MAX_NICK_LENGTH); |
---|
[5ebff60] | 53 | |
---|
| 54 | bu->ui_data = iu = irc_user_new(irc, nick); |
---|
[d860a8d] | 55 | iu->bu = bu; |
---|
[5ebff60] | 56 | |
---|
| 57 | if (set_getbool(&irc->b->set, "private")) { |
---|
[bb151f7] | 58 | iu->last_channel = NULL; |
---|
[5ebff60] | 59 | } else { |
---|
| 60 | iu->last_channel = irc_channel_with_user(irc, iu); |
---|
| 61 | } |
---|
| 62 | |
---|
| 63 | if ((s = strchr(bu->handle, '@'))) { |
---|
| 64 | iu->host = g_strdup(s + 1); |
---|
| 65 | iu->user = g_strndup(bu->handle, s - bu->handle); |
---|
| 66 | } else { |
---|
| 67 | iu->user = g_strdup(bu->handle); |
---|
| 68 | if (bu->ic->acc->server) { |
---|
| 69 | iu->host = g_strdup(bu->ic->acc->server); |
---|
| 70 | } else { |
---|
[c92ee728] | 71 | char *s; |
---|
[5ebff60] | 72 | for (s = bu->ic->acc->tag; g_ascii_isalnum(*s); s++) { |
---|
| 73 | ; |
---|
| 74 | } |
---|
[c92ee728] | 75 | /* Only use the tag if we got to the end of the string. |
---|
| 76 | (So allow alphanumerics only. Hopefully not too |
---|
| 77 | restrictive.) */ |
---|
[5ebff60] | 78 | if (*s) { |
---|
| 79 | iu->host = g_strdup(bu->ic->acc->prpl->name); |
---|
| 80 | } else { |
---|
| 81 | iu->host = g_strdup(bu->ic->acc->tag); |
---|
| 82 | } |
---|
[c92ee728] | 83 | } |
---|
[81e04e1] | 84 | } |
---|
[5ebff60] | 85 | |
---|
| 86 | while ((s = strchr(iu->user, ' '))) { |
---|
[495d21b] | 87 | *s = '_'; |
---|
[5ebff60] | 88 | } |
---|
| 89 | |
---|
| 90 | if (bu->flags & BEE_USER_LOCAL) { |
---|
| 91 | char *s = set_getstr(&bee->set, "handle_unknown"); |
---|
| 92 | |
---|
| 93 | if (strcmp(s, "add_private") == 0) { |
---|
[92c8d41] | 94 | iu->last_channel = NULL; |
---|
[5ebff60] | 95 | } else if (strcmp(s, "add_channel") == 0) { |
---|
[92c8d41] | 96 | iu->last_channel = irc->default_channel; |
---|
[5ebff60] | 97 | } |
---|
[ad404ab] | 98 | } |
---|
[5ebff60] | 99 | |
---|
[81e04e1] | 100 | iu->f = &irc_user_im_funcs; |
---|
[5ebff60] | 101 | |
---|
[81e04e1] | 102 | return TRUE; |
---|
| 103 | } |
---|
| 104 | |
---|
[5ebff60] | 105 | static gboolean bee_irc_user_free(bee_t *bee, bee_user_t *bu) |
---|
[d860a8d] | 106 | { |
---|
[5ebff60] | 107 | return irc_user_free(bee->ui_data, (irc_user_t *) bu->ui_data); |
---|
[d860a8d] | 108 | } |
---|
[81e04e1] | 109 | |
---|
[5ebff60] | 110 | static gboolean bee_irc_user_status(bee_t *bee, bee_user_t *bu, bee_user_t *old) |
---|
[d860a8d] | 111 | { |
---|
[231b08b] | 112 | irc_t *irc = bee->ui_data; |
---|
[003a12b] | 113 | irc_user_t *iu = bu->ui_data; |
---|
[5ebff60] | 114 | |
---|
[eb50495] | 115 | /* Do this outside the if below since away state can change without |
---|
| 116 | the online state changing. */ |
---|
| 117 | iu->flags &= ~IRC_USER_AWAY; |
---|
[5ebff60] | 118 | if (bu->flags & BEE_USER_AWAY || !(bu->flags & BEE_USER_ONLINE)) { |
---|
[eb50495] | 119 | iu->flags |= IRC_USER_AWAY; |
---|
[5ebff60] | 120 | } |
---|
| 121 | |
---|
| 122 | if ((bu->flags & BEE_USER_ONLINE) != (old->flags & BEE_USER_ONLINE)) { |
---|
| 123 | if (bu->flags & BEE_USER_ONLINE) { |
---|
| 124 | if (g_hash_table_lookup(irc->watches, iu->key)) { |
---|
| 125 | irc_send_num(irc, 600, "%s %s %s %d :%s", iu->nick, iu->user, |
---|
| 126 | iu->host, (int) time(NULL), "logged online"); |
---|
| 127 | } |
---|
| 128 | } else { |
---|
| 129 | if (g_hash_table_lookup(irc->watches, iu->key)) { |
---|
| 130 | irc_send_num(irc, 601, "%s %s %s %d :%s", iu->nick, iu->user, |
---|
| 131 | iu->host, (int) time(NULL), "logged offline"); |
---|
| 132 | } |
---|
| 133 | |
---|
[0bd948e] | 134 | /* Send a QUIT since those will also show up in any |
---|
| 135 | query windows the user may have, plus it's only |
---|
| 136 | one QUIT instead of possibly many (in case of |
---|
| 137 | multiple control chans). If there's a channel that |
---|
| 138 | shows offline people, a JOIN will follow. */ |
---|
[5ebff60] | 139 | if (set_getbool(&bee->set, "offline_user_quits")) { |
---|
| 140 | irc_user_quit(iu, "Leaving..."); |
---|
| 141 | } |
---|
[003a12b] | 142 | } |
---|
[231b08b] | 143 | } |
---|
[5ebff60] | 144 | |
---|
[1c8e5f7] | 145 | /* Reset this one since the info may have changed. */ |
---|
| 146 | iu->away_reply_timeout = 0; |
---|
[5ebff60] | 147 | |
---|
| 148 | bee_irc_channel_update(irc, NULL, iu); |
---|
| 149 | |
---|
[d860a8d] | 150 | return TRUE; |
---|
| 151 | } |
---|
[81e04e1] | 152 | |
---|
[5ebff60] | 153 | void bee_irc_channel_update(irc_t *irc, irc_channel_t *ic, irc_user_t *iu) |
---|
[13c1a9f] | 154 | { |
---|
| 155 | GSList *l; |
---|
[5ebff60] | 156 | |
---|
| 157 | if (ic == NULL) { |
---|
| 158 | for (l = irc->channels; l; l = l->next) { |
---|
[13c1a9f] | 159 | ic = l->data; |
---|
| 160 | /* TODO: Just add a type flag or so.. */ |
---|
[5ebff60] | 161 | if (ic->f == irc->default_channel->f && |
---|
| 162 | (ic->flags & IRC_CHANNEL_JOINED)) { |
---|
| 163 | bee_irc_channel_update(irc, ic, iu); |
---|
| 164 | } |
---|
[13c1a9f] | 165 | } |
---|
| 166 | return; |
---|
| 167 | } |
---|
[5ebff60] | 168 | if (iu == NULL) { |
---|
| 169 | for (l = irc->users; l; l = l->next) { |
---|
[13c1a9f] | 170 | iu = l->data; |
---|
[5ebff60] | 171 | if (iu->bu) { |
---|
| 172 | bee_irc_channel_update(irc, ic, l->data); |
---|
| 173 | } |
---|
[13c1a9f] | 174 | } |
---|
| 175 | return; |
---|
| 176 | } |
---|
[5ebff60] | 177 | |
---|
| 178 | if (!irc_channel_wants_user(ic, iu)) { |
---|
| 179 | irc_channel_del_user(ic, iu, IRC_CDU_PART, NULL); |
---|
| 180 | } else { |
---|
[ac2717b] | 181 | struct irc_control_channel *icc = ic->data; |
---|
[94d5da9c] | 182 | int mode = 0; |
---|
[5ebff60] | 183 | |
---|
| 184 | if (!(iu->bu->flags & BEE_USER_ONLINE)) { |
---|
[94d5da9c] | 185 | mode = icc->modes[0]; |
---|
[5ebff60] | 186 | } else if (iu->bu->flags & BEE_USER_AWAY) { |
---|
[94d5da9c] | 187 | mode = icc->modes[1]; |
---|
[5ebff60] | 188 | } else if (iu->bu->flags & BEE_USER_SPECIAL) { |
---|
[94d5da9c] | 189 | mode = icc->modes[2]; |
---|
[5ebff60] | 190 | } else { |
---|
[7b8238d] | 191 | mode = icc->modes[3]; |
---|
[5ebff60] | 192 | } |
---|
| 193 | |
---|
| 194 | if (!mode) { |
---|
| 195 | irc_channel_del_user(ic, iu, IRC_CDU_PART, NULL); |
---|
| 196 | } else { |
---|
| 197 | irc_channel_add_user(ic, iu); |
---|
| 198 | irc_channel_user_set_mode(ic, iu, mode); |
---|
[94d5da9c] | 199 | } |
---|
[13c1a9f] | 200 | } |
---|
| 201 | } |
---|
| 202 | |
---|
[5ebff60] | 203 | static gboolean bee_irc_user_msg(bee_t *bee, bee_user_t *bu, const char *msg_, time_t sent_at) |
---|
[f012a9f] | 204 | { |
---|
| 205 | irc_t *irc = bee->ui_data; |
---|
| 206 | irc_user_t *iu = (irc_user_t *) bu->ui_data; |
---|
[e67e513] | 207 | const char *dst; |
---|
| 208 | char *prefix = NULL; |
---|
[21c87a7] | 209 | char *wrapped, *ts = NULL; |
---|
[5ebff60] | 210 | char *msg = g_strdup(msg_); |
---|
[934db064] | 211 | GSList *l; |
---|
[5ebff60] | 212 | |
---|
| 213 | if (sent_at > 0 && set_getbool(&irc->b->set, "display_timestamps")) { |
---|
| 214 | ts = irc_format_timestamp(irc, sent_at); |
---|
[f012a9f] | 215 | } |
---|
[5ebff60] | 216 | |
---|
| 217 | dst = irc_user_msgdest(iu); |
---|
| 218 | if (dst != irc->user->nick) { |
---|
| 219 | /* if not messaging directly, call user by name */ |
---|
| 220 | prefix = g_strdup_printf("%s%s%s", irc->user->nick, set_getstr(&bee->set, "to_char"), ts ? : ""); |
---|
| 221 | } else { |
---|
[92c8d41] | 222 | prefix = ts; |
---|
[3864c08] | 223 | ts = NULL; /* don't double-free */ |
---|
[f012a9f] | 224 | } |
---|
[5ebff60] | 225 | |
---|
| 226 | for (l = irc_plugins; l; l = l->next) { |
---|
[934db064] | 227 | irc_plugin_t *p = l->data; |
---|
[5ebff60] | 228 | if (p->filter_msg_in) { |
---|
| 229 | char *s = p->filter_msg_in(iu, msg, 0); |
---|
| 230 | if (s) { |
---|
| 231 | if (s != msg) { |
---|
| 232 | g_free(msg); |
---|
| 233 | } |
---|
[934db064] | 234 | msg = s; |
---|
[5ebff60] | 235 | } else { |
---|
[934db064] | 236 | /* Modules can swallow messages. */ |
---|
[098a75b] | 237 | goto cleanup; |
---|
[934db064] | 238 | } |
---|
| 239 | } |
---|
| 240 | } |
---|
[5ebff60] | 241 | |
---|
| 242 | if ((g_strcasecmp(set_getstr(&bee->set, "strip_html"), "always") == 0) || |
---|
| 243 | ((bu->ic->flags & OPT_DOES_HTML) && set_getbool(&bee->set, "strip_html"))) { |
---|
| 244 | char *s = g_strdup(msg); |
---|
| 245 | strip_html(s); |
---|
| 246 | g_free(msg); |
---|
[934db064] | 247 | msg = s; |
---|
| 248 | } |
---|
[5ebff60] | 249 | |
---|
| 250 | wrapped = word_wrap(msg, 425); |
---|
| 251 | irc_send_msg(iu, "PRIVMSG", dst, wrapped, prefix); |
---|
| 252 | g_free(wrapped); |
---|
[098a75b] | 253 | |
---|
| 254 | cleanup: |
---|
[5ebff60] | 255 | g_free(prefix); |
---|
| 256 | g_free(msg); |
---|
| 257 | g_free(ts); |
---|
| 258 | |
---|
[f012a9f] | 259 | return TRUE; |
---|
| 260 | } |
---|
| 261 | |
---|
[5ebff60] | 262 | static gboolean bee_irc_user_typing(bee_t *bee, bee_user_t *bu, uint32_t flags) |
---|
[573dab0] | 263 | { |
---|
| 264 | irc_t *irc = (irc_t *) bee->ui_data; |
---|
[5ebff60] | 265 | |
---|
| 266 | if (set_getbool(&bee->set, "typing_notice")) { |
---|
| 267 | irc_send_msg_f((irc_user_t *) bu->ui_data, "PRIVMSG", irc->user->nick, |
---|
| 268 | "\001TYPING %d\001", (flags >> 8) & 3); |
---|
| 269 | } else { |
---|
[573dab0] | 270 | return FALSE; |
---|
[5ebff60] | 271 | } |
---|
| 272 | |
---|
[573dab0] | 273 | return TRUE; |
---|
| 274 | } |
---|
| 275 | |
---|
[5ebff60] | 276 | static gboolean bee_irc_user_action_response(bee_t *bee, bee_user_t *bu, const char *action, char * const args[], |
---|
| 277 | void *data) |
---|
[d88c92a] | 278 | { |
---|
| 279 | irc_t *irc = (irc_t *) bee->ui_data; |
---|
[5ebff60] | 280 | GString *msg = g_string_new("\001"); |
---|
| 281 | |
---|
| 282 | g_string_append(msg, action); |
---|
| 283 | while (*args) { |
---|
| 284 | if (strchr(*args, ' ')) { |
---|
| 285 | g_string_append_printf(msg, " \"%s\"", *args); |
---|
| 286 | } else { |
---|
| 287 | g_string_append_printf(msg, " %s", *args); |
---|
| 288 | } |
---|
| 289 | args++; |
---|
| 290 | } |
---|
| 291 | g_string_append_c(msg, '\001'); |
---|
| 292 | |
---|
| 293 | irc_send_msg((irc_user_t *) bu->ui_data, "NOTICE", irc->user->nick, msg->str, NULL); |
---|
| 294 | |
---|
[098a75b] | 295 | g_string_free(msg, TRUE); |
---|
| 296 | |
---|
[d88c92a] | 297 | return TRUE; |
---|
| 298 | } |
---|
| 299 | |
---|
[5ebff60] | 300 | static gboolean bee_irc_user_nick_update(irc_user_t *iu); |
---|
[6ef9065] | 301 | |
---|
[5ebff60] | 302 | static gboolean bee_irc_user_fullname(bee_t *bee, bee_user_t *bu) |
---|
[1d39159] | 303 | { |
---|
| 304 | irc_user_t *iu = (irc_user_t *) bu->ui_data; |
---|
| 305 | char *s; |
---|
[5ebff60] | 306 | |
---|
| 307 | if (iu->fullname != iu->nick) { |
---|
| 308 | g_free(iu->fullname); |
---|
| 309 | } |
---|
| 310 | iu->fullname = g_strdup(bu->fullname); |
---|
| 311 | |
---|
[1d39159] | 312 | /* Strip newlines (unlikely, but IRC-unfriendly so they must go) |
---|
| 313 | TODO(wilmer): Do the same with away msgs again! */ |
---|
[5ebff60] | 314 | for (s = iu->fullname; *s; s++) { |
---|
| 315 | if (g_ascii_isspace(*s)) { |
---|
| 316 | *s = ' '; |
---|
| 317 | } |
---|
| 318 | } |
---|
| 319 | |
---|
| 320 | if ((bu->ic->flags & OPT_LOGGED_IN) && set_getbool(&bee->set, "display_namechanges")) { |
---|
[fda55fa] | 321 | /* People don't like this /NOTICE. Meh, let's go back to the old one. |
---|
[1d39159] | 322 | char *msg = g_strdup_printf( "<< \002BitlBee\002 - Changed name to `%s' >>", iu->fullname ); |
---|
| 323 | irc_send_msg( iu, "NOTICE", irc->user->nick, msg, NULL ); |
---|
[fda55fa] | 324 | */ |
---|
[5ebff60] | 325 | imcb_log(bu->ic, "User `%s' changed name to `%s'", iu->nick, iu->fullname); |
---|
[1d39159] | 326 | } |
---|
[5ebff60] | 327 | |
---|
| 328 | bee_irc_user_nick_update(iu); |
---|
| 329 | |
---|
[1d39159] | 330 | return TRUE; |
---|
| 331 | } |
---|
| 332 | |
---|
[5ebff60] | 333 | static gboolean bee_irc_user_nick_hint(bee_t *bee, bee_user_t *bu, const char *hint) |
---|
[6ef9065] | 334 | { |
---|
[5ebff60] | 335 | bee_irc_user_nick_update((irc_user_t *) bu->ui_data); |
---|
| 336 | |
---|
[badd148] | 337 | return TRUE; |
---|
| 338 | } |
---|
| 339 | |
---|
[5ebff60] | 340 | static gboolean bee_irc_user_group(bee_t *bee, bee_user_t *bu) |
---|
[badd148] | 341 | { |
---|
| 342 | irc_user_t *iu = (irc_user_t *) bu->ui_data; |
---|
| 343 | irc_t *irc = (irc_t *) bee->ui_data; |
---|
[51a3d12] | 344 | bee_user_flags_t online; |
---|
[5ebff60] | 345 | |
---|
[51a3d12] | 346 | /* Take the user offline temporarily so we can change the nick (if necessary). */ |
---|
[5ebff60] | 347 | if ((online = bu->flags & BEE_USER_ONLINE)) { |
---|
[51a3d12] | 348 | bu->flags &= ~BEE_USER_ONLINE; |
---|
[5ebff60] | 349 | } |
---|
| 350 | |
---|
| 351 | bee_irc_channel_update(irc, NULL, iu); |
---|
| 352 | bee_irc_user_nick_update(iu); |
---|
| 353 | |
---|
| 354 | if (online) { |
---|
[51a3d12] | 355 | bu->flags |= online; |
---|
[5ebff60] | 356 | bee_irc_channel_update(irc, NULL, iu); |
---|
[51a3d12] | 357 | } |
---|
[5ebff60] | 358 | |
---|
[badd148] | 359 | return TRUE; |
---|
| 360 | } |
---|
| 361 | |
---|
[5ebff60] | 362 | static gboolean bee_irc_user_nick_update(irc_user_t *iu) |
---|
[badd148] | 363 | { |
---|
| 364 | bee_user_t *bu = iu->bu; |
---|
| 365 | char *newnick; |
---|
[5ebff60] | 366 | |
---|
| 367 | if (bu->flags & BEE_USER_ONLINE) { |
---|
[6ef9065] | 368 | /* Ignore if the user is visible already. */ |
---|
| 369 | return TRUE; |
---|
[5ebff60] | 370 | } |
---|
| 371 | |
---|
| 372 | if (nick_saved(bu)) { |
---|
[6ef9065] | 373 | /* The user already assigned a nickname to this person. */ |
---|
| 374 | return TRUE; |
---|
[5ebff60] | 375 | } |
---|
| 376 | |
---|
| 377 | newnick = nick_get(bu); |
---|
| 378 | |
---|
| 379 | if (strcmp(iu->nick, newnick) != 0) { |
---|
| 380 | nick_dedupe(bu, newnick); |
---|
| 381 | irc_user_set_nick(iu, newnick); |
---|
| 382 | } |
---|
| 383 | |
---|
[6ef9065] | 384 | return TRUE; |
---|
| 385 | } |
---|
| 386 | |
---|
[5ebff60] | 387 | void bee_irc_user_nick_reset(irc_user_t *iu) |
---|
[a429907] | 388 | { |
---|
| 389 | bee_user_t *bu = iu->bu; |
---|
| 390 | bee_user_flags_t online; |
---|
[5ebff60] | 391 | |
---|
| 392 | if (bu == FALSE) { |
---|
[a429907] | 393 | return; |
---|
[5ebff60] | 394 | } |
---|
| 395 | |
---|
[a429907] | 396 | /* In this case, pretend the user is offline. */ |
---|
[5ebff60] | 397 | if ((online = bu->flags & BEE_USER_ONLINE)) { |
---|
[a429907] | 398 | bu->flags &= ~BEE_USER_ONLINE; |
---|
[5ebff60] | 399 | } |
---|
| 400 | |
---|
| 401 | nick_del(bu); |
---|
| 402 | bee_irc_user_nick_update(iu); |
---|
| 403 | |
---|
[a429907] | 404 | bu->flags |= online; |
---|
| 405 | } |
---|
| 406 | |
---|
[e4816ea] | 407 | /* IRC->IM calls */ |
---|
| 408 | |
---|
[5ebff60] | 409 | static gboolean bee_irc_user_privmsg_cb(gpointer data, gint fd, b_input_condition cond); |
---|
[619dd18] | 410 | |
---|
[5ebff60] | 411 | static gboolean bee_irc_user_privmsg(irc_user_t *iu, const char *msg) |
---|
[e4816ea] | 412 | { |
---|
[1c8e5f7] | 413 | const char *away; |
---|
[5ebff60] | 414 | |
---|
| 415 | if (iu->bu == NULL) { |
---|
[e4816ea] | 416 | return FALSE; |
---|
[5ebff60] | 417 | } |
---|
| 418 | |
---|
| 419 | if ((away = irc_user_get_away(iu)) && |
---|
| 420 | time(NULL) >= iu->away_reply_timeout) { |
---|
| 421 | irc_send_num(iu->irc, 301, "%s :%s", iu->nick, away); |
---|
| 422 | iu->away_reply_timeout = time(NULL) + |
---|
| 423 | set_getint(&iu->irc->b->set, "away_reply_timeout"); |
---|
| 424 | } |
---|
| 425 | |
---|
| 426 | if (iu->pastebuf == NULL) { |
---|
| 427 | iu->pastebuf = g_string_new(msg); |
---|
| 428 | } else { |
---|
| 429 | b_event_remove(iu->pastebuf_timer); |
---|
| 430 | g_string_append_printf(iu->pastebuf, "\n%s", msg); |
---|
| 431 | } |
---|
| 432 | |
---|
| 433 | if (set_getbool(&iu->irc->b->set, "paste_buffer")) { |
---|
[619dd18] | 434 | int delay; |
---|
[5ebff60] | 435 | |
---|
| 436 | if ((delay = set_getint(&iu->irc->b->set, "paste_buffer_delay")) <= 5) { |
---|
[619dd18] | 437 | delay *= 1000; |
---|
[5ebff60] | 438 | } |
---|
| 439 | |
---|
| 440 | iu->pastebuf_timer = b_timeout_add(delay, bee_irc_user_privmsg_cb, iu); |
---|
| 441 | |
---|
[619dd18] | 442 | return TRUE; |
---|
[5ebff60] | 443 | } else { |
---|
| 444 | bee_irc_user_privmsg_cb(iu, 0, 0); |
---|
| 445 | |
---|
[934db064] | 446 | return TRUE; |
---|
| 447 | } |
---|
[619dd18] | 448 | } |
---|
| 449 | |
---|
[5ebff60] | 450 | static gboolean bee_irc_user_privmsg_cb(gpointer data, gint fd, b_input_condition cond) |
---|
[619dd18] | 451 | { |
---|
| 452 | irc_user_t *iu = data; |
---|
[911d97a] | 453 | char *msg; |
---|
[934db064] | 454 | GSList *l; |
---|
[5ebff60] | 455 | |
---|
| 456 | msg = g_string_free(iu->pastebuf, FALSE); |
---|
[911d97a] | 457 | iu->pastebuf = NULL; |
---|
| 458 | iu->pastebuf_timer = 0; |
---|
[5ebff60] | 459 | |
---|
| 460 | for (l = irc_plugins; l; l = l->next) { |
---|
[934db064] | 461 | irc_plugin_t *p = l->data; |
---|
[5ebff60] | 462 | if (p->filter_msg_out) { |
---|
| 463 | char *s = p->filter_msg_out(iu, msg, 0); |
---|
| 464 | if (s) { |
---|
| 465 | if (s != msg) { |
---|
| 466 | g_free(msg); |
---|
| 467 | } |
---|
[934db064] | 468 | msg = s; |
---|
[5ebff60] | 469 | } else { |
---|
[934db064] | 470 | /* Modules can swallow messages. */ |
---|
| 471 | iu->pastebuf = NULL; |
---|
[5ebff60] | 472 | g_free(msg); |
---|
[934db064] | 473 | return FALSE; |
---|
| 474 | } |
---|
| 475 | } |
---|
| 476 | } |
---|
[5ebff60] | 477 | |
---|
| 478 | bee_user_msg(iu->irc->b, iu->bu, msg, 0); |
---|
| 479 | |
---|
| 480 | g_free(msg); |
---|
| 481 | |
---|
[619dd18] | 482 | return FALSE; |
---|
[e4816ea] | 483 | } |
---|
| 484 | |
---|
[5ebff60] | 485 | static gboolean bee_irc_user_ctcp(irc_user_t *iu, char *const *ctcp) |
---|
[e4816ea] | 486 | { |
---|
[5ebff60] | 487 | if (ctcp[1] && g_strcasecmp(ctcp[0], "DCC") == 0 |
---|
| 488 | && g_strcasecmp(ctcp[1], "SEND") == 0) { |
---|
| 489 | if (iu->bu && iu->bu->ic && iu->bu->ic->acc->prpl->transfer_request) { |
---|
| 490 | file_transfer_t *ft = dcc_request(iu->bu->ic, ctcp); |
---|
| 491 | if (ft) { |
---|
| 492 | iu->bu->ic->acc->prpl->transfer_request(iu->bu->ic, ft, iu->bu->handle); |
---|
| 493 | } |
---|
| 494 | |
---|
[e4816ea] | 495 | return TRUE; |
---|
| 496 | } |
---|
[5ebff60] | 497 | } else if (g_strcasecmp(ctcp[0], "TYPING") == 0) { |
---|
| 498 | if (iu->bu && iu->bu->ic && iu->bu->ic->acc->prpl->send_typing && ctcp[1]) { |
---|
[e4816ea] | 499 | int st = ctcp[1][0]; |
---|
[5ebff60] | 500 | if (st >= '0' && st <= '2') { |
---|
[e4816ea] | 501 | st <<= 8; |
---|
[5ebff60] | 502 | iu->bu->ic->acc->prpl->send_typing(iu->bu->ic, iu->bu->handle, st); |
---|
[e4816ea] | 503 | } |
---|
[5ebff60] | 504 | |
---|
[e4816ea] | 505 | return TRUE; |
---|
| 506 | } |
---|
[5ebff60] | 507 | } else if (g_strcasecmp(ctcp[0], "HELP") == 0 && iu->bu) { |
---|
| 508 | GString *supp = g_string_new("Supported CTCPs:"); |
---|
[a97a336] | 509 | GList *l; |
---|
[5ebff60] | 510 | |
---|
| 511 | if (iu->bu->ic && iu->bu->ic->acc->prpl->transfer_request) { |
---|
| 512 | g_string_append(supp, " DCC SEND,"); |
---|
| 513 | } |
---|
| 514 | if (iu->bu->ic && iu->bu->ic->acc->prpl->send_typing) { |
---|
| 515 | g_string_append(supp, " TYPING,"); |
---|
| 516 | } |
---|
| 517 | if (iu->bu->ic->acc->prpl->buddy_action_list) { |
---|
| 518 | for (l = iu->bu->ic->acc->prpl->buddy_action_list(iu->bu); l; l = l->next) { |
---|
[a97a336] | 519 | struct buddy_action *ba = l->data; |
---|
[5ebff60] | 520 | g_string_append_printf(supp, " %s (%s),", |
---|
| 521 | ba->name, ba->description); |
---|
[a97a336] | 522 | } |
---|
[5ebff60] | 523 | } |
---|
| 524 | g_string_truncate(supp, supp->len - 1); |
---|
| 525 | irc_send_msg_f(iu, "NOTICE", iu->irc->user->nick, "\001HELP %s\001", supp->str); |
---|
| 526 | g_string_free(supp, TRUE); |
---|
| 527 | } else if (iu->bu && iu->bu->ic && iu->bu->ic->acc->prpl->buddy_action) { |
---|
| 528 | iu->bu->ic->acc->prpl->buddy_action(iu->bu, ctcp[0], ctcp + 1, NULL); |
---|
[d88c92a] | 529 | } |
---|
[5ebff60] | 530 | |
---|
[e4816ea] | 531 | return FALSE; |
---|
| 532 | } |
---|
| 533 | |
---|
| 534 | static const struct irc_user_funcs irc_user_im_funcs = { |
---|
| 535 | bee_irc_user_privmsg, |
---|
| 536 | bee_irc_user_ctcp, |
---|
| 537 | }; |
---|
| 538 | |
---|
[aea8b68] | 539 | |
---|
[e4816ea] | 540 | /* IM->IRC: Groupchats */ |
---|
[5a75d15] | 541 | const struct irc_channel_funcs irc_channel_im_chat_funcs; |
---|
[a87754b] | 542 | |
---|
[5ebff60] | 543 | static gboolean bee_irc_chat_new(bee_t *bee, struct groupchat *c) |
---|
[aea8b68] | 544 | { |
---|
| 545 | irc_t *irc = bee->ui_data; |
---|
| 546 | irc_channel_t *ic; |
---|
| 547 | char *topic; |
---|
[eb37735] | 548 | GSList *l; |
---|
[aea8b68] | 549 | int i; |
---|
[5ebff60] | 550 | |
---|
[eb37735] | 551 | /* Try to find a channel that expects to receive a groupchat. |
---|
[52a2521] | 552 | This flag is set earlier in our current call trace. */ |
---|
[5ebff60] | 553 | for (l = irc->channels; l; l = l->next) { |
---|
[eb37735] | 554 | ic = l->data; |
---|
[5ebff60] | 555 | if (ic->flags & IRC_CHANNEL_CHAT_PICKME) { |
---|
[eb37735] | 556 | break; |
---|
[5ebff60] | 557 | } |
---|
[eb37735] | 558 | } |
---|
[5ebff60] | 559 | |
---|
[eb37735] | 560 | /* If we found none, just generate some stupid name. */ |
---|
[5ebff60] | 561 | if (l == NULL) { |
---|
| 562 | for (i = 0; i <= 999; i++) { |
---|
| 563 | char name[16]; |
---|
| 564 | sprintf(name, "#chat_%03d", i); |
---|
| 565 | if ((ic = irc_channel_new(irc, name))) { |
---|
| 566 | break; |
---|
| 567 | } |
---|
| 568 | } |
---|
[aea8b68] | 569 | } |
---|
[5ebff60] | 570 | |
---|
| 571 | if (ic == NULL) { |
---|
[aea8b68] | 572 | return FALSE; |
---|
[5ebff60] | 573 | } |
---|
| 574 | |
---|
[aea8b68] | 575 | c->ui_data = ic; |
---|
| 576 | ic->data = c; |
---|
[5ebff60] | 577 | |
---|
| 578 | topic = g_strdup_printf( |
---|
| 579 | "BitlBee groupchat: \"%s\". Please keep in mind that root-commands won't work here. Have fun!", |
---|
| 580 | c->title); |
---|
| 581 | irc_channel_set_topic(ic, topic, irc->root); |
---|
| 582 | g_free(topic); |
---|
| 583 | |
---|
[aea8b68] | 584 | return TRUE; |
---|
| 585 | } |
---|
| 586 | |
---|
[5ebff60] | 587 | static gboolean bee_irc_chat_free(bee_t *bee, struct groupchat *c) |
---|
[aea8b68] | 588 | { |
---|
| 589 | irc_channel_t *ic = c->ui_data; |
---|
[5ebff60] | 590 | |
---|
| 591 | if (ic == NULL) { |
---|
[b1af3e8] | 592 | return FALSE; |
---|
[5ebff60] | 593 | } |
---|
| 594 | |
---|
| 595 | if (ic->flags & IRC_CHANNEL_JOINED) { |
---|
| 596 | irc_channel_printf(ic, "Cleaning up channel, bye!"); |
---|
| 597 | } |
---|
| 598 | |
---|
[5a75d15] | 599 | ic->data = NULL; |
---|
[6963230] | 600 | c->ui_data = NULL; |
---|
[5ebff60] | 601 | irc_channel_del_user(ic, ic->irc->user, IRC_CDU_KICK, "Chatroom closed by server"); |
---|
| 602 | |
---|
[aea8b68] | 603 | return TRUE; |
---|
| 604 | } |
---|
| 605 | |
---|
[5ebff60] | 606 | static gboolean bee_irc_chat_log(bee_t *bee, struct groupchat *c, const char *text) |
---|
[aea8b68] | 607 | { |
---|
[27e2c66] | 608 | irc_channel_t *ic = c->ui_data; |
---|
[5ebff60] | 609 | |
---|
| 610 | if (ic == NULL) { |
---|
[b1af3e8] | 611 | return FALSE; |
---|
[5ebff60] | 612 | } |
---|
| 613 | |
---|
| 614 | irc_channel_printf(ic, "%s", text); |
---|
| 615 | |
---|
[b17ce85] | 616 | return TRUE; |
---|
[aea8b68] | 617 | } |
---|
| 618 | |
---|
[5ebff60] | 619 | static gboolean bee_irc_chat_msg(bee_t *bee, struct groupchat *c, bee_user_t *bu, const char *msg, time_t sent_at) |
---|
[aea8b68] | 620 | { |
---|
[27e2c66] | 621 | irc_t *irc = bee->ui_data; |
---|
| 622 | irc_user_t *iu = bu->ui_data; |
---|
| 623 | irc_channel_t *ic = c->ui_data; |
---|
[172aa37f] | 624 | char *wrapped, *ts = NULL; |
---|
[5ebff60] | 625 | |
---|
| 626 | if (ic == NULL) { |
---|
[b1af3e8] | 627 | return FALSE; |
---|
[5ebff60] | 628 | } |
---|
| 629 | |
---|
| 630 | if (sent_at > 0 && set_getbool(&bee->set, "display_timestamps")) { |
---|
| 631 | ts = irc_format_timestamp(irc, sent_at); |
---|
| 632 | } |
---|
| 633 | |
---|
| 634 | wrapped = word_wrap(msg, 425); |
---|
| 635 | irc_send_msg(iu, "PRIVMSG", ic->name, wrapped, ts); |
---|
| 636 | g_free(ts); |
---|
| 637 | g_free(wrapped); |
---|
| 638 | |
---|
[27e2c66] | 639 | return TRUE; |
---|
[aea8b68] | 640 | } |
---|
| 641 | |
---|
[5ebff60] | 642 | static gboolean bee_irc_chat_add_user(bee_t *bee, struct groupchat *c, bee_user_t *bu) |
---|
[aea8b68] | 643 | { |
---|
| 644 | irc_t *irc = bee->ui_data; |
---|
[b1af3e8] | 645 | irc_channel_t *ic = c->ui_data; |
---|
[5ebff60] | 646 | |
---|
| 647 | if (ic == NULL) { |
---|
[b1af3e8] | 648 | return FALSE; |
---|
[5ebff60] | 649 | } |
---|
| 650 | |
---|
| 651 | irc_channel_add_user(ic, bu == bee->user ? irc->user : bu->ui_data); |
---|
| 652 | |
---|
[b17ce85] | 653 | return TRUE; |
---|
[aea8b68] | 654 | } |
---|
| 655 | |
---|
[6b56512] | 656 | static gboolean bee_irc_chat_remove_user(bee_t *bee, struct groupchat *c, bee_user_t *bu, const char *reason) |
---|
[aea8b68] | 657 | { |
---|
[b17ce85] | 658 | irc_t *irc = bee->ui_data; |
---|
[b1af3e8] | 659 | irc_channel_t *ic = c->ui_data; |
---|
[5ebff60] | 660 | |
---|
| 661 | if (ic == NULL || bu == NULL) { |
---|
[b1af3e8] | 662 | return FALSE; |
---|
[5ebff60] | 663 | } |
---|
| 664 | |
---|
[1c40aa7] | 665 | /* TODO: Possible bug here: If a module removes $user here instead of just |
---|
| 666 | using imcb_chat_free() and the channel was IRC_CHANNEL_TEMP, we get into |
---|
| 667 | a broken state around here. */ |
---|
[6b56512] | 668 | irc_channel_del_user(ic, bu == bee->user ? irc->user : bu->ui_data, IRC_CDU_PART, reason); |
---|
[5ebff60] | 669 | |
---|
[b17ce85] | 670 | return TRUE; |
---|
[aea8b68] | 671 | } |
---|
| 672 | |
---|
[5ebff60] | 673 | static gboolean bee_irc_chat_topic(bee_t *bee, struct groupchat *c, const char *new, bee_user_t *bu) |
---|
[9e27f18] | 674 | { |
---|
[b1af3e8] | 675 | irc_channel_t *ic = c->ui_data; |
---|
[9e27f18] | 676 | irc_t *irc = bee->ui_data; |
---|
| 677 | irc_user_t *iu; |
---|
[5ebff60] | 678 | |
---|
| 679 | if (ic == NULL) { |
---|
[b1af3e8] | 680 | return FALSE; |
---|
[5ebff60] | 681 | } |
---|
| 682 | |
---|
| 683 | if (bu == NULL) { |
---|
[9e27f18] | 684 | iu = irc->root; |
---|
[5ebff60] | 685 | } else if (bu == bee->user) { |
---|
[9e27f18] | 686 | iu = irc->user; |
---|
[5ebff60] | 687 | } else { |
---|
[9e27f18] | 688 | iu = bu->ui_data; |
---|
[5ebff60] | 689 | } |
---|
| 690 | |
---|
| 691 | irc_channel_set_topic(ic, new, iu); |
---|
| 692 | |
---|
[9e27f18] | 693 | return TRUE; |
---|
| 694 | } |
---|
| 695 | |
---|
[5ebff60] | 696 | static gboolean bee_irc_chat_name_hint(bee_t *bee, struct groupchat *c, const char *name) |
---|
[d343eaa] | 697 | { |
---|
[e3e2059] | 698 | return irc_channel_name_hint(c->ui_data, name); |
---|
[d343eaa] | 699 | } |
---|
| 700 | |
---|
[5ebff60] | 701 | static gboolean bee_irc_chat_invite(bee_t *bee, bee_user_t *bu, const char *name, const char *msg) |
---|
[1aa74f55] | 702 | { |
---|
| 703 | char *channel, *s; |
---|
| 704 | irc_t *irc = bee->ui_data; |
---|
| 705 | irc_user_t *iu = bu->ui_data; |
---|
| 706 | irc_channel_t *chan; |
---|
[5ebff60] | 707 | |
---|
| 708 | if (strchr(CTYPES, name[0])) { |
---|
| 709 | channel = g_strdup(name); |
---|
| 710 | } else { |
---|
| 711 | channel = g_strdup_printf("#%s", name); |
---|
| 712 | } |
---|
| 713 | |
---|
| 714 | if ((s = strchr(channel, '@'))) { |
---|
[1aa74f55] | 715 | *s = '\0'; |
---|
[5ebff60] | 716 | } |
---|
| 717 | |
---|
| 718 | if (strlen(channel) > MAX_NICK_LENGTH) { |
---|
[1aa74f55] | 719 | /* If the channel name is very long (like those insane GTalk |
---|
| 720 | UUID names), try if we can use the inviter's nick. */ |
---|
[5ebff60] | 721 | s = g_strdup_printf("#%s", iu->nick); |
---|
| 722 | if (irc_channel_by_name(irc, s) == NULL) { |
---|
| 723 | g_free(channel); |
---|
[1aa74f55] | 724 | channel = s; |
---|
[5535a47] | 725 | } else { |
---|
| 726 | g_free(s); |
---|
[1aa74f55] | 727 | } |
---|
| 728 | } |
---|
[5ebff60] | 729 | |
---|
| 730 | if ((chan = irc_channel_new(irc, channel)) && |
---|
| 731 | set_setstr(&chan->set, "type", "chat") && |
---|
| 732 | set_setstr(&chan->set, "chat_type", "room") && |
---|
| 733 | set_setstr(&chan->set, "account", bu->ic->acc->tag) && |
---|
| 734 | set_setstr(&chan->set, "room", (char *) name)) { |
---|
[1aa74f55] | 735 | /* I'm assuming that if the user didn't "chat add" the room |
---|
| 736 | himself but got invited, it's temporary, so make this a |
---|
| 737 | temporary mapping that is removed as soon as we /PART. */ |
---|
| 738 | chan->flags |= IRC_CHANNEL_TEMP; |
---|
[5ebff60] | 739 | } else { |
---|
| 740 | irc_channel_free(chan); |
---|
[1aa74f55] | 741 | chan = NULL; |
---|
| 742 | } |
---|
[5ebff60] | 743 | g_free(channel); |
---|
| 744 | |
---|
| 745 | irc_send_msg_f(iu, "PRIVMSG", irc->user->nick, "<< \002BitlBee\002 - Invitation to chatroom %s >>", name); |
---|
| 746 | if (msg) { |
---|
| 747 | irc_send_msg(iu, "PRIVMSG", irc->user->nick, msg, NULL); |
---|
| 748 | } |
---|
| 749 | if (chan) { |
---|
| 750 | irc_send_msg_f(iu, "PRIVMSG", irc->user->nick, "To join the room, just /join %s", chan->name); |
---|
| 751 | irc_send_invite(iu, chan); |
---|
| 752 | } |
---|
| 753 | |
---|
[1aa74f55] | 754 | return TRUE; |
---|
| 755 | } |
---|
| 756 | |
---|
[a87754b] | 757 | /* IRC->IM */ |
---|
[5ebff60] | 758 | static gboolean bee_irc_channel_chat_privmsg_cb(gpointer data, gint fd, b_input_condition cond); |
---|
[619dd18] | 759 | |
---|
[5ebff60] | 760 | static gboolean bee_irc_channel_chat_privmsg(irc_channel_t *ic, const char *msg) |
---|
[a87754b] | 761 | { |
---|
| 762 | struct groupchat *c = ic->data; |
---|
[69b896b] | 763 | char *trans = NULL, *s; |
---|
[5ebff60] | 764 | |
---|
| 765 | if (c == NULL) { |
---|
[5a75d15] | 766 | return FALSE; |
---|
[5ebff60] | 767 | } |
---|
| 768 | |
---|
| 769 | if (set_getbool(&ic->set, "translate_to_nicks")) { |
---|
| 770 | char nick[MAX_NICK_LENGTH + 1]; |
---|
[69b896b] | 771 | irc_user_t *iu; |
---|
[5ebff60] | 772 | |
---|
| 773 | strncpy(nick, msg, MAX_NICK_LENGTH); |
---|
[69b896b] | 774 | nick[MAX_NICK_LENGTH] = '\0'; |
---|
[5ebff60] | 775 | if ((s = strchr(nick, ':')) || (s = strchr(nick, ','))) { |
---|
[69b896b] | 776 | *s = '\0'; |
---|
[5ebff60] | 777 | if ((iu = irc_user_by_name(ic->irc, nick)) && iu->bu && |
---|
| 778 | iu->bu->nick && irc_channel_has_user(ic, iu)) { |
---|
| 779 | trans = g_strconcat(iu->bu->nick, msg + (s - nick), NULL); |
---|
[69b896b] | 780 | msg = trans; |
---|
| 781 | } |
---|
| 782 | } |
---|
| 783 | } |
---|
[5ebff60] | 784 | |
---|
| 785 | if (set_getbool(&ic->irc->b->set, "paste_buffer")) { |
---|
[619dd18] | 786 | int delay; |
---|
[5ebff60] | 787 | |
---|
| 788 | if (ic->pastebuf == NULL) { |
---|
| 789 | ic->pastebuf = g_string_new(msg); |
---|
| 790 | } else { |
---|
| 791 | b_event_remove(ic->pastebuf_timer); |
---|
| 792 | g_string_append_printf(ic->pastebuf, "\n%s", msg); |
---|
[619dd18] | 793 | } |
---|
[5ebff60] | 794 | |
---|
| 795 | if ((delay = set_getint(&ic->irc->b->set, "paste_buffer_delay")) <= 5) { |
---|
[619dd18] | 796 | delay *= 1000; |
---|
[5ebff60] | 797 | } |
---|
| 798 | |
---|
| 799 | ic->pastebuf_timer = b_timeout_add(delay, bee_irc_channel_chat_privmsg_cb, ic); |
---|
| 800 | |
---|
| 801 | g_free(trans); |
---|
[619dd18] | 802 | return TRUE; |
---|
[5ebff60] | 803 | } else { |
---|
| 804 | bee_chat_msg(ic->irc->b, c, msg, 0); |
---|
[619dd18] | 805 | } |
---|
[5ebff60] | 806 | |
---|
| 807 | g_free(trans); |
---|
[a87754b] | 808 | return TRUE; |
---|
[5a75d15] | 809 | } |
---|
| 810 | |
---|
[5ebff60] | 811 | static gboolean bee_irc_channel_chat_privmsg_cb(gpointer data, gint fd, b_input_condition cond) |
---|
[619dd18] | 812 | { |
---|
| 813 | irc_channel_t *ic = data; |
---|
[5ebff60] | 814 | |
---|
| 815 | if (ic->data) { |
---|
| 816 | bee_chat_msg(ic->irc->b, ic->data, ic->pastebuf->str, 0); |
---|
| 817 | } |
---|
| 818 | |
---|
| 819 | g_string_free(ic->pastebuf, TRUE); |
---|
[619dd18] | 820 | ic->pastebuf = 0; |
---|
| 821 | ic->pastebuf_timer = 0; |
---|
[5ebff60] | 822 | |
---|
[619dd18] | 823 | return FALSE; |
---|
| 824 | } |
---|
| 825 | |
---|
[5ebff60] | 826 | static gboolean bee_irc_channel_chat_join(irc_channel_t *ic) |
---|
[5a75d15] | 827 | { |
---|
| 828 | char *acc_s, *room; |
---|
| 829 | account_t *acc; |
---|
[5ebff60] | 830 | |
---|
| 831 | if (strcmp(set_getstr(&ic->set, "chat_type"), "room") != 0) { |
---|
[5a75d15] | 832 | return TRUE; |
---|
[5ebff60] | 833 | } |
---|
| 834 | |
---|
| 835 | if ((acc_s = set_getstr(&ic->set, "account")) && |
---|
| 836 | (room = set_getstr(&ic->set, "room")) && |
---|
| 837 | (acc = account_get(ic->irc->b, acc_s)) && |
---|
[24de9fa] | 838 | acc->ic && (acc->ic->flags & OPT_LOGGED_IN) && |
---|
| 839 | acc->prpl->chat_join) { |
---|
[5a75d15] | 840 | char *nick; |
---|
[5ebff60] | 841 | |
---|
| 842 | if (!(nick = set_getstr(&ic->set, "nick"))) { |
---|
[5a75d15] | 843 | nick = ic->irc->user->nick; |
---|
[5ebff60] | 844 | } |
---|
| 845 | |
---|
[5a75d15] | 846 | ic->flags |= IRC_CHANNEL_CHAT_PICKME; |
---|
[5ebff60] | 847 | acc->prpl->chat_join(acc->ic, room, nick, NULL, &ic->set); |
---|
[5a75d15] | 848 | ic->flags &= ~IRC_CHANNEL_CHAT_PICKME; |
---|
[5ebff60] | 849 | |
---|
[5a75d15] | 850 | return FALSE; |
---|
[5ebff60] | 851 | } else { |
---|
| 852 | irc_send_num(ic->irc, 403, "%s :Can't join channel, account offline?", ic->name); |
---|
[5a75d15] | 853 | return FALSE; |
---|
| 854 | } |
---|
[a87754b] | 855 | } |
---|
| 856 | |
---|
[5ebff60] | 857 | static gboolean bee_irc_channel_chat_part(irc_channel_t *ic, const char *msg) |
---|
[bfb99ee] | 858 | { |
---|
| 859 | struct groupchat *c = ic->data; |
---|
[5ebff60] | 860 | |
---|
| 861 | if (c && c->ic->acc->prpl->chat_leave) { |
---|
| 862 | c->ic->acc->prpl->chat_leave(c); |
---|
| 863 | } |
---|
| 864 | |
---|
[664bac3] | 865 | /* Remove the reference. We don't need it anymore. */ |
---|
[cc20520] | 866 | ic->data = NULL; |
---|
[5ebff60] | 867 | |
---|
[bfb99ee] | 868 | return TRUE; |
---|
| 869 | } |
---|
| 870 | |
---|
[5ebff60] | 871 | static gboolean bee_irc_channel_chat_topic(irc_channel_t *ic, const char *new) |
---|
[9e27f18] | 872 | { |
---|
[4469e7e] | 873 | struct groupchat *c = ic->data; |
---|
[5ebff60] | 874 | |
---|
| 875 | if (c == NULL) { |
---|
[5a75d15] | 876 | return FALSE; |
---|
[5ebff60] | 877 | } |
---|
| 878 | |
---|
| 879 | if (c->ic->acc->prpl->chat_topic == NULL) { |
---|
| 880 | irc_send_num(ic->irc, 482, "%s :IM network does not support channel topics", ic->name); |
---|
| 881 | } else { |
---|
[5a75d15] | 882 | /* TODO: Need more const goodness here, sigh */ |
---|
[5ebff60] | 883 | char *topic = g_strdup(new); |
---|
| 884 | c->ic->acc->prpl->chat_topic(c, topic); |
---|
| 885 | g_free(topic); |
---|
[4469e7e] | 886 | } |
---|
[5ebff60] | 887 | |
---|
[41e0c00] | 888 | /* Whatever happened, the IM module should ack the topic change. */ |
---|
[4469e7e] | 889 | return FALSE; |
---|
[9e27f18] | 890 | } |
---|
| 891 | |
---|
[5ebff60] | 892 | static gboolean bee_irc_channel_chat_invite(irc_channel_t *ic, irc_user_t *iu) |
---|
[66b9e36a] | 893 | { |
---|
| 894 | struct groupchat *c = ic->data; |
---|
[5a75d15] | 895 | bee_user_t *bu = iu->bu; |
---|
[5ebff60] | 896 | |
---|
| 897 | if (bu == NULL) { |
---|
[5a75d15] | 898 | return FALSE; |
---|
[5ebff60] | 899 | } |
---|
| 900 | |
---|
| 901 | if (c) { |
---|
| 902 | if (iu->bu->ic != c->ic) { |
---|
| 903 | irc_send_num(ic->irc, 482, "%s :Can't mix different IM networks in one groupchat", ic->name); |
---|
| 904 | } else if (c->ic->acc->prpl->chat_invite) { |
---|
| 905 | c->ic->acc->prpl->chat_invite(c, iu->bu->handle, NULL); |
---|
| 906 | } else { |
---|
| 907 | irc_send_num(ic->irc, 482, "%s :IM protocol does not support room invitations", ic->name); |
---|
| 908 | } |
---|
| 909 | } else if (bu->ic->acc->prpl->chat_with && |
---|
| 910 | strcmp(set_getstr(&ic->set, "chat_type"), "groupchat") == 0) { |
---|
[5a75d15] | 911 | ic->flags |= IRC_CHANNEL_CHAT_PICKME; |
---|
[5ebff60] | 912 | iu->bu->ic->acc->prpl->chat_with(bu->ic, bu->handle); |
---|
[5a75d15] | 913 | ic->flags &= ~IRC_CHANNEL_CHAT_PICKME; |
---|
[5ebff60] | 914 | } else { |
---|
| 915 | irc_send_num(ic->irc, 482, "%s :IM protocol does not support room invitations", ic->name); |
---|
[5a75d15] | 916 | } |
---|
[5ebff60] | 917 | |
---|
[66b9e36a] | 918 | return TRUE; |
---|
| 919 | } |
---|
| 920 | |
---|
[5ebff60] | 921 | static void bee_irc_channel_chat_kick(irc_channel_t *ic, irc_user_t *iu, const char *msg) |
---|
[7821ee8] | 922 | { |
---|
| 923 | struct groupchat *c = ic->data; |
---|
| 924 | bee_user_t *bu = iu->bu; |
---|
[5ebff60] | 925 | |
---|
| 926 | if ((c == NULL) || (bu == NULL)) { |
---|
[7821ee8] | 927 | return; |
---|
[5ebff60] | 928 | } |
---|
| 929 | |
---|
| 930 | if (!c->ic->acc->prpl->chat_kick) { |
---|
| 931 | irc_send_num(ic->irc, 482, "%s :IM protocol does not support room kicking", ic->name); |
---|
[7821ee8] | 932 | return; |
---|
| 933 | } |
---|
[5ebff60] | 934 | |
---|
| 935 | c->ic->acc->prpl->chat_kick(c, iu->bu->handle, msg); |
---|
[7821ee8] | 936 | } |
---|
| 937 | |
---|
[5ebff60] | 938 | static char *set_eval_room_account(set_t *set, char *value); |
---|
| 939 | static char *set_eval_chat_type(set_t *set, char *value); |
---|
[5a75d15] | 940 | |
---|
[5ebff60] | 941 | static gboolean bee_irc_channel_init(irc_channel_t *ic) |
---|
[5a75d15] | 942 | { |
---|
[57a65600] | 943 | set_t *s; |
---|
| 944 | |
---|
[5ebff60] | 945 | set_add(&ic->set, "account", NULL, set_eval_room_account, ic); |
---|
| 946 | set_add(&ic->set, "chat_type", "groupchat", set_eval_chat_type, ic); |
---|
[57a65600] | 947 | |
---|
[5ebff60] | 948 | s = set_add(&ic->set, "nick", NULL, NULL, ic); |
---|
[57a65600] | 949 | s->flags |= SET_NULL_OK; |
---|
| 950 | |
---|
[5ebff60] | 951 | set_add(&ic->set, "room", NULL, NULL, ic); |
---|
| 952 | set_add(&ic->set, "translate_to_nicks", "true", set_eval_bool, ic); |
---|
| 953 | |
---|
[1c40aa7] | 954 | /* chat_type == groupchat */ |
---|
| 955 | ic->flags |= IRC_CHANNEL_TEMP; |
---|
[5ebff60] | 956 | |
---|
[5a75d15] | 957 | return TRUE; |
---|
| 958 | } |
---|
| 959 | |
---|
[5ebff60] | 960 | static char *set_eval_room_account(set_t *set, char *value) |
---|
[5a75d15] | 961 | { |
---|
| 962 | struct irc_channel *ic = set->data; |
---|
[03f3828] | 963 | account_t *acc, *oa; |
---|
[5ebff60] | 964 | |
---|
| 965 | if (!(acc = account_get(ic->irc->b, value))) { |
---|
[5a75d15] | 966 | return SET_INVALID; |
---|
[5ebff60] | 967 | } else if (!acc->prpl->chat_join) { |
---|
| 968 | irc_rootmsg(ic->irc, "Named chatrooms not supported on that account."); |
---|
[5a75d15] | 969 | return SET_INVALID; |
---|
| 970 | } |
---|
[5ebff60] | 971 | |
---|
| 972 | if (set->value && (oa = account_get(ic->irc->b, set->value)) && |
---|
| 973 | oa->prpl->chat_free_settings) { |
---|
| 974 | oa->prpl->chat_free_settings(oa, &ic->set); |
---|
| 975 | } |
---|
| 976 | |
---|
| 977 | if (acc->prpl->chat_add_settings) { |
---|
| 978 | acc->prpl->chat_add_settings(acc, &ic->set); |
---|
| 979 | } |
---|
| 980 | |
---|
| 981 | return g_strdup(acc->tag); |
---|
[5a75d15] | 982 | } |
---|
| 983 | |
---|
[5ebff60] | 984 | static char *set_eval_chat_type(set_t *set, char *value) |
---|
[1c40aa7] | 985 | { |
---|
| 986 | struct irc_channel *ic = set->data; |
---|
[5ebff60] | 987 | |
---|
| 988 | if (strcmp(value, "groupchat") == 0) { |
---|
[1c40aa7] | 989 | ic->flags |= IRC_CHANNEL_TEMP; |
---|
[5ebff60] | 990 | } else if (strcmp(value, "room") == 0) { |
---|
[1c40aa7] | 991 | ic->flags &= ~IRC_CHANNEL_TEMP; |
---|
[5ebff60] | 992 | } else { |
---|
[1c40aa7] | 993 | return NULL; |
---|
[5ebff60] | 994 | } |
---|
| 995 | |
---|
[1c40aa7] | 996 | return value; |
---|
| 997 | } |
---|
| 998 | |
---|
[5ebff60] | 999 | static gboolean bee_irc_channel_free(irc_channel_t *ic) |
---|
[5a75d15] | 1000 | { |
---|
[b1af3e8] | 1001 | struct groupchat *c = ic->data; |
---|
[5ebff60] | 1002 | |
---|
| 1003 | set_del(&ic->set, "account"); |
---|
| 1004 | set_del(&ic->set, "chat_type"); |
---|
| 1005 | set_del(&ic->set, "nick"); |
---|
| 1006 | set_del(&ic->set, "room"); |
---|
| 1007 | set_del(&ic->set, "translate_to_nicks"); |
---|
| 1008 | |
---|
[1c40aa7] | 1009 | ic->flags &= ~IRC_CHANNEL_TEMP; |
---|
[5ebff60] | 1010 | |
---|
[b1af3e8] | 1011 | /* That one still points at this channel. Don't. */ |
---|
[5ebff60] | 1012 | if (c) { |
---|
[b1af3e8] | 1013 | c->ui_data = NULL; |
---|
[5ebff60] | 1014 | } |
---|
| 1015 | |
---|
[5a75d15] | 1016 | return TRUE; |
---|
| 1017 | } |
---|
| 1018 | |
---|
| 1019 | const struct irc_channel_funcs irc_channel_im_chat_funcs = { |
---|
[a87754b] | 1020 | bee_irc_channel_chat_privmsg, |
---|
[5a75d15] | 1021 | bee_irc_channel_chat_join, |
---|
[bfb99ee] | 1022 | bee_irc_channel_chat_part, |
---|
[9e27f18] | 1023 | bee_irc_channel_chat_topic, |
---|
[66b9e36a] | 1024 | bee_irc_channel_chat_invite, |
---|
[7821ee8] | 1025 | bee_irc_channel_chat_kick, |
---|
[5a75d15] | 1026 | |
---|
| 1027 | bee_irc_channel_init, |
---|
| 1028 | bee_irc_channel_free, |
---|
[a87754b] | 1029 | }; |
---|
| 1030 | |
---|
[aea8b68] | 1031 | |
---|
[e4816ea] | 1032 | /* IM->IRC: File transfers */ |
---|
[5ebff60] | 1033 | static file_transfer_t *bee_irc_ft_in_start(bee_t *bee, bee_user_t *bu, const char *file_name, size_t file_size) |
---|
[17a6ee9] | 1034 | { |
---|
[5ebff60] | 1035 | return dccs_send_start(bu->ic, (irc_user_t *) bu->ui_data, file_name, file_size); |
---|
[17a6ee9] | 1036 | } |
---|
| 1037 | |
---|
[5ebff60] | 1038 | static gboolean bee_irc_ft_out_start(struct im_connection *ic, file_transfer_t *ft) |
---|
[17a6ee9] | 1039 | { |
---|
[5ebff60] | 1040 | return dccs_recv_start(ft); |
---|
[17a6ee9] | 1041 | } |
---|
| 1042 | |
---|
[5ebff60] | 1043 | static void bee_irc_ft_close(struct im_connection *ic, file_transfer_t *ft) |
---|
[17a6ee9] | 1044 | { |
---|
[5ebff60] | 1045 | return dcc_close(ft); |
---|
[17a6ee9] | 1046 | } |
---|
| 1047 | |
---|
[5ebff60] | 1048 | static void bee_irc_ft_finished(struct im_connection *ic, file_transfer_t *file) |
---|
[17a6ee9] | 1049 | { |
---|
| 1050 | dcc_file_transfer_t *df = file->priv; |
---|
| 1051 | |
---|
[5ebff60] | 1052 | if (file->bytes_transferred >= file->file_size) { |
---|
| 1053 | dcc_finish(file); |
---|
| 1054 | } else { |
---|
[17a6ee9] | 1055 | df->proto_finished = TRUE; |
---|
[5ebff60] | 1056 | } |
---|
[17a6ee9] | 1057 | } |
---|
| 1058 | |
---|
[d860a8d] | 1059 | const struct bee_ui_funcs irc_ui_funcs = { |
---|
[5c7b45c] | 1060 | bee_irc_imc_connected, |
---|
| 1061 | bee_irc_imc_disconnected, |
---|
[5ebff60] | 1062 | |
---|
[81e04e1] | 1063 | bee_irc_user_new, |
---|
[d860a8d] | 1064 | bee_irc_user_free, |
---|
[1d39159] | 1065 | bee_irc_user_fullname, |
---|
[6ef9065] | 1066 | bee_irc_user_nick_hint, |
---|
[7e83e8e4] | 1067 | bee_irc_user_group, |
---|
[d860a8d] | 1068 | bee_irc_user_status, |
---|
[f012a9f] | 1069 | bee_irc_user_msg, |
---|
[573dab0] | 1070 | bee_irc_user_typing, |
---|
[d88c92a] | 1071 | bee_irc_user_action_response, |
---|
[5ebff60] | 1072 | |
---|
[aea8b68] | 1073 | bee_irc_chat_new, |
---|
| 1074 | bee_irc_chat_free, |
---|
[27e2c66] | 1075 | bee_irc_chat_log, |
---|
| 1076 | bee_irc_chat_msg, |
---|
[aea8b68] | 1077 | bee_irc_chat_add_user, |
---|
[b17ce85] | 1078 | bee_irc_chat_remove_user, |
---|
[9e27f18] | 1079 | bee_irc_chat_topic, |
---|
[d343eaa] | 1080 | bee_irc_chat_name_hint, |
---|
[1aa74f55] | 1081 | bee_irc_chat_invite, |
---|
[5ebff60] | 1082 | |
---|
[17a6ee9] | 1083 | bee_irc_ft_in_start, |
---|
| 1084 | bee_irc_ft_out_start, |
---|
| 1085 | bee_irc_ft_close, |
---|
| 1086 | bee_irc_ft_finished, |
---|
[81e04e1] | 1087 | }; |
---|