Fri, 28 Jan 2005 05:47:39 +0000
[gaim-migrate @ 11926]
This fixes bug 1109491, and others (crash on IRC part).
| 6333 | 1 | /** |
| 2 | * @file msgs.c | |
| 3 | * | |
| 4 | * gaim | |
| 5 | * | |
| 6 | * Copyright (C) 2003, Ethan Blanton <eblanton@cs.purdue.edu> | |
| 7 | * | |
| 8 | * This program is free software; you can redistribute it and/or modify | |
| 9 | * it under the terms of the GNU General Public License as published by | |
| 10 | * the Free Software Foundation; either version 2 of the License, or | |
| 11 | * (at your option) any later version. | |
| 12 | * | |
| 13 | * This program is distributed in the hope that it will be useful, | |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 | * GNU General Public License for more details. | |
| 17 | * | |
| 18 | * You should have received a copy of the GNU General Public License | |
| 19 | * along with this program; if not, write to the Free Software | |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 21 | */ | |
| 22 | ||
| 23 | #include "internal.h" | |
| 24 | ||
| 25 | #include "conversation.h" | |
| 26 | #include "blist.h" | |
| 27 | #include "notify.h" | |
| 28 | #include "util.h" | |
| 29 | #include "debug.h" | |
| 30 | #include "irc.h" | |
| 31 | ||
| 32 | #include <stdio.h> | |
| 33 | ||
| 34 | static char *irc_mask_nick(const char *mask); | |
| 35 | static char *irc_mask_userhost(const char *mask); | |
| 36 | static void irc_chat_remove_buddy(GaimConversation *convo, char *data[2]); | |
| 37 | static void irc_buddy_status(char *name, struct irc_buddy *ib, struct irc_conn *irc); | |
| 38 | ||
| 39 | static char *irc_mask_nick(const char *mask) | |
| 40 | { | |
| 41 | char *end, *buf; | |
| 42 | ||
| 43 | end = strchr(mask, '!'); | |
| 44 | if (!end) | |
| 45 | buf = g_strdup(mask); | |
| 46 | else | |
| 47 | buf = g_strndup(mask, end - mask); | |
| 48 | ||
| 49 | return buf; | |
| 50 | } | |
| 51 | ||
| 52 | static char *irc_mask_userhost(const char *mask) | |
| 53 | { | |
| 54 | return g_strdup(strchr(mask, '!') + 1); | |
| 55 | } | |
| 56 | ||
| 57 | static void irc_chat_remove_buddy(GaimConversation *convo, char *data[2]) | |
| 58 | { | |
| 59 | char *message = g_strdup_printf("quit: %s", data[1]); | |
| 60 | ||
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
61 | if (gaim_conv_chat_find_user(GAIM_CONV_CHAT(convo), data[0])) |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
62 | gaim_conv_chat_remove_user(GAIM_CONV_CHAT(convo), data[0], message); |
| 6333 | 63 | |
| 64 | g_free(message); | |
| 65 | } | |
| 66 | ||
| 67 | void irc_msg_default(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 68 | { | |
| 69 | gaim_debug(GAIM_DEBUG_INFO, "irc", "Unrecognized message: %s\n", args[0]); | |
| 70 | } | |
| 71 | ||
| 72 | void irc_msg_away(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 73 | { | |
| 74 | GaimConnection *gc; | |
| 75 | ||
| 76 | if (!args || !args[1]) | |
| 77 | return; | |
| 78 | ||
| 79 | if (irc->whois.nick && !gaim_utf8_strcasecmp(irc->whois.nick, args[1])) { | |
| 80 | /* We're doing a whois, show this in the whois dialog */ | |
| 81 | irc_msg_whois(irc, name, from, args); | |
| 82 | return; | |
| 83 | } | |
| 84 | ||
| 85 | gc = gaim_account_get_connection(irc->account); | |
| 86 | if (gc) | |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
87 | serv_got_im(gc, args[1], args[2], GAIM_CONV_IM_AUTO_RESP, time(NULL)); |
| 6333 | 88 | } |
| 89 | ||
| 90 | void irc_msg_badmode(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 91 | { | |
| 92 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 93 | ||
| 94 | if (!args || !args[1] || !gc) | |
| 95 | return; | |
| 96 | ||
| 97 | gaim_notify_error(gc, NULL, _("Bad mode"), args[1]); | |
| 98 | } | |
| 99 | ||
| 100 | void irc_msg_banned(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 101 | { | |
| 102 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 103 | char *buf; | |
| 104 | ||
| 105 | if (!args || !args[1] || !gc) | |
| 106 | return; | |
| 107 | ||
| 108 | buf = g_strdup_printf(_("You are banned from %s."), args[1]); | |
| 109 | gaim_notify_error(gc, _("Banned"), _("Banned"), buf); | |
| 110 | g_free(buf); | |
| 111 | } | |
| 112 | ||
| 113 | void irc_msg_chanmode(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 114 | { | |
| 115 | GaimConversation *convo; | |
| 116 | char *buf; | |
| 117 | ||
| 118 | if (!args || !args[1] || !args[2]) | |
| 119 | return; | |
| 120 | ||
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10242
diff
changeset
|
121 | convo = gaim_find_conversation_with_account(GAIM_CONV_CHAT, args[1], irc->account); |
| 6333 | 122 | if (!convo) /* XXX punt on channels we are not in for now */ |
| 123 | return; | |
| 124 | ||
| 125 | buf = g_strdup_printf("mode for %s: %s %s", args[1], args[2], args[3] ? args[3] : ""); | |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
126 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), "", buf, GAIM_MESSAGE_SYSTEM|GAIM_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 127 | g_free(buf); |
| 128 | ||
| 129 | return; | |
| 130 | } | |
| 131 | ||
| 132 | void irc_msg_whois(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 133 | { | |
| 134 | if (!irc->whois.nick) { | |
| 135 | gaim_debug(GAIM_DEBUG_WARNING, "irc", "Unexpected WHOIS reply for %s\n", args[1]); | |
| 136 | return; | |
| 137 | } | |
| 138 | ||
| 139 | if (gaim_utf8_strcasecmp(irc->whois.nick, args[1])) { | |
| 140 | gaim_debug(GAIM_DEBUG_WARNING, "irc", "Got WHOIS reply for %s while waiting for %s\n", args[1], irc->whois.nick); | |
| 141 | return; | |
| 142 | } | |
| 143 | ||
| 144 | if (!strcmp(name, "301")) { | |
| 145 | irc->whois.away = g_strdup(args[2]); | |
| 146 | } else if (!strcmp(name, "311")) { | |
| 147 | irc->whois.userhost = g_strdup_printf("%s@%s", args[2], args[3]); | |
| 148 | irc->whois.name = g_strdup(args[5]); | |
| 149 | } else if (!strcmp(name, "312")) { | |
| 150 | irc->whois.server = g_strdup(args[2]); | |
| 151 | irc->whois.serverinfo = g_strdup(args[3]); | |
| 152 | } else if (!strcmp(name, "313")) { | |
| 153 | irc->whois.ircop = 1; | |
| 154 | } else if (!strcmp(name, "317")) { | |
| 155 | irc->whois.idle = atoi(args[2]); | |
| 156 | if (args[3]) | |
| 157 | irc->whois.signon = (time_t)atoi(args[3]); | |
| 158 | } else if (!strcmp(name, "319")) { | |
| 159 | irc->whois.channels = g_strdup(args[2]); | |
| 160 | } else if (!strcmp(name, "320")) { | |
| 161 | irc->whois.identified = 1; | |
| 162 | } | |
| 163 | } | |
| 164 | ||
| 165 | void irc_msg_endwhois(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 166 | { | |
| 167 | GaimConnection *gc; | |
| 168 | GString *info; | |
|
7062
26abb8b189ce
[gaim-migrate @ 7626]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
169 | char buffer[256]; |
| 6333 | 170 | char *str; |
| 171 | ||
| 172 | if (!irc->whois.nick) { | |
| 173 | gaim_debug(GAIM_DEBUG_WARNING, "irc", "Unexpected End of WHOIS for %s\n", args[1]); | |
| 174 | return; | |
| 175 | } | |
| 176 | if (gaim_utf8_strcasecmp(irc->whois.nick, args[1])) { | |
| 177 | gaim_debug(GAIM_DEBUG_WARNING, "irc", "Received end of WHOIS for %s, expecting %s\n", args[1], irc->whois.nick); | |
| 178 | return; | |
| 179 | } | |
| 180 | ||
| 181 | info = g_string_new(""); | |
| 9558 | 182 | g_string_append_printf(info, _("<b>%s:</b> %s"), _("Nick"), args[1]); |
| 183 | g_string_append_printf(info, "%s%s<br>", | |
| 6333 | 184 | irc->whois.ircop ? _(" <i>(ircop)</i>") : "", |
| 185 | irc->whois.identified ? _(" <i>(identified)</i>") : ""); | |
| 186 | if (irc->whois.away) { | |
|
9589
229d4c811c01
[gaim-migrate @ 10432]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9558
diff
changeset
|
187 | char *tmp = g_markup_escape_text(irc->whois.away, strlen(irc->whois.away)); |
| 6333 | 188 | g_free(irc->whois.away); |
|
9589
229d4c811c01
[gaim-migrate @ 10432]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9558
diff
changeset
|
189 | g_string_append_printf(info, _("<b>%s:</b> %s<br>"), _("Away"), tmp); |
|
229d4c811c01
[gaim-migrate @ 10432]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9558
diff
changeset
|
190 | g_free(tmp); |
| 6333 | 191 | } |
| 192 | if (irc->whois.userhost) { | |
|
9589
229d4c811c01
[gaim-migrate @ 10432]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9558
diff
changeset
|
193 | char *tmp = g_markup_escape_text(irc->whois.name, strlen(irc->whois.name)); |
|
229d4c811c01
[gaim-migrate @ 10432]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9558
diff
changeset
|
194 | g_free(irc->whois.name); |
| 9558 | 195 | g_string_append_printf(info, _("<b>%s:</b> %s<br>"), _("Username"), irc->whois.userhost); |
|
9589
229d4c811c01
[gaim-migrate @ 10432]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9558
diff
changeset
|
196 | g_string_append_printf(info, _("<b>%s:</b> %s<br>"), _("Realname"), tmp); |
| 6333 | 197 | g_free(irc->whois.userhost); |
|
9589
229d4c811c01
[gaim-migrate @ 10432]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9558
diff
changeset
|
198 | g_free(tmp); |
| 6333 | 199 | } |
| 200 | if (irc->whois.server) { | |
| 9558 | 201 | g_string_append_printf(info, _("<b>%s:</b> %s"), _("Server"), irc->whois.server); |
| 202 | g_string_append_printf(info, " (%s)<br>", irc->whois.serverinfo); | |
| 6333 | 203 | g_free(irc->whois.server); |
| 204 | g_free(irc->whois.serverinfo); | |
| 205 | } | |
| 206 | if (irc->whois.channels) { | |
| 9558 | 207 | g_string_append_printf(info, _("<b>%s:</b> %s<br>"), _("Currently on"), irc->whois.channels); |
| 6333 | 208 | g_free(irc->whois.channels); |
| 209 | } | |
| 210 | if (irc->whois.idle) { | |
|
7108
82655fa54acb
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7062
diff
changeset
|
211 | gchar *timex = gaim_str_seconds_to_string(irc->whois.idle); |
|
6357
f83643b0a067
[gaim-migrate @ 6856]
Mark Doliner <markdoliner@pidgin.im>
parents:
6351
diff
changeset
|
212 | g_string_append_printf(info, _("<b>Idle for:</b> %s<br>"), timex); |
|
f83643b0a067
[gaim-migrate @ 6856]
Mark Doliner <markdoliner@pidgin.im>
parents:
6351
diff
changeset
|
213 | g_free(timex); |
| 9558 | 214 | g_string_append_printf(info, _("<b>%s:</b> %s"), _("Online since"), ctime(&irc->whois.signon)); |
| 6333 | 215 | } |
| 216 | if (!strcmp(irc->whois.nick, "Paco-Paco")) { | |
| 217 | g_string_append_printf(info, _("<br><b>Defining adjective:</b> Glorious<br>")); | |
| 218 | } | |
| 219 | ||
| 220 | gc = gaim_account_get_connection(irc->account); | |
| 221 | str = g_string_free(info, FALSE); | |
|
7062
26abb8b189ce
[gaim-migrate @ 7626]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
222 | |
|
26abb8b189ce
[gaim-migrate @ 7626]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
223 | g_snprintf(buffer, sizeof(buffer), |
|
26abb8b189ce
[gaim-migrate @ 7626]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
224 | _("Buddy Information for %s"), irc->whois.nick); |
| 9797 | 225 | gaim_notify_userinfo(gc, irc->whois.nick, NULL, buffer, NULL, str, NULL, NULL); |
|
7062
26abb8b189ce
[gaim-migrate @ 7626]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
226 | |
|
10504
eae130eefbfe
[gaim-migrate @ 11796]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10246
diff
changeset
|
227 | g_free(irc->whois.nick); |
| 6333 | 228 | g_free(str); |
| 229 | memset(&irc->whois, 0, sizeof(irc->whois)); | |
| 230 | } | |
| 231 | ||
| 8114 | 232 | void irc_msg_list(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 233 | { | |
| 234 | if (!irc->roomlist) | |
| 235 | return; | |
| 236 | ||
| 237 | if (!strcmp(name, "321")) { | |
| 238 | gaim_roomlist_set_in_progress(irc->roomlist, TRUE); | |
| 239 | return; | |
| 240 | } | |
| 241 | ||
| 242 | if (!strcmp(name, "323")) { | |
| 243 | gaim_roomlist_set_in_progress(irc->roomlist, FALSE); | |
| 244 | gaim_roomlist_unref(irc->roomlist); | |
| 245 | irc->roomlist = NULL; | |
| 246 | } | |
| 247 | ||
| 248 | if (!strcmp(name, "322")) { | |
| 249 | GaimRoomlistRoom *room; | |
| 250 | ||
| 251 | if (!args[0] || !args[1] || !args[2] || !args[3]) | |
| 252 | return; | |
| 253 | ||
| 254 | room = gaim_roomlist_room_new(GAIM_ROOMLIST_ROOMTYPE_ROOM, args[1], NULL); | |
| 255 | gaim_roomlist_room_add_field(irc->roomlist, room, args[1]); | |
| 256 | gaim_roomlist_room_add_field(irc->roomlist, room, GINT_TO_POINTER(strtol(args[2], NULL, 10))); | |
| 257 | gaim_roomlist_room_add_field(irc->roomlist, room, args[3]); | |
| 258 | gaim_roomlist_room_add(irc->roomlist, room); | |
| 259 | } | |
| 260 | } | |
| 261 | ||
| 6333 | 262 | void irc_msg_topic(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 263 | { | |
| 9762 | 264 | char *chan, *topic, *msg, *nick, *tmp, *tmp2; |
| 6333 | 265 | GaimConversation *convo; |
| 266 | ||
| 267 | if (!strcmp(name, "topic")) { | |
| 268 | chan = args[0]; | |
| 8529 | 269 | topic = irc_mirc2txt (args[1]); |
| 6333 | 270 | } else { |
| 271 | chan = args[1]; | |
| 8529 | 272 | topic = irc_mirc2txt (args[2]); |
| 6333 | 273 | } |
| 274 | ||
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10242
diff
changeset
|
275 | convo = gaim_find_conversation_with_account(GAIM_CONV_CHAT, chan, irc->account); |
| 6333 | 276 | if (!convo) { |
| 277 | gaim_debug(GAIM_DEBUG_ERROR, "irc", "Got a topic for %s, which doesn't exist\n", chan); | |
| 278 | } | |
| 9518 | 279 | |
| 6333 | 280 | /* If this is an interactive update, print it out */ |
| 8504 | 281 | tmp = gaim_escape_html(topic); |
| 9762 | 282 | tmp2 = gaim_markup_linkify(tmp); |
| 283 | g_free(tmp); | |
| 6333 | 284 | if (!strcmp(name, "topic")) { |
| 285 | nick = irc_mask_nick(from); | |
| 9518 | 286 | gaim_conv_chat_set_topic(GAIM_CONV_CHAT(convo), nick, topic); |
| 9762 | 287 | msg = g_strdup_printf(_("%s has changed the topic to: %s"), nick, tmp2); |
| 6333 | 288 | g_free(nick); |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
289 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), from, msg, GAIM_MESSAGE_SYSTEM, time(NULL)); |
| 6333 | 290 | g_free(msg); |
| 291 | } else { | |
| 9762 | 292 | msg = g_strdup_printf(_("The topic for %s is: %s"), chan, tmp2); |
| 9518 | 293 | gaim_conv_chat_set_topic(GAIM_CONV_CHAT(convo), NULL, topic); |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
294 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), "", msg, GAIM_MESSAGE_SYSTEM, time(NULL)); |
| 6333 | 295 | g_free(msg); |
| 296 | } | |
| 9762 | 297 | g_free(tmp2); |
| 8529 | 298 | g_free(topic); |
| 6333 | 299 | } |
| 300 | ||
| 301 | void irc_msg_unknown(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 302 | { | |
| 303 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 304 | char *buf; | |
| 305 | ||
| 306 | if (!args || !args[1] || !gc) | |
| 307 | return; | |
| 308 | ||
| 309 | buf = g_strdup_printf(_("Unknown message '%s'"), args[1]); | |
| 310 | gaim_notify_error(gc, _("Unknown message"), buf, _("Gaim has sent a message the IRC server did not understand.")); | |
| 311 | g_free(buf); | |
| 312 | } | |
| 313 | ||
| 314 | void irc_msg_names(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 315 | { | |
| 316 | char *names, *cur, *end, *tmp, *msg; | |
| 317 | GaimConversation *convo; | |
| 318 | ||
| 319 | if (!strcmp(name, "366")) { | |
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10242
diff
changeset
|
320 | convo = gaim_find_conversation_with_account(GAIM_CONV_ANY, irc->nameconv ? irc->nameconv : args[1], irc->account); |
| 6333 | 321 | if (!convo) { |
| 322 | gaim_debug(GAIM_DEBUG_ERROR, "irc", "Got a NAMES list for %s, which doesn't exist\n", args[2]); | |
| 323 | g_string_free(irc->names, TRUE); | |
| 324 | irc->names = NULL; | |
| 325 | g_free(irc->nameconv); | |
| 326 | irc->nameconv = NULL; | |
| 327 | return; | |
| 328 | } | |
| 329 | ||
| 330 | names = cur = g_string_free(irc->names, FALSE); | |
| 331 | irc->names = NULL; | |
| 332 | if (irc->nameconv) { | |
| 9274 | 333 | msg = g_strdup_printf(_("Users on %s: %s"), args[1], names); |
| 6333 | 334 | if (gaim_conversation_get_type(convo) == GAIM_CONV_CHAT) |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
335 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), "", msg, GAIM_MESSAGE_SYSTEM|GAIM_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 336 | else |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
337 | gaim_conv_im_write(GAIM_CONV_IM(convo), "", msg, GAIM_MESSAGE_SYSTEM|GAIM_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 338 | g_free(msg); |
| 339 | g_free(irc->nameconv); | |
| 340 | irc->nameconv = NULL; | |
| 341 | } else { | |
|
6407
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
342 | GList *users = NULL; |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
343 | GList *flags = NULL; |
|
6407
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
344 | |
| 6333 | 345 | while (*cur) { |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
346 | GaimConvChatBuddyFlags f = GAIM_CBFLAGS_NONE; |
| 6333 | 347 | end = strchr(cur, ' '); |
| 348 | if (!end) | |
| 349 | end = cur + strlen(cur); | |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
350 | if (*cur == '@') { |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
351 | f = GAIM_CBFLAGS_OP; |
| 6333 | 352 | cur++; |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
353 | } else if (*cur == '%') { |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
354 | f = GAIM_CBFLAGS_HALFOP; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
355 | cur++; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
356 | } else if(*cur == '+') { |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
357 | f = GAIM_CBFLAGS_VOICE; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
358 | cur++; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
359 | } |
| 6333 | 360 | tmp = g_strndup(cur, end - cur); |
|
6407
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
361 | users = g_list_append(users, tmp); |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
362 | flags = g_list_append(flags, GINT_TO_POINTER(f)); |
| 6333 | 363 | cur = end; |
| 364 | if (*cur) | |
| 365 | cur++; | |
| 366 | } | |
|
6407
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
367 | |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
368 | if (users != NULL) { |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
369 | GList *l; |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
370 | |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
371 | gaim_conv_chat_add_users(GAIM_CONV_CHAT(convo), users, flags); |
|
6407
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
372 | |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
373 | for (l = users; l != NULL; l = l->next) |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
374 | g_free(l->data); |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
375 | |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
376 | g_list_free(users); |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
377 | g_list_free(flags); |
|
6407
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
378 | } |
| 6333 | 379 | } |
| 380 | g_free(names); | |
| 381 | } else { | |
| 382 | if (!irc->names) | |
| 383 | irc->names = g_string_new(""); | |
| 384 | ||
| 385 | irc->names = g_string_append(irc->names, args[3]); | |
| 386 | } | |
| 387 | } | |
| 388 | ||
| 389 | void irc_msg_motd(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 390 | { | |
| 391 | GaimConnection *gc; | |
| 392 | if (!strcmp(name, "375")) { | |
| 393 | gc = gaim_account_get_connection(irc->account); | |
| 394 | if (gc) | |
| 395 | gaim_connection_set_display_name(gc, args[0]); | |
| 396 | } | |
| 397 | ||
| 398 | if (!irc->motd) | |
| 399 | irc->motd = g_string_new(""); | |
| 400 | ||
| 401 | g_string_append_printf(irc->motd, "%s<br>", args[1]); | |
| 402 | } | |
| 403 | ||
| 404 | void irc_msg_endmotd(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 405 | { | |
| 406 | GaimConnection *gc; | |
| 407 | ||
| 408 | gc = gaim_account_get_connection(irc->account); | |
| 409 | if (!gc) | |
| 410 | return; | |
| 411 | ||
| 412 | gaim_connection_set_state(gc, GAIM_CONNECTED); | |
| 9057 | 413 | serv_finish_login (gc); |
| 6333 | 414 | |
| 415 | irc_blist_timeout(irc); | |
| 8872 | 416 | if (!irc->timer) |
| 417 | irc->timer = gaim_timeout_add(45000, (GSourceFunc)irc_blist_timeout, (gpointer)irc); | |
| 6333 | 418 | } |
| 419 | ||
| 7877 | 420 | void irc_msg_nochan(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 421 | { | |
| 422 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 423 | ||
| 424 | if (gc == NULL || args == NULL || args[1] == NULL) | |
| 425 | return; | |
| 426 | ||
| 427 | gaim_notify_error(gc, NULL, _("No such channel"), args[1]); | |
| 428 | } | |
| 429 | ||
| 6333 | 430 | void irc_msg_nonick(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 431 | { | |
| 432 | GaimConnection *gc; | |
| 433 | GaimConversation *convo; | |
| 434 | ||
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10242
diff
changeset
|
435 | convo = gaim_find_conversation_with_account(GAIM_CONV_ANY, args[1], irc->account); |
| 6333 | 436 | if (convo) { |
| 437 | if (gaim_conversation_get_type(convo) == GAIM_CONV_CHAT) /* does this happen? */ | |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
438 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), args[1], _("no such channel"), |
|
6621
2a18ef3e5224
[gaim-migrate @ 7145]
Robert McQueen <robot101@debian.org>
parents:
6407
diff
changeset
|
439 | GAIM_MESSAGE_SYSTEM|GAIM_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 440 | else |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
441 | gaim_conv_im_write(GAIM_CONV_IM(convo), args[1], _("User is not logged in"), |
|
6621
2a18ef3e5224
[gaim-migrate @ 7145]
Robert McQueen <robot101@debian.org>
parents:
6407
diff
changeset
|
442 | GAIM_MESSAGE_SYSTEM|GAIM_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 443 | } else { |
| 444 | if ((gc = gaim_account_get_connection(irc->account)) == NULL) | |
| 445 | return; | |
| 446 | gaim_notify_error(gc, NULL, _("No such nick or channel"), args[1]); | |
| 447 | } | |
| 448 | ||
| 449 | if (irc->whois.nick && !gaim_utf8_strcasecmp(irc->whois.nick, args[1])) { | |
| 450 | g_free(irc->whois.nick); | |
| 451 | irc->whois.nick = NULL; | |
| 452 | } | |
| 453 | } | |
| 454 | ||
| 455 | void irc_msg_nosend(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 456 | { | |
| 457 | GaimConnection *gc; | |
| 458 | GaimConversation *convo; | |
| 459 | ||
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10242
diff
changeset
|
460 | convo = gaim_find_conversation_with_account(GAIM_CONV_CHAT, args[1], irc->account); |
| 6333 | 461 | if (convo) { |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
462 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), args[1], args[2], GAIM_MESSAGE_SYSTEM|GAIM_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 463 | } else { |
| 464 | if ((gc = gaim_account_get_connection(irc->account)) == NULL) | |
| 465 | return; | |
| 466 | gaim_notify_error(gc, NULL, _("Could not send"), args[2]); | |
| 467 | } | |
| 468 | } | |
| 469 | ||
| 470 | void irc_msg_notinchan(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 471 | { | |
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10242
diff
changeset
|
472 | GaimConversation *convo = gaim_find_conversation_with_account(GAIM_CONV_CHAT, args[1], irc->account); |
| 6333 | 473 | |
| 474 | gaim_debug(GAIM_DEBUG_INFO, "irc", "We're apparently not in %s, but tried to use it\n", args[1]); | |
| 475 | if (convo) { | |
| 476 | /*g_slist_remove(irc->gc->buddy_chats, convo); | |
| 477 | gaim_conversation_set_account(convo, NULL);*/ | |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
478 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), args[1], args[2], GAIM_MESSAGE_SYSTEM|GAIM_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 479 | } |
| 480 | } | |
| 481 | ||
| 482 | void irc_msg_notop(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 483 | { | |
| 484 | GaimConversation *convo; | |
| 485 | ||
| 486 | if (!args || !args[1] || !args[2]) | |
| 487 | return; | |
| 488 | ||
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10242
diff
changeset
|
489 | convo = gaim_find_conversation_with_account(GAIM_CONV_CHAT, args[1], irc->account); |
| 6333 | 490 | if (!convo) |
| 491 | return; | |
| 492 | ||
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
493 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), "", args[2], GAIM_MESSAGE_SYSTEM, time(NULL)); |
| 6333 | 494 | } |
| 495 | ||
| 496 | void irc_msg_invite(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 497 | { | |
| 498 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 499 | GHashTable *components = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); | |
| 500 | char *nick = irc_mask_nick(from); | |
| 501 | ||
| 502 | if (!args || !args[1] || !gc) { | |
| 503 | g_free(nick); | |
| 504 | g_hash_table_destroy(components); | |
| 505 | return; | |
| 506 | } | |
| 507 | ||
| 508 | g_hash_table_insert(components, strdup("channel"), strdup(args[1])); | |
| 509 | ||
| 510 | serv_got_chat_invite(gc, args[1], nick, NULL, components); | |
| 511 | g_free(nick); | |
| 512 | } | |
| 513 | ||
| 514 | void irc_msg_inviteonly(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 515 | { | |
| 516 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 517 | char *buf; | |
| 518 | ||
| 519 | if (!args || !args[1] || !gc) | |
| 520 | return; | |
| 521 | ||
| 522 | buf = g_strdup_printf(_("Joining %s requires an invitation."), args[1]); | |
| 523 | gaim_notify_error(gc, _("Invitation only"), _("Invitation only"), buf); | |
| 524 | g_free(buf); | |
| 525 | } | |
| 526 | ||
| 527 | void irc_msg_ison(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 528 | { | |
| 529 | char **nicks; | |
| 530 | struct irc_buddy *ib; | |
| 531 | int i; | |
| 532 | ||
| 533 | if (!args || !args[1]) | |
| 534 | return; | |
| 535 | ||
| 536 | nicks = g_strsplit(args[1], " ", -1); | |
| 537 | ||
| 538 | for (i = 0; nicks[i]; i++) { | |
| 539 | if ((ib = g_hash_table_lookup(irc->buddies, (gconstpointer)nicks[i])) == NULL) { | |
| 540 | continue; | |
| 541 | } | |
| 542 | ib->flag = TRUE; | |
| 543 | } | |
| 544 | ||
| 6350 | 545 | g_strfreev(nicks); |
| 546 | ||
| 6333 | 547 | g_hash_table_foreach(irc->buddies, (GHFunc)irc_buddy_status, (gpointer)irc); |
| 548 | } | |
| 549 | ||
| 550 | static void irc_buddy_status(char *name, struct irc_buddy *ib, struct irc_conn *irc) | |
| 551 | { | |
| 552 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 6695 | 553 | GaimBuddy *buddy = gaim_find_buddy(irc->account, name); |
| 6333 | 554 | |
| 555 | if (!gc || !buddy) | |
| 556 | return; | |
| 557 | ||
| 558 | if (ib->online && !ib->flag) { | |
| 10242 | 559 | gaim_prpl_got_user_status(irc->account, name, "offline", NULL); |
| 6333 | 560 | ib->online = FALSE; |
| 10242 | 561 | } else if (!ib->online && ib->flag) { |
| 562 | gaim_prpl_got_user_status(irc->account, name, "online", NULL); | |
| 6333 | 563 | ib->online = TRUE; |
| 564 | } | |
| 565 | } | |
| 566 | ||
| 567 | void irc_msg_join(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 568 | { | |
| 569 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 570 | GaimConversation *convo; | |
| 571 | char *nick = irc_mask_nick(from), *userhost; | |
| 9238 | 572 | struct irc_buddy *ib; |
| 6333 | 573 | static int id = 1; |
| 574 | ||
| 575 | if (!gc) { | |
| 576 | g_free(nick); | |
| 577 | return; | |
| 578 | } | |
| 579 | ||
| 580 | if (!gaim_utf8_strcasecmp(nick, gaim_connection_get_display_name(gc))) { | |
| 581 | /* We are joining a channel for the first time */ | |
| 582 | serv_got_joined_chat(gc, id++, args[0]); | |
| 583 | g_free(nick); | |
| 584 | return; | |
| 585 | } | |
| 586 | ||
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10242
diff
changeset
|
587 | convo = gaim_find_conversation_with_account(GAIM_CONV_CHAT, args[0], irc->account); |
| 6333 | 588 | if (convo == NULL) { |
| 589 | gaim_debug(GAIM_DEBUG_ERROR, "irc", "JOIN for %s failed\n", args[0]); | |
| 590 | g_free(nick); | |
| 591 | return; | |
| 592 | } | |
| 593 | ||
| 594 | userhost = irc_mask_userhost(from); | |
|
9846
61f7349c153a
[gaim-migrate @ 10724]
Nathan Fredrickson <nathan@silverorange.com>
parents:
9797
diff
changeset
|
595 | gaim_conv_chat_add_user(GAIM_CONV_CHAT(convo), nick, userhost, GAIM_CBFLAGS_NONE, TRUE); |
| 9238 | 596 | |
| 597 | if ((ib = g_hash_table_lookup(irc->buddies, nick)) != NULL) { | |
| 598 | ib->flag = TRUE; | |
| 599 | irc_buddy_status(nick, ib, irc); | |
| 600 | } | |
| 601 | ||
| 6333 | 602 | g_free(userhost); |
| 603 | g_free(nick); | |
| 604 | } | |
| 605 | ||
| 606 | void irc_msg_kick(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 607 | { | |
| 608 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10242
diff
changeset
|
609 | GaimConversation *convo = gaim_find_conversation_with_account(GAIM_CONV_CHAT, args[0], irc->account); |
| 6333 | 610 | char *nick = irc_mask_nick(from), *buf; |
| 611 | ||
| 612 | if (!gc) { | |
| 613 | g_free(nick); | |
| 614 | return; | |
| 615 | } | |
| 616 | ||
| 617 | if (!convo) { | |
| 618 | gaim_debug(GAIM_DEBUG_ERROR, "irc", "Recieved a KICK for unknown channel %s\n", args[0]); | |
| 619 | g_free(nick); | |
| 620 | return; | |
| 621 | } | |
| 622 | ||
| 623 | if (!gaim_utf8_strcasecmp(gaim_connection_get_display_name(gc), args[1])) { | |
| 624 | buf = g_strdup_printf(_("You have been kicked by %s: (%s)"), nick, args[2]); | |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
625 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), args[0], buf, GAIM_MESSAGE_SYSTEM, time(NULL)); |
| 6333 | 626 | g_free(buf); |
| 8256 | 627 | serv_got_chat_left(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(convo))); |
| 6333 | 628 | } else { |
| 629 | buf = g_strdup_printf(_("Kicked by %s (%s)"), nick, args[2]); | |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
630 | gaim_conv_chat_remove_user(GAIM_CONV_CHAT(convo), args[1], buf); |
| 6333 | 631 | g_free(buf); |
| 632 | } | |
| 633 | ||
| 634 | g_free(nick); | |
| 635 | return; | |
| 636 | } | |
| 637 | ||
| 638 | void irc_msg_mode(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 639 | { | |
| 640 | GaimConversation *convo; | |
| 641 | char *nick = irc_mask_nick(from), *buf; | |
| 642 | ||
| 643 | if (*args[0] == '#' || *args[0] == '&') { /* Channel */ | |
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10242
diff
changeset
|
644 | convo = gaim_find_conversation_with_account(GAIM_CONV_CHAT, args[0], irc->account); |
| 6333 | 645 | if (!convo) { |
| 646 | gaim_debug(GAIM_DEBUG_ERROR, "irc", "MODE received for %s, which we are not in\n", args[0]); | |
| 647 | g_free(nick); | |
| 648 | return; | |
| 649 | } | |
| 650 | buf = g_strdup_printf(_("mode (%s %s) by %s"), args[1], args[2] ? args[2] : "", nick); | |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
651 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), args[0], buf, GAIM_MESSAGE_SYSTEM|GAIM_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 652 | g_free(buf); |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
653 | if(args[2]) { |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
654 | GaimConvChatBuddyFlags newflag, flags; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
655 | char *mcur, *cur, *end, *user; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
656 | gboolean add = FALSE; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
657 | mcur = args[1]; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
658 | cur = args[2]; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
659 | while (*cur && *mcur) { |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
660 | if ((*mcur == '+') || (*mcur == '-')) { |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
661 | add = (*mcur == '+') ? TRUE : FALSE; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
662 | mcur++; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
663 | continue; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
664 | } |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
665 | end = strchr(cur, ' '); |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
666 | if (!end) |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
667 | end = cur + strlen(cur); |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
668 | user = g_strndup(cur, end - cur); |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
669 | flags = gaim_conv_chat_user_get_flags(GAIM_CONV_CHAT(convo), user); |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
670 | newflag = GAIM_CBFLAGS_NONE; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
671 | if (*mcur == 'o') |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
672 | newflag = GAIM_CBFLAGS_OP; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
673 | else if (*mcur =='h') |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
674 | newflag = GAIM_CBFLAGS_HALFOP; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
675 | else if (*mcur == 'v') |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
676 | newflag = GAIM_CBFLAGS_VOICE; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
677 | if (newflag) { |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
678 | if (add) |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
679 | flags |= newflag; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
680 | else |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
681 | flags &= ~newflag; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
682 | gaim_conv_chat_user_set_flags(GAIM_CONV_CHAT(convo), user, flags); |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
683 | } |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
684 | g_free(user); |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
685 | cur = end; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
686 | if (*cur) |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
687 | cur++; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
688 | if (*mcur) |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
689 | mcur++; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
690 | } |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
691 | } |
| 6333 | 692 | } else { /* User */ |
| 693 | } | |
| 694 | g_free(nick); | |
| 695 | } | |
| 696 | ||
| 697 | void irc_msg_nick(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 698 | { | |
| 699 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 700 | GSList *chats; | |
| 701 | char *nick = irc_mask_nick(from); | |
| 702 | ||
| 703 | if (!gc) { | |
| 704 | g_free(nick); | |
| 705 | return; | |
| 706 | } | |
| 707 | chats = gc->buddy_chats; | |
| 708 | ||
| 709 | if (!gaim_utf8_strcasecmp(nick, gaim_connection_get_display_name(gc))) { | |
| 710 | gaim_connection_set_display_name(gc, args[0]); | |
| 711 | } | |
| 712 | ||
| 713 | while (chats) { | |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
714 | GaimConvChat *chat = GAIM_CONV_CHAT(chats->data); |
| 9593 | 715 | /* This is ugly ... */ |
| 716 | if (gaim_conv_chat_find_user(chat, nick)) | |
| 717 | gaim_conv_chat_rename_user(chat, nick, args[0]); | |
| 6333 | 718 | chats = chats->next; |
| 719 | } | |
| 720 | g_free(nick); | |
| 721 | } | |
| 722 | ||
| 723 | void irc_msg_nickused(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 724 | { | |
| 725 | char *newnick, *buf, *end; | |
| 726 | ||
| 727 | if (!args || !args[1]) | |
| 728 | return; | |
| 729 | ||
| 730 | newnick = strdup(args[1]); | |
| 731 | end = newnick + strlen(newnick) - 1; | |
| 732 | /* try three fallbacks */ | |
| 733 | if (*end == 2) *end = '3'; | |
| 734 | else if (*end == 1) *end = '2'; | |
| 735 | else *end = '1'; | |
| 736 | ||
| 737 | buf = irc_format(irc, "vn", "NICK", newnick); | |
| 738 | irc_send(irc, buf); | |
| 739 | g_free(buf); | |
|
10504
eae130eefbfe
[gaim-migrate @ 11796]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10246
diff
changeset
|
740 | g_free(newnick); |
| 6333 | 741 | } |
| 742 | ||
| 743 | void irc_msg_notice(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 744 | { | |
| 745 | char *newargs[2]; | |
| 746 | ||
| 747 | newargs[0] = " notice "; /* The spaces are magic, leave 'em in! */ | |
| 748 | newargs[1] = args[1]; | |
| 749 | irc_msg_privmsg(irc, name, from, newargs); | |
| 750 | } | |
| 751 | ||
| 6718 | 752 | void irc_msg_nochangenick(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 753 | { | |
| 754 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 755 | char *msg; | |
| 756 | ||
| 6753 | 757 | if (!args || !args[2] || !gc) |
| 6718 | 758 | return; |
| 759 | ||
| 6753 | 760 | msg = g_strdup_printf(_("Could not change nick")); |
| 6718 | 761 | gaim_notify_error(gc, _("Cannot change nick"), msg, args[2]); |
| 762 | g_free(msg); | |
| 763 | } | |
| 764 | ||
| 6333 | 765 | void irc_msg_part(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 766 | { | |
| 767 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 768 | GaimConversation *convo; | |
| 769 | char *nick, *msg; | |
| 770 | ||
| 8186 | 771 | if (!args || !args[0] || !gc) |
| 6333 | 772 | return; |
| 773 | ||
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10242
diff
changeset
|
774 | convo = gaim_find_conversation_with_account(GAIM_CONV_CHAT, args[0], irc->account); |
| 6333 | 775 | if (!convo) { |
| 776 | gaim_debug(GAIM_DEBUG_INFO, "irc", "Got a PART on %s, which doesn't exist -- probably closed\n", args[0]); | |
| 777 | return; | |
| 778 | } | |
| 779 | ||
| 780 | nick = irc_mask_nick(from); | |
| 781 | if (!gaim_utf8_strcasecmp(nick, gaim_connection_get_display_name(gc))) { | |
| 8186 | 782 | msg = g_strdup_printf(_("You have parted the channel%s%s"), |
|
10551
9a6a1e333609
[gaim-migrate @ 11926]
Daniel Atallah <datallah@pidgin.im>
parents:
10504
diff
changeset
|
783 | (args[1] && *args[1]) ? ": " : "", |
|
9a6a1e333609
[gaim-migrate @ 11926]
Daniel Atallah <datallah@pidgin.im>
parents:
10504
diff
changeset
|
784 | (args[1] && *args[1]) ? args[1] : ""); |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
785 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), args[0], msg, GAIM_MESSAGE_SYSTEM, time(NULL)); |
| 6333 | 786 | g_free(msg); |
| 8256 | 787 | serv_got_chat_left(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(convo))); |
| 6333 | 788 | } else { |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
789 | gaim_conv_chat_remove_user(GAIM_CONV_CHAT(convo), nick, args[1]); |
| 6333 | 790 | } |
| 791 | g_free(nick); | |
| 792 | } | |
| 793 | ||
| 794 | void irc_msg_ping(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 795 | { | |
| 796 | char *buf; | |
| 797 | if (!args || !args[0]) | |
| 798 | return; | |
| 799 | ||
| 800 | buf = irc_format(irc, "v:", "PONG", args[0]); | |
| 801 | irc_send(irc, buf); | |
| 802 | g_free(buf); | |
| 803 | } | |
| 804 | ||
| 805 | void irc_msg_pong(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 806 | { | |
| 807 | GaimConversation *convo; | |
| 808 | GaimConnection *gc; | |
| 809 | char **parts, *msg; | |
| 810 | time_t oldstamp; | |
| 811 | ||
| 812 | if (!args || !args[1]) | |
| 813 | return; | |
| 814 | ||
| 815 | parts = g_strsplit(args[1], " ", 2); | |
| 816 | ||
| 817 | if (!parts[0] || !parts[1]) { | |
| 818 | g_strfreev(parts); | |
| 819 | return; | |
| 820 | } | |
| 821 | ||
| 822 | if (sscanf(parts[1], "%lu", &oldstamp) != 1) { | |
| 823 | msg = g_strdup(_("Error: invalid PONG from server")); | |
| 824 | } else { | |
| 6350 | 825 | msg = g_strdup_printf(_("PING reply -- Lag: %lu seconds"), time(NULL) - oldstamp); |
| 6333 | 826 | } |
| 827 | ||
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10242
diff
changeset
|
828 | convo = gaim_find_conversation_with_account(GAIM_CONV_ANY, parts[0], irc->account); |
| 6333 | 829 | g_strfreev(parts); |
| 830 | if (convo) { | |
| 831 | if (gaim_conversation_get_type (convo) == GAIM_CONV_CHAT) | |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
832 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), "PONG", msg, GAIM_MESSAGE_SYSTEM|GAIM_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 833 | else |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
834 | gaim_conv_im_write(GAIM_CONV_IM(convo), "PONG", msg, GAIM_MESSAGE_SYSTEM|GAIM_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 835 | } else { |
| 836 | gc = gaim_account_get_connection(irc->account); | |
| 837 | if (!gc) { | |
| 838 | g_free(msg); | |
| 839 | return; | |
| 840 | } | |
| 841 | gaim_notify_info(gc, NULL, "PONG", msg); | |
| 842 | } | |
| 843 | g_free(msg); | |
| 844 | } | |
| 845 | ||
| 846 | void irc_msg_privmsg(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 847 | { | |
| 848 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 849 | GaimConversation *convo; | |
| 850 | char *nick = irc_mask_nick(from), *tmp, *msg; | |
| 851 | int notice = 0; | |
| 852 | ||
| 853 | if (!args || !args[0] || !args[1] || !gc) { | |
| 854 | g_free(nick); | |
| 855 | return; | |
| 856 | } | |
| 857 | ||
| 858 | notice = !strcmp(args[0], " notice "); | |
| 859 | tmp = irc_parse_ctcp(irc, nick, args[0], args[1], notice); | |
| 860 | if (!tmp) { | |
| 861 | g_free(nick); | |
| 862 | return; | |
| 863 | } | |
| 8163 | 864 | |
| 865 | msg = gaim_escape_html(tmp); | |
| 6333 | 866 | g_free(tmp); |
| 8163 | 867 | |
| 868 | tmp = irc_mirc2html(msg); | |
| 869 | g_free(msg); | |
| 870 | msg = tmp; | |
| 6333 | 871 | if (notice) { |
| 872 | tmp = g_strdup_printf("(notice) %s", msg); | |
| 873 | g_free(msg); | |
| 874 | msg = tmp; | |
| 875 | } | |
| 876 | ||
| 877 | if (!gaim_utf8_strcasecmp(args[0], gaim_connection_get_display_name(gc))) { | |
|
6982
12f08de92674
[gaim-migrate @ 7538]
Mark Doliner <markdoliner@pidgin.im>
parents:
6753
diff
changeset
|
878 | serv_got_im(gc, nick, msg, 0, time(NULL)); |
| 6333 | 879 | } else if (notice) { |
|
6982
12f08de92674
[gaim-migrate @ 7538]
Mark Doliner <markdoliner@pidgin.im>
parents:
6753
diff
changeset
|
880 | serv_got_im(gc, nick, msg, 0, time(NULL)); |
| 6333 | 881 | } else { |
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10242
diff
changeset
|
882 | convo = gaim_find_conversation_with_account(GAIM_CONV_CHAT, args[0], irc->account); |
| 6333 | 883 | if (convo) |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7108
diff
changeset
|
884 | serv_got_chat_in(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(convo)), nick, 0, msg, time(NULL)); |
| 6333 | 885 | else |
| 886 | gaim_debug(GAIM_DEBUG_ERROR, "irc", "Got a PRIVMSG on %s, which does not exist\n", args[0]); | |
| 887 | } | |
| 888 | g_free(msg); | |
| 889 | g_free(nick); | |
| 890 | } | |
| 891 | ||
| 6714 | 892 | void irc_msg_regonly(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 893 | { | |
| 894 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 895 | char *msg; | |
| 896 | ||
| 897 | if (!args || !args[1] || !args[2] || !gc) | |
| 898 | return; | |
| 899 | ||
| 900 | msg = g_strdup_printf(_("Cannot join %s:"), args[1]); | |
| 901 | gaim_notify_error(gc, _("Cannot join channel"), msg, args[2]); | |
| 902 | g_free(msg); | |
| 903 | } | |
| 904 | ||
| 6333 | 905 | void irc_msg_quit(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 906 | { | |
| 907 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 9238 | 908 | struct irc_buddy *ib; |
| 6333 | 909 | char *data[2]; |
| 910 | ||
| 911 | if (!args || !args[0] || !gc) | |
| 912 | return; | |
| 913 | ||
| 914 | data[0] = irc_mask_nick(from); | |
| 915 | data[1] = args[0]; | |
| 916 | /* XXX this should have an API, I shouldn't grab this directly */ | |
| 917 | g_slist_foreach(gc->buddy_chats, (GFunc)irc_chat_remove_buddy, data); | |
| 9238 | 918 | |
| 919 | if ((ib = g_hash_table_lookup(irc->buddies, data[0])) != NULL) { | |
| 920 | ib->flag = FALSE; | |
| 921 | irc_buddy_status(data[0], ib, irc); | |
| 922 | } | |
| 6333 | 923 | g_free(data[0]); |
| 924 | ||
| 925 | return; | |
| 926 | } | |
| 927 | ||
| 928 | void irc_msg_wallops(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 929 | { | |
| 930 | GaimConnection *gc = gaim_account_get_connection(irc->account); | |
| 8965 | 931 | char *nick, *msg, *wallop; |
| 6333 | 932 | |
| 933 | if (!args || !args[0] || !gc) | |
| 934 | return; | |
| 935 | ||
| 936 | nick = irc_mask_nick(from); | |
| 937 | msg = g_strdup_printf (_("Wallops from %s"), nick); | |
| 938 | g_free(nick); | |
| 8965 | 939 | wallop = g_markup_escape_text(args[0], strlen(args[0])); |
| 940 | gaim_notify_info(gc, NULL, msg, wallop); | |
| 6333 | 941 | g_free(msg); |
| 8965 | 942 | g_free(wallop); |
| 6333 | 943 | } |
| 944 | ||
| 945 | void irc_msg_ignore(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 946 | { | |
| 947 | return; | |
| 948 | } |