[f06894d] | 1 | /***************************************************************************\ |
---|
| 2 | * * |
---|
| 3 | * BitlBee - An IRC to IM gateway * |
---|
[21167d2] | 4 | * Jabber module - Handling of presence (tags), etc * |
---|
[f06894d] | 5 | * * |
---|
| 6 | * Copyright 2006 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 | |
---|
| 26 | xt_status jabber_pkt_presence( struct xt_node *node, gpointer data ) |
---|
| 27 | { |
---|
[4a0614e] | 28 | struct gaim_connection *gc = data; |
---|
[f06894d] | 29 | char *from = xt_find_attr( node, "from" ); |
---|
[4a0614e] | 30 | char *type = xt_find_attr( node, "type" ); /* NULL should mean the person is online. */ |
---|
| 31 | char *s; |
---|
[f06894d] | 32 | |
---|
[4a0614e] | 33 | if( !from ) |
---|
| 34 | return XT_HANDLED; |
---|
| 35 | |
---|
| 36 | s = strchr( from, '/' ); |
---|
| 37 | if( s ) |
---|
| 38 | *s = 0; |
---|
| 39 | |
---|
| 40 | if( type == NULL ) |
---|
| 41 | serv_got_update( gc, from, 1, 0, 0, 0, 0, 0 ); |
---|
| 42 | else if( strcmp( type, "unavailable" ) == 0 ) |
---|
| 43 | serv_got_update( gc, from, 0, 0, 0, 0, 0, 0 ); |
---|
| 44 | else |
---|
| 45 | { |
---|
| 46 | printf( "Received PRES from %s:\n", from ); |
---|
| 47 | xt_print( node ); |
---|
| 48 | } |
---|
| 49 | |
---|
| 50 | if( s ) |
---|
| 51 | *s = '/'; |
---|
[f06894d] | 52 | |
---|
| 53 | return XT_HANDLED; |
---|
| 54 | } |
---|
| 55 | |
---|
[deff040] | 56 | /* Send the <presence/> tag that finalizes the whole login process, from here |
---|
| 57 | we'll actually show up as online to our buddies. */ |
---|
[0b4a0db] | 58 | int presence_announce( struct gaim_connection *gc ) |
---|
| 59 | { |
---|
| 60 | struct xt_node *node; |
---|
| 61 | int st; |
---|
| 62 | |
---|
| 63 | node = jabber_make_packet( "presence", NULL, NULL, NULL ); |
---|
| 64 | |
---|
| 65 | st = jabber_write_packet( gc, node ); |
---|
| 66 | |
---|
| 67 | if( st ) |
---|
| 68 | account_online( gc ); |
---|
| 69 | |
---|
| 70 | xt_free_node( node ); |
---|
| 71 | return st; |
---|
| 72 | } |
---|
[deff040] | 73 | |
---|
| 74 | int presence_send( struct gaim_connection *gc, char *to, char *show, char *status ) |
---|
| 75 | { |
---|
| 76 | struct xt_node *node; |
---|
| 77 | int st; |
---|
| 78 | |
---|
| 79 | node = jabber_make_packet( "presence", NULL, to, NULL ); |
---|
| 80 | if( show ) |
---|
| 81 | xt_add_child( node, xt_new_node( "show", show, NULL ) ); |
---|
| 82 | if( status ) |
---|
| 83 | xt_add_child( node, xt_new_node( "status", status, NULL ) ); |
---|
| 84 | |
---|
| 85 | st = jabber_write_packet( gc, node ); |
---|
| 86 | |
---|
| 87 | xt_free_node( node ); |
---|
| 88 | return st; |
---|
| 89 | } |
---|