Mon, 17 Feb 2014 21:57:26 +0530
Merged default branch
| 6333 | 1 | /** |
| 2 | * @file msgs.c | |
|
13786
ec07d27800aa
[gaim-migrate @ 16196]
Daniel Atallah <datallah@pidgin.im>
parents:
13667
diff
changeset
|
3 | * |
| 15884 | 4 | * purple |
| 6333 | 5 | * |
|
32117
6d49fa9e996c
Remove periodic WHO on IRC.
Ethan Blanton <elb@pidgin.im>
parents:
32037
diff
changeset
|
6 | * Copyright (C) 2003, 2012 Ethan Blanton <elb@pidgin.im> |
|
13786
ec07d27800aa
[gaim-migrate @ 16196]
Daniel Atallah <datallah@pidgin.im>
parents:
13667
diff
changeset
|
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 | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
17409
diff
changeset
|
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 6333 | 21 | */ |
| 22 | ||
|
35254
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
23 | /* |
|
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
24 | * Note: If you change any of these functions to use additional args you |
|
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
25 | * MUST ensure the arg count is correct in parse.c. Otherwise it may be |
|
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
26 | * possible for a malicious server or man-in-the-middle to trigger a crash. |
|
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
27 | */ |
|
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
28 | |
| 6333 | 29 | #include "internal.h" |
| 30 | ||
| 31 | #include "conversation.h" | |
|
34706
02cb08146888
Renamed blist.[ch] to buddylist.[ch]
Ankit Vani <a@nevitus.org>
parents:
34678
diff
changeset
|
32 | #include "buddylist.h" |
| 6333 | 33 | #include "notify.h" |
| 34 | #include "util.h" | |
| 35 | #include "debug.h" | |
| 36 | #include "irc.h" | |
| 37 | ||
| 38 | #include <stdio.h> | |
|
22798
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
39 | #include <stdlib.h> |
| 6333 | 40 | |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
41 | #ifdef HAVE_CYRUS_SASL |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
42 | #include <sasl/sasl.h> |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
43 | #endif |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
44 | |
| 6333 | 45 | static char *irc_mask_nick(const char *mask); |
| 46 | static char *irc_mask_userhost(const char *mask); | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
47 | static void irc_chat_remove_buddy(PurpleChatConversation *chat, char *data[2]); |
| 6333 | 48 | static void irc_buddy_status(char *name, struct irc_buddy *ib, struct irc_conn *irc); |
|
17169
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
49 | static void irc_connected(struct irc_conn *irc, const char *nick); |
| 6333 | 50 | |
|
13525
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
51 | static void irc_msg_handle_privmsg(struct irc_conn *irc, const char *name, |
|
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
52 | const char *from, const char *to, |
|
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
53 | const char *rawmsg, gboolean notice); |
|
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
54 | |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
55 | #ifdef HAVE_CYRUS_SASL |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
56 | static void irc_sasl_finish(struct irc_conn *irc); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
57 | #endif |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
58 | |
| 6333 | 59 | static char *irc_mask_nick(const char *mask) |
| 60 | { | |
| 61 | char *end, *buf; | |
| 62 | ||
| 63 | end = strchr(mask, '!'); | |
| 64 | if (!end) | |
| 65 | buf = g_strdup(mask); | |
| 66 | else | |
| 67 | buf = g_strndup(mask, end - mask); | |
| 68 | ||
| 69 | return buf; | |
| 70 | } | |
| 71 | ||
| 72 | static char *irc_mask_userhost(const char *mask) | |
| 73 | { | |
| 74 | return g_strdup(strchr(mask, '!') + 1); | |
| 75 | } | |
| 76 | ||
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
77 | static void irc_chat_remove_buddy(PurpleChatConversation *chat, char *data[2]) |
| 6333 | 78 | { |
|
22795
2b1d41a575f5
Strip mIRC formatting codes from PART and QUIT messages.
Ethan Blanton <elb@pidgin.im>
parents:
22471
diff
changeset
|
79 | char *message, *stripped; |
|
10730
cc7807276e53
[gaim-migrate @ 12331]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10712
diff
changeset
|
80 | |
|
22795
2b1d41a575f5
Strip mIRC formatting codes from PART and QUIT messages.
Ethan Blanton <elb@pidgin.im>
parents:
22471
diff
changeset
|
81 | stripped = data[1] ? irc_mirc2txt(data[1]) : NULL; |
|
2b1d41a575f5
Strip mIRC formatting codes from PART and QUIT messages.
Ethan Blanton <elb@pidgin.im>
parents:
22471
diff
changeset
|
82 | message = g_strdup_printf("quit: %s", stripped); |
|
2b1d41a575f5
Strip mIRC formatting codes from PART and QUIT messages.
Ethan Blanton <elb@pidgin.im>
parents:
22471
diff
changeset
|
83 | g_free(stripped); |
| 6333 | 84 | |
|
34653
88ae47a7d595
Updated protocols for the API changes
Ankit Vani <a@nevitus.org>
parents:
34632
diff
changeset
|
85 | if (purple_chat_conversation_has_user(chat, data[0])) |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
86 | purple_chat_conversation_remove_user(chat, data[0], message); |
| 6333 | 87 | |
| 88 | g_free(message); | |
| 89 | } | |
| 90 | ||
|
17170
609d6acda6aa
Oops; I made some errors in the last commit. This is a fix of my
Ethan Blanton <elb@pidgin.im>
parents:
17169
diff
changeset
|
91 | static void irc_connected(struct irc_conn *irc, const char *nick) |
|
17169
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
92 | { |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
93 | PurpleConnection *gc; |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
94 | PurpleStatus *status; |
|
27199
ab2af9d15cba
Use purple_find_buddies() instead of iterating the buddy list.
Paul Aurich <darkrain42@pidgin.im>
parents:
27044
diff
changeset
|
95 | GSList *buddies; |
|
24398
4865c2ee6ea8
Start hiding blist.h internals in prpls.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23582
diff
changeset
|
96 | PurpleAccount *account; |
|
17169
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
97 | |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
98 | if ((gc = purple_account_get_connection(irc->account)) == NULL |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
99 | || PURPLE_CONNECTION_IS_CONNECTED(gc)) |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
100 | return; |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
101 | |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
102 | purple_connection_set_display_name(gc, nick); |
|
34746
dc9c911dbd35
Started GObjectification of PurpleConnection.
Ankit Vani <a@nevitus.org>
parents:
34728
diff
changeset
|
103 | purple_connection_set_state(gc, PURPLE_CONNECTION_CONNECTED); |
|
24398
4865c2ee6ea8
Start hiding blist.h internals in prpls.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23582
diff
changeset
|
104 | account = purple_connection_get_account(gc); |
|
17169
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
105 | |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
106 | /* If we're away then set our away message */ |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
107 | status = purple_account_get_active_status(irc->account); |
|
34855
9c289149eed4
Global replaces according to GObject status API
Ankit Vani <a@nevitus.org>
parents:
34750
diff
changeset
|
108 | if (purple_status_type_get_primitive(purple_status_get_status_type(status)) != PURPLE_STATUS_AVAILABLE) { |
|
36623
caaadef03507
Renamed purple_connection_get_protocol_info() to purple_connection_get_protocol()
Ankit Vani <a@nevitus.org>
parents:
36579
diff
changeset
|
109 | PurpleProtocol *protocol = purple_connection_get_protocol(gc); |
| 36719 | 110 | purple_protocol_server_iface_set_status(protocol, irc->account, status); |
|
17169
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
111 | } |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
112 | |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
113 | /* this used to be in the core, but it's not now */ |
|
34728
8efd73063ecf
Renamed buddy list functions to more appropriate/simler names.
Ankit Vani <a@nevitus.org>
parents:
34706
diff
changeset
|
114 | for (buddies = purple_blist_find_buddies(account, NULL); buddies; |
|
27199
ab2af9d15cba
Use purple_find_buddies() instead of iterating the buddy list.
Paul Aurich <darkrain42@pidgin.im>
parents:
27044
diff
changeset
|
115 | buddies = g_slist_delete_link(buddies, buddies)) |
|
24940
d4e0dc304741
updated irc to use the api rather than structs directly
Gary Kramlich <grim@reaperworld.com>
parents:
24416
diff
changeset
|
116 | { |
|
27199
ab2af9d15cba
Use purple_find_buddies() instead of iterating the buddy list.
Paul Aurich <darkrain42@pidgin.im>
parents:
27044
diff
changeset
|
117 | PurpleBuddy *b = buddies->data; |
|
ab2af9d15cba
Use purple_find_buddies() instead of iterating the buddy list.
Paul Aurich <darkrain42@pidgin.im>
parents:
27044
diff
changeset
|
118 | struct irc_buddy *ib = g_new0(struct irc_buddy, 1); |
|
ab2af9d15cba
Use purple_find_buddies() instead of iterating the buddy list.
Paul Aurich <darkrain42@pidgin.im>
parents:
27044
diff
changeset
|
119 | ib->name = g_strdup(purple_buddy_get_name(b)); |
|
28118
ba26e203a9ca
irc: Handle a buddy appearing in multiple groups properly.
Paul Aurich <darkrain42@pidgin.im>
parents:
27361
diff
changeset
|
120 | ib->ref = 1; |
|
ba26e203a9ca
irc: Handle a buddy appearing in multiple groups properly.
Paul Aurich <darkrain42@pidgin.im>
parents:
27361
diff
changeset
|
121 | g_hash_table_replace(irc->buddies, ib->name, ib); |
|
17169
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
122 | } |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
123 | |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
124 | irc_blist_timeout(irc); |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
125 | if (!irc->timer) |
|
25716
1b5be208d5ba
applied changes from a336cc1fd3a1ce815f97303b8d5ae8988f8cbd5b
Ethan Blanton <elb@pidgin.im>
parents:
25707
diff
changeset
|
126 | irc->timer = purple_timeout_add_seconds(45, (GSourceFunc)irc_blist_timeout, (gpointer)irc); |
|
17169
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
127 | } |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
128 | |
|
32127
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
129 | /* This function is ugly, but it's really an error handler. */ |
| 6333 | 130 | void irc_msg_default(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 131 | { | |
|
32127
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
132 | int i; |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
133 | const char *end, *cur, *numeric = NULL; |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
134 | char *clean, *tmp, *convname; |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
135 | PurpleConversation *convo; |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
136 | |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
137 | for (cur = args[0], i = 0; i < 4; i++) { |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
138 | end = strchr(cur, ' '); |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
139 | if (end == NULL) { |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
140 | goto undirected; |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
141 | } |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
142 | /* Check for 3-digit numeric in second position */ |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
143 | if (i == 1) { |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
144 | if (end - cur != 3 |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
145 | || !isdigit(cur[0]) || !isdigit(cur[1]) |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
146 | || !isdigit(cur[2])) { |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
147 | goto undirected; |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
148 | } |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
149 | /* Save the numeric for printing to the channel */ |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
150 | numeric = cur; |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
151 | } |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
152 | /* Don't advance cur if we're on the final iteration. */ |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
153 | if (i != 3) { |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
154 | cur = end + 1; |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
155 | } |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
156 | } |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
157 | |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
158 | /* At this point, cur is the beginning of the fourth position, |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
159 | * end is the following space, and there are remaining |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
160 | * arguments. We'll check to see if this argument is a |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
161 | * currently active conversation (private message or channel, |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
162 | * either one), and print the numeric to that conversation if it |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
163 | * is. */ |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
164 | |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
165 | tmp = g_strndup(cur, end - cur); |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
166 | convname = purple_utf8_salvage(tmp); |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
167 | g_free(tmp); |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
168 | |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
169 | /* Check for an existing conversation */ |
|
34629
3c3bed0fd13c
Refactored gg and irc protocols to use the GObject-based PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34625
diff
changeset
|
170 | convo = purple_conversations_find_with_account(convname, irc->account); |
|
32127
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
171 | g_free(convname); |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
172 | |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
173 | if (convo == NULL) { |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
174 | goto undirected; |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
175 | } |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
176 | |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
177 | /* end + 1 is the first argument past the target. The initial |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
178 | * arguments we've skipped are routing info, numeric, recipient |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
179 | * (this account's nick, most likely), and target (this |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
180 | * channel). If end + 1 is an ASCII :, skip it, because it's |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
181 | * meaningless in this context. This won't catch all |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
182 | * :-arguments, but it'll catch the easy case. */ |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
183 | if (*++end == ':') { |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
184 | end++; |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
185 | } |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
186 | |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
187 | /* We then print "numeric: remainder". */ |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
188 | clean = purple_utf8_salvage(end); |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
189 | tmp = g_strdup_printf("%.3s: %s", numeric, clean); |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
190 | g_free(clean); |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
191 | purple_conversation_write(convo, "", tmp, |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
192 | PURPLE_MESSAGE_SYSTEM|PURPLE_MESSAGE_NO_LOG |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
193 | |PURPLE_MESSAGE_RAW|PURPLE_MESSAGE_NO_LINKIFY, |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
194 | time(NULL)); |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
195 | g_free(tmp); |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
196 | return; |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
197 | |
|
9c23321e1b68
Print unknown IRC numerics to channels if we can associate them.
Ethan Blanton <elb@pidgin.im>
parents:
32123
diff
changeset
|
198 | undirected: |
|
24763
67d9d4c975c0
Replace spaces wth tabs in indentation and tabs with spaces in line continuations.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24416
diff
changeset
|
199 | /* This, too, should be escaped somehow (smarter) */ |
|
32119
86a4c1ba3c1f
disapproval of revision '708334868aba738134af61e8dab50f6f14a1e872'
Ethan Blanton <elb@pidgin.im>
parents:
32118
diff
changeset
|
200 | clean = purple_utf8_salvage(args[0]); |
|
86a4c1ba3c1f
disapproval of revision '708334868aba738134af61e8dab50f6f14a1e872'
Ethan Blanton <elb@pidgin.im>
parents:
32118
diff
changeset
|
201 | purple_debug(PURPLE_DEBUG_INFO, "irc", "Unrecognized message: %s\n", clean); |
|
86a4c1ba3c1f
disapproval of revision '708334868aba738134af61e8dab50f6f14a1e872'
Ethan Blanton <elb@pidgin.im>
parents:
32118
diff
changeset
|
202 | g_free(clean); |
| 6333 | 203 | } |
| 204 | ||
|
15501
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
205 | void irc_msg_features(struct irc_conn *irc, const char *name, const char *from, char **args) |
|
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
206 | { |
|
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
207 | gchar **features; |
|
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
208 | int i; |
|
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
209 | |
|
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
210 | features = g_strsplit(args[1], " ", -1); |
|
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
211 | for (i = 0; features[i]; i++) { |
|
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
212 | char *val; |
|
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
213 | if (!strncmp(features[i], "PREFIX=", 7)) { |
|
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
214 | if ((val = strchr(features[i] + 7, ')')) != NULL) |
|
16167
8536102557ba
Make non-standard mode characters support connection-specific instead of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
215 | irc->mode_chars = g_strdup(val + 1); |
|
15501
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
216 | } |
|
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
217 | } |
|
21684
c7881e1b73c7
another patch from my coworker Andrew Gaul that plugged a leak, I fixed it
Ka-Hing Cheung <khc@pidgin.im>
parents:
21279
diff
changeset
|
218 | |
|
c7881e1b73c7
another patch from my coworker Andrew Gaul that plugged a leak, I fixed it
Ka-Hing Cheung <khc@pidgin.im>
parents:
21279
diff
changeset
|
219 | g_strfreev(features); |
|
15501
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
220 | } |
|
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
221 | |
|
15508
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
222 | void irc_msg_luser(struct irc_conn *irc, const char *name, const char *from, char **args) |
|
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
223 | { |
|
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
224 | if (!strcmp(name, "251")) { |
|
17169
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
225 | /* 251 is required, so we pluck our nick from here and |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
226 | * finalize connection */ |
|
17170
609d6acda6aa
Oops; I made some errors in the last commit. This is a fix of my
Ethan Blanton <elb@pidgin.im>
parents:
17169
diff
changeset
|
227 | irc_connected(irc, args[0]); |
|
16893
f7c5d28375a8
Fix broken IRC servers which do not send a 255 numeric
Ethan Blanton <elb@pidgin.im>
parents:
16474
diff
changeset
|
228 | /* Some IRC servers seem to not send a 255 numeric, so |
|
f7c5d28375a8
Fix broken IRC servers which do not send a 255 numeric
Ethan Blanton <elb@pidgin.im>
parents:
16474
diff
changeset
|
229 | * I guess we can't require it; 251 will do. */ |
|
f7c5d28375a8
Fix broken IRC servers which do not send a 255 numeric
Ethan Blanton <elb@pidgin.im>
parents:
16474
diff
changeset
|
230 | /* } else if (!strcmp(name, "255")) { */ |
|
15508
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
231 | } |
|
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
232 | } |
|
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
233 | |
| 6333 | 234 | void irc_msg_away(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 235 | { | |
| 15884 | 236 | PurpleConnection *gc; |
|
10774
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
237 | char *msg; |
| 6333 | 238 | |
| 15884 | 239 | if (irc->whois.nick && !purple_utf8_strcasecmp(irc->whois.nick, args[1])) { |
| 6333 | 240 | /* We're doing a whois, show this in the whois dialog */ |
| 241 | irc_msg_whois(irc, name, from, args); | |
| 242 | return; | |
| 243 | } | |
| 244 | ||
| 15884 | 245 | gc = purple_account_get_connection(irc->account); |
|
10774
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
246 | if (gc) { |
|
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
247 | msg = g_markup_escape_text(args[2], -1); |
|
35499
c4c5e0a670b1
Fix namespaces issues in libpurple.
Ankit Vani <a@nevitus.org>
parents:
35297
diff
changeset
|
248 | purple_serv_got_im(gc, args[1], msg, PURPLE_MESSAGE_AUTO_RESP, time(NULL)); |
|
10774
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
249 | g_free(msg); |
|
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
250 | } |
| 6333 | 251 | } |
| 252 | ||
| 253 | void irc_msg_badmode(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 254 | { | |
| 15884 | 255 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
| 6333 | 256 | |
|
35254
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
257 | g_return_if_fail(gc); |
| 6333 | 258 | |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
259 | purple_notify_error(gc, NULL, _("Bad mode"), args[1], |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
260 | purple_request_cpar_from_connection(gc)); |
| 6333 | 261 | } |
| 262 | ||
|
22798
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
263 | void irc_msg_ban(struct irc_conn *irc, const char *name, const char *from, char **args) |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
264 | { |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
265 | PurpleChatConversation *chat; |
|
22798
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
266 | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
267 | chat = purple_conversations_find_chat_with_account(args[1], irc->account); |
|
22798
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
268 | |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
269 | if (!strcmp(name, "367")) { |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
270 | char *msg = NULL; |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
271 | /* Ban list entry */ |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
272 | if (args[3] && args[4]) { |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
273 | /* This is an extended syntax, not in RFC 1459 */ |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
274 | int t1 = atoi(args[4]); |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
275 | time_t t2 = time(NULL); |
| 24416 | 276 | char *time = purple_str_seconds_to_string(t2 - t1); |
|
23582
5b97b0d87d34
Use a more friendly format for the timestamp in the banlist.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23576
diff
changeset
|
277 | msg = g_strdup_printf(_("Ban on %s by %s, set %s ago"), |
| 24416 | 278 | args[2], args[3], time); |
| 279 | g_free(time); | |
|
22798
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
280 | } else { |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
281 | msg = g_strdup_printf(_("Ban on %s"), args[2]); |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
282 | } |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
283 | if (chat) { |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
284 | purple_conversation_write_message(PURPLE_CONVERSATION(chat), "", msg, |
|
22798
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
285 | PURPLE_MESSAGE_SYSTEM|PURPLE_MESSAGE_NO_LOG, |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
286 | time(NULL)); |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
287 | } else { |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
288 | purple_debug_info("irc", "%s\n", msg); |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
289 | } |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
290 | g_free(msg); |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
291 | } else if (!strcmp(name, "368")) { |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
292 | if (!chat) |
|
22798
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
293 | return; |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
294 | /* End of ban list */ |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
295 | purple_conversation_write_message(PURPLE_CONVERSATION(chat), "", |
|
22798
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
296 | _("End of ban list"), |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
297 | PURPLE_MESSAGE_SYSTEM|PURPLE_MESSAGE_NO_LOG, |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
298 | time(NULL)); |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
299 | } |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
300 | } |
|
a501b4137c64
Handle IRC ban lists in-channel. Channels which are not joined are
Ethan Blanton <elb@pidgin.im>
parents:
22795
diff
changeset
|
301 | |
| 6333 | 302 | void irc_msg_banned(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 303 | { | |
| 15884 | 304 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
| 6333 | 305 | char *buf; |
| 306 | ||
|
35254
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
307 | g_return_if_fail(gc); |
| 6333 | 308 | |
| 309 | buf = g_strdup_printf(_("You are banned from %s."), args[1]); | |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
310 | purple_notify_error(gc, _("Banned"), _("Banned"), buf, |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
311 | purple_request_cpar_from_connection(gc)); |
| 6333 | 312 | g_free(buf); |
| 313 | } | |
| 314 | ||
|
10659
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10637
diff
changeset
|
315 | void irc_msg_banfull(struct irc_conn *irc, const char *name, const char *from, char **args) |
|
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10637
diff
changeset
|
316 | { |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
317 | PurpleChatConversation *chat; |
|
10659
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10637
diff
changeset
|
318 | char *buf, *nick; |
|
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10637
diff
changeset
|
319 | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
320 | chat = purple_conversations_find_chat_with_account(args[1], irc->account); |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
321 | if (!chat) |
|
10659
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10637
diff
changeset
|
322 | return; |
|
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10637
diff
changeset
|
323 | |
|
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10637
diff
changeset
|
324 | nick = g_markup_escape_text(args[2], -1); |
|
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10637
diff
changeset
|
325 | buf = g_strdup_printf(_("Cannot ban %s: banlist is full"), nick); |
|
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10637
diff
changeset
|
326 | g_free(nick); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
327 | purple_conversation_write_message(PURPLE_CONVERSATION(chat), "", buf, |
| 15884 | 328 | PURPLE_MESSAGE_SYSTEM|PURPLE_MESSAGE_NO_LOG, |
|
10659
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10637
diff
changeset
|
329 | time(NULL)); |
|
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10637
diff
changeset
|
330 | g_free(buf); |
|
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10637
diff
changeset
|
331 | } |
|
caf16376fba0
[gaim-migrate @ 12192]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10637
diff
changeset
|
332 | |
| 6333 | 333 | void irc_msg_chanmode(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 334 | { | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
335 | PurpleChatConversation *chat; |
|
10774
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
336 | char *buf, *escaped; |
| 6333 | 337 | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
338 | chat = purple_conversations_find_chat_with_account(args[1], irc->account); |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
339 | if (!chat) /* XXX punt on channels we are not in for now */ |
| 6333 | 340 | return; |
| 341 | ||
|
10774
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
342 | escaped = (args[3] != NULL) ? g_markup_escape_text(args[3], -1) : NULL; |
|
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
343 | buf = g_strdup_printf("mode for %s: %s %s", args[1], args[2], escaped ? escaped : ""); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
344 | purple_conversation_write_message(PURPLE_CONVERSATION(chat), "", buf, PURPLE_MESSAGE_SYSTEM, time(NULL)); |
|
10774
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
345 | g_free(escaped); |
| 6333 | 346 | g_free(buf); |
| 347 | ||
| 348 | return; | |
| 349 | } | |
| 350 | ||
| 351 | void irc_msg_whois(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 352 | { | |
| 353 | if (!irc->whois.nick) { | |
|
16474
bc8580a69dba
/whowas for IRC. Thanks, achris.
Ethan Blanton <elb@pidgin.im>
parents:
16167
diff
changeset
|
354 | purple_debug(PURPLE_DEBUG_WARNING, "irc", "Unexpected %s reply for %s\n", !strcmp(name, "314") ? "WHOWAS" : "WHOIS" |
|
bc8580a69dba
/whowas for IRC. Thanks, achris.
Ethan Blanton <elb@pidgin.im>
parents:
16167
diff
changeset
|
355 | , args[1]); |
| 6333 | 356 | return; |
| 357 | } | |
| 358 | ||
| 15884 | 359 | if (purple_utf8_strcasecmp(irc->whois.nick, args[1])) { |
|
16474
bc8580a69dba
/whowas for IRC. Thanks, achris.
Ethan Blanton <elb@pidgin.im>
parents:
16167
diff
changeset
|
360 | purple_debug(PURPLE_DEBUG_WARNING, "irc", "Got %s reply for %s while waiting for %s\n", !strcmp(name, "314") ? "WHOWAS" : "WHOIS" |
|
bc8580a69dba
/whowas for IRC. Thanks, achris.
Ethan Blanton <elb@pidgin.im>
parents:
16167
diff
changeset
|
361 | , args[1], irc->whois.nick); |
| 6333 | 362 | return; |
| 363 | } | |
| 364 | ||
| 365 | if (!strcmp(name, "301")) { | |
| 366 | irc->whois.away = g_strdup(args[2]); | |
|
16474
bc8580a69dba
/whowas for IRC. Thanks, achris.
Ethan Blanton <elb@pidgin.im>
parents:
16167
diff
changeset
|
367 | } else if (!strcmp(name, "311") || !strcmp(name, "314")) { |
|
35182
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
368 | irc->whois.ident = g_strdup(args[2]); |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
369 | irc->whois.host = g_strdup(args[3]); |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
370 | irc->whois.real = g_strdup(args[5]); |
| 6333 | 371 | } else if (!strcmp(name, "312")) { |
| 372 | irc->whois.server = g_strdup(args[2]); | |
| 373 | irc->whois.serverinfo = g_strdup(args[3]); | |
| 374 | } else if (!strcmp(name, "313")) { | |
| 375 | irc->whois.ircop = 1; | |
| 376 | } else if (!strcmp(name, "317")) { | |
| 377 | irc->whois.idle = atoi(args[2]); | |
| 378 | if (args[3]) | |
| 379 | irc->whois.signon = (time_t)atoi(args[3]); | |
| 380 | } else if (!strcmp(name, "319")) { | |
|
25703
5e04772797b3
applied changes from 0064869870b3507952491598f4d4b8d4a99fbc6b
Ethan Blanton <elb@pidgin.im>
parents:
24763
diff
changeset
|
381 | if (irc->whois.channels == NULL) { |
|
5e04772797b3
applied changes from 0064869870b3507952491598f4d4b8d4a99fbc6b
Ethan Blanton <elb@pidgin.im>
parents:
24763
diff
changeset
|
382 | irc->whois.channels = g_string_new(args[2]); |
|
5e04772797b3
applied changes from 0064869870b3507952491598f4d4b8d4a99fbc6b
Ethan Blanton <elb@pidgin.im>
parents:
24763
diff
changeset
|
383 | } else { |
|
5e04772797b3
applied changes from 0064869870b3507952491598f4d4b8d4a99fbc6b
Ethan Blanton <elb@pidgin.im>
parents:
24763
diff
changeset
|
384 | irc->whois.channels = g_string_append(irc->whois.channels, args[2]); |
|
5e04772797b3
applied changes from 0064869870b3507952491598f4d4b8d4a99fbc6b
Ethan Blanton <elb@pidgin.im>
parents:
24763
diff
changeset
|
385 | } |
| 6333 | 386 | } else if (!strcmp(name, "320")) { |
| 387 | irc->whois.identified = 1; | |
|
35182
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
388 | } else if (!strcmp(name, "330")) { |
|
35282
9a21b3ce6ed7
Followup on 639ec03ba1ba related to the IRC security fixes - also fix debugging
Daniel Atallah <datallah@pidgin.im>
parents:
35280
diff
changeset
|
389 | purple_debug(PURPLE_DEBUG_INFO, "irc", "330 %s: 1=[%s] 2=[%s] 3=[%s]", |
|
35182
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
390 | name, args[1], args[2], args[3]); |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
391 | if (!strcmp(args[3], "is logged in as")) |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
392 | irc->whois.login = g_strdup(args[2]); |
| 6333 | 393 | } |
| 394 | } | |
| 395 | ||
| 396 | void irc_msg_endwhois(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 397 | { | |
| 15884 | 398 | PurpleConnection *gc; |
|
15215
3b4c0490b8b0
[gaim-migrate @ 17939]
Mark Doliner <markdoliner@pidgin.im>
parents:
15205
diff
changeset
|
399 | char *tmp, *tmp2; |
| 15884 | 400 | PurpleNotifyUserInfo *user_info; |
| 6333 | 401 | |
| 402 | if (!irc->whois.nick) { | |
|
31294
73607ab89c6f
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
31284
diff
changeset
|
403 | purple_debug(PURPLE_DEBUG_WARNING, "irc", "Unexpected End of %s for %s\n", !strcmp(name, "369") ? "WHOWAS" : "WHOIS" |
|
16474
bc8580a69dba
/whowas for IRC. Thanks, achris.
Ethan Blanton <elb@pidgin.im>
parents:
16167
diff
changeset
|
404 | , args[1]); |
| 6333 | 405 | return; |
| 406 | } | |
| 15884 | 407 | if (purple_utf8_strcasecmp(irc->whois.nick, args[1])) { |
|
31294
73607ab89c6f
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
31284
diff
changeset
|
408 | purple_debug(PURPLE_DEBUG_WARNING, "irc", "Received end of %s for %s, expecting %s\n", !strcmp(name, "369") ? "WHOWAS" : "WHOIS" |
|
16474
bc8580a69dba
/whowas for IRC. Thanks, achris.
Ethan Blanton <elb@pidgin.im>
parents:
16167
diff
changeset
|
409 | , args[1], irc->whois.nick); |
| 6333 | 410 | return; |
| 411 | } | |
| 412 | ||
| 15884 | 413 | user_info = purple_notify_user_info_new(); |
|
15205
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
14731
diff
changeset
|
414 | |
|
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
14731
diff
changeset
|
415 | tmp2 = g_markup_escape_text(args[1], -1); |
|
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
14731
diff
changeset
|
416 | tmp = g_strdup_printf("%s%s%s", tmp2, |
|
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
14731
diff
changeset
|
417 | (irc->whois.ircop ? _(" <i>(ircop)</i>") : ""), |
|
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
14731
diff
changeset
|
418 | (irc->whois.identified ? _(" <i>(identified)</i>") : "")); |
|
32191
a4668d9dc8d1
Rename purple_notify_user_info_add_pair to
Mark Doliner <markdoliner@pidgin.im>
parents:
32162
diff
changeset
|
419 | purple_notify_user_info_add_pair_html(user_info, _("Nick"), tmp); |
|
15205
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
14731
diff
changeset
|
420 | g_free(tmp2); |
| 10634 | 421 | g_free(tmp); |
|
15205
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
14731
diff
changeset
|
422 | |
| 6333 | 423 | if (irc->whois.away) { |
|
32162
cf848cd25330
Use purple_notify_user_info_add_pair_plaintext in some places where we
Mark Doliner <markdoliner@pidgin.im>
parents:
32157
diff
changeset
|
424 | purple_notify_user_info_add_pair_plaintext(user_info, _("Away"), irc->whois.away); |
| 6333 | 425 | g_free(irc->whois.away); |
| 426 | } | |
|
35182
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
427 | if (irc->whois.real) { |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
428 | purple_notify_user_info_add_pair_plaintext(user_info, _("Real name"), irc->whois.real); |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
429 | g_free(irc->whois.real); |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
430 | } |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
431 | if (irc->whois.login) { |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
432 | purple_notify_user_info_add_pair_plaintext(user_info, _("Login name"), irc->whois.login); |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
433 | g_free(irc->whois.login); |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
434 | } |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
435 | if (irc->whois.ident) { |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
436 | purple_notify_user_info_add_pair_plaintext(user_info, _("Ident name"), irc->whois.ident); |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
437 | g_free(irc->whois.ident); |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
438 | } |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
439 | if (irc->whois.host) { |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
440 | purple_notify_user_info_add_pair_plaintext(user_info, _("Host name"), irc->whois.host); |
|
639ec03ba1ba
Improve IRC whois command
Andy Spencer <andy753421@gmail.com>
parents:
35169
diff
changeset
|
441 | g_free(irc->whois.host); |
| 6333 | 442 | } |
| 443 | if (irc->whois.server) { | |
|
15205
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
14731
diff
changeset
|
444 | tmp = g_strdup_printf("%s (%s)", irc->whois.server, irc->whois.serverinfo); |
|
32162
cf848cd25330
Use purple_notify_user_info_add_pair_plaintext in some places where we
Mark Doliner <markdoliner@pidgin.im>
parents:
32157
diff
changeset
|
445 | purple_notify_user_info_add_pair_plaintext(user_info, _("Server"), tmp); |
|
15205
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
14731
diff
changeset
|
446 | g_free(tmp); |
| 6333 | 447 | g_free(irc->whois.server); |
| 448 | g_free(irc->whois.serverinfo); | |
| 449 | } | |
| 450 | if (irc->whois.channels) { | |
|
32162
cf848cd25330
Use purple_notify_user_info_add_pair_plaintext in some places where we
Mark Doliner <markdoliner@pidgin.im>
parents:
32157
diff
changeset
|
451 | purple_notify_user_info_add_pair_plaintext(user_info, _("Currently on"), irc->whois.channels->str); |
|
25703
5e04772797b3
applied changes from 0064869870b3507952491598f4d4b8d4a99fbc6b
Ethan Blanton <elb@pidgin.im>
parents:
24763
diff
changeset
|
452 | g_string_free(irc->whois.channels, TRUE); |
| 6333 | 453 | } |
| 454 | if (irc->whois.idle) { | |
| 15884 | 455 | gchar *timex = purple_str_seconds_to_string(irc->whois.idle); |
|
32162
cf848cd25330
Use purple_notify_user_info_add_pair_plaintext in some places where we
Mark Doliner <markdoliner@pidgin.im>
parents:
32157
diff
changeset
|
456 | purple_notify_user_info_add_pair_plaintext(user_info, _("Idle for"), timex); |
|
6357
f83643b0a067
[gaim-migrate @ 6856]
Mark Doliner <markdoliner@pidgin.im>
parents:
6351
diff
changeset
|
457 | g_free(timex); |
|
32162
cf848cd25330
Use purple_notify_user_info_add_pair_plaintext in some places where we
Mark Doliner <markdoliner@pidgin.im>
parents:
32157
diff
changeset
|
458 | purple_notify_user_info_add_pair_plaintext(user_info, |
| 15884 | 459 | _("Online since"), purple_date_format_full(localtime(&irc->whois.signon))); |
| 6333 | 460 | } |
|
32162
cf848cd25330
Use purple_notify_user_info_add_pair_plaintext in some places where we
Mark Doliner <markdoliner@pidgin.im>
parents:
32157
diff
changeset
|
461 | if (!strcmp(irc->whois.nick, "elb")) { |
|
cf848cd25330
Use purple_notify_user_info_add_pair_plaintext in some places where we
Mark Doliner <markdoliner@pidgin.im>
parents:
32157
diff
changeset
|
462 | purple_notify_user_info_add_pair_plaintext(user_info, |
|
15205
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
14731
diff
changeset
|
463 | _("<b>Defining adjective:</b>"), _("Glorious")); |
| 6333 | 464 | } |
| 465 | ||
| 15884 | 466 | gc = purple_account_get_connection(irc->account); |
|
7062
26abb8b189ce
[gaim-migrate @ 7626]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
467 | |
| 15884 | 468 | purple_notify_userinfo(gc, irc->whois.nick, user_info, NULL, NULL); |
| 469 | purple_notify_user_info_destroy(user_info); | |
|
7062
26abb8b189ce
[gaim-migrate @ 7626]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
470 | |
|
10504
eae130eefbfe
[gaim-migrate @ 11796]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10246
diff
changeset
|
471 | g_free(irc->whois.nick); |
| 6333 | 472 | memset(&irc->whois, 0, sizeof(irc->whois)); |
| 473 | } | |
| 474 | ||
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
475 | void irc_msg_who(struct irc_conn *irc, const char *name, const char *from, char **args) |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
476 | { |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
477 | if (!strcmp(name, "352")) { |
|
34622
753f46dd000f
Global replace - renamed functions and types according to GObject-based PurpleConversation API
Ankit Vani <a@nevitus.org>
parents:
34169
diff
changeset
|
478 | PurpleChatConversation *chat; |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
479 | PurpleChatUser *cb; |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
480 | |
|
32037
619f32df41f1
Fix a crash when remote users have certain characters in their
Mark Doliner <markdoliner@pidgin.im>
parents:
32019
diff
changeset
|
481 | char *cur, *userhost, *realname; |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
482 | |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
483 | PurpleChatUserFlags flags; |
|
32037
619f32df41f1
Fix a crash when remote users have certain characters in their
Mark Doliner <markdoliner@pidgin.im>
parents:
32019
diff
changeset
|
484 | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
485 | chat = purple_conversations_find_chat_with_account(args[1], irc->account); |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
486 | if (!chat) { |
|
32037
619f32df41f1
Fix a crash when remote users have certain characters in their
Mark Doliner <markdoliner@pidgin.im>
parents:
32019
diff
changeset
|
487 | purple_debug(PURPLE_DEBUG_ERROR, "irc","Got a WHO response for %s, which doesn't exist\n", args[1]); |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
488 | return; |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
489 | } |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
490 | |
|
34671
ca9b45be7a63
Renamed chat buddy to chat user in a few more places
Ankit Vani <a@nevitus.org>
parents:
34670
diff
changeset
|
491 | cb = purple_chat_conversation_find_user(chat, args[5]); |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
492 | if (!cb) { |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
493 | purple_debug(PURPLE_DEBUG_ERROR, "irc", "Got a WHO response for %s who isn't a buddy.\n", args[5]); |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
494 | return; |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
495 | } |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
496 | |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
497 | userhost = g_strdup_printf("%s@%s", args[2], args[3]); |
|
32037
619f32df41f1
Fix a crash when remote users have certain characters in their
Mark Doliner <markdoliner@pidgin.im>
parents:
32019
diff
changeset
|
498 | |
|
619f32df41f1
Fix a crash when remote users have certain characters in their
Mark Doliner <markdoliner@pidgin.im>
parents:
32019
diff
changeset
|
499 | /* The final argument is a :-argument, but annoyingly |
|
619f32df41f1
Fix a crash when remote users have certain characters in their
Mark Doliner <markdoliner@pidgin.im>
parents:
32019
diff
changeset
|
500 | * contains two "words", the hop count and real name. */ |
|
619f32df41f1
Fix a crash when remote users have certain characters in their
Mark Doliner <markdoliner@pidgin.im>
parents:
32019
diff
changeset
|
501 | for (cur = args[7]; *cur; cur++) { |
|
619f32df41f1
Fix a crash when remote users have certain characters in their
Mark Doliner <markdoliner@pidgin.im>
parents:
32019
diff
changeset
|
502 | if (*cur == ' ') { |
|
619f32df41f1
Fix a crash when remote users have certain characters in their
Mark Doliner <markdoliner@pidgin.im>
parents:
32019
diff
changeset
|
503 | cur++; |
|
619f32df41f1
Fix a crash when remote users have certain characters in their
Mark Doliner <markdoliner@pidgin.im>
parents:
32019
diff
changeset
|
504 | break; |
|
619f32df41f1
Fix a crash when remote users have certain characters in their
Mark Doliner <markdoliner@pidgin.im>
parents:
32019
diff
changeset
|
505 | } |
|
619f32df41f1
Fix a crash when remote users have certain characters in their
Mark Doliner <markdoliner@pidgin.im>
parents:
32019
diff
changeset
|
506 | } |
|
619f32df41f1
Fix a crash when remote users have certain characters in their
Mark Doliner <markdoliner@pidgin.im>
parents:
32019
diff
changeset
|
507 | realname = g_strdup(cur); |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
508 | |
|
34676
b70177e7a8b7
Removed attributes from PurpleChatUser. Used g_object_[gs]et_data()/g_object_[gs]et_data_full() instead
Ankit Vani <a@nevitus.org>
parents:
34671
diff
changeset
|
509 | g_object_set_data_full(G_OBJECT(cb), "userhost", userhost, (GDestroyNotify)g_free); |
|
b70177e7a8b7
Removed attributes from PurpleChatUser. Used g_object_[gs]et_data()/g_object_[gs]et_data_full() instead
Ankit Vani <a@nevitus.org>
parents:
34671
diff
changeset
|
510 | g_object_set_data_full(G_OBJECT(cb), "realname", realname, (GDestroyNotify)g_free); |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
511 | |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
512 | flags = purple_chat_user_get_flags(cb); |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
513 | |
|
32117
6d49fa9e996c
Remove periodic WHO on IRC.
Ethan Blanton <elb@pidgin.im>
parents:
32037
diff
changeset
|
514 | /* FIXME: I'm not sure this is really a good idea, now |
|
6d49fa9e996c
Remove periodic WHO on IRC.
Ethan Blanton <elb@pidgin.im>
parents:
32037
diff
changeset
|
515 | * that we no longer do periodic WHO. It seems to me |
|
6d49fa9e996c
Remove periodic WHO on IRC.
Ethan Blanton <elb@pidgin.im>
parents:
32037
diff
changeset
|
516 | * like it's more likely to be confusing than not. |
|
6d49fa9e996c
Remove periodic WHO on IRC.
Ethan Blanton <elb@pidgin.im>
parents:
32037
diff
changeset
|
517 | * Comments? */ |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
518 | if (args[6][0] == 'G' && !(flags & PURPLE_CHAT_USER_AWAY)) { |
|
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
519 | purple_chat_user_set_flags(cb, flags | PURPLE_CHAT_USER_AWAY); |
|
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
520 | } else if(args[6][0] == 'H' && (flags & PURPLE_CHAT_USER_AWAY)) { |
|
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
521 | purple_chat_user_set_flags(cb, flags & ~PURPLE_CHAT_USER_AWAY); |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
522 | } |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
523 | } |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
524 | } |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
525 | |
| 8114 | 526 | void irc_msg_list(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 527 | { | |
| 528 | if (!irc->roomlist) | |
| 529 | return; | |
| 530 | ||
| 531 | if (!strcmp(name, "321")) { | |
| 15884 | 532 | purple_roomlist_set_in_progress(irc->roomlist, TRUE); |
| 8114 | 533 | return; |
| 534 | } | |
| 535 | ||
| 536 | if (!strcmp(name, "323")) { | |
| 15884 | 537 | purple_roomlist_set_in_progress(irc->roomlist, FALSE); |
|
34932
1b74e5c63144
Use g_object_{ref|unref} instead of purple_roomlist_{ref|unref}
Ankit Vani <a@nevitus.org>
parents:
34855
diff
changeset
|
538 | g_object_unref(irc->roomlist); |
| 8114 | 539 | irc->roomlist = NULL; |
|
13667
9ebf0007d912
[gaim-migrate @ 16068]
Richard Laager <rlaager@pidgin.im>
parents:
13647
diff
changeset
|
540 | return; |
| 8114 | 541 | } |
| 542 | ||
| 543 | if (!strcmp(name, "322")) { | |
| 15884 | 544 | PurpleRoomlistRoom *room; |
|
17409
1205b4f7bb82
This performs mIRC formatting code stripping for the room list, as
Ethan Blanton <elb@pidgin.im>
parents:
17297
diff
changeset
|
545 | char *topic; |
| 8114 | 546 | |
|
22994
b30be6210442
Patch from sadrul to fix IRC servers which neglect to send RPL_LISTSTART
Ethan Blanton <elb@pidgin.im>
parents:
22983
diff
changeset
|
547 | if (!purple_roomlist_get_in_progress(irc->roomlist)) { |
|
b30be6210442
Patch from sadrul to fix IRC servers which neglect to send RPL_LISTSTART
Ethan Blanton <elb@pidgin.im>
parents:
22983
diff
changeset
|
548 | purple_debug_warning("irc", "Buggy server didn't send RPL_LISTSTART.\n"); |
|
b30be6210442
Patch from sadrul to fix IRC servers which neglect to send RPL_LISTSTART
Ethan Blanton <elb@pidgin.im>
parents:
22983
diff
changeset
|
549 | purple_roomlist_set_in_progress(irc->roomlist, TRUE); |
|
b30be6210442
Patch from sadrul to fix IRC servers which neglect to send RPL_LISTSTART
Ethan Blanton <elb@pidgin.im>
parents:
22983
diff
changeset
|
550 | } |
|
b30be6210442
Patch from sadrul to fix IRC servers which neglect to send RPL_LISTSTART
Ethan Blanton <elb@pidgin.im>
parents:
22983
diff
changeset
|
551 | |
| 15884 | 552 | room = purple_roomlist_room_new(PURPLE_ROOMLIST_ROOMTYPE_ROOM, args[1], NULL); |
| 553 | purple_roomlist_room_add_field(irc->roomlist, room, args[1]); | |
| 554 | purple_roomlist_room_add_field(irc->roomlist, room, GINT_TO_POINTER(strtol(args[2], NULL, 10))); | |
|
17409
1205b4f7bb82
This performs mIRC formatting code stripping for the room list, as
Ethan Blanton <elb@pidgin.im>
parents:
17297
diff
changeset
|
555 | topic = irc_mirc2txt(args[3]); |
|
1205b4f7bb82
This performs mIRC formatting code stripping for the room list, as
Ethan Blanton <elb@pidgin.im>
parents:
17297
diff
changeset
|
556 | purple_roomlist_room_add_field(irc->roomlist, room, topic); |
|
1205b4f7bb82
This performs mIRC formatting code stripping for the room list, as
Ethan Blanton <elb@pidgin.im>
parents:
17297
diff
changeset
|
557 | g_free(topic); |
| 15884 | 558 | purple_roomlist_room_add(irc->roomlist, room); |
| 8114 | 559 | } |
| 560 | } | |
| 561 | ||
| 6333 | 562 | void irc_msg_topic(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 563 | { | |
| 9762 | 564 | char *chan, *topic, *msg, *nick, *tmp, *tmp2; |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
565 | PurpleChatConversation *chat; |
| 6333 | 566 | |
| 567 | if (!strcmp(name, "topic")) { | |
| 568 | chan = args[0]; | |
| 8529 | 569 | topic = irc_mirc2txt (args[1]); |
| 6333 | 570 | } else { |
| 571 | chan = args[1]; | |
| 8529 | 572 | topic = irc_mirc2txt (args[2]); |
| 6333 | 573 | } |
| 574 | ||
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
575 | chat = purple_conversations_find_chat_with_account(chan, irc->account); |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
576 | if (!chat) { |
| 15884 | 577 | purple_debug(PURPLE_DEBUG_ERROR, "irc", "Got a topic for %s, which doesn't exist\n", chan); |
|
13647
c0dd11a3254c
[gaim-migrate @ 16047]
Daniel Atallah <datallah@pidgin.im>
parents:
13638
diff
changeset
|
578 | g_free(topic); |
|
c0dd11a3254c
[gaim-migrate @ 16047]
Daniel Atallah <datallah@pidgin.im>
parents:
13638
diff
changeset
|
579 | return; |
|
c0dd11a3254c
[gaim-migrate @ 16047]
Daniel Atallah <datallah@pidgin.im>
parents:
13638
diff
changeset
|
580 | } |
|
c0dd11a3254c
[gaim-migrate @ 16047]
Daniel Atallah <datallah@pidgin.im>
parents:
13638
diff
changeset
|
581 | |
| 6333 | 582 | /* If this is an interactive update, print it out */ |
|
10732
5e314ab498bf
[gaim-migrate @ 12334]
Richard Laager <rlaager@pidgin.im>
parents:
10730
diff
changeset
|
583 | tmp = g_markup_escape_text(topic, -1); |
| 15884 | 584 | tmp2 = purple_markup_linkify(tmp); |
| 9762 | 585 | g_free(tmp); |
| 6333 | 586 | if (!strcmp(name, "topic")) { |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
587 | const char *current_topic = purple_chat_conversation_get_topic(chat); |
|
13534
637a369ac8b0
[gaim-migrate @ 15910]
Richard Laager <rlaager@pidgin.im>
parents:
13525
diff
changeset
|
588 | if (!(current_topic != NULL && strcmp(tmp2, current_topic) == 0)) |
|
637a369ac8b0
[gaim-migrate @ 15910]
Richard Laager <rlaager@pidgin.im>
parents:
13525
diff
changeset
|
589 | { |
|
637a369ac8b0
[gaim-migrate @ 15910]
Richard Laager <rlaager@pidgin.im>
parents:
13525
diff
changeset
|
590 | char *nick_esc; |
|
637a369ac8b0
[gaim-migrate @ 15910]
Richard Laager <rlaager@pidgin.im>
parents:
13525
diff
changeset
|
591 | nick = irc_mask_nick(from); |
|
637a369ac8b0
[gaim-migrate @ 15910]
Richard Laager <rlaager@pidgin.im>
parents:
13525
diff
changeset
|
592 | nick_esc = g_markup_escape_text(nick, -1); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
593 | purple_chat_conversation_set_topic(chat, nick, topic); |
|
13534
637a369ac8b0
[gaim-migrate @ 15910]
Richard Laager <rlaager@pidgin.im>
parents:
13525
diff
changeset
|
594 | if (*tmp2) |
|
637a369ac8b0
[gaim-migrate @ 15910]
Richard Laager <rlaager@pidgin.im>
parents:
13525
diff
changeset
|
595 | msg = g_strdup_printf(_("%s has changed the topic to: %s"), nick_esc, tmp2); |
|
637a369ac8b0
[gaim-migrate @ 15910]
Richard Laager <rlaager@pidgin.im>
parents:
13525
diff
changeset
|
596 | else |
|
637a369ac8b0
[gaim-migrate @ 15910]
Richard Laager <rlaager@pidgin.im>
parents:
13525
diff
changeset
|
597 | msg = g_strdup_printf(_("%s has cleared the topic."), nick_esc); |
|
637a369ac8b0
[gaim-migrate @ 15910]
Richard Laager <rlaager@pidgin.im>
parents:
13525
diff
changeset
|
598 | g_free(nick_esc); |
|
637a369ac8b0
[gaim-migrate @ 15910]
Richard Laager <rlaager@pidgin.im>
parents:
13525
diff
changeset
|
599 | g_free(nick); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
600 | purple_conversation_write_message(PURPLE_CONVERSATION(chat), from, |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
601 | msg, PURPLE_MESSAGE_SYSTEM, time(NULL)); |
|
13534
637a369ac8b0
[gaim-migrate @ 15910]
Richard Laager <rlaager@pidgin.im>
parents:
13525
diff
changeset
|
602 | g_free(msg); |
|
637a369ac8b0
[gaim-migrate @ 15910]
Richard Laager <rlaager@pidgin.im>
parents:
13525
diff
changeset
|
603 | } |
| 6333 | 604 | } else { |
|
13395
3174cf554db2
[gaim-migrate @ 15767]
Richard Laager <rlaager@pidgin.im>
parents:
13120
diff
changeset
|
605 | char *chan_esc = g_markup_escape_text(chan, -1); |
|
3174cf554db2
[gaim-migrate @ 15767]
Richard Laager <rlaager@pidgin.im>
parents:
13120
diff
changeset
|
606 | msg = g_strdup_printf(_("The topic for %s is: %s"), chan_esc, tmp2); |
|
3174cf554db2
[gaim-migrate @ 15767]
Richard Laager <rlaager@pidgin.im>
parents:
13120
diff
changeset
|
607 | g_free(chan_esc); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
608 | purple_chat_conversation_set_topic(chat, NULL, topic); |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
609 | purple_conversation_write_message(PURPLE_CONVERSATION(chat), "", msg, |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
610 | PURPLE_MESSAGE_SYSTEM, time(NULL)); |
| 6333 | 611 | g_free(msg); |
| 612 | } | |
| 9762 | 613 | g_free(tmp2); |
| 8529 | 614 | g_free(topic); |
| 6333 | 615 | } |
| 616 | ||
|
33544
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
617 | void irc_msg_topicinfo(struct irc_conn *irc, const char *name, const char *from, char **args) |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
618 | { |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
619 | PurpleChatConversation *chat; |
|
33544
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
620 | struct tm *tm; |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
621 | time_t t; |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
622 | char *msg, *timestamp, *datestamp; |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
623 | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
624 | chat = purple_conversations_find_chat_with_account(args[1], irc->account); |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
625 | if (!chat) { |
|
33544
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
626 | purple_debug(PURPLE_DEBUG_ERROR, "irc", "Got topic info for %s, which doesn't exist\n", args[1]); |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
627 | return; |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
628 | } |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
629 | |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
630 | t = (time_t)atol(args[3]); |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
631 | if (t == 0) { |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
632 | purple_debug(PURPLE_DEBUG_ERROR, "irc", "Got apparently nonsensical topic timestamp %s\n", args[3]); |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
633 | return; |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
634 | } |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
635 | tm = localtime(&t); |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
636 | |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
637 | timestamp = g_strdup(purple_time_format(tm)); |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
638 | datestamp = g_strdup(purple_date_format_short(tm)); |
|
33729
ad9fe0ad7f39
The "Topic set" message should be translateable. Refs #13317
Daniel Atallah <datallah@pidgin.im>
parents:
33544
diff
changeset
|
639 | msg = g_strdup_printf(_("Topic for %s set by %s at %s on %s"), args[1], args[2], timestamp, datestamp); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
640 | purple_conversation_write_message(PURPLE_CONVERSATION(chat), "", msg, |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
641 | PURPLE_MESSAGE_SYSTEM | PURPLE_MESSAGE_NO_LINKIFY, time(NULL)); |
|
33544
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
642 | g_free(timestamp); |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
643 | g_free(datestamp); |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
644 | g_free(msg); |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
645 | } |
|
3780e4cb9738
Print topic setter information at channel join.
Ethan Blanton <elb@pidgin.im>
parents:
33407
diff
changeset
|
646 | |
| 6333 | 647 | void irc_msg_unknown(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 648 | { | |
| 15884 | 649 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
| 6333 | 650 | char *buf; |
| 651 | ||
|
35254
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
652 | g_return_if_fail(gc); |
| 6333 | 653 | |
| 654 | buf = g_strdup_printf(_("Unknown message '%s'"), args[1]); | |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
655 | purple_notify_error(gc, _("Unknown message"), buf, _("The IRC server " |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
656 | "received a message it did not understand."), |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
657 | purple_request_cpar_from_connection(gc)); |
| 6333 | 658 | g_free(buf); |
| 659 | } | |
| 660 | ||
| 661 | void irc_msg_names(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 662 | { | |
| 663 | char *names, *cur, *end, *tmp, *msg; | |
| 15884 | 664 | PurpleConversation *convo; |
| 6333 | 665 | |
| 666 | if (!strcmp(name, "366")) { | |
|
34625
03d62b1660fc
Refactor code to remove conversation type from some instances of purple_conversations_find_with_account()
Ankit Vani <a@nevitus.org>
parents:
34622
diff
changeset
|
667 | convo = purple_conversations_find_with_account(args[1], irc->account); |
| 6333 | 668 | if (!convo) { |
| 15884 | 669 | purple_debug(PURPLE_DEBUG_ERROR, "irc", "Got a NAMES list for %s, which doesn't exist\n", args[1]); |
| 6333 | 670 | g_string_free(irc->names, TRUE); |
| 671 | irc->names = NULL; | |
| 672 | return; | |
| 673 | } | |
| 674 | ||
| 675 | names = cur = g_string_free(irc->names, FALSE); | |
| 676 | irc->names = NULL; | |
|
34678
40a30f74a7b8
Removed purple_conversation_[gs]et_data(). Used g_object_[gs]et_data() instead.
Ankit Vani <a@nevitus.org>
parents:
34676
diff
changeset
|
677 | if (g_object_get_data(G_OBJECT(convo), IRC_NAMES_FLAG)) { |
|
11026
1f13c483db00
[gaim-migrate @ 12901]
Daniel Atallah <datallah@pidgin.im>
parents:
10816
diff
changeset
|
678 | msg = g_strdup_printf(_("Users on %s: %s"), args[1], names ? names : ""); |
|
34629
3c3bed0fd13c
Refactored gg and irc protocols to use the GObject-based PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34625
diff
changeset
|
679 | purple_conversation_write_message(convo, "", msg, PURPLE_MESSAGE_SYSTEM|PURPLE_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 680 | g_free(msg); |
|
32019
15434d17f320
Fix potential crash when NAMES is empty.
James McLaughlin <jamie@lacewing-project.org>
parents:
31936
diff
changeset
|
681 | } else if (cur != NULL) { |
|
6407
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
682 | GList *users = NULL; |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
683 | GList *flags = NULL; |
|
6407
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
684 | |
| 6333 | 685 | while (*cur) { |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
686 | PurpleChatUserFlags f = PURPLE_CHAT_USER_NONE; |
| 6333 | 687 | end = strchr(cur, ' '); |
| 688 | if (!end) | |
| 689 | end = cur + strlen(cur); | |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
690 | if (*cur == '@') { |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
691 | f = PURPLE_CHAT_USER_OP; |
| 6333 | 692 | cur++; |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
693 | } else if (*cur == '%') { |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
694 | f = PURPLE_CHAT_USER_HALFOP; |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
695 | cur++; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
696 | } else if(*cur == '+') { |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
697 | f = PURPLE_CHAT_USER_VOICE; |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
698 | cur++; |
|
16167
8536102557ba
Make non-standard mode characters support connection-specific instead of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
699 | } else if(irc->mode_chars |
|
8536102557ba
Make non-standard mode characters support connection-specific instead of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15884
diff
changeset
|
700 | && strchr(irc->mode_chars, *cur)) { |
|
22471
aa32d9ed764d
Give IRC channel owners the founder icon on networks that report supporting
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
21736
diff
changeset
|
701 | if (*cur == '~') |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
702 | f = PURPLE_CHAT_USER_FOUNDER; |
|
15501
8547fa591578
Recognize non-standard mode characters communicated in an 005 numeric for IRC
Ethan Blanton <elb@pidgin.im>
parents:
15444
diff
changeset
|
703 | cur++; |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
704 | } |
| 6333 | 705 | tmp = g_strndup(cur, end - cur); |
|
11869
e77f2f29b09d
[gaim-migrate @ 14160]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11535
diff
changeset
|
706 | users = g_list_prepend(users, tmp); |
|
e77f2f29b09d
[gaim-migrate @ 14160]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11535
diff
changeset
|
707 | flags = g_list_prepend(flags, GINT_TO_POINTER(f)); |
| 6333 | 708 | cur = end; |
| 709 | if (*cur) | |
| 710 | cur++; | |
| 711 | } | |
|
6407
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
712 | |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
713 | if (users != NULL) { |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
714 | GList *l; |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
715 | |
|
34629
3c3bed0fd13c
Refactored gg and irc protocols to use the GObject-based PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34625
diff
changeset
|
716 | purple_chat_conversation_add_users(PURPLE_CHAT_CONVERSATION(convo), users, NULL, flags, FALSE); |
|
6407
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
717 | |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
718 | for (l = users; l != NULL; l = l->next) |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
719 | g_free(l->data); |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
720 | |
|
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
721 | g_list_free(users); |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
722 | g_list_free(flags); |
|
6407
d67b6a6ba7d2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6357
diff
changeset
|
723 | } |
|
15516
07e9a078cc06
This makes IRC /names handling generally more robust, as well as
Ethan Blanton <elb@pidgin.im>
parents:
15508
diff
changeset
|
724 | |
|
34678
40a30f74a7b8
Removed purple_conversation_[gs]et_data(). Used g_object_[gs]et_data() instead.
Ankit Vani <a@nevitus.org>
parents:
34676
diff
changeset
|
725 | g_object_set_data(G_OBJECT(convo), IRC_NAMES_FLAG, |
|
15516
07e9a078cc06
This makes IRC /names handling generally more robust, as well as
Ethan Blanton <elb@pidgin.im>
parents:
15508
diff
changeset
|
726 | GINT_TO_POINTER(TRUE)); |
| 6333 | 727 | } |
| 728 | g_free(names); | |
| 729 | } else { | |
| 730 | if (!irc->names) | |
| 731 | irc->names = g_string_new(""); | |
| 732 | ||
| 15313 | 733 | if (irc->names->len && irc->names->str[irc->names->len - 1] != ' ') |
| 734 | irc->names = g_string_append_c(irc->names, ' '); | |
| 6333 | 735 | irc->names = g_string_append(irc->names, args[3]); |
| 736 | } | |
| 737 | } | |
| 738 | ||
| 739 | void irc_msg_motd(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 740 | { | |
|
10774
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
741 | char *escaped; |
| 6333 | 742 | |
|
15508
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
743 | if (!strcmp(name, "375")) { |
|
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
744 | if (irc->motd) |
|
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
745 | g_string_free(irc->motd, TRUE); |
|
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
746 | irc->motd = g_string_new(""); |
|
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
747 | return; |
|
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
748 | } else if (!strcmp(name, "376")) { |
|
17169
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
749 | /* dircproxy 1.0.5 does not send 251 on reconnection, so |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
750 | * finalize the connection here if it is not already done. */ |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
751 | irc_connected(irc, args[0]); |
|
15508
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
752 | return; |
|
31229
4bef370d8a92
Process 422 (ERR_NOMOTD) as a valid replacement for an actual MOTD
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
30270
diff
changeset
|
753 | } else if (!strcmp(name, "422")) { |
|
4bef370d8a92
Process 422 (ERR_NOMOTD) as a valid replacement for an actual MOTD
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
30270
diff
changeset
|
754 | /* in case there is no 251, and no MOTD set, finalize the connection. |
|
4bef370d8a92
Process 422 (ERR_NOMOTD) as a valid replacement for an actual MOTD
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
30270
diff
changeset
|
755 | * (and clear the motd for good measure). */ |
|
31294
73607ab89c6f
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
31284
diff
changeset
|
756 | |
|
31229
4bef370d8a92
Process 422 (ERR_NOMOTD) as a valid replacement for an actual MOTD
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
30270
diff
changeset
|
757 | if (irc->motd) |
|
4bef370d8a92
Process 422 (ERR_NOMOTD) as a valid replacement for an actual MOTD
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
30270
diff
changeset
|
758 | g_string_free(irc->motd, TRUE); |
|
31294
73607ab89c6f
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
31284
diff
changeset
|
759 | |
|
31229
4bef370d8a92
Process 422 (ERR_NOMOTD) as a valid replacement for an actual MOTD
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
30270
diff
changeset
|
760 | irc_connected(irc, args[0]); |
|
4bef370d8a92
Process 422 (ERR_NOMOTD) as a valid replacement for an actual MOTD
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
30270
diff
changeset
|
761 | return; |
|
15508
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
762 | } |
|
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
763 | |
|
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
764 | if (!irc->motd) { |
| 15884 | 765 | purple_debug_error("irc", "IRC server sent MOTD without STARTMOTD\n"); |
|
15508
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
766 | return; |
|
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
767 | } |
|
51a669b06193
This should fix up IRC logins for servers which do not provide an
Ethan Blanton <elb@pidgin.im>
parents:
15501
diff
changeset
|
768 | |
|
17169
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
769 | if (!args[1]) |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
770 | return; |
|
daa8fdad4564
Fix up IRC connections with dircproxy by allowing 376 to indicate success.
Ethan Blanton <elb@pidgin.im>
parents:
16993
diff
changeset
|
771 | |
|
10774
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
772 | escaped = g_markup_escape_text(args[1], -1); |
|
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
773 | g_string_append_printf(irc->motd, "%s<br>", escaped); |
|
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
774 | g_free(escaped); |
| 6333 | 775 | } |
| 776 | ||
| 10564 | 777 | void irc_msg_time(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 778 | { | |
| 15884 | 779 | PurpleConnection *gc; |
| 10564 | 780 | |
| 15884 | 781 | gc = purple_account_get_connection(irc->account); |
| 10564 | 782 | |
|
35254
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
783 | g_return_if_fail(gc); |
| 10564 | 784 | |
| 15884 | 785 | purple_notify_message(gc, PURPLE_NOTIFY_MSG_INFO, _("Time Response"), |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
786 | _("The IRC server's local time is:"), args[2], NULL, NULL, |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
787 | purple_request_cpar_from_connection(gc)); |
| 10564 | 788 | } |
| 789 | ||
| 7877 | 790 | void irc_msg_nochan(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 791 | { | |
| 15884 | 792 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
| 7877 | 793 | |
|
35254
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
794 | g_return_if_fail(gc); |
| 7877 | 795 | |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
796 | purple_notify_error(gc, NULL, _("No such channel"), args[1], |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
797 | purple_request_cpar_from_connection(gc)); |
| 7877 | 798 | } |
| 799 | ||
| 6333 | 800 | void irc_msg_nonick(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 801 | { | |
| 15884 | 802 | PurpleConnection *gc; |
| 803 | PurpleConversation *convo; | |
| 6333 | 804 | |
|
34625
03d62b1660fc
Refactor code to remove conversation type from some instances of purple_conversations_find_with_account()
Ankit Vani <a@nevitus.org>
parents:
34622
diff
changeset
|
805 | convo = purple_conversations_find_with_account(args[1], irc->account); |
| 6333 | 806 | if (convo) { |
|
34629
3c3bed0fd13c
Refactored gg and irc protocols to use the GObject-based PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34625
diff
changeset
|
807 | purple_conversation_write_message(convo, args[1], |
|
3c3bed0fd13c
Refactored gg and irc protocols to use the GObject-based PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34625
diff
changeset
|
808 | PURPLE_IS_IM_CONVERSATION(convo) ? _("User is not logged in") : _("no such channel"), |
|
3c3bed0fd13c
Refactored gg and irc protocols to use the GObject-based PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34625
diff
changeset
|
809 | PURPLE_MESSAGE_SYSTEM|PURPLE_MESSAGE_NO_LOG, time(NULL)); |
|
3c3bed0fd13c
Refactored gg and irc protocols to use the GObject-based PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34625
diff
changeset
|
810 | |
| 6333 | 811 | } else { |
| 15884 | 812 | if ((gc = purple_account_get_connection(irc->account)) == NULL) |
| 6333 | 813 | return; |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
814 | purple_notify_error(gc, NULL, _("No such nick or channel"), |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
815 | args[1], purple_request_cpar_from_connection(gc)); |
| 6333 | 816 | } |
| 817 | ||
| 15884 | 818 | if (irc->whois.nick && !purple_utf8_strcasecmp(irc->whois.nick, args[1])) { |
| 6333 | 819 | g_free(irc->whois.nick); |
| 820 | irc->whois.nick = NULL; | |
| 821 | } | |
| 822 | } | |
| 823 | ||
| 824 | void irc_msg_nosend(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 825 | { | |
| 15884 | 826 | PurpleConnection *gc; |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
827 | PurpleChatConversation *chat; |
| 6333 | 828 | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
829 | chat = purple_conversations_find_chat_with_account(args[1], irc->account); |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
830 | if (chat) { |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
831 | purple_conversation_write_message(PURPLE_CONVERSATION(chat), args[1], args[2], |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
832 | PURPLE_MESSAGE_SYSTEM|PURPLE_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 833 | } else { |
| 15884 | 834 | if ((gc = purple_account_get_connection(irc->account)) == NULL) |
| 6333 | 835 | return; |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
836 | purple_notify_error(gc, NULL, _("Could not send"), args[2], |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
837 | purple_request_cpar_from_connection(gc)); |
| 6333 | 838 | } |
| 839 | } | |
| 840 | ||
| 841 | void irc_msg_notinchan(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 842 | { | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
843 | PurpleChatConversation *chat = purple_conversations_find_chat_with_account(args[1], irc->account); |
| 6333 | 844 | |
| 15884 | 845 | purple_debug(PURPLE_DEBUG_INFO, "irc", "We're apparently not in %s, but tried to use it\n", args[1]); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
846 | if (chat) { |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
847 | /*g_slist_remove(irc->gc->buddy_chats, chat); |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
848 | purple_conversation_set_account(chat, NULL);*/ |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
849 | purple_conversation_write_message(PURPLE_CONVERSATION(chat), args[1], args[2], |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
850 | PURPLE_MESSAGE_SYSTEM|PURPLE_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 851 | } |
| 852 | } | |
| 853 | ||
| 854 | void irc_msg_notop(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 855 | { | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
856 | PurpleChatConversation *chat; |
| 6333 | 857 | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
858 | chat = purple_conversations_find_chat_with_account(args[1], irc->account); |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
859 | if (!chat) |
| 6333 | 860 | return; |
| 861 | ||
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
862 | purple_conversation_write_message(PURPLE_CONVERSATION(chat), "", args[2], PURPLE_MESSAGE_SYSTEM, time(NULL)); |
| 6333 | 863 | } |
| 864 | ||
| 865 | void irc_msg_invite(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 866 | { | |
| 15884 | 867 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
22876
824abbeefcc2
Avoid allocating and freeing stuff unnecessarily.
Daniel Atallah <datallah@pidgin.im>
parents:
22870
diff
changeset
|
868 | GHashTable *components; |
|
824abbeefcc2
Avoid allocating and freeing stuff unnecessarily.
Daniel Atallah <datallah@pidgin.im>
parents:
22870
diff
changeset
|
869 | gchar *nick; |
| 6333 | 870 | |
|
35248
9f132a6855cd
IRC: fill required command parameter counts (part 1)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33803
diff
changeset
|
871 | g_return_if_fail(gc); |
|
22876
824abbeefcc2
Avoid allocating and freeing stuff unnecessarily.
Daniel Atallah <datallah@pidgin.im>
parents:
22870
diff
changeset
|
872 | |
|
824abbeefcc2
Avoid allocating and freeing stuff unnecessarily.
Daniel Atallah <datallah@pidgin.im>
parents:
22870
diff
changeset
|
873 | components = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); |
|
824abbeefcc2
Avoid allocating and freeing stuff unnecessarily.
Daniel Atallah <datallah@pidgin.im>
parents:
22870
diff
changeset
|
874 | nick = irc_mask_nick(from); |
| 6333 | 875 | |
|
22870
25b482330fec
Use g_strdup to match the subsequent g_free.
Daniel Atallah <datallah@pidgin.im>
parents:
22798
diff
changeset
|
876 | g_hash_table_insert(components, g_strdup("channel"), g_strdup(args[1])); |
| 6333 | 877 | |
| 35501 | 878 | purple_serv_got_chat_invite(gc, args[1], nick, NULL, components); |
| 6333 | 879 | g_free(nick); |
| 880 | } | |
| 881 | ||
| 882 | void irc_msg_inviteonly(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 883 | { | |
| 15884 | 884 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
| 6333 | 885 | char *buf; |
| 886 | ||
|
35254
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
887 | g_return_if_fail(gc); |
| 6333 | 888 | |
| 889 | buf = g_strdup_printf(_("Joining %s requires an invitation."), args[1]); | |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
890 | purple_notify_error(gc, _("Invitation only"), _("Invitation only"), buf, |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
891 | purple_request_cpar_from_connection(gc)); |
| 6333 | 892 | g_free(buf); |
| 893 | } | |
| 894 | ||
| 895 | void irc_msg_ison(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 896 | { | |
| 897 | char **nicks; | |
| 898 | struct irc_buddy *ib; | |
| 899 | int i; | |
| 900 | ||
| 901 | nicks = g_strsplit(args[1], " ", -1); | |
| 902 | for (i = 0; nicks[i]; i++) { | |
| 903 | if ((ib = g_hash_table_lookup(irc->buddies, (gconstpointer)nicks[i])) == NULL) { | |
| 904 | continue; | |
| 905 | } | |
|
31284
893f2d78d438
Prevent sending ISON messages larger than 512 bytes. Fixes #9692.
Jeffrey Honig <jch@honig.net>
parents:
31229
diff
changeset
|
906 | ib->new_online_status = TRUE; |
| 6333 | 907 | } |
| 6350 | 908 | g_strfreev(nicks); |
| 909 | ||
|
31284
893f2d78d438
Prevent sending ISON messages larger than 512 bytes. Fixes #9692.
Jeffrey Honig <jch@honig.net>
parents:
31229
diff
changeset
|
910 | if (irc->ison_outstanding) |
|
893f2d78d438
Prevent sending ISON messages larger than 512 bytes. Fixes #9692.
Jeffrey Honig <jch@honig.net>
parents:
31229
diff
changeset
|
911 | irc_buddy_query(irc); |
|
893f2d78d438
Prevent sending ISON messages larger than 512 bytes. Fixes #9692.
Jeffrey Honig <jch@honig.net>
parents:
31229
diff
changeset
|
912 | |
|
893f2d78d438
Prevent sending ISON messages larger than 512 bytes. Fixes #9692.
Jeffrey Honig <jch@honig.net>
parents:
31229
diff
changeset
|
913 | if (!irc->ison_outstanding) |
|
893f2d78d438
Prevent sending ISON messages larger than 512 bytes. Fixes #9692.
Jeffrey Honig <jch@honig.net>
parents:
31229
diff
changeset
|
914 | g_hash_table_foreach(irc->buddies, (GHFunc)irc_buddy_status, (gpointer)irc); |
| 6333 | 915 | } |
| 916 | ||
| 917 | static void irc_buddy_status(char *name, struct irc_buddy *ib, struct irc_conn *irc) | |
| 918 | { | |
| 15884 | 919 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
34728
8efd73063ecf
Renamed buddy list functions to more appropriate/simler names.
Ankit Vani <a@nevitus.org>
parents:
34706
diff
changeset
|
920 | PurpleBuddy *buddy = purple_blist_find_buddy(irc->account, name); |
| 6333 | 921 | |
| 922 | if (!gc || !buddy) | |
| 923 | return; | |
| 924 | ||
|
31284
893f2d78d438
Prevent sending ISON messages larger than 512 bytes. Fixes #9692.
Jeffrey Honig <jch@honig.net>
parents:
31229
diff
changeset
|
925 | if (ib->online && !ib->new_online_status) { |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
926 | purple_protocol_got_user_status(irc->account, name, "offline", NULL); |
| 6333 | 927 | ib->online = FALSE; |
|
31284
893f2d78d438
Prevent sending ISON messages larger than 512 bytes. Fixes #9692.
Jeffrey Honig <jch@honig.net>
parents:
31229
diff
changeset
|
928 | } else if (!ib->online && ib->new_online_status) { |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
929 | purple_protocol_got_user_status(irc->account, name, "available", NULL); |
| 6333 | 930 | ib->online = TRUE; |
| 931 | } | |
| 932 | } | |
| 933 | ||
| 934 | void irc_msg_join(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 935 | { | |
| 15884 | 936 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
34622
753f46dd000f
Global replace - renamed functions and types according to GObject-based PurpleConversation API
Ankit Vani <a@nevitus.org>
parents:
34169
diff
changeset
|
937 | PurpleChatConversation *chat; |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
938 | PurpleChatUser *cb; |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
939 | |
|
35248
9f132a6855cd
IRC: fill required command parameter counts (part 1)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33803
diff
changeset
|
940 | char *nick, *userhost, *buf; |
| 9238 | 941 | struct irc_buddy *ib; |
| 6333 | 942 | static int id = 1; |
| 943 | ||
|
35248
9f132a6855cd
IRC: fill required command parameter counts (part 1)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33803
diff
changeset
|
944 | g_return_if_fail(gc); |
|
9f132a6855cd
IRC: fill required command parameter counts (part 1)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33803
diff
changeset
|
945 | |
|
9f132a6855cd
IRC: fill required command parameter counts (part 1)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33803
diff
changeset
|
946 | nick = irc_mask_nick(from); |
| 6333 | 947 | |
| 15884 | 948 | if (!purple_utf8_strcasecmp(nick, purple_connection_get_display_name(gc))) { |
| 6333 | 949 | /* We are joining a channel for the first time */ |
|
35499
c4c5e0a670b1
Fix namespaces issues in libpurple.
Ankit Vani <a@nevitus.org>
parents:
35297
diff
changeset
|
950 | purple_serv_got_joined_chat(gc, id++, args[0]); |
| 6333 | 951 | g_free(nick); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
952 | chat = purple_conversations_find_chat_with_account(args[0], irc->account); |
|
15516
07e9a078cc06
This makes IRC /names handling generally more robust, as well as
Ethan Blanton <elb@pidgin.im>
parents:
15508
diff
changeset
|
953 | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
954 | if (chat == NULL) { |
| 15884 | 955 | purple_debug_error("irc", "tried to join %s but couldn't\n", args[0]); |
| 13938 | 956 | return; |
| 957 | } | |
|
34678
40a30f74a7b8
Removed purple_conversation_[gs]et_data(). Used g_object_[gs]et_data() instead.
Ankit Vani <a@nevitus.org>
parents:
34676
diff
changeset
|
958 | g_object_set_data(G_OBJECT(chat), IRC_NAMES_FLAG, |
|
15516
07e9a078cc06
This makes IRC /names handling generally more robust, as well as
Ethan Blanton <elb@pidgin.im>
parents:
15508
diff
changeset
|
959 | GINT_TO_POINTER(FALSE)); |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
960 | |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
961 | // Get the real name and user host for all participants. |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
962 | buf = irc_format(irc, "vc", "WHO", args[0]); |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
963 | irc_send(irc, buf); |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
964 | g_free(buf); |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
965 | |
|
20194
fee478bb059b
applied changes from 26c05ed157a02643cbb12b04045422b123312bcf
Ethan Blanton <elb@pidgin.im>
parents:
19859
diff
changeset
|
966 | /* Until purple_conversation_present does something that |
|
24763
67d9d4c975c0
Replace spaces wth tabs in indentation and tabs with spaces in line continuations.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24416
diff
changeset
|
967 | * one would expect in Pidgin, this call produces buggy |
|
67d9d4c975c0
Replace spaces wth tabs in indentation and tabs with spaces in line continuations.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24416
diff
changeset
|
968 | * behavior both for the /join and auto-join cases. */ |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
969 | /* purple_conversation_present(chat); */ |
| 6333 | 970 | return; |
| 971 | } | |
| 972 | ||
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
973 | chat = purple_conversations_find_chat_with_account(args[0], irc->account); |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
974 | if (chat == NULL) { |
| 15884 | 975 | purple_debug(PURPLE_DEBUG_ERROR, "irc", "JOIN for %s failed\n", args[0]); |
| 6333 | 976 | g_free(nick); |
| 977 | return; | |
| 978 | } | |
| 979 | ||
| 980 | userhost = irc_mask_userhost(from); | |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
981 | |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
982 | purple_chat_conversation_add_user(chat, nick, userhost, PURPLE_CHAT_USER_NONE, TRUE); |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
983 | |
|
34671
ca9b45be7a63
Renamed chat buddy to chat user in a few more places
Ankit Vani <a@nevitus.org>
parents:
34670
diff
changeset
|
984 | cb = purple_chat_conversation_find_user(chat, nick); |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
985 | |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
986 | if (cb) { |
|
34676
b70177e7a8b7
Removed attributes from PurpleChatUser. Used g_object_[gs]et_data()/g_object_[gs]et_data_full() instead
Ankit Vani <a@nevitus.org>
parents:
34671
diff
changeset
|
987 | g_object_set_data_full(G_OBJECT(cb), "userhost", userhost, (GDestroyNotify)g_free); |
|
31565
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
988 | } |
|
1138b2c998ec
propagate from branch 'im.pidgin.pidgin' (head e131c2da768d5bd01e4bcb33b488a43ffd378208)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
31451
diff
changeset
|
989 | |
| 9238 | 990 | if ((ib = g_hash_table_lookup(irc->buddies, nick)) != NULL) { |
|
31284
893f2d78d438
Prevent sending ISON messages larger than 512 bytes. Fixes #9692.
Jeffrey Honig <jch@honig.net>
parents:
31229
diff
changeset
|
991 | ib->new_online_status = TRUE; |
| 9238 | 992 | irc_buddy_status(nick, ib, irc); |
| 993 | } | |
| 994 | ||
| 6333 | 995 | g_free(nick); |
| 996 | } | |
| 997 | ||
| 998 | void irc_msg_kick(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 999 | { | |
| 15884 | 1000 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1001 | PurpleChatConversation *chat = purple_conversations_find_chat_with_account(args[0], irc->account); |
|
35248
9f132a6855cd
IRC: fill required command parameter counts (part 1)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33803
diff
changeset
|
1002 | char *nick, *buf; |
| 6333 | 1003 | |
|
35248
9f132a6855cd
IRC: fill required command parameter counts (part 1)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33803
diff
changeset
|
1004 | g_return_if_fail(gc); |
|
9f132a6855cd
IRC: fill required command parameter counts (part 1)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33803
diff
changeset
|
1005 | |
|
9f132a6855cd
IRC: fill required command parameter counts (part 1)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33803
diff
changeset
|
1006 | nick = irc_mask_nick(from); |
| 6333 | 1007 | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1008 | if (!chat) { |
|
30270
8380aae8b132
I before E, except after C
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
29286
diff
changeset
|
1009 | purple_debug(PURPLE_DEBUG_ERROR, "irc", "Received a KICK for unknown channel %s\n", args[0]); |
| 6333 | 1010 | g_free(nick); |
| 1011 | return; | |
| 1012 | } | |
| 1013 | ||
| 15884 | 1014 | if (!purple_utf8_strcasecmp(purple_connection_get_display_name(gc), args[1])) { |
|
12855
5215e8d13a49
[gaim-migrate @ 15206]
Richard Laager <rlaager@pidgin.im>
parents:
12216
diff
changeset
|
1015 | buf = g_strdup_printf(_("You have been kicked by %s: (%s)"), nick, args[2]); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1016 | purple_conversation_write_message(PURPLE_CONVERSATION(chat), args[0], buf, PURPLE_MESSAGE_SYSTEM, time(NULL)); |
| 6333 | 1017 | g_free(buf); |
|
35499
c4c5e0a670b1
Fix namespaces issues in libpurple.
Ankit Vani <a@nevitus.org>
parents:
35297
diff
changeset
|
1018 | purple_serv_got_chat_left(gc, purple_chat_conversation_get_id(chat)); |
| 6333 | 1019 | } else { |
|
12855
5215e8d13a49
[gaim-migrate @ 15206]
Richard Laager <rlaager@pidgin.im>
parents:
12216
diff
changeset
|
1020 | buf = g_strdup_printf(_("Kicked by %s (%s)"), nick, args[2]); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1021 | purple_chat_conversation_remove_user(chat, args[1], buf); |
| 6333 | 1022 | g_free(buf); |
| 1023 | } | |
| 1024 | ||
| 1025 | g_free(nick); | |
| 1026 | return; | |
| 1027 | } | |
| 1028 | ||
| 1029 | void irc_msg_mode(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 1030 | { | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1031 | PurpleChatConversation *chat; |
| 6333 | 1032 | char *nick = irc_mask_nick(from), *buf; |
| 1033 | ||
| 1034 | if (*args[0] == '#' || *args[0] == '&') { /* Channel */ | |
|
10774
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
1035 | char *escaped; |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1036 | chat = purple_conversations_find_chat_with_account(args[0], irc->account); |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1037 | if (!chat) { |
| 15884 | 1038 | purple_debug(PURPLE_DEBUG_ERROR, "irc", "MODE received for %s, which we are not in\n", args[0]); |
| 6333 | 1039 | g_free(nick); |
| 1040 | return; | |
| 1041 | } | |
|
10774
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
1042 | escaped = (args[2] != NULL) ? g_markup_escape_text(args[2], -1) : NULL; |
|
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
1043 | buf = g_strdup_printf(_("mode (%s %s) by %s"), args[1], escaped ? escaped : "", nick); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1044 | purple_conversation_write_message(PURPLE_CONVERSATION(chat), args[0], buf, PURPLE_MESSAGE_SYSTEM, time(NULL)); |
|
10774
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
1045 | g_free(escaped); |
| 6333 | 1046 | g_free(buf); |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1047 | if(args[2]) { |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
1048 | PurpleChatUser *cb; |
|
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
1049 | PurpleChatUserFlags newflag, flags; |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1050 | char *mcur, *cur, *end, *user; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1051 | gboolean add = FALSE; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1052 | mcur = args[1]; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1053 | cur = args[2]; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1054 | while (*cur && *mcur) { |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1055 | if ((*mcur == '+') || (*mcur == '-')) { |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1056 | add = (*mcur == '+') ? TRUE : FALSE; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1057 | mcur++; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1058 | continue; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1059 | } |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1060 | end = strchr(cur, ' '); |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1061 | if (!end) |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1062 | end = cur + strlen(cur); |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1063 | user = g_strndup(cur, end - cur); |
|
34671
ca9b45be7a63
Renamed chat buddy to chat user in a few more places
Ankit Vani <a@nevitus.org>
parents:
34670
diff
changeset
|
1064 | cb = purple_chat_conversation_find_user(chat, user); |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
1065 | flags = purple_chat_user_get_flags(cb); |
|
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
1066 | newflag = PURPLE_CHAT_USER_NONE; |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1067 | if (*mcur == 'o') |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
1068 | newflag = PURPLE_CHAT_USER_OP; |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1069 | else if (*mcur =='h') |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
1070 | newflag = PURPLE_CHAT_USER_HALFOP; |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1071 | else if (*mcur == 'v') |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
1072 | newflag = PURPLE_CHAT_USER_VOICE; |
|
22471
aa32d9ed764d
Give IRC channel owners the founder icon on networks that report supporting
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
21736
diff
changeset
|
1073 | else if(irc->mode_chars |
|
aa32d9ed764d
Give IRC channel owners the founder icon on networks that report supporting
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
21736
diff
changeset
|
1074 | && strchr(irc->mode_chars, '~') && (*mcur == 'q')) |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
1075 | newflag = PURPLE_CHAT_USER_FOUNDER; |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1076 | if (newflag) { |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1077 | if (add) |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1078 | flags |= newflag; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1079 | else |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1080 | flags &= ~newflag; |
|
34670
9bd5bd903dc7
Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents:
34653
diff
changeset
|
1081 | purple_chat_user_set_flags(cb, flags); |
|
9554
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1082 | } |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1083 | g_free(user); |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1084 | cur = end; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1085 | if (*cur) |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1086 | cur++; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1087 | if (*mcur) |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1088 | mcur++; |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1089 | } |
|
1609ba3612c3
[gaim-migrate @ 10387]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9518
diff
changeset
|
1090 | } |
| 6333 | 1091 | } else { /* User */ |
| 1092 | } | |
| 1093 | g_free(nick); | |
| 1094 | } | |
| 1095 | ||
| 1096 | void irc_msg_nick(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 1097 | { | |
| 15884 | 1098 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1099 | PurpleIMConversation *im; |
| 6333 | 1100 | GSList *chats; |
| 1101 | char *nick = irc_mask_nick(from); | |
| 1102 | ||
|
23118
7ba846a8187f
Fix irc nick collision handling, as requested by that demanding user elb.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22994
diff
changeset
|
1103 | irc->nickused = FALSE; |
|
7ba846a8187f
Fix irc nick collision handling, as requested by that demanding user elb.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22994
diff
changeset
|
1104 | |
| 6333 | 1105 | if (!gc) { |
| 1106 | g_free(nick); | |
| 1107 | return; | |
| 1108 | } | |
|
34750
826c1611ef90
Refactored protocols to use the initial GObject connection API.
Ankit Vani <a@nevitus.org>
parents:
34746
diff
changeset
|
1109 | chats = purple_connection_get_active_chats(gc); |
| 6333 | 1110 | |
| 15884 | 1111 | if (!purple_utf8_strcasecmp(nick, purple_connection_get_display_name(gc))) { |
| 1112 | purple_connection_set_display_name(gc, args[0]); | |
| 6333 | 1113 | } |
| 1114 | ||
| 1115 | while (chats) { | |
|
34629
3c3bed0fd13c
Refactored gg and irc protocols to use the GObject-based PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34625
diff
changeset
|
1116 | PurpleChatConversation *chat = PURPLE_CHAT_CONVERSATION(chats->data); |
| 9593 | 1117 | /* This is ugly ... */ |
|
34653
88ae47a7d595
Updated protocols for the API changes
Ankit Vani <a@nevitus.org>
parents:
34632
diff
changeset
|
1118 | if (purple_chat_conversation_has_user(chat, nick)) |
|
34622
753f46dd000f
Global replace - renamed functions and types according to GObject-based PurpleConversation API
Ankit Vani <a@nevitus.org>
parents:
34169
diff
changeset
|
1119 | purple_chat_conversation_rename_user(chat, nick, args[0]); |
| 6333 | 1120 | chats = chats->next; |
| 1121 | } | |
| 10617 | 1122 | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1123 | im = purple_conversations_find_im_with_account(nick, |
| 10617 | 1124 | irc->account); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1125 | if (im != NULL) |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1126 | purple_conversation_set_name(PURPLE_CONVERSATION(im), args[0]); |
| 10617 | 1127 | |
| 6333 | 1128 | g_free(nick); |
| 1129 | } | |
| 1130 | ||
| 10633 | 1131 | void irc_msg_badnick(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 1132 | { | |
| 15884 | 1133 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
34746
dc9c911dbd35
Started GObjectification of PurpleConnection.
Ankit Vani <a@nevitus.org>
parents:
34728
diff
changeset
|
1134 | if (purple_connection_get_state(gc) == PURPLE_CONNECTION_CONNECTED) { |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1135 | purple_notify_error(gc, _("Invalid nickname"), _("Invalid " |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1136 | "nickname"), _("Your selected nickname was rejected by " |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1137 | "the server. It probably contains invalid characters."), |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1138 | purple_request_cpar_from_connection(gc)); |
| 13057 | 1139 | |
| 1140 | } else { | |
|
32157
39ba2e2492ee
Rename purple_connection_error_reason to purple_connection_error
Mark Doliner <markdoliner@pidgin.im>
parents:
32037
diff
changeset
|
1141 | purple_connection_error (gc, |
| 21279 | 1142 | PURPLE_CONNECTION_ERROR_INVALID_SETTINGS, |
|
20440
42e5e5445a2f
Move prpl-irc to purple_connection_error_reason.
Will Thompson <resiak@pidgin.im>
parents:
19859
diff
changeset
|
1143 | _("Your selected account name was rejected by the server. It probably contains invalid characters.")); |
| 13057 | 1144 | } |
| 10633 | 1145 | } |
| 1146 | ||
| 6333 | 1147 | void irc_msg_nickused(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 1148 | { | |
| 1149 | char *newnick, *buf, *end; | |
|
25705
8bb42bb17cc8
applied changes from 4b0e16d96a9ee2554770c4400445bee7ceb49d9a
Ethan Blanton <elb@pidgin.im>
parents:
25703
diff
changeset
|
1150 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
| 6333 | 1151 | |
|
34746
dc9c911dbd35
Started GObjectification of PurpleConnection.
Ankit Vani <a@nevitus.org>
parents:
34728
diff
changeset
|
1152 | if (gc && purple_connection_get_state(gc) == PURPLE_CONNECTION_CONNECTED) { |
|
25705
8bb42bb17cc8
applied changes from 4b0e16d96a9ee2554770c4400445bee7ceb49d9a
Ethan Blanton <elb@pidgin.im>
parents:
25703
diff
changeset
|
1153 | /* We only want to do the following dance if the connection |
|
8bb42bb17cc8
applied changes from 4b0e16d96a9ee2554770c4400445bee7ceb49d9a
Ethan Blanton <elb@pidgin.im>
parents:
25703
diff
changeset
|
1154 | has not been successfully completed. If it has, just |
|
8bb42bb17cc8
applied changes from 4b0e16d96a9ee2554770c4400445bee7ceb49d9a
Ethan Blanton <elb@pidgin.im>
parents:
25703
diff
changeset
|
1155 | notify the user that their /nick command didn't go. */ |
|
26825
6d3bb5625183
Notify the user if an IRC /nick command fails, rather than trying fallbacks.
Ethan Blanton <elb@pidgin.im>
parents:
26752
diff
changeset
|
1156 | buf = g_strdup_printf(_("The nickname \"%s\" is already being used."), |
|
25705
8bb42bb17cc8
applied changes from 4b0e16d96a9ee2554770c4400445bee7ceb49d9a
Ethan Blanton <elb@pidgin.im>
parents:
25703
diff
changeset
|
1157 | irc->reqnick); |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1158 | purple_notify_error(gc, _("Nickname in use"), _("Nickname in " |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1159 | "use"), buf, purple_request_cpar_from_connection(gc)); |
|
25705
8bb42bb17cc8
applied changes from 4b0e16d96a9ee2554770c4400445bee7ceb49d9a
Ethan Blanton <elb@pidgin.im>
parents:
25703
diff
changeset
|
1160 | g_free(buf); |
|
8bb42bb17cc8
applied changes from 4b0e16d96a9ee2554770c4400445bee7ceb49d9a
Ethan Blanton <elb@pidgin.im>
parents:
25703
diff
changeset
|
1161 | g_free(irc->reqnick); |
|
25706
cbaf3afc17c6
applied changes from 68cb5581c551eabb57bcdf437642ee9e6786bc64
Ethan Blanton <elb@pidgin.im>
parents:
25705
diff
changeset
|
1162 | irc->reqnick = NULL; |
|
25707
e1b69b86aa3c
Hand-pluck of 68cb5581c551eabb57bcdf437642ee9e6786bc64
Ethan Blanton <elb@pidgin.im>
parents:
25706
diff
changeset
|
1163 | return; |
|
25705
8bb42bb17cc8
applied changes from 4b0e16d96a9ee2554770c4400445bee7ceb49d9a
Ethan Blanton <elb@pidgin.im>
parents:
25703
diff
changeset
|
1164 | } |
|
8bb42bb17cc8
applied changes from 4b0e16d96a9ee2554770c4400445bee7ceb49d9a
Ethan Blanton <elb@pidgin.im>
parents:
25703
diff
changeset
|
1165 | |
|
23118
7ba846a8187f
Fix irc nick collision handling, as requested by that demanding user elb.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22994
diff
changeset
|
1166 | if (strlen(args[1]) < strlen(irc->reqnick) || irc->nickused) |
|
7ba846a8187f
Fix irc nick collision handling, as requested by that demanding user elb.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22994
diff
changeset
|
1167 | newnick = g_strdup(args[1]); |
|
7ba846a8187f
Fix irc nick collision handling, as requested by that demanding user elb.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22994
diff
changeset
|
1168 | else |
|
7ba846a8187f
Fix irc nick collision handling, as requested by that demanding user elb.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22994
diff
changeset
|
1169 | newnick = g_strdup_printf("%s0", args[1]); |
| 6333 | 1170 | end = newnick + strlen(newnick) - 1; |
|
11386
89c0c029ecfd
[gaim-migrate @ 13614]
Thomas Butter <tbutter@users.sourceforge.net>
parents:
11338
diff
changeset
|
1171 | /* try fallbacks */ |
|
89c0c029ecfd
[gaim-migrate @ 13614]
Thomas Butter <tbutter@users.sourceforge.net>
parents:
11338
diff
changeset
|
1172 | if((*end < '9') && (*end >= '1')) { |
|
89c0c029ecfd
[gaim-migrate @ 13614]
Thomas Butter <tbutter@users.sourceforge.net>
parents:
11338
diff
changeset
|
1173 | *end = *end + 1; |
|
89c0c029ecfd
[gaim-migrate @ 13614]
Thomas Butter <tbutter@users.sourceforge.net>
parents:
11338
diff
changeset
|
1174 | } else *end = '1'; |
| 6333 | 1175 | |
|
23118
7ba846a8187f
Fix irc nick collision handling, as requested by that demanding user elb.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22994
diff
changeset
|
1176 | g_free(irc->reqnick); |
|
7ba846a8187f
Fix irc nick collision handling, as requested by that demanding user elb.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22994
diff
changeset
|
1177 | irc->reqnick = newnick; |
|
7ba846a8187f
Fix irc nick collision handling, as requested by that demanding user elb.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22994
diff
changeset
|
1178 | irc->nickused = TRUE; |
|
7ba846a8187f
Fix irc nick collision handling, as requested by that demanding user elb.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22994
diff
changeset
|
1179 | |
|
23576
e2978ee98aa7
set the purple connection name to the one we are about to try
Ka-Hing Cheung <khc@pidgin.im>
parents:
23475
diff
changeset
|
1180 | purple_connection_set_display_name( |
|
e2978ee98aa7
set the purple connection name to the one we are about to try
Ka-Hing Cheung <khc@pidgin.im>
parents:
23475
diff
changeset
|
1181 | purple_account_get_connection(irc->account), newnick); |
|
e2978ee98aa7
set the purple connection name to the one we are about to try
Ka-Hing Cheung <khc@pidgin.im>
parents:
23475
diff
changeset
|
1182 | |
| 6333 | 1183 | buf = irc_format(irc, "vn", "NICK", newnick); |
| 1184 | irc_send(irc, buf); | |
| 1185 | g_free(buf); | |
| 1186 | } | |
| 1187 | ||
| 1188 | void irc_msg_notice(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 1189 | { | |
|
13525
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
1190 | irc_msg_handle_privmsg(irc, name, from, args[0], args[1], TRUE); |
| 6333 | 1191 | } |
| 1192 | ||
| 6718 | 1193 | void irc_msg_nochangenick(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 1194 | { | |
| 15884 | 1195 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
| 6718 | 1196 | |
|
35254
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
1197 | g_return_if_fail(gc); |
| 6718 | 1198 | |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1199 | purple_notify_error(gc, _("Cannot change nick"), |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1200 | _("Could not change nick"), args[2], |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1201 | purple_request_cpar_from_connection(gc)); |
| 6718 | 1202 | } |
| 1203 | ||
| 6333 | 1204 | void irc_msg_part(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 1205 | { | |
| 15884 | 1206 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1207 | PurpleChatConversation *chat; |
|
22983
861402a1fe68
Fix IRC handling of PART without a part message on Undernet IRCds.
Ethan Blanton <elb@pidgin.im>
parents:
22876
diff
changeset
|
1208 | char *nick, *msg, *channel; |
| 6333 | 1209 | |
|
35248
9f132a6855cd
IRC: fill required command parameter counts (part 1)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33803
diff
changeset
|
1210 | g_return_if_fail(gc); |
| 6333 | 1211 | |
|
22983
861402a1fe68
Fix IRC handling of PART without a part message on Undernet IRCds.
Ethan Blanton <elb@pidgin.im>
parents:
22876
diff
changeset
|
1212 | /* Undernet likes to :-quote the channel name, for no good reason |
|
24763
67d9d4c975c0
Replace spaces wth tabs in indentation and tabs with spaces in line continuations.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24416
diff
changeset
|
1213 | * that I can see. This catches that. */ |
|
22983
861402a1fe68
Fix IRC handling of PART without a part message on Undernet IRCds.
Ethan Blanton <elb@pidgin.im>
parents:
22876
diff
changeset
|
1214 | channel = (args[0][0] == ':') ? &args[0][1] : args[0]; |
|
861402a1fe68
Fix IRC handling of PART without a part message on Undernet IRCds.
Ethan Blanton <elb@pidgin.im>
parents:
22876
diff
changeset
|
1215 | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1216 | chat = purple_conversations_find_chat_with_account(channel, irc->account); |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1217 | if (!chat) { |
|
22983
861402a1fe68
Fix IRC handling of PART without a part message on Undernet IRCds.
Ethan Blanton <elb@pidgin.im>
parents:
22876
diff
changeset
|
1218 | purple_debug(PURPLE_DEBUG_INFO, "irc", "Got a PART on %s, which doesn't exist -- probably closed\n", channel); |
| 6333 | 1219 | return; |
| 1220 | } | |
| 1221 | ||
| 1222 | nick = irc_mask_nick(from); | |
| 15884 | 1223 | if (!purple_utf8_strcasecmp(nick, purple_connection_get_display_name(gc))) { |
|
29286
f9996ff32055
irc: Avoid a g_log error when parting a chatroom.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
28493
diff
changeset
|
1224 | char *escaped = args[1] ? g_markup_escape_text(args[1], -1) : NULL; |
| 8186 | 1225 | msg = g_strdup_printf(_("You have parted the channel%s%s"), |
|
24763
67d9d4c975c0
Replace spaces wth tabs in indentation and tabs with spaces in line continuations.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24416
diff
changeset
|
1226 | (args[1] && *args[1]) ? ": " : "", |
|
67d9d4c975c0
Replace spaces wth tabs in indentation and tabs with spaces in line continuations.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24416
diff
changeset
|
1227 | (escaped && *escaped) ? escaped : ""); |
|
12855
5215e8d13a49
[gaim-migrate @ 15206]
Richard Laager <rlaager@pidgin.im>
parents:
12216
diff
changeset
|
1228 | g_free(escaped); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1229 | purple_conversation_write_message(PURPLE_CONVERSATION(chat), channel, msg, PURPLE_MESSAGE_SYSTEM, time(NULL)); |
| 6333 | 1230 | g_free(msg); |
|
35499
c4c5e0a670b1
Fix namespaces issues in libpurple.
Ankit Vani <a@nevitus.org>
parents:
35297
diff
changeset
|
1231 | purple_serv_got_chat_left(gc, purple_chat_conversation_get_id(chat)); |
| 6333 | 1232 | } else { |
|
22795
2b1d41a575f5
Strip mIRC formatting codes from PART and QUIT messages.
Ethan Blanton <elb@pidgin.im>
parents:
22471
diff
changeset
|
1233 | msg = args[1] ? irc_mirc2txt(args[1]) : NULL; |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1234 | purple_chat_conversation_remove_user(chat, nick, msg); |
|
22795
2b1d41a575f5
Strip mIRC formatting codes from PART and QUIT messages.
Ethan Blanton <elb@pidgin.im>
parents:
22471
diff
changeset
|
1235 | g_free(msg); |
| 6333 | 1236 | } |
| 1237 | g_free(nick); | |
| 1238 | } | |
| 1239 | ||
| 1240 | void irc_msg_ping(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 1241 | { | |
| 1242 | char *buf; | |
| 1243 | ||
| 1244 | buf = irc_format(irc, "v:", "PONG", args[0]); | |
| 1245 | irc_send(irc, buf); | |
| 1246 | g_free(buf); | |
| 1247 | } | |
| 1248 | ||
| 1249 | void irc_msg_pong(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 1250 | { | |
| 15884 | 1251 | PurpleConversation *convo; |
| 1252 | PurpleConnection *gc; | |
| 6333 | 1253 | char **parts, *msg; |
| 1254 | time_t oldstamp; | |
| 1255 | ||
| 1256 | parts = g_strsplit(args[1], " ", 2); | |
| 1257 | ||
| 1258 | if (!parts[0] || !parts[1]) { | |
| 1259 | g_strfreev(parts); | |
| 1260 | return; | |
| 1261 | } | |
| 1262 | ||
| 1263 | if (sscanf(parts[1], "%lu", &oldstamp) != 1) { | |
| 1264 | msg = g_strdup(_("Error: invalid PONG from server")); | |
| 1265 | } else { | |
| 6350 | 1266 | msg = g_strdup_printf(_("PING reply -- Lag: %lu seconds"), time(NULL) - oldstamp); |
| 6333 | 1267 | } |
| 1268 | ||
|
34625
03d62b1660fc
Refactor code to remove conversation type from some instances of purple_conversations_find_with_account()
Ankit Vani <a@nevitus.org>
parents:
34622
diff
changeset
|
1269 | convo = purple_conversations_find_with_account(parts[0], irc->account); |
| 6333 | 1270 | g_strfreev(parts); |
| 1271 | if (convo) { | |
|
34629
3c3bed0fd13c
Refactored gg and irc protocols to use the GObject-based PurpleConversation
Ankit Vani <a@nevitus.org>
parents:
34625
diff
changeset
|
1272 | purple_conversation_write_message(convo, "PONG", msg, PURPLE_MESSAGE_SYSTEM|PURPLE_MESSAGE_NO_LOG, time(NULL)); |
| 6333 | 1273 | } else { |
| 15884 | 1274 | gc = purple_account_get_connection(irc->account); |
| 6333 | 1275 | if (!gc) { |
| 1276 | g_free(msg); | |
| 1277 | return; | |
| 1278 | } | |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1279 | purple_notify_info(gc, NULL, "PONG", msg, |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1280 | purple_request_cpar_from_connection(gc)); |
| 6333 | 1281 | } |
| 1282 | g_free(msg); | |
| 1283 | } | |
| 1284 | ||
| 1285 | void irc_msg_privmsg(struct irc_conn *irc, const char *name, const char *from, char **args) | |
| 1286 | { | |
|
13525
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
1287 | irc_msg_handle_privmsg(irc, name, from, args[0], args[1], FALSE); |
|
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
1288 | } |
|
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
1289 | |
|
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
1290 | static void irc_msg_handle_privmsg(struct irc_conn *irc, const char *name, const char *from, const char *to, const char *rawmsg, gboolean notice) |
|
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
1291 | { |
| 15884 | 1292 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1293 | PurpleChatConversation *chat; |
|
13525
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
1294 | char *tmp; |
|
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
1295 | char *msg; |
|
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
1296 | char *nick; |
| 6333 | 1297 | |
|
13525
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
1298 | if (!gc) |
| 6333 | 1299 | return; |
| 1300 | ||
|
13525
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
1301 | nick = irc_mask_nick(from); |
|
e5dc8090a9b0
[gaim-migrate @ 15900]
Richard Laager <rlaager@pidgin.im>
parents:
13523
diff
changeset
|
1302 | tmp = irc_parse_ctcp(irc, nick, to, rawmsg, notice); |
| 6333 | 1303 | if (!tmp) { |
| 1304 | g_free(nick); | |
| 1305 | return; | |
| 1306 | } | |
| 8163 | 1307 | |
|
20217
9249f67ef61e
applied changes from 6c08c628ee64e16c824829c25befc0ca09338f9d
Luke Schierer <lschiere@pidgin.im>
parents:
20194
diff
changeset
|
1308 | msg = irc_escape_privmsg(tmp, -1); |
| 6333 | 1309 | g_free(tmp); |
| 8163 | 1310 | |
| 1311 | tmp = irc_mirc2html(msg); | |
| 1312 | g_free(msg); | |
| 1313 | msg = tmp; | |
| 6333 | 1314 | if (notice) { |
| 1315 | tmp = g_strdup_printf("(notice) %s", msg); | |
| 1316 | g_free(msg); | |
| 1317 | msg = tmp; | |
| 1318 | } | |
| 1319 | ||
| 15884 | 1320 | if (!purple_utf8_strcasecmp(to, purple_connection_get_display_name(gc))) { |
|
35499
c4c5e0a670b1
Fix namespaces issues in libpurple.
Ankit Vani <a@nevitus.org>
parents:
35297
diff
changeset
|
1321 | purple_serv_got_im(gc, nick, msg, 0, time(NULL)); |
| 6333 | 1322 | } else { |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1323 | chat = purple_conversations_find_chat_with_account(irc_nick_skip_mode(irc, to), irc->account); |
|
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1324 | if (chat) |
|
35499
c4c5e0a670b1
Fix namespaces issues in libpurple.
Ankit Vani <a@nevitus.org>
parents:
35297
diff
changeset
|
1325 | purple_serv_got_chat_in(gc, purple_chat_conversation_get_id(chat), nick, 0, msg, time(NULL)); |
| 6333 | 1326 | else |
| 15884 | 1327 | purple_debug_error("irc", "Got a %s on %s, which does not exist\n", |
|
24763
67d9d4c975c0
Replace spaces wth tabs in indentation and tabs with spaces in line continuations.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24416
diff
changeset
|
1328 | notice ? "NOTICE" : "PRIVMSG", to); |
| 6333 | 1329 | } |
| 1330 | g_free(msg); | |
| 1331 | g_free(nick); | |
| 1332 | } | |
| 1333 | ||
| 6714 | 1334 | void irc_msg_regonly(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 1335 | { | |
| 15884 | 1336 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
| 6714 | 1337 | char *msg; |
| 1338 | ||
|
35254
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
1339 | g_return_if_fail(gc); |
| 6714 | 1340 | |
|
34632
ebe6b2a60305
Changed all arguments and return types of Chat and IMs to PurpleChatConversation and PurpleIMConversation.
Ankit Vani <a@nevitus.org>
parents:
34629
diff
changeset
|
1341 | if (purple_conversations_find_chat_with_account(args[1], irc->account)) { |
|
17297
4541badae267
This should suppress an annoying 477 numeric on channel joins if you
Ethan Blanton <elb@pidgin.im>
parents:
17170
diff
changeset
|
1342 | /* This is a channel we're already in; for some reason, |
|
4541badae267
This should suppress an annoying 477 numeric on channel joins if you
Ethan Blanton <elb@pidgin.im>
parents:
17170
diff
changeset
|
1343 | * freenode feels the need to notify us that in some |
|
4541badae267
This should suppress an annoying 477 numeric on channel joins if you
Ethan Blanton <elb@pidgin.im>
parents:
17170
diff
changeset
|
1344 | * hypothetical other situation this might not have |
|
4541badae267
This should suppress an annoying 477 numeric on channel joins if you
Ethan Blanton <elb@pidgin.im>
parents:
17170
diff
changeset
|
1345 | * succeeded. Suppress that. */ |
|
4541badae267
This should suppress an annoying 477 numeric on channel joins if you
Ethan Blanton <elb@pidgin.im>
parents:
17170
diff
changeset
|
1346 | return; |
|
4541badae267
This should suppress an annoying 477 numeric on channel joins if you
Ethan Blanton <elb@pidgin.im>
parents:
17170
diff
changeset
|
1347 | } |
|
4541badae267
This should suppress an annoying 477 numeric on channel joins if you
Ethan Blanton <elb@pidgin.im>
parents:
17170
diff
changeset
|
1348 | |
|
16993
536c1485c139
Handle channel joins when registration is required more gracefully.
Ethan Blanton <elb@pidgin.im>
parents:
16893
diff
changeset
|
1349 | msg = g_strdup_printf(_("Cannot join %s: Registration is required."), args[1]); |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1350 | purple_notify_error(gc, _("Cannot join channel"), msg, args[2], |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1351 | purple_request_cpar_from_connection(gc)); |
| 6714 | 1352 | g_free(msg); |
| 1353 | } | |
| 1354 | ||
| 6333 | 1355 | void irc_msg_quit(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 1356 | { | |
| 15884 | 1357 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
| 9238 | 1358 | struct irc_buddy *ib; |
| 6333 | 1359 | char *data[2]; |
| 1360 | ||
|
35254
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
1361 | g_return_if_fail(gc); |
| 6333 | 1362 | |
| 1363 | data[0] = irc_mask_nick(from); | |
| 1364 | data[1] = args[0]; | |
| 1365 | /* XXX this should have an API, I shouldn't grab this directly */ | |
|
34750
826c1611ef90
Refactored protocols to use the initial GObject connection API.
Ankit Vani <a@nevitus.org>
parents:
34746
diff
changeset
|
1366 | g_slist_foreach(purple_connection_get_active_chats(gc), |
|
826c1611ef90
Refactored protocols to use the initial GObject connection API.
Ankit Vani <a@nevitus.org>
parents:
34746
diff
changeset
|
1367 | (GFunc)irc_chat_remove_buddy, data); |
| 9238 | 1368 | |
| 1369 | if ((ib = g_hash_table_lookup(irc->buddies, data[0])) != NULL) { | |
|
31284
893f2d78d438
Prevent sending ISON messages larger than 512 bytes. Fixes #9692.
Jeffrey Honig <jch@honig.net>
parents:
31229
diff
changeset
|
1370 | ib->new_online_status = FALSE; |
| 9238 | 1371 | irc_buddy_status(data[0], ib, irc); |
| 1372 | } | |
| 6333 | 1373 | g_free(data[0]); |
| 1374 | ||
| 1375 | return; | |
| 1376 | } | |
| 1377 | ||
|
10712
2aded9e9abd4
[gaim-migrate @ 12306]
Richard Laager <rlaager@pidgin.im>
parents:
10659
diff
changeset
|
1378 | void irc_msg_unavailable(struct irc_conn *irc, const char *name, const char *from, char **args) |
|
2aded9e9abd4
[gaim-migrate @ 12306]
Richard Laager <rlaager@pidgin.im>
parents:
10659
diff
changeset
|
1379 | { |
| 15884 | 1380 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
10712
2aded9e9abd4
[gaim-migrate @ 12306]
Richard Laager <rlaager@pidgin.im>
parents:
10659
diff
changeset
|
1381 | |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1382 | purple_notify_error(gc, NULL, _("Nick or channel is temporarily " |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1383 | "unavailable."), args[1], |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1384 | purple_request_cpar_from_connection(gc)); |
|
10712
2aded9e9abd4
[gaim-migrate @ 12306]
Richard Laager <rlaager@pidgin.im>
parents:
10659
diff
changeset
|
1385 | } |
|
2aded9e9abd4
[gaim-migrate @ 12306]
Richard Laager <rlaager@pidgin.im>
parents:
10659
diff
changeset
|
1386 | |
| 6333 | 1387 | void irc_msg_wallops(struct irc_conn *irc, const char *name, const char *from, char **args) |
| 1388 | { | |
| 15884 | 1389 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
10774
f4238d6312ff
[gaim-migrate @ 12383]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10751
diff
changeset
|
1390 | char *nick, *msg; |
| 6333 | 1391 | |
|
35254
7d0fb0c6d8d4
Add back some checks for gc!=NULL.
Mark Doliner <mark@kingant.net>
parents:
35250
diff
changeset
|
1392 | g_return_if_fail(gc); |
| 6333 | 1393 | |
| 1394 | nick = irc_mask_nick(from); | |
| 1395 | msg = g_strdup_printf (_("Wallops from %s"), nick); | |
| 1396 | g_free(nick); | |
|
34449
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1397 | purple_notify_info(gc, NULL, msg, args[0], |
|
bbcb198650b7
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
34169
diff
changeset
|
1398 | purple_request_cpar_from_connection(gc)); |
| 6333 | 1399 | g_free(msg); |
| 1400 | } | |
| 1401 | ||
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1402 | #ifdef HAVE_CYRUS_SASL |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1403 | static int |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1404 | irc_sasl_cb_secret(sasl_conn_t *conn, void *ctx, int id, sasl_secret_t **secret) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1405 | { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1406 | struct irc_conn *irc = ctx; |
|
33407
8003b9b9e602
Fix a few warnings in the IRC SASL code
Daniel Atallah <datallah@pidgin.im>
parents:
33404
diff
changeset
|
1407 | sasl_secret_t *sasl_secret; |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1408 | const char *pw; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1409 | size_t len; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1410 | |
|
34169
488d3280e151
Replace g_free with purple_str_wipe, correct line breaking
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
34149
diff
changeset
|
1411 | pw = purple_connection_get_password(purple_account_get_connection( |
|
488d3280e151
Replace g_free with purple_str_wipe, correct line breaking
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
34149
diff
changeset
|
1412 | irc->account)); |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1413 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1414 | if (!conn || !secret || id != SASL_CB_PASS) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1415 | return SASL_BADPARAM; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1416 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1417 | len = strlen(pw); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1418 | /* Not an off-by-one because sasl_secret_t defines char data[1] */ |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1419 | /* TODO: This can probably be moved to glib's allocator */ |
|
33407
8003b9b9e602
Fix a few warnings in the IRC SASL code
Daniel Atallah <datallah@pidgin.im>
parents:
33404
diff
changeset
|
1420 | sasl_secret = malloc(sizeof(sasl_secret_t) + len); |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1421 | if (!sasl_secret) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1422 | return SASL_NOMEM; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1423 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1424 | sasl_secret->len = len; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1425 | strcpy((char*)sasl_secret->data, pw); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1426 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1427 | *secret = sasl_secret; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1428 | return SASL_OK; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1429 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1430 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1431 | static int |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1432 | irc_sasl_cb_log(void *context, int level, const char *message) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1433 | { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1434 | if(level <= SASL_LOG_TRACE) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1435 | purple_debug_info("sasl", "%s\n", message); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1436 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1437 | return SASL_OK; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1438 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1439 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1440 | static int |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1441 | irc_sasl_cb_simple(void *ctx, int id, const char **res, unsigned *len) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1442 | { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1443 | struct irc_conn *irc = ctx; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1444 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1445 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1446 | switch(id) { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1447 | case SASL_CB_AUTHNAME: |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1448 | *res = purple_connection_get_display_name(gc); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1449 | break; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1450 | case SASL_CB_USER: |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1451 | *res = ""; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1452 | break; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1453 | default: |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1454 | return SASL_BADPARAM; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1455 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1456 | if (len) *len = strlen((char *)*res); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1457 | return SASL_OK; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1458 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1459 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1460 | static void |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1461 | irc_auth_start_cyrus(struct irc_conn *irc) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1462 | { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1463 | int ret = 0; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1464 | char *buf; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1465 | sasl_security_properties_t secprops; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1466 | PurpleAccount *account = irc->account; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1467 | PurpleConnection *gc = purple_account_get_connection(account); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1468 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1469 | gboolean plaintext; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1470 | gboolean again = FALSE; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1471 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1472 | /* Set up security properties and options */ |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1473 | secprops.min_ssf = 0; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1474 | secprops.security_flags = SASL_SEC_NOANONYMOUS; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1475 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1476 | if (!irc->gsc) { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1477 | secprops.max_ssf = -1; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1478 | secprops.maxbufsize = 4096; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1479 | plaintext = purple_account_get_bool(account, "auth_plain_in_clear", FALSE); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1480 | if (!plaintext) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1481 | secprops.security_flags |= SASL_SEC_NOPLAINTEXT; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1482 | } else { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1483 | secprops.max_ssf = 0; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1484 | secprops.maxbufsize = 0; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1485 | plaintext = TRUE; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1486 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1487 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1488 | secprops.property_names = 0; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1489 | secprops.property_values = 0; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1490 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1491 | do { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1492 | gchar *tmp = NULL; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1493 | again = FALSE; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1494 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1495 | ret = sasl_client_new("irc", irc->server, NULL, NULL, irc->sasl_cb, 0, &irc->sasl_conn); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1496 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1497 | if (ret != SASL_OK) { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1498 | purple_debug_error("irc", "sasl_client_new failed: %d\n", ret); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1499 | tmp = g_strdup_printf(_("Failed to initialize SASL authentication: %s"), |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1500 | sasl_errdetail(irc->sasl_conn)); |
|
33799
c8a9082d50d1
Apply libpurple3 changes to recently merged code.
Daniel Atallah <datallah@pidgin.im>
parents:
33760
diff
changeset
|
1501 | purple_connection_error (gc, |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1502 | PURPLE_CONNECTION_ERROR_OTHER_ERROR, tmp); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1503 | g_free(tmp); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1504 | return; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1505 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1506 | |
| 34977 | 1507 | sasl_setprop(irc->sasl_conn, SASL_AUTH_EXTERNAL, purple_account_get_username(irc->account)); |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1508 | sasl_setprop(irc->sasl_conn, SASL_SEC_PROPS, &secprops); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1509 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1510 | ret = sasl_client_start(irc->sasl_conn, irc->sasl_mechs->str, NULL, NULL, NULL, &irc->current_mech); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1511 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1512 | switch (ret) { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1513 | case SASL_OK: |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1514 | case SASL_CONTINUE: |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1515 | irc->mech_works = FALSE; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1516 | break; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1517 | case SASL_NOMECH: |
|
33799
c8a9082d50d1
Apply libpurple3 changes to recently merged code.
Daniel Atallah <datallah@pidgin.im>
parents:
33760
diff
changeset
|
1518 | purple_connection_error (gc, |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1519 | PURPLE_CONNECTION_ERROR_AUTHENTICATION_IMPOSSIBLE, |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1520 | _("SASL authentication failed: No worthy authentication mechanisms found.")); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1521 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1522 | irc_sasl_finish(irc); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1523 | return; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1524 | case SASL_BADPARAM: |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1525 | case SASL_NOMEM: |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1526 | tmp = g_strdup_printf(_("SASL authentication failed: %s"), sasl_errdetail(irc->sasl_conn)); |
|
33799
c8a9082d50d1
Apply libpurple3 changes to recently merged code.
Daniel Atallah <datallah@pidgin.im>
parents:
33760
diff
changeset
|
1527 | purple_connection_error (gc, |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1528 | PURPLE_CONNECTION_ERROR_OTHER_ERROR, tmp); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1529 | g_free(tmp); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1530 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1531 | irc_sasl_finish(irc); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1532 | return; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1533 | default: |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1534 | purple_debug_error("irc", "sasl_client_start failed: %s\n", sasl_errdetail(irc->sasl_conn)); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1535 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1536 | if (irc->current_mech && *irc->current_mech) { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1537 | char *pos; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1538 | if ((pos = strstr(irc->sasl_mechs->str, irc->current_mech))) { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1539 | size_t index = pos - irc->sasl_mechs->str; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1540 | g_string_erase(irc->sasl_mechs, index, strlen(irc->current_mech)); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1541 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1542 | /* Remove space which separated this mech from the next */ |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1543 | if ((irc->sasl_mechs->str)[index] == ' ') { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1544 | g_string_erase(irc->sasl_mechs, index, 1); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1545 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1546 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1547 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1548 | again = TRUE; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1549 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1550 | irc_sasl_finish(irc); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1551 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1552 | } while (again); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1553 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1554 | purple_debug_info("irc", "Using SASL: %s\n", irc->current_mech); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1555 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1556 | buf = irc_format(irc, "vv", "AUTHENTICATE", irc->current_mech); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1557 | irc_send(irc, buf); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1558 | g_free(buf); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1559 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1560 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1561 | /* SASL authentication */ |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1562 | void |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1563 | irc_msg_cap(struct irc_conn *irc, const char *name, const char *from, char **args) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1564 | { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1565 | int ret = 0; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1566 | int id = 0; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1567 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1568 | const char *mech_list = NULL; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1569 | |
|
35248
9f132a6855cd
IRC: fill required command parameter counts (part 1)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33803
diff
changeset
|
1570 | if (strncmp(args[2], "sasl ", 6)) |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1571 | return; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1572 | if (strncmp(args[1], "ACK", 4)) { |
|
33407
8003b9b9e602
Fix a few warnings in the IRC SASL code
Daniel Atallah <datallah@pidgin.im>
parents:
33404
diff
changeset
|
1573 | const char *tmp = _("SASL authentication failed: Server does not support SASL authentication."); |
|
33799
c8a9082d50d1
Apply libpurple3 changes to recently merged code.
Daniel Atallah <datallah@pidgin.im>
parents:
33760
diff
changeset
|
1574 | purple_connection_error (gc, |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1575 | PURPLE_CONNECTION_ERROR_AUTHENTICATION_IMPOSSIBLE, tmp); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1576 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1577 | irc_sasl_finish(irc); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1578 | return; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1579 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1580 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1581 | if ((ret = sasl_client_init(NULL)) != SASL_OK) { |
|
33407
8003b9b9e602
Fix a few warnings in the IRC SASL code
Daniel Atallah <datallah@pidgin.im>
parents:
33404
diff
changeset
|
1582 | const char *tmp = _("SASL authentication failed: Initializing SASL failed."); |
|
33799
c8a9082d50d1
Apply libpurple3 changes to recently merged code.
Daniel Atallah <datallah@pidgin.im>
parents:
33760
diff
changeset
|
1583 | purple_connection_error (gc, |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1584 | PURPLE_CONNECTION_ERROR_OTHER_ERROR, tmp); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1585 | return; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1586 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1587 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1588 | irc->sasl_cb = g_new0(sasl_callback_t, 5); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1589 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1590 | irc->sasl_cb[id].id = SASL_CB_AUTHNAME; |
|
33891
8b4a41b6fe60
Fix warnings in irc, msn and mxit protocols
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33811
diff
changeset
|
1591 | irc->sasl_cb[id].proc = (int (*)(void))irc_sasl_cb_simple; /* sasl_getsimple_t */ |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1592 | irc->sasl_cb[id].context = (void *)irc; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1593 | id++; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1594 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1595 | irc->sasl_cb[id].id = SASL_CB_USER; |
|
33891
8b4a41b6fe60
Fix warnings in irc, msn and mxit protocols
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33811
diff
changeset
|
1596 | irc->sasl_cb[id].proc = (int (*)(void))irc_sasl_cb_simple; /* sasl_getsimple_t */ |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1597 | irc->sasl_cb[id].context = (void *)irc; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1598 | id++; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1599 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1600 | irc->sasl_cb[id].id = SASL_CB_PASS; |
|
33891
8b4a41b6fe60
Fix warnings in irc, msn and mxit protocols
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33811
diff
changeset
|
1601 | irc->sasl_cb[id].proc = (int (*)(void))irc_sasl_cb_secret; /* sasl_getsecret_t */ |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1602 | irc->sasl_cb[id].context = (void *)irc; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1603 | id++; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1604 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1605 | irc->sasl_cb[id].id = SASL_CB_LOG; |
|
33891
8b4a41b6fe60
Fix warnings in irc, msn and mxit protocols
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
33811
diff
changeset
|
1606 | irc->sasl_cb[id].proc = (int (*)(void))irc_sasl_cb_log; /* sasl_log_t */ |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1607 | irc->sasl_cb[id].context = (void *)irc; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1608 | id++; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1609 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1610 | irc->sasl_cb[id].id = SASL_CB_LIST_END; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1611 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1612 | /* We need to do this to be able to list the mechanisms. */ |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1613 | ret = sasl_client_new("irc", irc->server, NULL, NULL, irc->sasl_cb, 0, &irc->sasl_conn); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1614 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1615 | sasl_listmech(irc->sasl_conn, NULL, "", " ", "", &mech_list, NULL, NULL); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1616 | purple_debug_info("irc", "SASL: we have available: %s\n", mech_list); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1617 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1618 | if (ret != SASL_OK) { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1619 | gchar *tmp; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1620 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1621 | purple_debug_error("irc", "sasl_client_new failed: %d\n", ret); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1622 | tmp = g_strdup_printf(_("Failed to initialize SASL authentication: %s"), |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1623 | sasl_errdetail(irc->sasl_conn)); |
|
33799
c8a9082d50d1
Apply libpurple3 changes to recently merged code.
Daniel Atallah <datallah@pidgin.im>
parents:
33760
diff
changeset
|
1624 | purple_connection_error (gc, |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1625 | PURPLE_CONNECTION_ERROR_OTHER_ERROR, tmp); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1626 | g_free(tmp); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1627 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1628 | return; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1629 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1630 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1631 | irc->sasl_mechs = g_string_new(mech_list); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1632 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1633 | irc_auth_start_cyrus(irc); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1634 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1635 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1636 | void |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1637 | irc_msg_auth(struct irc_conn *irc, char *arg) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1638 | { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1639 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1640 | char *buf, *authinfo; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1641 | char *serverin = NULL; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1642 | unsigned serverinlen = 0; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1643 | const gchar *c_out; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1644 | unsigned int clen; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1645 | int ret; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1646 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1647 | irc->mech_works = TRUE; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1648 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1649 | if (!arg) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1650 | return; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1651 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1652 | if (arg[0] != '+') { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1653 | serverin = arg; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1654 | serverinlen = strlen(serverin); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1655 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1656 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1657 | ret = sasl_client_step(irc->sasl_conn, serverin, serverinlen, |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1658 | NULL, &c_out, &clen); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1659 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1660 | if (ret != SASL_OK && ret != SASL_CONTINUE) { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1661 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1662 | gchar *tmp = g_strdup_printf(_("SASL authentication failed: %s"), |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1663 | sasl_errdetail(irc->sasl_conn)); |
|
33799
c8a9082d50d1
Apply libpurple3 changes to recently merged code.
Daniel Atallah <datallah@pidgin.im>
parents:
33760
diff
changeset
|
1664 | purple_connection_error (gc, |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1665 | PURPLE_CONNECTION_ERROR_AUTHENTICATION_IMPOSSIBLE, tmp); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1666 | g_free(tmp); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1667 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1668 | irc_sasl_finish(irc); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1669 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1670 | return; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1671 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1672 | |
|
35169
44348822264a
Correctly send empty IRC SASL responses. Fixes #15452
Mantas MikulÄ—nas <grawity@nullroute.eu.org>
parents:
33803
diff
changeset
|
1673 | if (clen > 0) |
|
44348822264a
Correctly send empty IRC SASL responses. Fixes #15452
Mantas MikulÄ—nas <grawity@nullroute.eu.org>
parents:
33803
diff
changeset
|
1674 | authinfo = purple_base64_encode((const guchar*)c_out, clen); |
|
44348822264a
Correctly send empty IRC SASL responses. Fixes #15452
Mantas MikulÄ—nas <grawity@nullroute.eu.org>
parents:
33803
diff
changeset
|
1675 | else |
|
44348822264a
Correctly send empty IRC SASL responses. Fixes #15452
Mantas MikulÄ—nas <grawity@nullroute.eu.org>
parents:
33803
diff
changeset
|
1676 | authinfo = g_strdup("+"); |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1677 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1678 | buf = irc_format(irc, "vv", "AUTHENTICATE", authinfo); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1679 | irc_send(irc, buf); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1680 | g_free(buf); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1681 | g_free(authinfo); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1682 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1683 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1684 | void |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1685 | irc_msg_authok(struct irc_conn *irc, const char *name, const char *from, char **args) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1686 | { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1687 | char *buf; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1688 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1689 | sasl_dispose(&irc->sasl_conn); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1690 | irc->sasl_conn = NULL; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1691 | purple_debug_info("irc", "Succesfully authenticated using SASL.\n"); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1692 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1693 | /* Finish auth session */ |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1694 | buf = irc_format(irc, "vv", "CAP", "END"); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1695 | irc_send(irc, buf); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1696 | g_free(buf); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1697 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1698 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1699 | void |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1700 | irc_msg_authtryagain(struct irc_conn *irc, const char *name, const char *from, char **args) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1701 | { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1702 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1703 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1704 | /* We already received at least one AUTHENTICATE reply from the |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1705 | * server. This suggests it supports this mechanism, but the |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1706 | * password was incorrect. It would be better to abort and inform |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1707 | * the user than to try again with a different mechanism, so they |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1708 | * aren't told the server supports no worthy mechanisms. |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1709 | */ |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1710 | if (irc->mech_works) { |
|
33799
c8a9082d50d1
Apply libpurple3 changes to recently merged code.
Daniel Atallah <datallah@pidgin.im>
parents:
33760
diff
changeset
|
1711 | purple_connection_error (gc, |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1712 | PURPLE_CONNECTION_ERROR_AUTHENTICATION_FAILED, _("Incorrect Password")); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1713 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1714 | irc_sasl_finish(irc); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1715 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1716 | return; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1717 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1718 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1719 | if (irc->current_mech) { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1720 | char *pos; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1721 | if ((pos = strstr(irc->sasl_mechs->str, irc->current_mech))) { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1722 | size_t index = pos - irc->sasl_mechs->str; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1723 | g_string_erase(irc->sasl_mechs, index, strlen(irc->current_mech)); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1724 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1725 | /* Remove space which separated this mech from the next */ |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1726 | if ((irc->sasl_mechs->str)[index] == ' ') { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1727 | g_string_erase(irc->sasl_mechs, index, 1); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1728 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1729 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1730 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1731 | if (*irc->sasl_mechs->str) { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1732 | sasl_dispose(&irc->sasl_conn); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1733 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1734 | purple_debug_info("irc", "Now trying with %s\n", irc->sasl_mechs->str); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1735 | irc_auth_start_cyrus(irc); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1736 | } else { |
|
33799
c8a9082d50d1
Apply libpurple3 changes to recently merged code.
Daniel Atallah <datallah@pidgin.im>
parents:
33760
diff
changeset
|
1737 | purple_connection_error (gc, |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1738 | PURPLE_CONNECTION_ERROR_AUTHENTICATION_IMPOSSIBLE, |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1739 | _("SASL authentication failed: No worthy mechanisms found")); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1740 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1741 | irc_sasl_finish(irc); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1742 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1743 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1744 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1745 | void |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1746 | irc_msg_authfail(struct irc_conn *irc, const char *name, const char *from, char **args) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1747 | { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1748 | PurpleConnection *gc = purple_account_get_connection(irc->account); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1749 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1750 | /* Only show an error if we did not abort ourselves. */ |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1751 | if (irc->sasl_conn) { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1752 | purple_debug_info("irc", "SASL authentication failed: %s", sasl_errdetail(irc->sasl_conn)); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1753 | |
|
33799
c8a9082d50d1
Apply libpurple3 changes to recently merged code.
Daniel Atallah <datallah@pidgin.im>
parents:
33760
diff
changeset
|
1754 | purple_connection_error (gc, |
|
33404
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1755 | PURPLE_CONNECTION_ERROR_AUTHENTICATION_FAILED, _("Incorrect Password")); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1756 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1757 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1758 | irc_sasl_finish(irc); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1759 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1760 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1761 | static void |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1762 | irc_sasl_finish(struct irc_conn *irc) |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1763 | { |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1764 | char *buf; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1765 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1766 | sasl_dispose(&irc->sasl_conn); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1767 | irc->sasl_conn = NULL; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1768 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1769 | g_free(irc->sasl_cb); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1770 | irc->sasl_cb = NULL; |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1771 | |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1772 | /* Auth failed, abort */ |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1773 | buf = irc_format(irc, "vv", "CAP", "END"); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1774 | irc_send(irc, buf); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1775 | g_free(buf); |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1776 | } |
|
bbd52f93184e
Implement SASL support for IRC, using Cyrus.
Thijs Alkemade <thijsalkemade@gmail.com>
parents:
32127
diff
changeset
|
1777 | #endif |