source: protocols/jabber/conference.c @ d52111a

Last change on this file since d52111a was c058ff9, checked in by Wilmer van der Gaast <wilmer@…>, at 2007-12-09T23:19:35Z

Added /invite support for Jabber chatrooms (and fixed the argument order
to chat_invite).

  • Property mode set to 100644
File size: 9.9 KB
Line 
1/***************************************************************************\
2*                                                                           *
3*  BitlBee - An IRC to IM gateway                                           *
4*  Jabber module - Conference rooms                                         *
5*                                                                           *
6*  Copyright 2007 Wilmer van der Gaast <wilmer@gaast.net>                   *
7*                                                                           *
8*  This program is free software; you can redistribute it and/or modify     *
9*  it under the terms of the GNU General Public License as published by     *
10*  the Free Software Foundation; either version 2 of the License, or        *
11*  (at your option) any later version.                                      *
12*                                                                           *
13*  This program is distributed in the hope that it will be useful,          *
14*  but WITHOUT ANY WARRANTY; without even the implied warranty of           *
15*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            *
16*  GNU General Public License for more details.                             *
17*                                                                           *
18*  You should have received a copy of the GNU General Public License along  *
19*  with this program; if not, write to the Free Software Foundation, Inc.,  *
20*  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.              *
21*                                                                           *
22\***************************************************************************/
23
24#include "jabber.h"
25
26static xt_status jabber_chat_join_failed( struct im_connection *ic, struct xt_node *node, struct xt_node *orig );
27
28struct groupchat *jabber_chat_join( struct im_connection *ic, char *room, char *nick, char *password )
29{
30        struct jabber_chat *jc;
31        struct xt_node *node;
32        struct groupchat *c;
33        char *roomjid;
34       
35        roomjid = g_strdup_printf( "%s/%s", room, nick );
36        node = xt_new_node( "x", NULL, NULL );
37        xt_add_attr( node, "xmlns", XMLNS_MUC );
38        node = jabber_make_packet( "presence", NULL, roomjid, node );
39        jabber_cache_add( ic, node, jabber_chat_join_failed );
40       
41        if( !jabber_write_packet( ic, node ) )
42        {
43                g_free( roomjid );
44                return NULL;
45        }
46       
47        jc = g_new0( struct jabber_chat, 1 );
48        jc->name = jabber_normalize( room );
49       
50        if( ( jc->me = jabber_buddy_add( ic, roomjid ) ) == NULL )
51        {
52                g_free( roomjid );
53                g_free( jc->name );
54                g_free( jc );
55                return NULL;
56        }
57       
58        /* roomjid isn't normalized yet, and we need an original version
59           of the nick to send a proper presence update. */
60        jc->my_full_jid = roomjid;
61       
62        c = imcb_chat_new( ic, room );
63        c->data = jc;
64       
65        return c;
66}
67
68static xt_status jabber_chat_join_failed( struct im_connection *ic, struct xt_node *node, struct xt_node *orig )
69{
70        struct jabber_error *err;
71        struct jabber_buddy *bud;
72        char *room;
73       
74        room = xt_find_attr( orig, "to" );
75        if( ( bud = jabber_buddy_by_jid( ic, room, 0 ) ) )
76                jabber_chat_free( jabber_chat_by_jid( ic, bud->bare_jid ) );
77       
78        err = jabber_error_parse( xt_find_node( node->children, "error" ), XMLNS_STANZA_ERROR );
79        if( err )
80        {
81                imcb_error( ic, "Error joining groupchat %s: %s%s%s",
82                            bud->bare_jid, err->code, err->text ? ": " : "",
83                            err->text ? err->text : "" );
84                jabber_error_free( err );
85        }
86       
87        return XT_HANDLED;
88}
89
90struct groupchat *jabber_chat_by_jid( struct im_connection *ic, const char *name )
91{
92        char *normalized = jabber_normalize( name );
93        struct groupchat *ret;
94        struct jabber_chat *jc;
95       
96        for( ret = ic->groupchats; ret; ret = ret->next )
97        {
98                jc = ret->data;
99                if( strcmp( normalized, jc->name ) == 0 )
100                        break;
101        }
102        g_free( normalized );
103       
104        return ret;
105}
106
107void jabber_chat_free( struct groupchat *c )
108{
109        struct jabber_chat *jc = c->data;
110       
111        jabber_buddy_remove_bare( c->ic, jc->name );
112       
113        g_free( jc->my_full_jid );
114        g_free( jc->name );
115        g_free( jc );
116       
117        imcb_chat_free( c );
118}
119
120int jabber_chat_msg( struct groupchat *c, char *message, int flags )
121{
122        struct im_connection *ic = c->ic;
123        struct jabber_chat *jc = c->data;
124        struct xt_node *node;
125       
126        node = xt_new_node( "body", message, NULL );
127        node = jabber_make_packet( "message", "groupchat", jc->name, node );
128       
129        if( !jabber_write_packet( ic, node ) )
130        {
131                xt_free_node( node );
132                return 0;
133        }
134        xt_free_node( node );
135       
136        return 1;
137}
138
139int jabber_chat_topic( struct groupchat *c, char *topic )
140{
141        struct im_connection *ic = c->ic;
142        struct jabber_chat *jc = c->data;
143        struct xt_node *node;
144       
145        node = xt_new_node( "subject", topic, NULL );
146        node = jabber_make_packet( "message", "groupchat", jc->name, node );
147       
148        if( !jabber_write_packet( ic, node ) )
149        {
150                xt_free_node( node );
151                return 0;
152        }
153        xt_free_node( node );
154       
155        return 1;
156}
157
158int jabber_chat_leave( struct groupchat *c, const char *reason )
159{
160        struct im_connection *ic = c->ic;
161        struct jabber_chat *jc = c->data;
162        struct xt_node *node;
163       
164        node = xt_new_node( "x", NULL, NULL );
165        xt_add_attr( node, "xmlns", XMLNS_MUC );
166        node = jabber_make_packet( "presence", "unavailable", jc->my_full_jid, node );
167       
168        if( !jabber_write_packet( ic, node ) )
169        {
170                xt_free_node( node );
171                return 0;
172        }
173        xt_free_node( node );
174       
175        return 1;
176}
177
178void jabber_chat_invite( struct groupchat *c, char *who, char *message )
179{
180        struct xt_node *node;
181        struct im_connection *ic = c->ic;
182        struct jabber_chat *jc = c->data;
183
184        node = xt_new_node( "reason", message, NULL ); 
185
186        node = xt_new_node( "invite", NULL, node );
187        xt_add_attr( node, "to", who ); 
188
189        node = xt_new_node( "x", NULL, node ); 
190        xt_add_attr( node, "xmlns", XMLNS_MUC_USER ); 
191       
192        node = jabber_make_packet( "message", NULL, jc->name, node ); 
193
194        jabber_write_packet( ic, node ); 
195
196        xt_free_node( node );
197}
198
199/* Not really the same syntax as the normal pkt_ functions, but this isn't
200   called by the xmltree parser directly and this way I can add some extra
201   parameters so we won't have to repeat too many things done by the caller
202   already. */
203void jabber_chat_pkt_presence( struct im_connection *ic, struct jabber_buddy *bud, struct xt_node *node )
204{
205        struct groupchat *chat;
206        struct xt_node *c;
207        char *type = xt_find_attr( node, "type" );
208        struct jabber_chat *jc;
209        char *s;
210       
211        if( ( chat = jabber_chat_by_jid( ic, bud->bare_jid ) ) == NULL )
212        {
213                /* How could this happen?? We could do kill( self, 11 )
214                   now or just wait for the OS to do it. :-) */
215                return;
216        }
217       
218        jc = chat->data;
219       
220        if( type == NULL && !( bud->flags & JBFLAG_IS_CHATROOM ) )
221        {
222                bud->flags |= JBFLAG_IS_CHATROOM;
223                /* If this one wasn't set yet, this buddy just joined the chat.
224                   Slightly hackish way of finding out eh? ;-) */
225               
226                /* This is pretty messy... Here it sets ext_jid to the real
227                   JID of the participant. Works for non-anonymized channels.
228                   Might break if someone joins a chat twice, though. */
229                for( c = node->children; ( c = xt_find_node( c, "x" ) ); c = c->next )
230                        if( ( s = xt_find_attr( c, "xmlns" ) ) &&
231                            ( strcmp( s, XMLNS_MUC_USER ) == 0 ) )
232                        {
233                                c = xt_find_node( c->children, "item" );
234                                if( ( s = xt_find_attr( c, "jid" ) ) )
235                                {
236                                        /* Yay, found what we need. :-) */
237                                        bud->ext_jid = jabber_normalize( s );
238                                        break;
239                                }
240                        }
241               
242                /* Make up some other handle, if necessary. */
243                if( bud->ext_jid == NULL )
244                {
245                        if( bud == jc->me )
246                        {
247                                bud->ext_jid = jabber_normalize( ic->acc->user );
248                        }
249                        else
250                        {
251                                int i;
252                               
253                                /* Don't want the nick to be at the end, so let's
254                                   think of some slightly different notation to use
255                                   for anonymous groupchat participants in BitlBee. */
256                                bud->ext_jid = g_strdup_printf( "%s=%s", bud->resource, bud->bare_jid );
257                               
258                                /* And strip any unwanted characters. */
259                                for( i = 0; bud->resource[i]; i ++ )
260                                        if( bud->ext_jid[i] == '=' || bud->ext_jid[i] == '@' )
261                                                bud->ext_jid[i] = '_';
262                               
263                                /* Some program-specific restrictions. */
264                                imcb_clean_handle( ic, bud->ext_jid );
265                        }
266                        bud->flags |= JBFLAG_IS_ANONYMOUS;
267                }
268               
269                if( bud != jc->me )
270                {
271                        imcb_add_buddy( ic, bud->ext_jid, NULL );
272                        imcb_buddy_nick_hint( ic, bud->ext_jid, bud->resource );
273                }
274               
275                s = strchr( bud->ext_jid, '/' );
276                if( s ) *s = 0; /* Should NEVER be NULL, but who knows... */
277                imcb_chat_add_buddy( chat, bud->ext_jid );
278                if( s ) *s = '/';
279        }
280        else if( type ) /* type can only be NULL or "unavailable" in this function */
281        {
282                s = strchr( bud->ext_jid, '/' );
283                if( s ) *s = 0;
284                imcb_chat_remove_buddy( chat, bud->ext_jid, NULL );
285                if( bud != jc->me && bud->flags & JBFLAG_IS_ANONYMOUS )
286                        imcb_remove_buddy( ic, bud->ext_jid, NULL );
287                if( s ) *s = '/';
288               
289                if( bud == jc->me )
290                        jabber_chat_free( chat );
291        }
292}
293
294void jabber_chat_pkt_message( struct im_connection *ic, struct jabber_buddy *bud, struct xt_node *node )
295{
296        struct xt_node *subject = xt_find_node( node->children, "subject" );
297        struct xt_node *body = xt_find_node( node->children, "body" );
298        struct groupchat *chat;
299        char *s;
300       
301        if( bud == NULL )
302        {
303                s = xt_find_attr( node, "from" ); /* pkt_message() already NULL-checked this one. */
304                if( strchr( s, '/' ) == NULL )
305                        /* This is fine, the groupchat itself isn't in jd->buddies. */
306                        imcb_log( ic, "System message from groupchat %s: %s", s, body? body->text : "NULL" );
307                else
308                        /* This, however, isn't fine! */
309                        imcb_log( ic, "Groupchat message from unknown participant %s: %s", s, body ? body->text : "NULL" );
310               
311                return;
312        }
313        else if( ( chat = jabber_chat_by_jid( ic, bud->bare_jid ) ) == NULL )
314        {
315                /* How could this happen?? We could do kill( self, 11 )
316                   now or just wait for the OS to do it. :-) */
317                return;
318        }
319       
320        if( subject )
321        {
322                s = strchr( bud->ext_jid, '/' );
323                if( s ) *s = 0;
324                imcb_chat_topic( chat, bud->ext_jid, subject->text_len > 0 ?
325                                 subject->text : NULL, jabber_get_timestamp( node ) );
326                if( s ) *s = '/';
327        }
328        if( body && body->text_len > 0 )
329        {
330                s = strchr( bud->ext_jid, '/' );
331                if( s ) *s = 0;
332                imcb_chat_msg( chat, bud->ext_jid, body->text, 0, jabber_get_timestamp( node ) );
333                if( s ) *s = '/';
334        }
335}
Note: See TracBrowser for help on using the repository browser.