X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=account.pyx;h=80b0b0e846c4525bcba049e9352baf46d31e572b;hp=cafdf0704136c64ab1924d1cc10161f0ba05702e;hb=004e280b67aef2279b3c2c06fbeb330adf611677;hpb=7f9bbfa5e0f087ba5a5c1367ab1bea72f53573d0;ds=sidebyside diff --git a/account.pyx b/account.pyx index cafdf07..80b0b0e 100644 --- a/account.pyx +++ b/account.pyx @@ -17,52 +17,117 @@ # along with this program. If not, see . # -class ProxyType: - def __init__(self): - self.PROXY_USE_GLOBAL = -1 - self.PROXY_NONE = 0 - self.PROXY_HTTP = 1 - self.PROXY_SOCKS4 = 2 - self.PROXY_SOCKS5 = 3 - self.PROXY_USE_ENVVAR = 4 - - -class StatusPrimitive: - def __init__(self): - self.STAUTS_UNSET = 0 - self.STATUS_OFFLINE = 1 - self.STATUS_AVAILABLE = 2 - self.STATUS_UNAVAILABLE = 3 - self.STATUS_INVISIBLE = 4 - self.STATUS_AWAY = 5 - self.STATUS_EXTENDED_AWAY = 6 - self.STATUS_MOBILE = 7 - self.STATUS_TUNE = 8 - self.STATUS_NUN_PRIMITIVE = 9 +cimport purple + +cdef extern from *: + ctypedef char const_char "const char" cdef class Account: """ Account class """ - cdef PurpleAccount *__account - cdef PurpleSavedStatus *__sstatus + cdef account.PurpleAccount *__account + cdef plugin.PurplePlugin *c_plugin + cdef prpl.PurplePluginProtocolInfo *c_prpl_info + cdef plugin.PurplePluginInfo *c_plugin_info + cdef savedstatuses.PurpleSavedStatus *__sstatus + cdef ProxyInfo __proxy + + def __init__(self, char *username, char *protocol_id): + cdef proxy.PurpleProxyInfo *c_proxyinfo + self.__account = account.c_purple_account_new(username, protocol_id) + self.c_plugin = plugin.c_purple_plugins_find_with_id(protocol_id) + self.c_prpl_info = plugin.c_PURPLE_PLUGIN_PROTOCOL_INFO(self.c_plugin) + + c_proxyinfo = account.c_purple_account_get_proxy_info(self.__account) + if c_proxyinfo == NULL: + c_proxyinfo = proxy.c_purple_proxy_info_new() + proxy.c_purple_proxy_info_set_type(c_proxyinfo, proxy.PURPLE_PROXY_NONE) + account.c_purple_account_set_proxy_info(self.__account, c_proxyinfo) + self.__proxy = ProxyInfo() + self.__proxy.c_proxyinfo = c_proxyinfo - def __cinit__(self, const_char_ptr username, const_char_ptr protocol_id): - self.__account = c_purple_account_new(username, protocol_id) def set_password(self, password): - c_purple_account_set_password(self.__account, password) + account.c_purple_account_set_password(self.__account, password) def set_enabled(self, ui, value): - c_purple_account_set_enabled(self.__account, ui, value) + account.c_purple_account_set_enabled(self.__account, ui, value) def get_acc_username(self): if self.__account: - return c_purple_account_get_username(self.__account) + return account.c_purple_account_get_username(self.__account) def get_password(self): if self.__account: - return c_purple_account_get_password(self.__account) + return account.c_purple_account_get_password(self.__account) def set_status(self): - self.__sstatus = c_purple_savedstatus_new(NULL, StatusPrimitive().STATUS_AVAILABLE) - c_purple_savedstatus_activate(self.__sstatus) + self.__sstatus = savedstatuses.c_purple_savedstatus_new(NULL, status.PURPLE_STATUS_AVAILABLE) + savedstatuses.c_purple_savedstatus_activate(self.__sstatus) + + def get_proxy(self): + return self.__proxy + + proxy = property(get_proxy) + + def get_buddies_online(self): + cdef glib.GSList *iter + cdef blist.PurpleBuddy *buddy + buddies = [] + iter = blist.c_purple_find_buddies(self.__account, NULL) + while iter: + buddy = iter.data + if buddy and \ + account.c_purple_account_is_connected(blist.c_purple_buddy_get_account(buddy)) and \ + status.c_purple_presence_is_online(blist.c_purple_buddy_get_presence(buddy)): + buddies += [buddy.name] + iter = iter.next + return buddies + + def get_protocol_options(self): + ''' FIXME: It is just a hack, to set the XMPP's options. ''' + cdef glib.GList *iter + cdef account.PurpleAccountOption *option + cdef prefs.PurplePrefType type + cdef const_char *label_name + cdef const_char *str_value + cdef const_char *setting + cdef int int_value + cdef glib.gboolean bool_value + iter = self.c_prpl_info.protocol_options + while iter: + option = iter.data + type = account.c_purple_account_option_get_type(option) + label_name = account.c_purple_account_option_get_text(option) + setting = account.c_purple_account_option_get_setting(option) + if type == prefs.PURPLE_PREF_STRING: + str_value = account.c_purple_account_option_get_default_string(option) + + # Google Talk default domain hackery! + if str_value == NULL and str( label_name) == "Connect server": + str_value = "talk.google.com" + + if self.__account != NULL: + str_value = account.c_purple_account_get_string(self.__account, setting, str_value) + account.c_purple_account_set_string(self.__account, setting, str_value ); + + elif type == prefs.PURPLE_PREF_INT: + int_value = account.c_purple_account_option_get_default_int(option) + if self.__account != NULL: + int_value = account.c_purple_account_get_int(self.__account, setting, int_value) + if str( setting) == "port": + account.c_purple_account_set_int(self.__account, setting, 443); + + elif type == prefs.PURPLE_PREF_BOOLEAN: + bool_value = account.c_purple_account_option_get_default_bool(option) + if self.__account != NULL: + bool_value = account.c_purple_account_get_bool(self.__account, setting, bool_value) + if str( setting) == "old_ssl": + account.c_purple_account_set_bool(self.__account, setting, True); + + elif type == prefs.PURPLE_PREF_STRING_LIST: + str_value = account.c_purple_account_option_get_default_list_value(option) + if self.__account != NULL: + str_value = account.c_purple_account_get_string(self.__account, setting, str_value) + + iter = iter.next