X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=plugin.pyx;h=c2b6538be2ba3514ecae52f00072a80cce9a91bf;hp=a4ef02f3aff4270a50f389d85be5b997a274c01b;hb=33bcafac77ebb7410c058807d64eaad2c33771f9;hpb=23bbccf4aeb7b092ae26a90f05c1ced78b512295 diff --git a/plugin.pyx b/plugin.pyx index a4ef02f..c2b6538 100644 --- a/plugin.pyx +++ b/plugin.pyx @@ -24,9 +24,14 @@ cdef class Plugin: cdef prpl.PurplePluginProtocolInfo *c_prpl_info cdef plugin.PurplePluginInfo *c_plugin_info + def __init__(self): + pass + + ''' def __init__(self, id): self.c_plugin = plugin.c_purple_plugins_find_with_id(id) self.c_prpl_info = plugin.c_PURPLE_PLUGIN_PROTOCOL_INFO(self.c_plugin) + ''' def get_name(self): return self.c_plugin.info.name @@ -34,6 +39,166 @@ cdef class Plugin: def get_id(self): return self.c_plugin.info.id + def get_all(self): + ''' @return A string list of protocols' (id, name) ''' + ''' [('prpl-jabber', 'XMPP'), ('foo', 'MSN'), ...] ''' + cdef glib.GList *iter + cdef plugin.PurplePlugin *pp + + protocols = [] + + iter = plugin.c_purple_plugins_get_protocols() + while iter: + pp = iter.data + if pp.info and pp.info.name: + protocols.append((pp.info.id, pp.info.name)) + iter = iter.next + + return protocols + + def get_options(self, id, username=None): + ''' @param id The protocol's id ''' + ''' @param username The account's username ''' + ''' @return {'setting type': ('UI label', str|int|bool value)} ''' + + cdef plugin.PurplePlugin *c_plugin + cdef prpl.PurplePluginProtocolInfo *c_prpl_info + cdef account.PurpleAccount *c_account + 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 + + c_account = NULL + + if username: + c_account = account.purple_accounts_find(username, id) + + c_plugin = plugin.c_purple_plugins_find_with_id(id) + c_prpl_info = plugin.c_PURPLE_PLUGIN_PROTOCOL_INFO(c_plugin) + + po = {} + + iter = c_prpl_info.protocol_options + + while iter: + + option = iter.data + type = accountopt.purple_account_option_get_type(option) + label_name = accountopt.purple_account_option_get_text(option) + setting = accountopt.purple_account_option_get_setting(option) + + sett = str( setting) + label = str( label_name) + + if type == prefs.PURPLE_PREF_STRING: + str_value = accountopt.purple_account_option_get_default_string(option) + # Google Talk default domain hackery! + if str_value == NULL and label == "Connect server": + str_value = "talk.google.com" + if c_account != NULL: + str_value = account.purple_account_get_string(c_account, setting, str_value) + + val = str( str_value) + + elif type == prefs.PURPLE_PREF_INT: + int_value = accountopt.purple_account_option_get_default_int(option) + if sett == "port": + int_value = int(443) + if c_account != NULL: + int_value = account.purple_account_get_int(c_account, setting, int_value) + + val = int(int_value) + + elif type == prefs.PURPLE_PREF_BOOLEAN: + bool_value = accountopt.purple_account_option_get_default_bool(option) + if c_account != NULL: + bool_value = account.purple_account_get_bool(c_account, setting, bool_value) + + val = bool(bool_value) + + elif type == prefs.PURPLE_PREF_STRING_LIST: + str_value = accountopt.purple_account_option_get_default_list_value(option) + if c_account != NULL: + str_value = account.purple_account_get_string(c_account, setting, str_value) + + val = str( str_value) + + iter = iter.next + + po[sett] = (label, val) + + return po + + def set_options(self, acc, po): + #FIXME: account + ''' @param id The protocol's id ''' + ''' @param username The account's username ''' + ''' @param po Dictionary {'setting type': str|int|bool value, ...} ''' + ''' @return True to success or False to failure ''' + + cdef plugin.PurplePlugin *c_plugin + cdef prpl.PurplePluginProtocolInfo *c_prpl_info + cdef account.PurpleAccount *c_account + cdef glib.GList *iter + cdef accountopt.PurpleAccountOption *option + cdef prefs.PurplePrefType type + cdef const_char *str_value + cdef const_char *setting + cdef int int_value + cdef glib.gboolean bool_value + + c_account = NULL + + c_account = account.purple_accounts_find(acc[0], acc[1]) + if c_account == NULL: + # FIXME: Message error or call a error handler + return False + + c_plugin = plugin.c_purple_plugins_find_with_id(acc[1]) + c_prpl_info = plugin.c_PURPLE_PLUGIN_PROTOCOL_INFO(c_plugin) + + iter = c_prpl_info.protocol_options + + while iter: + + option = iter.data + type = accountopt.purple_account_option_get_type(option) + setting = accountopt.purple_account_option_get_setting(option) + + sett = str( setting) + + iter = iter.next + + if not po.has_key(sett) or not po[sett]: + continue + + if type == prefs.PURPLE_PREF_STRING: + + str_value = po[sett] + account.purple_account_set_string(c_account, setting, str_value) + + elif type == prefs.PURPLE_PREF_INT: + + int_value = int(po[sett]) + account.purple_account_set_int(c_account, setting, int_value) + + elif type == prefs.PURPLE_PREF_BOOLEAN: + + bool_value = bool(po[sett]) + account.purple_account_set_bool(c_account, setting, bool_value) + + elif type == prefs.PURPLE_PREF_STRING_LIST: + + str_value = po[sett] + account.purple_account_set_string(c_account, setting, str_value) + + return True + cdef class Plugins: