gaim/gaim

Parents fb826633d237
Children a7cb4634e839
When testing a jabber server at work I ran into a buddy list issue, and I realized that it's really not the ui's job to decide when to ask the user about adding a buddy, so I moved the logic to the prpls which will know. I've fixed jabber and oscar (since KingAnt says it's not an issue there). Someone who knows MSN and Yahoo! is going to want to make sure what I have works correctly, and may want to look into handling any cases that might not want to ask the user.
--- a/src/account.c Wed Mar 16 02:48:01 2005 -0500
+++ b/src/account.c Wed Mar 16 20:54:07 2005 -0500
@@ -248,8 +248,8 @@
void
gaim_account_notify_added(GaimAccount *account, const char *id,
- const char *remote_user, const char *alias,
- const char *message)
+ const char *remote_user, const char *alias,
+ const char *message, gboolean request_add)
{
GaimAccountUiOps *ui_ops;
@@ -259,7 +259,8 @@
ui_ops = gaim_accounts_get_ui_ops();
if (ui_ops != NULL && ui_ops->notify_added != NULL)
- ui_ops->notify_added(account, remote_user, id, alias, message);
+ ui_ops->notify_added(account, remote_user, id, alias,
+ message, request_add);
}
static void
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/account.h Wed Mar 16 20:54:07 2005 -0500
@@ -0,0 +1,668 @@
+/**
+ * @file account.h Account API
+ * @ingroup core
+ *
+ * gaim
+ *
+ * Gaim is the legal property of its developers, whose names are too numerous
+ * to list here. Please refer to the COPYRIGHT file distributed with this
+ * source distribution.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * @see @ref account-signals
+ */
+#ifndef _GAIM_ACCOUNT_H_
+#define _GAIM_ACCOUNT_H_
+
+#include <glib.h>
+
+typedef struct _GaimAccountUiOps GaimAccountUiOps;
+typedef struct _GaimAccount GaimAccount;
+
+typedef gboolean (*GaimFilterAccountFunc)(GaimAccount *account);
+
+#include "connection.h"
+#include "log.h"
+#include "proxy.h"
+#include "prpl.h"
+
+struct _GaimAccountUiOps
+{
+ void (*notify_added)(GaimAccount *account, const char *remote_user,
+ const char *id, const char *alias,
+ const char *message, gboolean request_add);
+};
+
+struct _GaimAccount
+{
+ char *username; /**< The username. */
+ char *alias; /**< The current alias. */
+ char *password; /**< The account password. */
+ char *user_info; /**< User information. */
+
+ char *buddy_icon; /**< The buddy icon. */
+
+ gboolean remember_pass; /**< Remember the password. */
+
+ char *protocol_id; /**< The ID of the protocol. */
+
+ GaimConnection *gc; /**< The connection handle. */
+
+ GHashTable *settings; /**< Protocol-specific settings. */
+ GHashTable *ui_settings; /**< UI-specific settings. */
+
+ GaimProxyInfo *proxy_info; /**< Proxy information. This will be set */
+ /* to NULL when the account inherits */
+ /* proxy settings from global prefs. */
+
+ GSList *permit; /**< Permit list. */
+ GSList *deny; /**< Deny list. */
+ int perm_deny; /**< The permit/deny setting. */
+ GaimLog *system_log; /**< The system log */
+
+ void *ui_data; /**< The UI can put data here. */
+};
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**************************************************************************/
+/** @name Account API */
+/**************************************************************************/
+/*@{*/
+
+/**
+ * Creates a new account.
+ *
+ * @param username The username.
+ * @param protocol_id The protocol ID.
+ */
+GaimAccount *gaim_account_new(const char *username, const char *protocol_id);
+
+/**
+ * Destroys an account.
+ *
+ * @param account The account to destroy.
+ */
+void gaim_account_destroy(GaimAccount *account);
+
+/**
+ * Connects to an account.
+ *
+ * @param account The account to connect to.
+ *
+ * @return The gaim connection.
+ */
+GaimConnection *gaim_account_connect(GaimAccount *account);
+
+/**
+ * Registers an account.
+ *
+ * @param account The account to register.
+ *
+ * @return The gaim connection.
+ */
+GaimConnection *gaim_account_register(GaimAccount *account);
+
+/**
+ * Disconnects from an account.
+ *
+ * @param account The account to disconnect from.
+ *
+ * @return The gaim connection.
+ */
+void gaim_account_disconnect(GaimAccount *account);
+
+/**
+ * Notifies the user that the account was added to a remote user's
+ * buddy list.
+ *
+ * This can present a dialog so that the local user can add the buddy,
+ * if not already added.
+ *
+ * @param account The account that was added.
+ * @param remote_user The name of the user that added this account.
+ * @param id The optional ID of the local account. Rarely used.
+ * @param alias The optional alias of the user.
+ * @param message The optional message sent from the user adding you.
+ * @param request_add Whether to ask about adding the buddy to the buddy list.
+ */
+void gaim_account_notify_added(GaimAccount *account, const char *remote_user,
+ const char *id, const char *alias,
+ const char *message, gboolean request_add);
+
+/**
+ * Requests information from the user to change the account's password.
+ *
+ * @param account The account to change the password on.
+ */
+void gaim_account_request_change_password(GaimAccount *account);
+
+/**
+ * Requests information from the user to change the account's
+ * user information.
+ *
+ * @param account The account to change the user information on.
+ */
+void gaim_account_request_change_user_info(GaimAccount *account);
+
+/**
+ * Sets the account's username.
+ *
+ * @param account The account.
+ * @param username The username.
+ */
+void gaim_account_set_username(GaimAccount *account, const char *username);
+
+/**
+ * Sets the account's password.
+ *
+ * @param account The account.
+ * @param password The password.
+ */
+void gaim_account_set_password(GaimAccount *account, const char *password);
+
+/**
+ * Sets the account's alias.
+ *
+ * @param account The account.
+ * @param alias The alias.
+ */
+void gaim_account_set_alias(GaimAccount *account, const char *alias);
+
+/**
+ * Sets the account's user information
+ *
+ * @param account The account.
+ * @param user_info The user information.
+ */
+void gaim_account_set_user_info(GaimAccount *account, const char *user_info);
+
+/**
+ * Sets the account's buddy icon.
+ *
+ * @param account The account.
+ * @param icon The buddy icon file.
+ */
+void gaim_account_set_buddy_icon(GaimAccount *account, const char *icon);
+
+/**
+ * Sets the account's protocol ID.
+ *
+ * @param account The account.
+ * @param protocol_id The protocol ID.
+ */
+void gaim_account_set_protocol_id(GaimAccount *account,
+ const char *protocol_id);
+
+/**
+ * Sets the account's connection.
+ *
+ * @param account The account.
+ * @param gc The connection.
+ */
+void gaim_account_set_connection(GaimAccount *account, GaimConnection *gc);
+
+/**
+ * Sets whether or not this account should save its password.
+ *
+ * @param account The account.
+ * @param value @c TRUE if it should remember the password.
+ */
+void gaim_account_set_remember_password(GaimAccount *account, gboolean value);
+
+/**
+ * Sets whether or not this account should check for mail.
+ *
+ * @param account The account.
+ * @param value @c TRUE if it should check for mail.
+ */
+void gaim_account_set_check_mail(GaimAccount *account, gboolean value);
+
+/**
+ * Sets whether or not this account should auto-login for the specified
+ * UI.
+ *
+ * @param account The account.
+ * @param ui The UI.
+ * @param value @c TRUE if it should check for mail.
+ */
+void gaim_account_set_auto_login(GaimAccount *account, const char *ui,
+ gboolean value);
+
+/**
+ * Sets the account's proxy information.
+ *
+ * @param account The account.
+ * @param info The proxy information.
+ */
+void gaim_account_set_proxy_info(GaimAccount *account, GaimProxyInfo *info);
+
+/**
+ * Clears all protocol-specific settings on an account.
+ *
+ * @param account The account.
+ */
+void gaim_account_clear_settings(GaimAccount *account);
+
+/**
+ * Sets a protocol-specific integer setting for an account.
+ *
+ * @param account The account.
+ * @param name The name of the setting.
+ * @param value The setting's value.
+ */
+void gaim_account_set_int(GaimAccount *account, const char *name, int value);
+
+/**
+ * Sets a protocol-specific string setting for an account.
+ *
+ * @param account The account.
+ * @param name The name of the setting.
+ * @param value The setting's value.
+ */
+void gaim_account_set_string(GaimAccount *account, const char *name,
+ const char *value);
+
+/**
+ * Sets a protocol-specific boolean setting for an account.
+ *
+ * @param account The account.
+ * @param name The name of the setting.
+ * @param value The setting's value.
+ */
+void gaim_account_set_bool(GaimAccount *account, const char *name,
+ gboolean value);
+
+/**
+ * Sets a UI-specific integer setting for an account.
+ *
+ * @param account The account.
+ * @param ui The UI name.
+ * @param name The name of the setting.
+ * @param value The setting's value.
+ */
+void gaim_account_set_ui_int(GaimAccount *account, const char *ui,
+ const char *name, int value);
+
+/**
+ * Sets a UI-specific string setting for an account.
+ *
+ * @param account The account.
+ * @param ui The UI name.
+ * @param name The name of the setting.
+ * @param value The setting's value.
+ */
+void gaim_account_set_ui_string(GaimAccount *account, const char *ui,
+ const char *name, const char *value);
+
+/**
+ * Sets a UI-specific boolean setting for an account.
+ *
+ * @param account The account.
+ * @param ui The UI name.
+ * @param name The name of the setting.
+ * @param value The setting's value.
+ */
+void gaim_account_set_ui_bool(GaimAccount *account, const char *ui,
+ const char *name, gboolean value);
+
+/**
+ * Returns whether or not the account is connected.
+ *
+ * @param account The account.
+ *
+ * @return @c TRUE if connected, or @c FALSE otherwise.
+ */
+gboolean gaim_account_is_connected(const GaimAccount *account);
+
+/**
+ * Returns the account's username.
+ *
+ * @param account The account.
+ *
+ * @return The username.
+ */
+const char *gaim_account_get_username(const GaimAccount *account);
+
+/**
+ * Returns the account's password.
+ *
+ * @param account The account.
+ *
+ * @return The password.
+ */
+const char *gaim_account_get_password(const GaimAccount *account);
+
+/**
+ * Returns the account's alias.
+ *
+ * @param account The account.
+ *
+ * @return The alias.
+ */
+const char *gaim_account_get_alias(const GaimAccount *account);
+
+/**
+ * Returns the account's user information.
+ *
+ * @param account The account.
+ *
+ * @return The user information.
+ */
+const char *gaim_account_get_user_info(const GaimAccount *account);
+
+/**
+ * Returns the account's buddy icon filename.
+ *
+ * @param account The account.
+ *
+ * @return The buddy icon filename.
+ */
+const char *gaim_account_get_buddy_icon(const GaimAccount *account);
+
+/**
+ * Returns the account's protocol ID.
+ *
+ * @param account The account.
+ *
+ * @return The protocol ID.
+ */
+const char *gaim_account_get_protocol_id(const GaimAccount *account);
+
+/**
+ * Returns the account's protocol name.
+ *
+ * @param account The account.
+ *
+ * @return The protocol name.
+ */
+const char *gaim_account_get_protocol_name(const GaimAccount *account);
+
+/**
+ * Returns the account's connection.
+ *
+ * @param account The account.
+ *
+ * @return The connection.
+ */
+GaimConnection *gaim_account_get_connection(const GaimAccount *account);
+
+/**
+ * Returns whether or not this account should save its password.
+ *
+ * @param account The account.
+ *
+ * @return @c TRUE if it should remember the password.
+ */
+gboolean gaim_account_get_remember_password(const GaimAccount *account);
+
+/**
+ * Returns whether or not this account should check for mail.
+ *
+ * @param account The account.
+ *
+ * @return @c TRUE if it should check for mail.
+ */
+gboolean gaim_account_get_check_mail(const GaimAccount *account);
+
+/**
+ * Returns whether or not this account should auto-login for the
+ * specified UI.
+ *
+ * @param account The account.
+ * @param ui The UI.
+ *
+ * @return @c TRUE if it should auto-login on this UI.
+ */
+gboolean gaim_account_get_auto_login(const GaimAccount *account,
+ const char *ui);
+
+/**
+ * Returns the account's proxy information.
+ *
+ * @param account The account.
+ *
+ * @return The proxy information.
+ */
+GaimProxyInfo *gaim_account_get_proxy_info(const GaimAccount *account);
+
+/**
+ * Returns a protocol-specific integer setting for an account.
+ *
+ * @param account The account.
+ * @param name The name of the setting.
+ * @param default_value The default value.
+ *
+ * @return The value.
+ */
+int gaim_account_get_int(const GaimAccount *account, const char *name,
+ int default_value);
+
+/**
+ * Returns a protocol-specific string setting for an account.
+ *
+ * @param account The account.
+ * @param name The name of the setting.
+ * @param default_value The default value.
+ *
+ * @return The value.
+ */
+const char *gaim_account_get_string(const GaimAccount *account,
+ const char *name,
+ const char *default_value);
+
+/**
+ * Returns a protocol-specific boolean setting for an account.
+ *
+ * @param account The account.
+ * @param name The name of the setting.
+ * @param default_value The default value.
+ *
+ * @return The value.
+ */
+gboolean gaim_account_get_bool(const GaimAccount *account, const char *name,
+ gboolean default_value);
+
+/**
+ * Returns a UI-specific integer setting for an account.
+ *
+ * @param account The account.
+ * @param ui The UI name.
+ * @param name The name of the setting.
+ * @param default_value The default value.
+ *
+ * @return The value.
+ */
+int gaim_account_get_ui_int(const GaimAccount *account, const char *ui,
+ const char *name, int default_value);
+
+/**
+ * Returns a UI-specific string setting for an account.
+ *
+ * @param account The account.
+ * @param ui The UI name.
+ * @param name The name of the setting.
+ * @param default_value The default value.
+ *
+ * @return The value.
+ */
+const char *gaim_account_get_ui_string(const GaimAccount *account,
+ const char *ui, const char *name,
+ const char *default_value);
+
+/**
+ * Returns a UI-specific boolean setting for an account.
+ *
+ * @param account The account.
+ * @param ui The UI name.
+ * @param name The name of the setting.
+ * @param default_value The default value.
+ *
+ * @return The value.
+ */
+gboolean gaim_account_get_ui_bool(const GaimAccount *account, const char *ui,
+ const char *name, gboolean default_value);
+
+
+/**
+ * Returns the system log for an account.
+ * Create it if it doesn't already exist.
+ *
+ * @param account The account.
+ *
+ * @return The log.
+ */
+GaimLog *gaim_account_get_log(GaimAccount *account);
+
+/**
+ * Frees the system log of an account
+ *
+ * @param account The account.
+ */
+void gaim_account_destroy_log(GaimAccount *account);
+
+/*@}*/
+
+/**************************************************************************/
+/** @name Accounts API */
+/**************************************************************************/
+/*@{*/
+
+/**
+ * Loads the accounts.
+ *
+ * @return TRUE if accounts.xml was loaded successfully. Otherwise
+ * FALSE is returned.
+ */
+gboolean gaim_accounts_load();
+
+/**
+ * Force an immediate write of accounts.
+ */
+void gaim_accounts_sync();
+
+/**
+ * Adds an account to the list of accounts.
+ *
+ * @param account The account.
+ */
+void gaim_accounts_add(GaimAccount *account);
+
+/**
+ * Removes an account from the list of accounts.
+ *
+ * @param account The account.
+ */
+void gaim_accounts_remove(GaimAccount *account);
+
+/**
+ * Deletes an account.
+ *
+ * This will remove any buddies from the buddy list that belong to this
+ * account, buddy pounces that belong to this account, and will also
+ * destroy @a account.
+ *
+ * @param account The account.
+ */
+void gaim_accounts_delete(GaimAccount *account);
+
+/**
+ * Auto-logins to all accounts set to auto-login under the specified UI.
+ *
+ * @param ui The UI.
+ */
+void gaim_accounts_auto_login(const char *ui);
+
+/**
+ * Reorders an account.
+ *
+ * @param account The account to reorder.
+ * @param new_index The new index for the account.
+ */
+void gaim_accounts_reorder(GaimAccount *account, size_t new_index);
+
+/**
+ * Returns a list of all accounts.
+ *
+ * @return A list of all accounts.
+ */
+GList *gaim_accounts_get_all(void);
+
+/**
+ * Finds an account with the specified name and protocol id.
+ *
+ * @param name The account username.
+ * @param protocol The account protocol ID.
+ *
+ * @return The account, if found, or @c FALSE otherwise.
+ */
+GaimAccount *gaim_accounts_find(const char *name, const char *protocol);
+
+/*@}*/
+
+
+/**************************************************************************/
+/** @name UI Registration Functions */
+/**************************************************************************/
+/*@{*/
+/**
+ * Sets the UI operations structure to be used for accounts.
+ *
+ * @param ops The UI operations structure.
+ */
+void gaim_accounts_set_ui_ops(GaimAccountUiOps *ops);
+
+/**
+ * Returns the UI operations structure used for accounts.
+ *
+ * @return The UI operations structure in use.
+ */
+GaimAccountUiOps *gaim_accounts_get_ui_ops(void);
+
+/*@}*/
+
+
+/**************************************************************************/
+/** @name Accounts Subsystem */
+/**************************************************************************/
+/*@{*/
+
+/**
+ * Returns the accounts subsystem handle.
+ *
+ * @return The accounts subsystem handle.
+ */
+void *gaim_accounts_get_handle(void);
+
+/**
+ * Initializes the accounts subsystem.
+ */
+void gaim_accounts_init(void);
+
+/**
+ * Uninitializes the accounts subsystem.
+ */
+void gaim_accounts_uninit(void);
+
+/*@}*/
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _GAIM_ACCOUNT_H_ */
--- a/src/gtkaccount.c Wed Mar 16 02:48:01 2005 -0500
+++ b/src/gtkaccount.c Wed Mar 16 20:54:07 2005 -0500
@@ -2511,8 +2511,8 @@
static void
gaim_gtk_accounts_notify_added(GaimAccount *account, const char *remote_user,
- const char *id, const char *alias,
- const char *msg)
+ const char *id, const char *alias,
+ const char *msg, gboolean request_add)
{
char *buffer;
GaimConnection *gc;
@@ -2544,7 +2544,7 @@
? ""
: _("\n\nDo you wish to add him or her to your buddy list?")));
- if (buddy != NULL)
+ if (!request_add)
{
gaim_notify_info(NULL, NULL, _("Information"), buffer);
}
--- a/src/protocols/jabber/presence.c Wed Mar 16 02:48:01 2005 -0500
+++ b/src/protocols/jabber/presence.c Wed Mar 16 20:54:07 2005 -0500
@@ -156,6 +156,7 @@
}
struct _jabber_add_permit {
+ JabberStream *js;
GaimConnection *gc;
char *who;
};
@@ -163,11 +164,24 @@
static void authorize_add_cb(struct _jabber_add_permit *jap)
{
if(g_list_find(gaim_connections_get_all(), jap->gc)) {
+ GaimBuddy *buddy = NULL;
jabber_presence_subscription_set(jap->gc->proto_data, jap->who,
"subscribed");
- if(!gaim_find_buddy(jap->gc->account, jap->who))
- gaim_account_notify_added(jap->gc->account, NULL, jap->who, NULL, NULL);
+ buddy = gaim_find_buddy(jap->gc->account, jap->who);
+
+ if (buddy) {
+ JabberBuddy *jb = NULL;
+
+ jb = jabber_buddy_find(jap->js, jap->who, TRUE);
+
+ gaim_account_notify_added(jap->gc->account, NULL,
+ jap->who, NULL, NULL,
+ ((jb->subscription & JABBER_SUB_TO) == 0));
+ } else {
+ gaim_account_notify_added(jap->gc->account, NULL,
+ jap->who, NULL, NULL, TRUE);
+ }
}
g_free(jap->who);
@@ -242,6 +256,7 @@
char *msg = g_strdup_printf(_("The user %s wants to add you to their buddy list."), from);
jap->gc = js->gc;
jap->who = g_strdup(from);
+ jap->js = js;
gaim_request_action(js->gc, NULL, msg, NULL, GAIM_DEFAULT_ACTION_NONE,
jap, 2,
--- a/src/protocols/msn/userlist.c Wed Mar 16 02:48:01 2005 -0500
+++ b/src/protocols/msn/userlist.c Wed Mar 16 20:54:07 2005 -0500
@@ -47,7 +47,7 @@
msn_userlist_add_buddy(userlist, pa->who, MSN_LIST_AL, NULL);
/* TODO: This ask for the alias, right? */
- gaim_account_notify_added(pa->gc->account, NULL, pa->who, NULL, NULL);
+ gaim_account_notify_added(pa->gc->account, NULL, pa->who, NULL, NULL, TRUE);
}
g_free(pa->who);
--- a/src/protocols/oscar/oscar.c Wed Mar 16 02:48:01 2005 -0500
+++ b/src/protocols/oscar/oscar.c Wed Mar 16 20:54:07 2005 -0500
@@ -3660,7 +3660,7 @@
message = 0;
buddy = gaim_find_buddy(gc->account, data->name);
aim_im_sendch4(od->sess, data->name, AIM_ICQMSG_AUTHGRANTED, &message);
- gaim_account_notify_added(gc->account, NULL, data->name, (buddy ? gaim_buddy_get_alias_only(buddy) : NULL), NULL);
+ gaim_account_notify_added(gc->account, NULL, data->name, (buddy ? gaim_buddy_get_alias_only(buddy) : NULL), NULL, TRUE);
#else
aim_ssi_sendauthreply(od->sess, data->name, 0x01, NULL);
#endif
@@ -6401,7 +6401,7 @@
buddy = gaim_find_buddy(gc->account, sn);
gaim_debug_info("oscar",
"ssi: %s added you to their buddy list\n", sn);
- gaim_account_notify_added(gc->account, NULL, sn, (buddy ? gaim_buddy_get_alias_only(buddy) : NULL), NULL);
+ gaim_account_notify_added(gc->account, NULL, sn, (buddy ? gaim_buddy_get_alias_only(buddy) : NULL), NULL, TRUE);
return 1;
}
--- a/src/protocols/yahoo/yahoo.c Wed Mar 16 02:48:01 2005 -0500
+++ b/src/protocols/yahoo/yahoo.c Wed Mar 16 20:54:07 2005 -0500
@@ -1002,7 +1002,7 @@
if (id) {
if (msg)
tmpmsg = yahoo_string_decode(gc, msg, FALSE);
- gaim_account_notify_added(gc->account, id, who, NULL, tmpmsg);
+ gaim_account_notify_added(gc->account, id, who, NULL, tmpmsg, TRUE);
if (tmpmsg)
g_free(tmpmsg);
}