0e985488f3149eb6f3c8780fd806095ab8af4dbe
[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 glib
21
22 cimport account
23 cimport blist
24 cimport savedstatuses
25 cimport status
26
27 cdef class Account:
28     """ Account class """
29     cdef account.PurpleAccount *__account
30     cdef savedstatuses.PurpleSavedStatus *__sstatus
31
32     def __cinit__(self, char *username, char *protocol_id):
33         self.__account = account.c_purple_account_new(username, protocol_id)
34
35     def set_password(self, password):
36         account.c_purple_account_set_password(self.__account, password)
37
38     def set_enabled(self, ui, value):
39         account.c_purple_account_set_enabled(self.__account, ui, value)
40
41     def get_acc_username(self):
42         if self.__account:
43             return account.c_purple_account_get_username(self.__account)
44
45     def get_password(self):
46         if self.__account:
47             return account.c_purple_account_get_password(self.__account)
48
49     def set_status(self):
50         self.__sstatus = savedstatuses.c_purple_savedstatus_new(NULL, status.PURPLE_STATUS_AVAILABLE)
51         savedstatuses.c_purple_savedstatus_activate(self.__sstatus)
52
53     def get_buddies_online(self, acc):
54         cdef glib.GSList *iter
55         cdef blist.PurpleBuddy *buddy
56         buddies = []
57         iter = blist.c_purple_find_buddies(self.__account, NULL)
58         while iter:
59             buddy = <blist.PurpleBuddy *> iter.data
60             if <object> buddy and \
61                 account.c_purple_account_is_connected(blist.c_purple_buddy_get_account(buddy)) and \
62                 status.c_purple_presence_is_online(blist.c_purple_buddy_get_presence(buddy)):
63                 buddies += [buddy.name]
64             iter = iter.next
65         return buddies