8155b745634759f90cadc8490035ed3e1eedb51d
[python-purple] / signal_cbs.pxd
1 #
2 #  Copyright (c) 2008 INdT - Instituto Nokia de Tecnologia
3 #
4 #  This file is part of python-purple.
5 #
6 #  python-purple is free software: you can redistribute it and/or modify
7 #  it under the terms of the GNU General Public License as published by
8 #  the Free Software Foundation, either version 3 of the License, or
9 #  (at your option) any later version.
10 #
11 #  python-purple is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #  GNU General Public License for more details.
15 #
16 #  You should have received a copy of the GNU General Public License
17 #  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19
20 cimport purple
21
22 signal_cbs = {}
23
24 cdef void signal_buddy_signed_off_cb (blist.PurpleBuddy *buddy):
25     cdef char *c_name = NULL
26     cdef char *c_alias = NULL
27
28     c_name = <char *> blist.c_purple_buddy_get_name(buddy)
29     if c_name == NULL:
30         name = None
31     else:
32         name = c_name
33
34     c_alias = <char *> blist.c_purple_buddy_get_alias_only(buddy)
35     if c_alias == NULL:
36         alias = None
37     else:
38         alias = c_alias
39
40     try:
41         (<object> signal_cbs["buddy-signed-off"])(name, alias)
42     except KeyError:
43         pass
44
45 cdef glib.gboolean signal_receiving_im_msg_cb (account.PurpleAccount *account,
46         char **sender, char **message, conversation.PurpleConversation *conv,
47         conversation.PurpleMessageFlags *flags):
48     cdef blist.PurpleBuddy *buddy = blist.c_purple_find_buddy(account, sender[0])
49     cdef char *c_alias = NULL
50
51     c_alias = <char *> blist.c_purple_buddy_get_alias_only(buddy)
52     if c_alias == NULL:
53         alias = None
54     else:
55         alias = c_alias
56
57     stripped = util.c_purple_markup_strip_html(message[0])
58
59     try:
60         return (<object> signal_cbs["receiving-im-msg"])(sender[0], alias, stripped)
61     except KeyError:
62         return False
63
64 cdef void jabber_receiving_xmlnode_cb (connection.PurpleConnection *gc,
65         xmlnode.xmlnode **packet, glib.gpointer null):
66
67     message = xmlnode.xmlnode_to_str(packet[0], NULL)
68
69     try:
70         (<object> signal_cbs["jabber-receiving-xmlnode"])(message)
71     except KeyError:
72         pass