Mercurial > pidgin
annotate src/protocols/irc/irc.c @ 9294:01dee77a079d
[gaim-migrate @ 10097]
Gary Kramlich kickassified our Napster icon!
Now when you sign on to Napster you'll see an EVEN BETTER icon!
Improvements:
-Beveled edges
-The space between the top of the guy's head and the head phones
is transparent and not white, like the guy's face
He's our powers, magnified
And he's fighting on, the planet's side
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Tue, 15 Jun 2004 11:59:53 +0000 |
| parents | 7a8aa87164ae |
| children | b3bda982996b |
| rev | line source |
|---|---|
| 6333 | 1 /** |
| 2 * @file irc.c | |
|
6459
b52870734c21
[gaim-migrate @ 6968]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
3 * |
| 6333 | 4 * gaim |
| 2086 | 5 * |
| 8351 | 6 * Copyright (C) 2003, Robbert Haarman <gaim@inglorion.net> |
| 6333 | 7 * Copyright (C) 2003, Ethan Blanton <eblanton@cs.purdue.edu> |
| 8 * Copyright (C) 2000-2003, Rob Flynn <rob@tgflinux.com> | |
| 2086 | 9 * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> |
|
6459
b52870734c21
[gaim-migrate @ 6968]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
10 * |
| 2086 | 11 * This program is free software; you can redistribute it and/or modify |
| 12 * it under the terms of the GNU General Public License as published by | |
| 13 * the Free Software Foundation; either version 2 of the License, or | |
| 14 * (at your option) any later version. | |
| 15 * | |
| 16 * This program is distributed in the hope that it will be useful, | |
| 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 * GNU General Public License for more details. | |
| 20 * | |
| 21 * You should have received a copy of the GNU General Public License | |
| 22 * along with this program; if not, write to the Free Software | |
| 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 24 */ | |
| 6333 | 25 |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5791
diff
changeset
|
26 #include "internal.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5791
diff
changeset
|
27 |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5791
diff
changeset
|
28 #include "accountopt.h" |
| 9030 | 29 #include "blist.h" |
| 6333 | 30 #include "conversation.h" |
| 9030 | 31 #include "debug.h" |
| 32 #include "multi.h" | |
| 7148 | 33 #include "notify.h" |
| 9030 | 34 #include "prpl.h" |
| 35 #include "plugin.h" | |
| 6350 | 36 #include "util.h" |
| 9030 | 37 |
| 6333 | 38 #include "irc.h" |
| 4422 | 39 |
| 6333 | 40 static void irc_buddy_append(char *name, struct irc_buddy *ib, GString *string); |
| 2086 | 41 |
| 6695 | 42 static const char *irc_blist_icon(GaimAccount *a, GaimBuddy *b); |
| 43 static void irc_blist_emblems(GaimBuddy *b, char **se, char **sw, char **nw, char **ne); | |
| 6333 | 44 static GList *irc_away_states(GaimConnection *gc); |
| 9015 | 45 static GList *irc_actions(GaimPlugin *plugin, gpointer context); |
| 6333 | 46 /* static GList *irc_chat_info(GaimConnection *gc); */ |
| 47 static void irc_login(GaimAccount *account); | |
| 48 static void irc_login_cb(gpointer data, gint source, GaimInputCondition cond); | |
| 49 static void irc_close(GaimConnection *gc); | |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
50 static int irc_im_send(GaimConnection *gc, const char *who, const char *what, GaimConvImFlags flags); |
| 6333 | 51 static int irc_chat_send(GaimConnection *gc, int id, const char *what); |
| 52 static void irc_chat_join (GaimConnection *gc, GHashTable *data); | |
| 53 static void irc_input_cb(gpointer data, gint source, GaimInputCondition cond); | |
| 3751 | 54 |
| 7711 | 55 static guint irc_nick_hash(const char *nick); |
| 56 static gboolean irc_nick_equal(const char *nick1, const char *nick2); | |
| 57 static void irc_buddy_free(struct irc_buddy *ib); | |
| 58 | |
| 59 static GaimPlugin *_irc_plugin = NULL; | |
| 60 | |
| 61 static const char *status_chars = "@+%&"; | |
| 62 | |
| 9015 | 63 static void irc_view_motd(GaimPluginAction *action) |
| 7148 | 64 { |
| 9015 | 65 GaimConnection *gc = (GaimConnection *) action->context; |
| 7148 | 66 struct irc_conn *irc; |
| 67 char *title; | |
| 68 | |
| 69 if (gc == NULL || gc->proto_data == NULL) { | |
| 70 gaim_debug(GAIM_DEBUG_ERROR, "irc", "got MOTD request for NULL gc\n"); | |
| 71 return; | |
| 72 } | |
| 73 irc = gc->proto_data; | |
| 74 if (irc->motd == NULL) { | |
| 75 gaim_notify_error(gc, _("Error displaying MOTD"), _("No MOTD available"), | |
| 76 _("There is no MOTD associated with this connection.")); | |
| 77 return; | |
| 78 } | |
| 79 title = g_strdup_printf(_("MOTD for %s"), irc->server); | |
| 80 gaim_notify_formatted(gc, title, title, NULL, irc->motd->str, NULL, NULL); | |
| 81 } | |
| 82 | |
| 6333 | 83 int irc_send(struct irc_conn *irc, const char *buf) |
| 3751 | 84 { |
| 6333 | 85 if (irc->fd < 0) |
| 86 return -1; | |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2171
diff
changeset
|
87 |
| 6333 | 88 /* gaim_debug(GAIM_DEBUG_MISC, "irc", "sent: %s", buf); */ |
| 89 return write(irc->fd, buf, strlen(buf)); | |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2171
diff
changeset
|
90 } |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2171
diff
changeset
|
91 |
| 6333 | 92 /* XXX I don't like messing directly with these buddies */ |
| 93 gboolean irc_blist_timeout(struct irc_conn *irc) | |
| 2086 | 94 { |
| 6333 | 95 GString *string = g_string_sized_new(512); |
| 96 char *list, *buf; | |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
97 |
| 6333 | 98 g_hash_table_foreach(irc->buddies, (GHFunc)irc_buddy_append, (gpointer)string); |
|
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4349
diff
changeset
|
99 |
| 6333 | 100 list = g_string_free(string, FALSE); |
| 101 if (!list || !strlen(list)) { | |
| 102 g_free(list); | |
|
2137
18722ae5b882
[gaim-migrate @ 2147]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2131
diff
changeset
|
103 return TRUE; |
| 2086 | 104 } |
|
4416
8e62cee6d738
[gaim-migrate @ 4689]
Christian Hammond <chipx86@chipx86.com>
parents:
4373
diff
changeset
|
105 |
| 8038 | 106 buf = irc_format(irc, "vn", "ISON", list); |
| 6333 | 107 g_free(list); |
| 108 irc_send(irc, buf); | |
| 109 g_free(buf); | |
|
4416
8e62cee6d738
[gaim-migrate @ 4689]
Christian Hammond <chipx86@chipx86.com>
parents:
4373
diff
changeset
|
110 |
|
2131
acc11216ec5d
[gaim-migrate @ 2141]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2123
diff
changeset
|
111 return TRUE; |
| 2086 | 112 } |
| 113 | |
| 6333 | 114 static void irc_buddy_append(char *name, struct irc_buddy *ib, GString *string) |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
115 { |
| 6333 | 116 ib->flag = FALSE; |
| 117 g_string_append_printf(string, "%s ", name); | |
| 3511 | 118 } |
| 119 | |
| 6695 | 120 static const char *irc_blist_icon(GaimAccount *a, GaimBuddy *b) |
| 3029 | 121 { |
| 6333 | 122 return "irc"; |
|
2339
9bda60d2d2e6
[gaim-migrate @ 2352]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2331
diff
changeset
|
123 } |
|
9bda60d2d2e6
[gaim-migrate @ 2352]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2331
diff
changeset
|
124 |
| 6695 | 125 static void irc_blist_emblems(GaimBuddy *b, char **se, char **sw, char **nw, char **ne) |
| 3751 | 126 { |
| 6333 | 127 if (b->present == GAIM_BUDDY_OFFLINE) |
| 128 *se = "offline"; | |
| 2086 | 129 } |
| 130 | |
| 6333 | 131 static GList *irc_away_states(GaimConnection *gc) |
| 2086 | 132 { |
| 6333 | 133 return g_list_append(NULL, (gpointer)GAIM_AWAY_CUSTOM); |
| 3452 | 134 } |
| 135 | |
| 9015 | 136 static GList *irc_actions(GaimPlugin *plugin, gpointer context) |
| 7148 | 137 { |
| 138 GList *list = NULL; | |
| 9015 | 139 GaimPluginAction *act = NULL; |
| 7148 | 140 |
| 9015 | 141 act = gaim_plugin_action_new(_("View MOTD"), irc_view_motd); |
| 142 list = g_list_append(list, act); | |
| 7148 | 143 |
| 144 return list; | |
| 145 } | |
| 146 | |
| 9030 | 147 |
| 148 static void irc_dccsend_send_ask_menu(GaimBlistNode *node, gpointer data) | |
| 149 { | |
| 150 GaimBuddy *buddy; | |
| 151 GaimConnection *gc; | |
| 152 | |
| 153 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); | |
| 154 | |
| 155 buddy = (GaimBuddy *) node; | |
| 156 gc =gaim_account_get_connection(buddy->account); | |
| 157 | |
| 158 irc_dccsend_send_ask(gc, buddy->name); | |
| 159 } | |
| 160 | |
| 161 | |
| 162 static GList *irc_blist_node_menu(GaimBlistNode *node) | |
| 2086 | 163 { |
| 8351 | 164 GList *m = NULL; |
| 9030 | 165 GaimBlistNodeAction *act; |
| 166 | |
| 167 if(GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
| 168 act = gaim_blist_node_action_new(_("Send File"), | |
| 169 irc_dccsend_send_ask_menu, NULL); | |
| 170 m = g_list_append(m, act); | |
| 171 } | |
| 8351 | 172 |
| 173 return m; | |
| 2086 | 174 } |
| 175 | |
| 6333 | 176 static GList *irc_chat_join_info(GaimConnection *gc) |
| 2086 | 177 { |
|
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
178 GList *m = NULL; |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
179 struct proto_chat_entry *pce; |
|
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
180 |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
181 pce = g_new0(struct proto_chat_entry, 1); |
| 7841 | 182 pce->label = _("_Channel:"); |
| 5234 | 183 pce->identifier = "channel"; |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
184 m = g_list_append(m, pce); |
|
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
185 |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
186 pce = g_new0(struct proto_chat_entry, 1); |
| 7841 | 187 pce->label = _("_Password:"); |
| 5234 | 188 pce->identifier = "password"; |
| 6499 | 189 pce->secret = TRUE; |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
190 m = g_list_append(m, pce); |
|
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
191 |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
192 return m; |
| 2086 | 193 } |
| 194 | |
| 6333 | 195 static void irc_login(GaimAccount *account) |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
196 { |
| 6333 | 197 GaimConnection *gc; |
| 198 struct irc_conn *irc; | |
| 199 char *buf, **userparts; | |
| 200 const char *username = gaim_account_get_username(account); | |
| 201 int err; | |
| 202 | |
| 203 gc = gaim_account_get_connection(account); | |
| 8677 | 204 gc->flags |= GAIM_CONNECTION_NO_NEWLINES; |
| 6333 | 205 |
| 6752 | 206 if (strpbrk(username, " \t\v\r\n") != NULL) { |
| 207 gaim_connection_error(gc, _("IRC nicks may not contain whitespace")); | |
| 208 return; | |
| 209 } | |
| 210 | |
| 6333 | 211 gc->proto_data = irc = g_new0(struct irc_conn, 1); |
| 212 irc->account = account; | |
| 213 | |
| 214 userparts = g_strsplit(username, "@", 2); | |
| 215 gaim_connection_set_display_name(gc, userparts[0]); | |
| 216 irc->server = g_strdup(userparts[1]); | |
| 217 g_strfreev(userparts); | |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
218 |
| 6333 | 219 irc->buddies = g_hash_table_new_full((GHashFunc)irc_nick_hash, (GEqualFunc)irc_nick_equal, |
| 220 NULL, (GDestroyNotify)irc_buddy_free); | |
| 221 irc->cmds = g_hash_table_new(g_str_hash, g_str_equal); | |
| 222 irc_cmd_table_build(irc); | |
| 223 irc->msgs = g_hash_table_new(g_str_hash, g_str_equal); | |
| 224 irc_msg_table_build(irc); | |
| 225 | |
| 226 buf = g_strdup_printf(_("Signon: %s"), username); | |
| 227 gaim_connection_update_progress(gc, buf, 1, 2); | |
| 228 g_free(buf); | |
| 229 | |
| 230 err = gaim_proxy_connect(account, irc->server, | |
| 231 gaim_account_get_int(account, "port", IRC_DEFAULT_PORT), | |
| 232 irc_login_cb, gc); | |
| 233 | |
| 234 if (err || !account->gc) { | |
| 235 gaim_connection_error(gc, _("Couldn't create socket")); | |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
236 return; |
| 6333 | 237 } |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
238 } |
|
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
239 |
| 6333 | 240 static void irc_login_cb(gpointer data, gint source, GaimInputCondition cond) |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
241 { |
| 6333 | 242 GaimConnection *gc = data; |
| 243 struct irc_conn *irc = gc->proto_data; | |
| 244 char hostname[256]; | |
| 245 char *buf; | |
| 7323 | 246 const char *username; |
| 6333 | 247 GList *connections = gaim_connections_get_all(); |
| 248 | |
| 8778 | 249 if (source < 0) { |
| 250 gaim_connection_error(gc, _("Couldn't connect to host")); | |
| 6333 | 251 return; |
| 8778 | 252 } |
| 6333 | 253 |
| 254 if (!g_list_find(connections, gc)) { | |
| 255 close(source); | |
| 256 return; | |
| 257 } | |
| 258 | |
| 259 irc->fd = source; | |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
260 |
| 6333 | 261 if (gc->account->password && *gc->account->password) { |
| 262 buf = irc_format(irc, "vv", "PASS", gc->account->password); | |
| 263 if (irc_send(irc, buf) < 0) { | |
| 264 gaim_connection_error(gc, "Error sending password"); | |
| 265 return; | |
| 266 } | |
| 267 g_free(buf); | |
| 268 } | |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
269 |
| 6333 | 270 gethostname(hostname, sizeof(hostname)); |
| 271 hostname[sizeof(hostname) - 1] = '\0'; | |
| 7323 | 272 username = gaim_account_get_string(irc->account, "username", ""); |
| 273 buf = irc_format(irc, "vvvv:", "USER", strlen(username) ? username : g_get_user_name(), hostname, irc->server, | |
| 6333 | 274 gc->account->alias && *gc->account->alias ? gc->account->alias : IRC_DEFAULT_ALIAS); |
| 275 if (irc_send(irc, buf) < 0) { | |
| 276 gaim_connection_error(gc, "Error registering with server"); | |
| 277 return; | |
| 278 } | |
| 279 g_free(buf); | |
| 280 buf = irc_format(irc, "vn", "NICK", gaim_connection_get_display_name(gc)); | |
| 281 if (irc_send(irc, buf) < 0) { | |
| 282 gaim_connection_error(gc, "Error sending nickname"); | |
| 283 return; | |
| 284 } | |
| 285 g_free(buf); | |
| 286 | |
| 287 gc->inpa = gaim_input_add(irc->fd, GAIM_INPUT_READ, irc_input_cb, gc); | |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
288 } |
|
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
289 |
| 6333 | 290 static void irc_close(GaimConnection *gc) |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
291 { |
| 6333 | 292 struct irc_conn *irc = gc->proto_data; |
| 293 | |
| 6752 | 294 if (irc == NULL) |
| 295 return; | |
| 296 | |
| 6333 | 297 irc_cmd_quit(irc, "quit", NULL, NULL); |
| 298 | |
| 299 if (gc->inpa) | |
|
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8170
diff
changeset
|
300 gaim_timeout_remove(gc->inpa); |
| 6333 | 301 |
| 302 g_free(irc->inbuf); | |
| 303 close(irc->fd); | |
| 304 if (irc->timer) | |
|
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8170
diff
changeset
|
305 gaim_timeout_remove(irc->timer); |
| 6333 | 306 g_hash_table_destroy(irc->cmds); |
| 307 g_hash_table_destroy(irc->msgs); | |
| 308 if (irc->motd) | |
| 309 g_string_free(irc->motd, TRUE); | |
| 310 g_free(irc->server); | |
| 311 g_free(irc); | |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
312 } |
|
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
313 |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
314 static int irc_im_send(GaimConnection *gc, const char *who, const char *what, GaimConvImFlags flags) |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
315 { |
| 6333 | 316 struct irc_conn *irc = gc->proto_data; |
| 317 const char *args[2]; | |
| 318 | |
| 7711 | 319 if (strchr(status_chars, *who) != NULL) |
| 6333 | 320 args[0] = who + 1; |
| 321 else | |
| 322 args[0] = who; | |
| 323 args[1] = what; | |
| 9130 | 324 #if 0 |
| 6333 | 325 if (*what == '/') { |
| 326 return irc_parse_cmd(irc, who, what + 1); | |
| 327 } | |
| 9130 | 328 #endif |
| 6333 | 329 irc_cmd_privmsg(irc, "msg", NULL, args); |
| 330 return 1; | |
|
2289
38e156136896
[gaim-migrate @ 2299]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
331 } |
| 2086 | 332 |
| 6333 | 333 static void irc_get_info(GaimConnection *gc, const char *who) |
| 2086 | 334 { |
| 6333 | 335 struct irc_conn *irc = gc->proto_data; |
| 336 const char *args[1]; | |
| 337 args[0] = who; | |
| 338 irc_cmd_whois(irc, "whois", NULL, args); | |
| 339 } | |
| 340 | |
| 341 static void irc_set_away(GaimConnection *gc, const char *state, const char *msg) | |
| 342 { | |
| 343 struct irc_conn *irc = gc->proto_data; | |
| 344 const char *args[1]; | |
| 2086 | 345 |
|
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4067
diff
changeset
|
346 if (gc->away) { |
|
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4067
diff
changeset
|
347 g_free(gc->away); |
|
2394
579f8d4347ad
[gaim-migrate @ 2407]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2393
diff
changeset
|
348 gc->away = NULL; |
|
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4067
diff
changeset
|
349 } |
|
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2382
diff
changeset
|
350 |
| 6333 | 351 if (msg) |
|
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4067
diff
changeset
|
352 gc->away = g_strdup(msg); |
| 2086 | 353 |
| 6333 | 354 args[0] = msg; |
| 355 irc_cmd_away(irc, "away", NULL, args); | |
| 4916 | 356 } |
| 357 | |
| 9285 | 358 static void irc_add_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group) |
| 3029 | 359 { |
| 6333 | 360 struct irc_conn *irc = (struct irc_conn *)gc->proto_data; |
| 361 struct irc_buddy *ib = g_new0(struct irc_buddy, 1); | |
| 9285 | 362 ib->name = g_strdup(buddy->name); |
| 6333 | 363 g_hash_table_insert(irc->buddies, ib->name, ib); |
| 9238 | 364 |
| 365 irc_blist_timeout(irc); | |
| 3029 | 366 } |
| 3622 | 367 |
| 9285 | 368 static void irc_remove_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group) |
| 6333 | 369 { |
| 370 struct irc_conn *irc = (struct irc_conn *)gc->proto_data; | |
| 9285 | 371 g_hash_table_remove(irc->buddies, buddy->name); |
| 3616 | 372 } |
|
4514
7521e29658bc
[gaim-migrate @ 4792]
Christian Hammond <chipx86@chipx86.com>
parents:
4509
diff
changeset
|
373 |
| 6333 | 374 static void irc_input_cb(gpointer data, gint source, GaimInputCondition cond) |
| 375 { | |
| 376 GaimConnection *gc = data; | |
| 377 struct irc_conn *irc = gc->proto_data; | |
| 378 char *cur, *end; | |
| 379 int len; | |
| 380 | |
| 381 if (irc->inbuflen < irc->inbufused + IRC_INITIAL_BUFSIZE) { | |
| 382 irc->inbuflen += IRC_INITIAL_BUFSIZE; | |
| 383 irc->inbuf = g_realloc(irc->inbuf, irc->inbuflen); | |
| 3708 | 384 } |
| 3616 | 385 |
| 6333 | 386 if ((len = read(irc->fd, irc->inbuf + irc->inbufused, IRC_INITIAL_BUFSIZE - 1)) < 0) { |
| 7653 | 387 gaim_connection_error(gc, _("Read error")); |
| 6333 | 388 return; |
| 6369 | 389 } else if (len == 0) { |
| 390 /* Remote closed the connection, probably */ | |
| 391 return; | |
| 6333 | 392 } |
| 6369 | 393 |
| 6333 | 394 irc->inbufused += len; |
| 395 irc->inbuf[irc->inbufused] = '\0'; | |
| 3616 | 396 |
| 8156 | 397 cur = irc->inbuf; |
| 398 while (cur < irc->inbuf + irc->inbufused && | |
| 399 ((end = strstr(cur, "\r\n")) || (end = strstr(cur, "\n")))) { | |
| 400 int step = (*end == '\r' ? 2 : 1); | |
| 6333 | 401 *end = '\0'; |
| 402 irc_parse_msg(irc, cur); | |
| 8156 | 403 cur = end + step; |
| 6333 | 404 } |
| 405 if (cur != irc->inbuf + irc->inbufused) { /* leftover */ | |
| 406 irc->inbufused -= (cur - irc->inbuf); | |
| 407 memmove(irc->inbuf, cur, irc->inbufused); | |
| 408 } else { | |
| 409 irc->inbufused = 0; | |
| 410 } | |
| 3616 | 411 } |
| 412 | |
| 6333 | 413 static void irc_chat_join (GaimConnection *gc, GHashTable *data) |
| 414 { | |
| 415 struct irc_conn *irc = gc->proto_data; | |
| 416 const char *args[2]; | |
| 3616 | 417 |
| 6333 | 418 args[0] = g_hash_table_lookup(data, "channel"); |
| 419 args[1] = g_hash_table_lookup(data, "password"); | |
| 420 irc_cmd_join(irc, "join", NULL, args); | |
| 3622 | 421 } |
| 422 | |
| 6333 | 423 static void irc_chat_invite(GaimConnection *gc, int id, const char *message, const char *name) |
| 3751 | 424 { |
| 6333 | 425 struct irc_conn *irc = gc->proto_data; |
| 426 GaimConversation *convo = gaim_find_chat(gc, id); | |
| 427 const char *args[2]; | |
| 3751 | 428 |
| 6333 | 429 if (!convo) { |
| 430 gaim_debug(GAIM_DEBUG_ERROR, "irc", "Got chat invite request for bogus chat\n"); | |
| 431 return; | |
| 432 } | |
| 433 args[0] = name; | |
| 434 args[1] = gaim_conversation_get_name(convo); | |
| 435 irc_cmd_invite(irc, "invite", gaim_conversation_get_name(convo), args); | |
| 3707 | 436 } |
| 437 | |
| 6333 | 438 |
| 439 static void irc_chat_leave (GaimConnection *gc, int id) | |
| 3707 | 440 { |
| 6333 | 441 struct irc_conn *irc = gc->proto_data; |
| 442 GaimConversation *convo = gaim_find_chat(gc, id); | |
| 443 const char *args[2]; | |
| 5298 | 444 |
| 6333 | 445 if (!convo) |
| 446 return; | |
| 3735 | 447 |
| 6333 | 448 args[0] = gaim_conversation_get_name(convo); |
| 449 args[1] = NULL; | |
| 450 irc_cmd_part(irc, "part", gaim_conversation_get_name(convo), args); | |
| 451 serv_got_chat_left(gc, id); | |
| 3735 | 452 } |
| 453 | |
| 6333 | 454 static int irc_chat_send(GaimConnection *gc, int id, const char *what) |
| 3735 | 455 { |
| 6333 | 456 struct irc_conn *irc = gc->proto_data; |
| 457 GaimConversation *convo = gaim_find_chat(gc, id); | |
| 458 const char *args[2]; | |
| 8163 | 459 char *tmp; |
| 6333 | 460 |
| 461 if (!convo) { | |
| 462 gaim_debug(GAIM_DEBUG_ERROR, "irc", "chat send on nonexistent chat\n"); | |
| 463 return -EINVAL; | |
| 464 } | |
| 9130 | 465 #if 0 |
| 6333 | 466 if (*what == '/') { |
| 467 return irc_parse_cmd(irc, convo->name, what + 1); | |
| 468 } | |
| 9130 | 469 #endif |
| 6333 | 470 args[0] = convo->name; |
| 471 args[1] = what; | |
| 472 | |
| 473 irc_cmd_privmsg(irc, "msg", NULL, args); | |
| 8163 | 474 |
| 475 tmp = gaim_escape_html(what); | |
| 476 serv_got_chat_in(gc, id, gaim_connection_get_display_name(gc), 0, tmp, time(NULL)); | |
| 477 g_free(tmp); | |
| 6333 | 478 return 0; |
| 3707 | 479 } |
| 480 | |
| 6333 | 481 static guint irc_nick_hash(const char *nick) |
| 482 { | |
| 483 char *lc; | |
| 484 guint bucket; | |
|
6270
1bf6fd117797
[gaim-migrate @ 6767]
Christian Hammond <chipx86@chipx86.com>
parents:
6240
diff
changeset
|
485 |
| 6333 | 486 lc = g_utf8_strdown(nick, -1); |
| 487 bucket = g_str_hash(lc); | |
| 488 g_free(lc); | |
|
6270
1bf6fd117797
[gaim-migrate @ 6767]
Christian Hammond <chipx86@chipx86.com>
parents:
6240
diff
changeset
|
489 |
| 6333 | 490 return bucket; |
| 3029 | 491 } |
| 492 | |
| 6333 | 493 static gboolean irc_nick_equal(const char *nick1, const char *nick2) |
|
2619
536198196dc6
[gaim-migrate @ 2632]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2617
diff
changeset
|
494 { |
| 6333 | 495 return (gaim_utf8_strcasecmp(nick1, nick2) == 0); |
|
2619
536198196dc6
[gaim-migrate @ 2632]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2617
diff
changeset
|
496 } |
|
536198196dc6
[gaim-migrate @ 2632]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2617
diff
changeset
|
497 |
| 6333 | 498 static void irc_buddy_free(struct irc_buddy *ib) |
|
2619
536198196dc6
[gaim-migrate @ 2632]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2617
diff
changeset
|
499 { |
| 6333 | 500 g_free(ib->name); |
| 501 g_free(ib); | |
|
2619
536198196dc6
[gaim-migrate @ 2632]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2617
diff
changeset
|
502 } |
|
536198196dc6
[gaim-migrate @ 2632]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2617
diff
changeset
|
503 |
| 9154 | 504 static void irc_chat_set_topic(GaimConnection *gc, int id, const char *topic) |
| 505 { | |
| 506 char *buf; | |
| 507 const char *name = NULL; | |
| 508 struct irc_conn *irc; | |
| 509 | |
| 510 irc = gc->proto_data; | |
| 511 name = gaim_conversation_get_name(gaim_find_chat(gc, id)); | |
| 512 | |
| 513 if (name == NULL) | |
| 514 return; | |
| 515 | |
| 516 buf = irc_format(irc, "vt:", "TOPIC", name, topic); | |
| 517 irc_send(irc, buf); | |
| 518 g_free(buf); | |
| 519 } | |
| 520 | |
| 8114 | 521 static GaimRoomlist *irc_roomlist_get_list(GaimConnection *gc) |
| 522 { | |
| 523 struct irc_conn *irc; | |
| 524 GList *fields = NULL; | |
| 525 GaimRoomlistField *f; | |
| 8352 | 526 char *buf; |
| 8114 | 527 |
| 528 irc = gc->proto_data; | |
| 529 | |
| 530 if (irc->roomlist) | |
| 531 gaim_roomlist_unref(irc->roomlist); | |
| 532 | |
| 533 irc->roomlist = gaim_roomlist_new(gaim_connection_get_account(gc)); | |
| 534 | |
| 535 f = gaim_roomlist_field_new(GAIM_ROOMLIST_FIELD_STRING, "", "channel", TRUE); | |
| 536 fields = g_list_append(fields, f); | |
| 537 | |
| 538 f = gaim_roomlist_field_new(GAIM_ROOMLIST_FIELD_INT, _("Users"), "users", FALSE); | |
| 539 fields = g_list_append(fields, f); | |
| 540 | |
| 541 f = gaim_roomlist_field_new(GAIM_ROOMLIST_FIELD_STRING, _("Topic"), "topic", FALSE); | |
| 542 fields = g_list_append(fields, f); | |
| 543 | |
| 544 gaim_roomlist_set_fields(irc->roomlist, fields); | |
| 545 | |
| 8352 | 546 buf = irc_format(irc, "v", "LIST"); |
| 547 irc_send(irc, buf); | |
| 548 g_free(buf); | |
| 8114 | 549 |
| 550 return irc->roomlist; | |
| 551 } | |
| 552 | |
| 553 static void irc_roomlist_cancel(GaimRoomlist *list) | |
| 554 { | |
| 555 GaimConnection *gc = gaim_account_get_connection(list->account); | |
| 556 struct irc_conn *irc; | |
| 557 | |
| 558 if (gc == NULL) | |
| 559 return; | |
| 560 | |
| 561 irc = gc->proto_data; | |
| 562 | |
| 563 gaim_roomlist_set_in_progress(list, FALSE); | |
| 564 | |
| 565 if (irc->roomlist == list) { | |
| 566 irc->roomlist = NULL; | |
| 567 gaim_roomlist_unref(list); | |
| 568 } | |
| 569 } | |
| 570 | |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
571 static GaimPluginProtocolInfo prpl_info = |
| 2086 | 572 { |
|
8749
d7b8eb1f0a18
[gaim-migrate @ 9504]
Christian Hammond <chipx86@chipx86.com>
parents:
8713
diff
changeset
|
573 GAIM_PRPL_API_VERSION, |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
574 OPT_PROTO_CHAT_TOPIC | OPT_PROTO_PASSWORD_OPTIONAL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
575 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
576 NULL, |
| 6333 | 577 irc_blist_icon, |
| 578 irc_blist_emblems, | |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
579 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
580 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
581 irc_away_states, |
| 9030 | 582 irc_blist_node_menu, |
| 6333 | 583 irc_chat_join_info, |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
584 irc_login, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
585 irc_close, |
| 6333 | 586 irc_im_send, |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
587 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
588 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
589 irc_get_info, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
590 irc_set_away, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
591 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
592 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
593 irc_add_buddy, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
594 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
595 irc_remove_buddy, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
596 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
597 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
598 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
599 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
600 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
601 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
602 NULL, |
| 6333 | 603 irc_chat_join, |
| 8562 | 604 NULL, /* reject chat invite */ |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
605 irc_chat_invite, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
606 irc_chat_leave, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
607 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
608 irc_chat_send, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
609 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
610 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
611 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
612 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
613 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
614 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
615 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
616 NULL, |
| 6333 | 617 NULL, /*irc_convo_closed,*/ |
| 8114 | 618 NULL, /* normalize */ |
| 619 NULL, /* set buddy icon */ | |
| 620 NULL, /* remove group */ | |
| 621 NULL, /* get_cb_real_name */ | |
| 9154 | 622 irc_chat_set_topic, |
| 8114 | 623 NULL, |
| 624 irc_roomlist_get_list, | |
| 625 irc_roomlist_cancel, | |
| 8589 | 626 NULL |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
627 }; |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
628 |
| 8114 | 629 |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
630 static GaimPluginInfo info = |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
631 { |
|
8749
d7b8eb1f0a18
[gaim-migrate @ 9504]
Christian Hammond <chipx86@chipx86.com>
parents:
8713
diff
changeset
|
632 GAIM_PLUGIN_API_VERSION, /**< api_version */ |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
633 GAIM_PLUGIN_PROTOCOL, /**< type */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
634 NULL, /**< ui_requirement */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
635 0, /**< flags */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
636 NULL, /**< dependencies */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
637 GAIM_PRIORITY_DEFAULT, /**< priority */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
638 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
639 "prpl-irc", /**< id */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
640 "IRC", /**< name */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
641 VERSION, /**< version */ |
| 6333 | 642 N_("IRC Protocol Plugin"), /** summary */ |
| 643 N_("The IRC Protocol Plugin that Sucks Less"), /** description */ | |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
644 NULL, /**< author */ |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6369
diff
changeset
|
645 GAIM_WEBSITE, /**< homepage */ |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
646 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
647 NULL, /**< load */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
648 NULL, /**< unload */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
649 NULL, /**< destroy */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
650 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
651 NULL, /**< ui_info */ |
| 8993 | 652 &prpl_info, /**< extra_info */ |
| 653 NULL, | |
| 9015 | 654 irc_actions |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
655 }; |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
656 |
| 6333 | 657 static void _init_plugin(GaimPlugin *plugin) |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
658 { |
|
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5618
diff
changeset
|
659 GaimAccountUserSplit *split; |
|
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5618
diff
changeset
|
660 GaimAccountOption *option; |
|
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5618
diff
changeset
|
661 |
| 6333 | 662 split = gaim_account_user_split_new(_("Server"), IRC_DEFAULT_SERVER, '@'); |
|
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5618
diff
changeset
|
663 prpl_info.user_splits = g_list_append(prpl_info.user_splits, split); |
|
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5618
diff
changeset
|
664 |
|
6459
b52870734c21
[gaim-migrate @ 6968]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
665 option = gaim_account_option_int_new(_("Port"), "port", IRC_DEFAULT_PORT); |
| 6333 | 666 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); |
|
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5618
diff
changeset
|
667 |
| 6333 | 668 option = gaim_account_option_string_new(_("Encoding"), "encoding", IRC_DEFAULT_CHARSET); |
| 669 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); | |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5150
diff
changeset
|
670 |
| 7323 | 671 option = gaim_account_option_string_new(_("Username"), "username", ""); |
| 672 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); | |
| 673 | |
| 6333 | 674 _irc_plugin = plugin; |
| 9130 | 675 |
| 676 irc_register_commands(); | |
| 2086 | 677 } |
| 678 | |
| 6333 | 679 GAIM_INIT_PLUGIN(irc, _init_plugin, info); |
