Implementing core/account.pxd
[python-purple] / core / account.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 cdef extern from "libpurple/account.h":
21     cdef struct _PurpleAccount
22     ctypedef _PurpleAccount PurpleAccount
23
24     PurpleAccount *purple_account_new(const_char_ptr username, const_char_ptr protocol_id)
25     void purple_account_set_password(PurpleAccount *account, const_char_ptr password)
26     void purple_account_set_enabled(PurpleAccount *account, const_char_ptr ui, gboolean value)
27
28 cdef extern from "libpurple/status.h":
29     ctypedef int PurpleStatusPrimitive
30
31     cdef struct _PurpleSavedStatus
32     ctypedef _PurpleSavedStatus PurpleSavedStatus
33
34     PurpleSavedStatus *purple_saved_status_new(const_char_ptr title, PurpleStatusPrimitive type)
35     void purple_saved_status_activate(PurpleSavedStatus *saved_status)
36
37 cdef extern from "libpurple/proxy.h":
38     cdef struct PurpleProxyInfo
39
40     ctypedef int PurpleProxyType
41     PurpleProxyInfo *purple_proxy_info_new()
42     void c_purple_proxy_info_set_type "purple_proxy_info_set_type" (PurpleProxyInfo *info, PurpleProxyType type)
43     void c_purple_proxy_info_set_host "purple_proxy_info_set_host" (const_char_ptr host)
44     void c_purple_proxy_info_set_port "purple_proxy_info_set_port" (const_char_ptr port)
45
46
47 class ProxyType:
48     def __init__(self):
49         self.PROXY_USE_GLOBAL = -1
50         self.PROXY_NONE = 0
51         self.PROXY_HTTP = 1
52         self.PROXY_SOCKS4 = 2
53         self.PROXY_SOCKS5 = 3
54         self.PROXY_USE_ENVVAR = 4
55
56
57 class StatusPrimitive:
58     def __init__(self):
59         self.STAUTS_UNSET = 0
60         self.STATUS_OFFLINE = 1
61         self.STATUS_AVAILABLE = 2
62         self.STATUS_UNAVAILABLE = 3
63         self.STATUS_INVISIBLE = 4
64         self.STATUS_AWAY = 5
65         self.STATUS_EXTENDED_AWAY = 6
66         self.STATUS_MOBILE = 7
67         self.STATUS_TUNE = 8
68         self.STATUS_NUN_PRIMITIVE = 9
69
70 cdef class Account:
71     """ Account class """
72     cdef PurpleAccount *__account
73
74     def __cinit__(self, const_char_ptr username, const_char_ptr protocol_id):
75         self.__account = purple_account_new(username, protocol_id)
76         """FIXME: Check status implementation"""
77 #        self.__sstatus = purple_saved_status_new("on-line", StatusPrimitive().STATUS_AVAILABLE)
78 #        purple_saved_status_activate(self.__sstatus)
79
80     def set_password(self, password):
81         purple_account_set_password(self.__account, password)
82
83     def set_enabled(self, ui, value):
84         purple_account_set_enabled(self.__account, ui, value)