Added missing structures on blist.pxd.
[python-purple] / account.pyx
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 cdef class Account:
23     """ Account class """
24     cdef account.PurpleAccount *__account
25     cdef savedstatuses.PurpleSavedStatus *__sstatus
26
27     def __init__(self, char *username, char *protocol_id):
28         self.__account = account.c_purple_account_new(username, protocol_id)
29
30     def set_password(self, password):
31         account.c_purple_account_set_password(self.__account, password)
32
33     def set_enabled(self, ui, value):
34         account.c_purple_account_set_enabled(self.__account, ui, value)
35
36     def get_acc_username(self):
37         if self.__account:
38             return account.c_purple_account_get_username(self.__account)
39
40     def get_password(self):
41         if self.__account:
42             return account.c_purple_account_get_password(self.__account)
43
44     def set_status(self):
45         self.__sstatus = savedstatuses.c_purple_savedstatus_new(NULL, status.PURPLE_STATUS_AVAILABLE)
46         savedstatuses.c_purple_savedstatus_activate(self.__sstatus)
47
48     def get_buddies_online(self):
49         cdef glib.GSList *iter
50         cdef blist.PurpleBuddy *buddy
51         buddies = []
52         iter = blist.c_purple_find_buddies(self.__account, NULL)
53         while iter:
54             buddy = <blist.PurpleBuddy *> iter.data
55             if <blist.PurpleBuddy *>buddy and \
56                 account.c_purple_account_is_connected(blist.c_purple_buddy_get_account(buddy)) and \
57                 status.c_purple_presence_is_online(blist.c_purple_buddy_get_presence(buddy)):
58                 buddies += [buddy.name]
59             iter = iter.next
60         return buddies
61
62     def get_proxyinfo(self):
63         cdef proxy.PurpleProxyInfo *c_proxyinfo
64         c_proxyinfo = account.c_purple_account_get_proxy_info(self.__account)
65         if c_proxyinfo == NULL:
66             return None
67         cdef ProxyInfo proxyinfo
68         proxyinfo = proxy.ProxyInfo()
69         proxyinfo.c_proxyinfo = c_proxyinfo
70         return proxyinfo
71
72     def set_proxyinfo(self, ProxyInfo proxyinf):
73         account.c_purple_account_set_proxy_info(self.__account, proxyinf.c_proxyinfo)