X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=account.pyx;h=5e92065b35a90b00acea7f6354dffa1b3a630ede;hp=4b3af4bf0e07831b11b96539cd3baa5e4e91ff59;hb=5fe506a5d23d5f7ba01599247a58bd03ca9eb7da;hpb=7b3a84e1d328964d372cd4d3f891ab0d4619adfd diff --git a/account.pyx b/account.pyx index 4b3af4b..5e92065 100644 --- a/account.pyx +++ b/account.pyx @@ -29,8 +29,15 @@ cdef class Account: cdef prpl.PurplePluginProtocolInfo *c_prpl_info cdef plugin.PurplePluginInfo *c_plugin_info cdef savedstatuses.PurpleSavedStatus *__sstatus - cdef ProxyInfo __proxy + cdef object __proxy + cdef object __protocol + + def __init__(self): + self.__proxy = purple.ProxyInfo() + self.__protocol = purple.Plugin() + + ''' def __init__(self, char *username, char *protocol_id): cdef proxy.PurpleProxyInfo *c_proxyinfo cdef account.PurpleAccount *acc = NULL @@ -52,6 +59,7 @@ cdef class Account: 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 __get_username(self): if self.c_account: @@ -253,37 +261,38 @@ cdef class Account: protocol_labels = property(_get_protocol_labels) + def __get_proxy(self): + return self.__proxy + proxy = property(__get_proxy) + + def __get_protocol(self): + return self.__protocol + protocol = property(__get_protocol) + def get_protocol_name(self): if self.c_account: return account.c_purple_account_get_protocol_name(self.c_account) else: return None - def get_enabled(self, ui): - if self.c_account: - return account.c_purple_account_get_enabled(self.c_account, ui) - else: - return None - - def set_enabled(self, ui, value): - if self.c_account: - account.c_purple_account_set_enabled(self.c_account, ui, value) - def set_status(self): 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): + def get_buddies_online(self, acc): + cdef account.PurpleAccount *c_account cdef glib.GSList *iter cdef blist.PurpleBuddy *buddy cdef char *c_name = NULL cdef char *c_alias = NULL + + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + iter = blist.c_purple_find_buddies(c_account, NULL) + else: + return None + buddies = [] - iter = blist.c_purple_find_buddies(self.c_account, NULL) while iter: c_name = NULL c_alias = NULL @@ -305,53 +314,186 @@ cdef class Account: iter = iter.next return buddies - def get_protocol_options(self): - ''' FIXME: It is just a hack, to set the XMPP's options. ''' + def new(self, username, protocol_id): + cdef account.PurpleAccount *c_account + c_account = account.c_purple_account_new(username, protocol_id) + + if c_account == NULL: + return None + + account.c_purple_accounts_add(c_account) + + return (username, protocol_id) + + def get_all(self): cdef glib.GList *iter - cdef accountopt.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 + cdef account.PurpleAccount *acc + + accounts = [] + + iter = account.c_purple_accounts_get_all() while iter: - option = iter.data - type = accountopt.c_purple_account_option_get_type(option) - label_name = accountopt.c_purple_account_option_get_text(option) - setting = accountopt.c_purple_account_option_get_setting(option) - if type == prefs.PURPLE_PREF_STRING: - str_value = accountopt.c_purple_account_option_get_default_string(option) + acc = iter.data + if acc: + username = account.c_purple_account_get_username(acc) + protocol_id = account.c_purple_account_get_protocol_id(acc) - # Google Talk default domain hackery! - if str_value == NULL and str( label_name) == "Connect server": - str_value = "talk.google.com" + accounts.append((username, protocol_id)) + iter = iter.next - if self.c_account != NULL: - str_value = account.c_purple_account_get_string(self.c_account, setting, str_value) - account.c_purple_account_set_string(self.c_account, setting, str_value) + return accounts - elif type == prefs.PURPLE_PREF_INT: - int_value = accountopt.c_purple_account_option_get_default_int(option) - if self.c_account != NULL: - int_value = account.c_purple_account_get_int(self.c_account, setting, int_value) - if str( setting) == "port": - account.c_purple_account_set_int(self.c_account, setting, 443) + def get_password(self, acc): + ''' @param acc Tuple (username, protocol id) ''' + cdef account.PurpleAccount *c_account + cdef char *value + value = NULL - elif type == prefs.PURPLE_PREF_BOOLEAN: - bool_value = accountopt.c_purple_account_option_get_default_bool(option) - if self.c_account != NULL: - bool_value = account.c_purple_account_get_bool(self.c_account, setting, bool_value) - if str( setting) == "old_ssl": - account.c_purple_account_set_bool(self.c_account, setting, True) + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + value = account.c_purple_account_get_password(c_account) - elif type == prefs.PURPLE_PREF_STRING_LIST: - str_value = accountopt.c_purple_account_option_get_default_list_value(option) - if self.c_account != NULL: - str_value = account.c_purple_account_get_string(self.c_account, setting, str_value) + if value == NULL: + return None + else: + return value - iter = iter.next - def save_into_xml(self): - account.c_purple_accounts_add(self.c_account) + def set_password(self, acc, password): + ''' @param acc Tuple (username, protocol id) ''' + ''' @param password The account's password ''' + cdef account.PurpleAccount *c_account + + if not password: + return + + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + account.c_purple_account_set_password(c_account, password) + + def get_alias(self, acc): + ''' @param acc Tuple (username, protocol id) ''' + cdef account.PurpleAccount *c_account + cdef char *value + value = NULL + + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + value = account.c_purple_account_get_alias(c_account) + + if value == NULL: + return None + else: + return value + + def set_alias(self, acc, alias): + ''' @param acc Tuple (username, protocol id) ''' + ''' @param alias The account's alias ''' + cdef account.PurpleAccount *c_account + + if not alias: + return + + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + account.c_purple_account_set_alias(c_account, alias) + + def set_protocol_id(self, acc, protocol_id): + ''' @param acc Tuple (username, protocol id) ''' + ''' @param protocol_id The new account's protocol id ''' + cdef account.PurpleAccount *c_account + + if not protocol_id: + return + + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + account.c_purple_account_set_protocol_id(c_account, protocol_id) + + def get_protocol_id(self, acc): + ''' @param acc Tuple (username, protocol id) ''' + ''' @return account's protocol id ''' + cdef account.PurpleAccount *c_account + cdef char *value + value = NULL + + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + value = account.c_purple_account_get_protocol_id(c_account) + + if value == NULL: + return None + else: + return value + + + def set_enabled(self, acc, ui, value): + ''' @param acc Tuple (username, protocol id) ''' + ''' @param ui The UI ''' + ''' @param value True to enabled or False to disabled ''' + cdef account.PurpleAccount *c_account + + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + account.c_purple_account_set_enabled(c_account, ui, bool(value)) + + def get_enabled(self, acc, ui): + ''' @param acc Tuple (username, protocol id) ''' + ''' @param ui The UI ''' + cdef account.PurpleAccount *c_account + + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + return account.c_purple_account_get_enabled(c_account, ui) + else: + return False + + def is_connected(self, acc): + ''' @param acc Tuple (username, protocol id) ''' + ''' @param ui The UI ''' + cdef account.PurpleAccount *c_account + + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + return account.c_purple_account_is_connected(c_account) + else: + return False + + def connect(self, acc): + ''' @param acc Tuple (username, protocol id) ''' + ''' @param ui The UI ''' + cdef account.PurpleAccount *c_account + + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + account.c_purple_account_connect(c_account) + + def disconnect(self, acc): + ''' @param acc Tuple (username, protocol id) ''' + ''' @param ui The UI ''' + cdef account.PurpleAccount *c_account + + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + account.c_purple_account_disconnect(c_account) + + def set_remember_password(self, acc, value): + cdef account.PurpleAccount *c_account + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + account.c_purple_account_set_remember_password(c_account, value) + + def get_remember_password(self, acc): + cdef account.PurpleAccount *c_account + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + return account.c_purple_account_get_remember_password(c_account) + else: + return None + + def remove(self, acc): + cdef account.PurpleAccount *c_account + + c_account = account.c_purple_accounts_find(acc[0], acc[1]) + if c_account: + account.c_purple_accounts_delete(c_account)