X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=account.pyx;h=257c42555271617e290a877b0b68d320690e8562;hp=a3f996bfaf0e1cd5f249c6aedf33298f6f145f77;hb=646d7c8d83ca23e69c6ccc67000e33a331418413;hpb=96cd4db66ee4749fb6d00e74e0bc9e3101e43079 diff --git a/account.pyx b/account.pyx index a3f996b..257c425 100644 --- a/account.pyx +++ b/account.pyx @@ -17,20 +17,25 @@ # along with this program. If not, see . # -cimport glib +cimport purple -cimport account -cimport blist -cimport savedstatuses -cimport status +cdef extern from *: + ctypedef char const_char "const char" cdef class Account: """ Account class """ 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 - def __cinit__(self, char *username, char *protocol_id): + def __init__(self, char *username, char *protocol_id): 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) + def set_password(self, password): account.c_purple_account_set_password(self.__account, password) @@ -63,3 +68,65 @@ cdef class Account: buddies += [buddy.name] iter = iter.next return buddies + + def get_proxyinfo(self): + cdef proxy.PurpleProxyInfo *c_proxyinfo + c_proxyinfo = account.c_purple_account_get_proxy_info(self.__account) + if c_proxyinfo == NULL: + return None + cdef ProxyInfo proxyinfo + proxyinfo = proxy.ProxyInfo() + proxyinfo.c_proxyinfo = c_proxyinfo + return proxyinfo + + def set_proxyinfo(self, ProxyInfo proxyinf): + account.c_purple_account_set_proxy_info(self.__account, proxyinf.c_proxyinfo) + + 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 +