Sat, 28 Oct 2006 20:04:03 +0000
[gaim-migrate @ 17606]
Add a "handle" parameter to gaim_proxy_connect(). It seemed like
people thought this was a good idea. You can still cancel
each gaim_proxy_connect() individually, if needed. I passed in
NULL for the handle in most places. It might be better to pass
in the gc in more places, but these changes do no harm, and they
should help some Yahoo! things, and I wanted to get the API change in.
| 6333 | 1 | /** |
| 2 | * @file parse.c | |
| 8351 | 3 | * |
| 6333 | 4 | * gaim |
| 5 | * | |
| 6 | * Copyright (C) 2003, Ethan Blanton <eblanton@cs.purdue.edu> | |
| 8351 | 7 | * |
| 6333 | 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 "accountopt.h" | |
| 26 | #include "conversation.h" | |
| 27 | #include "notify.h" | |
| 28 | #include "debug.h" | |
| 10258 | 29 | #include "util.h" |
| 9130 | 30 | #include "cmds.h" |
| 6333 | 31 | #include "irc.h" |
| 32 | ||
| 33 | #include <stdio.h> | |
| 34 | #include <stdlib.h> | |
| 35 | #include <ctype.h> | |
| 36 | ||
| 37 | static char *irc_send_convert(struct irc_conn *irc, const char *string); | |
| 38 | static char *irc_recv_convert(struct irc_conn *irc, const char *string); | |
| 39 | ||
| 40 | static void irc_parse_error_cb(struct irc_conn *irc, char *input); | |
| 41 | ||
| 42 | static char *irc_mirc_colors[16] = { | |
| 43 | "white", "black", "blue", "dark green", "red", "brown", "purple", | |
| 44 | "orange", "yellow", "green", "teal", "cyan", "light blue", | |
| 45 | "pink", "grey", "light grey" }; | |
| 46 | ||
| 14683 | 47 | extern GaimPlugin *_irc_plugin; |
| 48 | ||
| 6333 | 49 | /*typedef void (*IRCMsgCallback)(struct irc_conn *irc, char *from, char *name, char **args);*/ |
| 50 | static struct _irc_msg { | |
| 51 | char *name; | |
| 52 | char *format; | |
| 53 | void (*cb)(struct irc_conn *irc, const char *name, const char *from, char **args); | |
| 54 | } _irc_msgs[] = { | |
| 55 | { "301", "nn:", irc_msg_away }, /* User is away */ | |
| 56 | { "303", "n:", irc_msg_ison }, /* ISON reply */ | |
| 57 | { "311", "nnvvv:", irc_msg_whois }, /* Whois user */ | |
| 58 | { "312", "nnv:", irc_msg_whois }, /* Whois server */ | |
| 59 | { "313", "nn:", irc_msg_whois }, /* Whois ircop */ | |
| 60 | { "317", "nnvv", irc_msg_whois }, /* Whois idle */ | |
| 61 | { "318", "nt:", irc_msg_endwhois }, /* End of WHOIS */ | |
| 62 | { "319", "nn:", irc_msg_whois }, /* Whois channels */ | |
| 63 | { "320", "nn:", irc_msg_whois }, /* Whois (fn ident) */ | |
| 8114 | 64 | { "321", "*", irc_msg_list }, /* Start of list */ |
| 65 | { "322", "ncv:", irc_msg_list }, /* List. */ | |
| 66 | { "323", ":", irc_msg_list }, /* End of list. */ | |
| 6333 | 67 | { "324", "ncv:", irc_msg_chanmode }, /* Channel modes */ |
| 68 | { "331", "nc:", irc_msg_topic }, /* No channel topic */ | |
| 69 | { "332", "nc:", irc_msg_topic }, /* Channel topic */ | |
| 70 | { "333", "*", irc_msg_ignore }, /* Topic setter stuff */ | |
| 71 | { "353", "nvc:", irc_msg_names }, /* Names list */ | |
| 72 | { "366", "nc:", irc_msg_names }, /* End of names */ | |
| 73 | { "372", "n:", irc_msg_motd }, /* MOTD */ | |
| 74 | { "375", "n:", irc_msg_motd }, /* Start MOTD */ | |
| 75 | { "376", "n:", irc_msg_endmotd }, /* End of MOTD */ | |
| 10564 | 76 | { "391", "nv:", irc_msg_time }, /* Time reply */ |
| 6333 | 77 | { "401", "nt:", irc_msg_nonick }, /* No such nick/chan */ |
| 7877 | 78 | { "403", "nc:", irc_msg_nochan }, /* No such channel */ |
| 6333 | 79 | { "404", "nt:", irc_msg_nosend }, /* Cannot send to chan */ |
| 80 | { "421", "nv:", irc_msg_unknown }, /* Unknown command */ | |
| 6350 | 81 | { "422", "nv:", irc_msg_endmotd }, /* No MOTD available */ |
| 10633 | 82 | { "432", "vn:", irc_msg_badnick }, /* Erroneous nickname */ |
| 6333 | 83 | { "433", "vn:", irc_msg_nickused }, /* Nickname already in use */ |
|
10712
2aded9e9abd4
[gaim-migrate @ 12306]
Richard Laager <rlaager@pidgin.im>
parents:
10659
diff
changeset
|
84 | { "437", "nc:", irc_msg_unavailable }, /* Nick/channel is unavailable */ |
| 6718 | 85 | { "438", "nn:", irc_msg_nochangenick }, /* Nick may not change */ |
| 6333 | 86 | { "442", "nc:", irc_msg_notinchan }, /* Not in channel */ |
| 87 | { "473", "nc:", irc_msg_inviteonly }, /* Tried to join invite-only */ | |
| 88 | { "474", "nc:", irc_msg_banned }, /* Banned from channel */ | |
|
10659
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10633
diff
changeset
|
89 | { "478", "nct:", irc_msg_banfull }, /* Banlist is full */ |
| 6333 | 90 | { "482", "nc:", irc_msg_notop }, /* Need to be op to do that */ |
| 91 | { "501", "n:", irc_msg_badmode }, /* Unknown mode flag */ | |
| 8404 | 92 | { "506", "nc:", irc_msg_nosend }, /* Must identify to send */ |
| 6714 | 93 | { "515", "nc:", irc_msg_regonly }, /* Registration required */ |
| 6333 | 94 | { "invite", "n:", irc_msg_invite }, /* Invited */ |
| 95 | { "join", ":", irc_msg_join }, /* Joined a channel */ | |
| 96 | { "kick", "cn:", irc_msg_kick }, /* KICK */ | |
| 97 | { "mode", "tv:", irc_msg_mode }, /* MODE for channel */ | |
| 98 | { "nick", ":", irc_msg_nick }, /* Nick change */ | |
| 99 | { "notice", "t:", irc_msg_notice }, /* NOTICE recv */ | |
| 100 | { "part", "c:", irc_msg_part }, /* Parted a channel */ | |
| 101 | { "ping", ":", irc_msg_ping }, /* Received PING from server */ | |
| 102 | { "pong", "v:", irc_msg_pong }, /* Received PONG from server */ | |
| 103 | { "privmsg", "t:", irc_msg_privmsg }, /* Received private message */ | |
| 104 | { "topic", "c:", irc_msg_topic }, /* TOPIC command */ | |
| 105 | { "quit", ":", irc_msg_quit }, /* QUIT notice */ | |
| 106 | { "wallops", ":", irc_msg_wallops }, /* WALLOPS command */ | |
| 107 | { NULL, NULL, NULL } | |
| 108 | }; | |
| 109 | ||
| 110 | static struct _irc_user_cmd { | |
| 111 | char *name; | |
| 112 | char *format; | |
| 113 | IRCCmdCallback cb; | |
| 9255 | 114 | char *help; |
| 6333 | 115 | } _irc_cmds[] = { |
| 9255 | 116 | { "action", ":", irc_cmd_ctcp_action, N_("action <action to perform>: Perform an action.") }, |
| 117 | { "away", ":", irc_cmd_away, N_("away [message]: Set an away message, or use no message to return from being away.") }, | |
| 12013 | 118 | { "chanserv", ":", irc_cmd_service, N_("chanserv: Send a command to chanserv") }, |
| 9258 | 119 | { "deop", ":", irc_cmd_op, N_("deop <nick1> [nick2] ...: Remove channel operator status from someone. You must be a channel operator to do this.") }, |
| 120 | { "devoice", ":", irc_cmd_op, N_("devoice <nick1> [nick2] ...: Remove channel voice status from someone, preventing them from speaking if the channel is moderated (+m). You must be a channel operator to do this.") }, | |
| 121 | { "invite", ":", irc_cmd_invite, N_("invite <nick> [room]: Invite someone to join you in the specified channel, or the current channel.") }, | |
| 9266 | 122 | { "j", "cv", irc_cmd_join, N_("j <room1>[,room2][,...] [key1[,key2][,...]]: Enter one or more channels, optionally providing a channel key for each if needed.") }, |
| 123 | { "join", "cv", irc_cmd_join, N_("join <room1>[,room2][,...] [key1[,key2][,...]]: Enter one or more channels, optionally providing a channel key for each if needed.") }, | |
| 9258 | 124 | { "kick", "n:", irc_cmd_kick, N_("kick <nick> [message]: Remove someone from a channel. You must be a channel operator to do this.") }, |
| 125 | { "list", ":", irc_cmd_list, N_("list: Display a list of chat rooms on the network. <i>Warning, some servers may disconnect you upon doing this.</i>") }, | |
| 9255 | 126 | { "me", ":", irc_cmd_ctcp_action, N_("me <action to perform>: Perform an action.") }, |
| 12013 | 127 | { "memoserv", ":", irc_cmd_service, N_("memoserv: Send a command to memoserv") }, |
|
10609
170a5af61448
[gaim-migrate @ 12055]
Richard Laager <rlaager@pidgin.im>
parents:
10564
diff
changeset
|
128 | { "mode", ":", irc_cmd_mode, N_("mode <+|-><A-Za-z> <nick|channel>: Set or unset a channel or user mode.") }, |
| 9258 | 129 | { "msg", "t:", irc_cmd_privmsg, N_("msg <nick> <message>: Send a private message to a user (as opposed to a channel).") }, |
| 130 | { "names", "c", irc_cmd_names, N_("names [channel]: List the users currently in a channel.") }, | |
| 9274 | 131 | { "nick", "n", irc_cmd_nick, N_("nick <new nickname>: Change your nickname.") }, |
| 12013 | 132 | { "nickserv", ":", irc_cmd_service, N_("nickserv: Send a command to nickserv") }, |
| 9258 | 133 | { "op", ":", irc_cmd_op, N_("op <nick1> [nick2] ...: Grant channel operator status to someone. You must be a channel operator to do this.") }, |
| 9255 | 134 | { "operwall", ":", irc_cmd_wallops, N_("operwall <message>: If you don't know what this is, you probably can't use it.") }, |
| 12013 | 135 | { "operserv", ":", irc_cmd_service, N_("operserv: Send a command to operserv") }, |
| 9258 | 136 | { "part", "c:", irc_cmd_part, N_("part [room] [message]: Leave the current channel, or a specified channel, with an optional message.") }, |
| 9255 | 137 | { "ping", "n", irc_cmd_ping, N_("ping [nick]: Asks how much lag a user (or the server if no user specified) has.") }, |
| 9258 | 138 | { "query", "n:", irc_cmd_query, N_("query <nick> <message>: Send a private message to a user (as opposed to a channel).") }, |
| 9255 | 139 | { "quit", ":", irc_cmd_quit, N_("quit [message]: Disconnect from the server, with an optional message.") }, |
| 140 | { "quote", "*", irc_cmd_quote, N_("quote [...]: Send a raw command to the server.") }, | |
| 141 | { "remove", "n:", irc_cmd_remove, N_("remove <nick> [message]: Remove someone from a room. You must be a channel operator to do this.") }, | |
| 10564 | 142 | { "time", "", irc_cmd_time, N_("time: Displays the current local time at the IRC server.") }, |
| 9255 | 143 | { "topic", ":", irc_cmd_topic, N_("topic [new topic]: View or change the channel topic.") }, |
| 144 | { "umode", ":", irc_cmd_mode, N_("umode <+|-><A-Za-z>: Set or unset a user mode.") }, | |
| 13943 | 145 | { "version", ":", irc_cmd_ctcp_version, N_("version [nick]: send CTCP VERSION request to a user") }, |
| 9258 | 146 | { "voice", ":", irc_cmd_op, N_("voice <nick1> [nick2] ...: Grant channel voice status to someone. You must be a channel operator to do this.") }, |
| 9255 | 147 | { "wallops", ":", irc_cmd_wallops, N_("wallops <message>: If you don't know what this is, you probably can't use it.") }, |
|
10609
170a5af61448
[gaim-migrate @ 12055]
Richard Laager <rlaager@pidgin.im>
parents:
10564
diff
changeset
|
148 | { "whois", "tt", irc_cmd_whois, N_("whois [server] <nick>: Get information on a user.") }, |
|
11318
13fa1d5134f3
[gaim-migrate @ 13521]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11136
diff
changeset
|
149 | { NULL, NULL, NULL, NULL } |
| 6333 | 150 | }; |
| 151 | ||
| 9130 | 152 | static GaimCmdRet irc_parse_gaim_cmd(GaimConversation *conv, const gchar *cmd, |
| 9597 | 153 | gchar **args, gchar **error, void *data) |
| 9130 | 154 | { |
| 155 | GaimConnection *gc; | |
| 156 | struct irc_conn *irc; | |
| 157 | struct _irc_user_cmd *cmdent; | |
| 158 | ||
| 159 | gc = gaim_conversation_get_gc(conv); | |
| 160 | if (!gc) | |
| 161 | return GAIM_CMD_RET_FAILED; | |
| 162 | ||
| 163 | irc = gc->proto_data; | |
| 164 | ||
| 165 | if ((cmdent = g_hash_table_lookup(irc->cmds, cmd)) == NULL) | |
| 166 | return GAIM_CMD_RET_FAILED; | |
| 167 | ||
| 168 | (cmdent->cb)(irc, cmd, gaim_conversation_get_name(conv), (const char **)args); | |
| 169 | ||
| 170 | return GAIM_CMD_RET_OK; | |
| 171 | } | |
| 172 | ||
| 173 | static void irc_register_command(struct _irc_user_cmd *c) | |
| 174 | { | |
| 175 | GaimCmdFlag f; | |
| 176 | char args[10]; | |
| 177 | char *format; | |
|
12316
b4e5d5ea15fd
[gaim-migrate @ 14620]
Richard Laager <rlaager@pidgin.im>
parents:
12282
diff
changeset
|
178 | size_t i; |
| 9130 | 179 | |
| 180 | f = GAIM_CMD_FLAG_CHAT | GAIM_CMD_FLAG_IM | GAIM_CMD_FLAG_PRPL_ONLY | |
| 181 | | GAIM_CMD_FLAG_ALLOW_WRONG_ARGS; | |
| 182 | ||
| 183 | format = c->format; | |
| 184 | ||
| 185 | for (i = 0; (i < (sizeof(args) - 1)) && *format; i++, format++) | |
| 186 | switch (*format) { | |
| 187 | case 'v': | |
| 188 | case 'n': | |
| 189 | case 'c': | |
| 190 | case 't': | |
| 191 | args[i] = 'w'; | |
| 192 | break; | |
| 193 | case ':': | |
| 194 | case '*': | |
| 195 | args[i] = 's'; | |
| 196 | break; | |
| 197 | } | |
| 198 | ||
| 199 | args[i] = '\0'; | |
| 200 | ||
| 9597 | 201 | gaim_cmd_register(c->name, args, GAIM_CMD_P_PRPL, f, "prpl-irc", |
| 202 | irc_parse_gaim_cmd, _(c->help), NULL); | |
| 9130 | 203 | } |
| 204 | ||
| 205 | void irc_register_commands(void) | |
| 206 | { | |
| 207 | struct _irc_user_cmd *c; | |
| 208 | ||
| 209 | for (c = _irc_cmds; c && c->name; c++) | |
| 210 | irc_register_command(c); | |
| 211 | } | |
| 212 | ||
| 6333 | 213 | static char *irc_send_convert(struct irc_conn *irc, const char *string) |
| 214 | { | |
| 215 | char *utf8; | |
| 216 | GError *err = NULL; | |
| 10258 | 217 | gchar **encodings; |
| 218 | const gchar *enclist; | |
|
9644
a9a0dedb52c7
[gaim-migrate @ 10492]
Mark Doliner <markdoliner@pidgin.im>
parents:
9597
diff
changeset
|
219 | |
| 10258 | 220 | enclist = gaim_account_get_string(irc->account, "encoding", IRC_DEFAULT_CHARSET); |
| 221 | encodings = g_strsplit(enclist, ",", 2); | |
| 222 | ||
| 10278 | 223 | if (encodings[0] == NULL || !strcasecmp("UTF-8", encodings[0])) { |
| 224 | g_strfreev(encodings); | |
|
9644
a9a0dedb52c7
[gaim-migrate @ 10492]
Mark Doliner <markdoliner@pidgin.im>
parents:
9597
diff
changeset
|
225 | return g_strdup(string); |
| 10278 | 226 | } |
|
9644
a9a0dedb52c7
[gaim-migrate @ 10492]
Mark Doliner <markdoliner@pidgin.im>
parents:
9597
diff
changeset
|
227 | |
| 10258 | 228 | utf8 = g_convert(string, strlen(string), encodings[0], "UTF-8", NULL, NULL, &err); |
| 6333 | 229 | if (err) { |
|
9644
a9a0dedb52c7
[gaim-migrate @ 10492]
Mark Doliner <markdoliner@pidgin.im>
parents:
9597
diff
changeset
|
230 | gaim_debug(GAIM_DEBUG_ERROR, "irc", "Send conversion error: %s\n", err->message); |
| 10258 | 231 | gaim_debug(GAIM_DEBUG_ERROR, "irc", "Sending as UTF-8 instead of %s\n", encodings[0]); |
| 6333 | 232 | utf8 = g_strdup(string); |
| 8954 | 233 | g_error_free(err); |
| 6333 | 234 | } |
| 10258 | 235 | g_strfreev(encodings); |
| 236 | ||
| 6333 | 237 | return utf8; |
| 238 | } | |
| 239 | ||
| 240 | static char *irc_recv_convert(struct irc_conn *irc, const char *string) | |
| 241 | { | |
|
9644
a9a0dedb52c7
[gaim-migrate @ 10492]
Mark Doliner <markdoliner@pidgin.im>
parents:
9597
diff
changeset
|
242 | char *utf8 = NULL; |
| 10258 | 243 | const gchar *charset, *enclist; |
| 244 | gchar **encodings; | |
| 245 | int i; | |
|
9644
a9a0dedb52c7
[gaim-migrate @ 10492]
Mark Doliner <markdoliner@pidgin.im>
parents:
9597
diff
changeset
|
246 | |
| 10258 | 247 | enclist = gaim_account_get_string(irc->account, "encoding", IRC_DEFAULT_CHARSET); |
| 248 | encodings = g_strsplit(enclist, ",", -1); | |
| 249 | ||
|
10504
eae130eefbfe
[gaim-migrate @ 11796]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10278
diff
changeset
|
250 | if (encodings[0] == NULL) { |
|
eae130eefbfe
[gaim-migrate @ 11796]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10278
diff
changeset
|
251 | g_strfreev(encodings); |
| 10258 | 252 | return gaim_utf8_salvage(string); |
|
10504
eae130eefbfe
[gaim-migrate @ 11796]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10278
diff
changeset
|
253 | } |
|
9644
a9a0dedb52c7
[gaim-migrate @ 10492]
Mark Doliner <markdoliner@pidgin.im>
parents:
9597
diff
changeset
|
254 | |
| 10258 | 255 | for (i = 0; encodings[i] != NULL; i++) { |
| 256 | charset = encodings[i]; | |
| 257 | while (*charset == ' ') | |
| 258 | charset++; | |
| 259 | ||
| 260 | if (!strcasecmp("UTF-8", charset)) { | |
|
11726
6f319ff4cea5
[gaim-migrate @ 14017]
Richard Laager <rlaager@pidgin.im>
parents:
11318
diff
changeset
|
261 | if (g_utf8_validate(string, -1, NULL)) |
| 10258 | 262 | utf8 = g_strdup(string); |
| 263 | } else { | |
|
11726
6f319ff4cea5
[gaim-migrate @ 14017]
Richard Laager <rlaager@pidgin.im>
parents:
11318
diff
changeset
|
264 | utf8 = g_convert(string, -1, "UTF-8", charset, NULL, NULL, NULL); |
| 10258 | 265 | } |
| 266 | ||
| 267 | if (utf8) { | |
| 268 | g_strfreev(encodings); | |
| 269 | return utf8; | |
| 270 | } | |
|
9644
a9a0dedb52c7
[gaim-migrate @ 10492]
Mark Doliner <markdoliner@pidgin.im>
parents:
9597
diff
changeset
|
271 | } |
|
10504
eae130eefbfe
[gaim-migrate @ 11796]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10278
diff
changeset
|
272 | g_strfreev(encodings); |
|
9644
a9a0dedb52c7
[gaim-migrate @ 10492]
Mark Doliner <markdoliner@pidgin.im>
parents:
9597
diff
changeset
|
273 | |
| 10258 | 274 | return gaim_utf8_salvage(string); |
| 6333 | 275 | } |
| 276 | ||
| 277 | /* XXX tag closings are not necessarily correctly nested here! If we | |
| 278 | * get a ^O or reach the end of the string and there are open | |
| 279 | * tags, they are closed in a fixed order ... this means, for | |
| 280 | * example, you might see <FONT COLOR="blue">some text <B>with | |
| 281 | * various attributes</FONT></B> (notice that B and FONT overlap | |
| 282 | * and are not cleanly nested). This is imminently fixable but | |
| 283 | * I am not fixing it right now. | |
| 284 | */ | |
| 285 | char *irc_mirc2html(const char *string) | |
| 286 | { | |
| 287 | const char *cur, *end; | |
| 288 | char fg[3] = "\0\0", bg[3] = "\0\0"; | |
| 289 | int fgnum, bgnum; | |
|
12158
02fcec741f07
[gaim-migrate @ 14459]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12013
diff
changeset
|
290 | int font = 0, bold = 0, underline = 0, italic = 0; |
| 6333 | 291 | GString *decoded = g_string_sized_new(strlen(string)); |
| 292 | ||
| 293 | cur = string; | |
| 294 | do { | |
| 6754 | 295 | end = strpbrk(cur, "\002\003\007\017\026\037"); |
| 6333 | 296 | |
| 297 | decoded = g_string_append_len(decoded, cur, end ? end - cur : strlen(cur)); | |
| 298 | cur = end ? end : cur + strlen(cur); | |
| 299 | ||
| 300 | switch (*cur) { | |
| 301 | case '\002': | |
| 302 | cur++; | |
| 303 | if (!bold) { | |
| 304 | decoded = g_string_append(decoded, "<B>"); | |
| 305 | bold = TRUE; | |
| 306 | } else { | |
| 307 | decoded = g_string_append(decoded, "</B>"); | |
| 308 | bold = FALSE; | |
| 309 | } | |
| 310 | break; | |
| 311 | case '\003': | |
| 312 | cur++; | |
| 313 | fg[0] = fg[1] = bg[0] = bg[1] = '\0'; | |
| 314 | if (isdigit(*cur)) | |
| 315 | fg[0] = *cur++; | |
| 316 | if (isdigit(*cur)) | |
| 317 | fg[1] = *cur++; | |
| 318 | if (*cur == ',') { | |
| 319 | cur++; | |
| 320 | if (isdigit(*cur)) | |
| 321 | bg[0] = *cur++; | |
| 322 | if (isdigit(*cur)) | |
| 323 | bg[1] = *cur++; | |
| 324 | } | |
| 325 | if (font) { | |
| 326 | decoded = g_string_append(decoded, "</FONT>"); | |
| 327 | font = FALSE; | |
| 328 | } | |
| 329 | ||
| 330 | if (fg[0]) { | |
| 331 | fgnum = atoi(fg); | |
| 332 | if (fgnum < 0 || fgnum > 15) | |
| 333 | continue; | |
| 334 | font = TRUE; | |
| 335 | g_string_append_printf(decoded, "<FONT COLOR=\"%s\"", irc_mirc_colors[fgnum]); | |
| 336 | if (bg[0]) { | |
| 337 | bgnum = atoi(bg); | |
| 338 | if (bgnum >= 0 && bgnum < 16) | |
| 339 | g_string_append_printf(decoded, " BACK=\"%s\"", irc_mirc_colors[bgnum]); | |
| 340 | } | |
| 341 | decoded = g_string_append_c(decoded, '>'); | |
| 342 | } | |
| 343 | break; | |
|
12158
02fcec741f07
[gaim-migrate @ 14459]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12013
diff
changeset
|
344 | case '\011': |
|
02fcec741f07
[gaim-migrate @ 14459]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12013
diff
changeset
|
345 | cur++; |
|
02fcec741f07
[gaim-migrate @ 14459]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12013
diff
changeset
|
346 | if (!italic) { |
|
02fcec741f07
[gaim-migrate @ 14459]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12013
diff
changeset
|
347 | decoded = g_string_append(decoded, "<I>"); |
|
02fcec741f07
[gaim-migrate @ 14459]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12013
diff
changeset
|
348 | italic = TRUE; |
|
02fcec741f07
[gaim-migrate @ 14459]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12013
diff
changeset
|
349 | } else { |
|
02fcec741f07
[gaim-migrate @ 14459]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12013
diff
changeset
|
350 | decoded = g_string_append(decoded, "</I>"); |
|
02fcec741f07
[gaim-migrate @ 14459]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12013
diff
changeset
|
351 | italic = FALSE; |
|
02fcec741f07
[gaim-migrate @ 14459]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12013
diff
changeset
|
352 | } |
|
02fcec741f07
[gaim-migrate @ 14459]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12013
diff
changeset
|
353 | break; |
| 6754 | 354 | case '\037': |
| 355 | cur++; | |
| 356 | if (!underline) { | |
| 357 | decoded = g_string_append(decoded, "<U>"); | |
| 358 | underline = TRUE; | |
| 359 | } else { | |
| 360 | decoded = g_string_append(decoded, "</U>"); | |
| 12282 | 361 | underline = FALSE; |
| 6754 | 362 | } |
| 363 | break; | |
| 6333 | 364 | case '\007': |
| 365 | case '\026': | |
| 366 | cur++; | |
| 367 | break; | |
| 368 | case '\017': | |
| 369 | cur++; | |
| 370 | /* fallthrough */ | |
| 371 | case '\000': | |
| 372 | if (bold) | |
| 6754 | 373 | decoded = g_string_append(decoded, "</B>"); |
|
12158
02fcec741f07
[gaim-migrate @ 14459]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12013
diff
changeset
|
374 | if (italic) |
|
02fcec741f07
[gaim-migrate @ 14459]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12013
diff
changeset
|
375 | decoded = g_string_append(decoded, "</I>"); |
| 6754 | 376 | if (underline) |
| 377 | decoded = g_string_append(decoded, "</U>"); | |
| 6333 | 378 | if (font) |
| 379 | decoded = g_string_append(decoded, "</FONT>"); | |
| 380 | break; | |
| 381 | default: | |
| 382 | gaim_debug(GAIM_DEBUG_ERROR, "irc", "Unexpected mIRC formatting character %d\n", *cur); | |
| 383 | } | |
| 384 | } while (*cur); | |
| 385 | ||
| 386 | return g_string_free(decoded, FALSE); | |
| 387 | } | |
| 388 | ||
| 8529 | 389 | char *irc_mirc2txt (const char *string) |
| 390 | { | |
| 391 | char *result = g_strdup (string); | |
| 392 | int i, j; | |
| 393 | ||
| 394 | for (i = 0, j = 0; result[i]; i++) { | |
| 395 | switch (result[i]) { | |
| 396 | case '\002': | |
| 397 | case '\003': | |
| 398 | case '\007': | |
| 399 | case '\017': | |
| 400 | case '\026': | |
| 401 | case '\037': | |
| 402 | continue; | |
| 403 | default: | |
| 404 | result[j++] = result[i]; | |
| 405 | } | |
| 406 | } | |
| 11136 | 407 | result[j] = '\0'; |
| 8529 | 408 | return result; |
| 409 | } | |
| 410 | ||
| 10208 | 411 | gboolean irc_ischannel(const char *string) |
| 412 | { | |
| 413 | return (string[0] == '#' || string[0] == '&'); | |
| 414 | } | |
| 415 | ||
| 6333 | 416 | char *irc_parse_ctcp(struct irc_conn *irc, const char *from, const char *to, const char *msg, int notice) |
| 417 | { | |
| 418 | GaimConnection *gc; | |
| 419 | const char *cur = msg + 1; | |
| 420 | char *buf, *ctcp; | |
| 421 | time_t timestamp; | |
| 422 | ||
| 6754 | 423 | /* Note that this is NOT correct w.r.t. multiple CTCPs in one |
| 424 | * message and low-level quoting ... but if you want that crap, | |
| 425 | * use a real IRC client. */ | |
| 426 | ||
| 6333 | 427 | if (msg[0] != '\001' || msg[strlen(msg) - 1] != '\001') |
| 428 | return g_strdup(msg); | |
| 429 | ||
| 430 | if (!strncmp(cur, "ACTION ", 7)) { | |
| 431 | cur += 7; | |
| 432 | buf = g_strdup_printf("/me %s", cur); | |
| 433 | buf[strlen(buf) - 1] = '\0'; | |
| 434 | return buf; | |
| 435 | } else if (!strncmp(cur, "PING ", 5)) { | |
| 436 | if (notice) { /* reply */ | |
|
11972
23ac6d9de1fa
[gaim-migrate @ 14265]
Mark Doliner <markdoliner@pidgin.im>
parents:
11726
diff
changeset
|
437 | /* TODO: Should this read in the timestamp as a double? */ |
| 6333 | 438 | sscanf(cur, "PING %lu", ×tamp); |
| 439 | gc = gaim_account_get_connection(irc->account); | |
| 440 | if (!gc) | |
| 441 | return NULL; | |
| 6350 | 442 | buf = g_strdup_printf(_("Reply time from %s: %lu seconds"), from, time(NULL) - timestamp); |
| 6333 | 443 | gaim_notify_info(gc, _("PONG"), _("CTCP PING reply"), buf); |
| 444 | g_free(buf); | |
| 445 | return NULL; | |
| 446 | } else { | |
| 447 | buf = irc_format(irc, "vt:", "NOTICE", from, msg); | |
| 448 | irc_send(irc, buf); | |
| 449 | g_free(buf); | |
| 450 | } | |
| 451 | } else if (!strncmp(cur, "VERSION", 7) && !notice) { | |
| 452 | buf = irc_format(irc, "vt:", "NOTICE", from, "\001VERSION Gaim IRC\001"); | |
| 453 | irc_send(irc, buf); | |
| 454 | g_free(buf); | |
| 8351 | 455 | } else if (!strncmp(cur, "DCC SEND ", 9)) { |
| 456 | irc_dccsend_recv(irc, from, msg + 10); | |
| 457 | return NULL; | |
| 6333 | 458 | } |
| 459 | ||
| 460 | ctcp = g_strdup(msg + 1); | |
| 461 | ctcp[strlen(ctcp) - 1] = '\0'; | |
| 462 | buf = g_strdup_printf("Received CTCP '%s' (to %s) from %s", ctcp, to, from); | |
| 463 | g_free(ctcp); | |
| 464 | return buf; | |
| 465 | } | |
| 466 | ||
| 467 | void irc_msg_table_build(struct irc_conn *irc) | |
| 468 | { | |
| 469 | int i; | |
| 470 | ||
| 471 | if (!irc || !irc->msgs) { | |
| 472 | gaim_debug(GAIM_DEBUG_ERROR, "irc", "Attempt to build a message table on a bogus structure\n"); | |
| 473 | return; | |
| 474 | } | |
| 475 | ||
| 476 | for (i = 0; _irc_msgs[i].name; i++) { | |
| 477 | g_hash_table_insert(irc->msgs, (gpointer)_irc_msgs[i].name, (gpointer)&_irc_msgs[i]); | |
| 478 | } | |
| 479 | } | |
| 480 | ||
| 481 | void irc_cmd_table_build(struct irc_conn *irc) | |
| 482 | { | |
| 483 | int i; | |
| 484 | ||
| 485 | if (!irc || !irc->cmds) { | |
| 486 | gaim_debug(GAIM_DEBUG_ERROR, "irc", "Attempt to build a command table on a bogus structure\n"); | |
| 487 | return; | |
| 488 | } | |
| 489 | ||
| 490 | for (i = 0; _irc_cmds[i].name ; i++) { | |
| 491 | g_hash_table_insert(irc->cmds, (gpointer)_irc_cmds[i].name, (gpointer)&_irc_cmds[i]); | |
| 492 | } | |
| 493 | } | |
| 494 | ||
| 495 | char *irc_format(struct irc_conn *irc, const char *format, ...) | |
| 496 | { | |
| 497 | GString *string = g_string_new(""); | |
| 498 | char *tok, *tmp; | |
| 499 | const char *cur; | |
| 500 | va_list ap; | |
| 501 | ||
| 502 | va_start(ap, format); | |
| 503 | for (cur = format; *cur; cur++) { | |
| 504 | if (cur != format) | |
| 505 | g_string_append_c(string, ' '); | |
| 506 | ||
| 507 | tok = va_arg(ap, char *); | |
| 508 | switch (*cur) { | |
| 509 | case 'v': | |
| 510 | g_string_append(string, tok); | |
| 511 | break; | |
| 512 | case ':': | |
| 513 | g_string_append_c(string, ':'); | |
| 514 | /* no break! */ | |
| 515 | case 't': | |
| 516 | case 'n': | |
| 517 | case 'c': | |
| 518 | tmp = irc_send_convert(irc, tok); | |
| 519 | g_string_append(string, tmp); | |
| 520 | g_free(tmp); | |
| 521 | break; | |
| 522 | default: | |
| 523 | gaim_debug(GAIM_DEBUG_ERROR, "irc", "Invalid format character '%c'\n", *cur); | |
| 524 | break; | |
| 525 | } | |
| 526 | } | |
| 527 | va_end(ap); | |
| 528 | g_string_append(string, "\r\n"); | |
| 529 | return (g_string_free(string, FALSE)); | |
| 530 | } | |
| 531 | ||
| 532 | void irc_parse_msg(struct irc_conn *irc, char *input) | |
| 533 | { | |
| 534 | struct _irc_msg *msgent; | |
| 535 | char *cur, *end, *tmp, *from, *msgname, *fmt, **args, *msg; | |
| 7631 | 536 | guint i; |
| 6333 | 537 | |
|
14544
847944da3ca0
[gaim-migrate @ 17201]
Daniel Atallah <datallah@pidgin.im>
parents:
14254
diff
changeset
|
538 | irc->recv_time = time(NULL); |
| 14683 | 539 | gaim_signal_emit(_irc_plugin, "irc-receiving-text", gaim_account_get_connection(irc->account), &input); |
| 540 | ||
| 6333 | 541 | if (!strncmp(input, "PING ", 5)) { |
| 542 | msg = irc_format(irc, "vv", "PONG", input + 5); | |
| 543 | irc_send(irc, msg); | |
| 544 | g_free(msg); | |
| 545 | return; | |
| 546 | } else if (!strncmp(input, "ERROR ", 6)) { | |
| 10154 | 547 | if (g_utf8_validate(input, -1, NULL)) { |
| 548 | char *tmp = g_strdup_printf("%s\n%s", _("Disconnected."), input); | |
| 549 | gaim_connection_error(gaim_account_get_connection(irc->account), tmp); | |
| 550 | g_free(tmp); | |
| 551 | } else | |
| 552 | gaim_connection_error(gaim_account_get_connection(irc->account), _("Disconnected.")); | |
| 6333 | 553 | return; |
| 554 | } | |
| 555 | ||
| 556 | if (input[0] != ':' || (cur = strchr(input, ' ')) == NULL) { | |
| 557 | irc_parse_error_cb(irc, input); | |
| 558 | return; | |
| 559 | } | |
| 560 | ||
| 561 | from = g_strndup(&input[1], cur - &input[1]); | |
| 562 | cur++; | |
| 563 | end = strchr(cur, ' '); | |
| 564 | if (!end) | |
| 565 | end = cur + strlen(cur); | |
| 566 | ||
| 567 | tmp = g_strndup(cur, end - cur); | |
| 568 | msgname = g_ascii_strdown(tmp, -1); | |
| 569 | g_free(tmp); | |
| 570 | ||
| 571 | if ((msgent = g_hash_table_lookup(irc->msgs, msgname)) == NULL) { | |
| 572 | irc_msg_default(irc, "", from, &input); | |
| 573 | g_free(msgname); | |
| 574 | g_free(from); | |
| 575 | return; | |
| 576 | } | |
| 577 | g_free(msgname); | |
| 578 | ||
| 579 | args = g_new0(char *, strlen(msgent->format)); | |
| 580 | for (cur = end, fmt = msgent->format, i = 0; fmt[i] && *cur++; i++) { | |
| 581 | switch (fmt[i]) { | |
| 582 | case 'v': | |
| 583 | if (!(end = strchr(cur, ' '))) end = cur + strlen(cur); | |
| 584 | args[i] = g_strndup(cur, end - cur); | |
| 585 | cur += end - cur; | |
| 586 | break; | |
| 587 | case 't': | |
| 588 | case 'n': | |
| 589 | case 'c': | |
| 590 | if (!(end = strchr(cur, ' '))) end = cur + strlen(cur); | |
| 591 | tmp = g_strndup(cur, end - cur); | |
| 592 | args[i] = irc_recv_convert(irc, tmp); | |
| 593 | g_free(tmp); | |
| 594 | cur += end - cur; | |
| 595 | break; | |
| 596 | case ':': | |
| 597 | if (*cur == ':') cur++; | |
| 598 | args[i] = irc_recv_convert(irc, cur); | |
| 599 | cur = cur + strlen(cur); | |
| 600 | break; | |
| 601 | case '*': | |
| 602 | args[i] = g_strdup(cur); | |
| 603 | cur = cur + strlen(cur); | |
| 604 | break; | |
| 605 | default: | |
| 606 | gaim_debug(GAIM_DEBUG_ERROR, "irc", "invalid message format character '%c'\n", fmt[i]); | |
| 607 | break; | |
| 608 | } | |
| 609 | } | |
| 6970 | 610 | tmp = irc_recv_convert(irc, from); |
| 611 | (msgent->cb)(irc, msgent->name, tmp, args); | |
| 612 | g_free(tmp); | |
| 6333 | 613 | for (i = 0; i < strlen(msgent->format); i++) { |
| 614 | g_free(args[i]); | |
| 615 | } | |
| 616 | g_free(args); | |
| 617 | g_free(from); | |
| 618 | } | |
| 619 | ||
| 620 | static void irc_parse_error_cb(struct irc_conn *irc, char *input) | |
| 621 | { | |
| 622 | gaim_debug(GAIM_DEBUG_WARNING, "irc", "Unrecognized string: %s\n", input); | |
| 623 | } |