aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSushma Rai <rsushma@src.gnome.org>2006-02-03 18:27:26 +0800
committerSushma Rai <rsushma@src.gnome.org>2006-02-03 18:27:26 +0800
commitb6bd229a92c52d21cc8e4f47a9fef79baaeff19b (patch)
tree5de9a7e30aae07f6dd63466d98a8b09879535cbb
parent009f31fcc347dda1652d673b17fc0cf98249d12b (diff)
downloadgsoc2013-evolution-b6bd229a92c52d21cc8e4f47a9fef79baaeff19b.tar
gsoc2013-evolution-b6bd229a92c52d21cc8e4f47a9fef79baaeff19b.tar.gz
gsoc2013-evolution-b6bd229a92c52d21cc8e4f47a9fef79baaeff19b.tar.bz2
gsoc2013-evolution-b6bd229a92c52d21cc8e4f47a9fef79baaeff19b.tar.lz
gsoc2013-evolution-b6bd229a92c52d21cc8e4f47a9fef79baaeff19b.tar.xz
gsoc2013-evolution-b6bd229a92c52d21cc8e4f47a9fef79baaeff19b.tar.zst
gsoc2013-evolution-b6bd229a92c52d21cc8e4f47a9fef79baaeff19b.zip
Fixed the issue with subscribing to other user's folders. (#328554)
svn path=/trunk/; revision=31401
-rw-r--r--plugins/exchange-operations/ChangeLog14
-rw-r--r--plugins/exchange-operations/exchange-folder-subscription.c149
-rw-r--r--plugins/exchange-operations/exchange-folder-subscription.h2
-rw-r--r--plugins/exchange-operations/exchange-folder.c43
4 files changed, 124 insertions, 84 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog
index ba99313d19..05a6035e00 100644
--- a/plugins/exchange-operations/ChangeLog
+++ b/plugins/exchange-operations/ChangeLog
@@ -1,3 +1,17 @@
+2006-02-03 Sushma Rai <rsushma@novell.com>
+
+ * exchange-folder.c (org_gnome_exchange_folder_subscription): Moved
+ discovering the shared folder, opening that folder and error handling
+ out to create_folder_subscription_dialog().
+
+ * exchange-folder-subscription.c (create_folder_subscription_dialog):
+ Pass all the data to subscirbe_to_folder() callback.
+ (subscribe_to_folder): On pressing OK, extracting the dtails like user's
+ email id, folder name, finding the shared folder and opening that
+ folder.
+ (destroy_subscription_info): Cleanup function.
+ Fixes #328554.
+
2006-01-27 Sushma Rai <rsushma@novell.com>
* exchange-calendar.c (e_exchange_calendar_commit): Freeing uri_text
diff --git a/plugins/exchange-operations/exchange-folder-subscription.c b/plugins/exchange-operations/exchange-folder-subscription.c
index d48e828794..babaa2bc95 100644
--- a/plugins/exchange-operations/exchange-folder-subscription.c
+++ b/plugins/exchange-operations/exchange-folder-subscription.c
@@ -155,32 +155,119 @@ setup_server_option_menu (GladeXML *glade_xml, gchar *mail_account)
/* FIXME: Default to the current storage in the shell view. */
}
+typedef struct {
+ ExchangeAccount *account;
+ ENameSelector *name_selector;
+ GtkWidget *name_selector_widget;
+ GtkWidget *folder_name_entry;
+}SubscriptionInfo;
+
+static void
+destroy_subscription_info (SubscriptionInfo *subscription_info)
+{
+ if (subscription_info->name_selector) {
+ g_object_unref (subscription_info->name_selector);
+ subscription_info->name_selector = NULL;
+ }
+ g_free (subscription_info);
+}
+
static void
-dialog_destroy (GtkWidget *dialog, gint response, gpointer data) {
- ENameSelector *name_selector = data;
+subscribe_to_folder (GtkWidget *dialog, gint response, gpointer data)
+{
+ SubscriptionInfo *subscription_info = data;
+ gchar *user_email_address = NULL, *folder_name = NULL, *path = NULL;
+ EFolder *folder = NULL;
+ EDestinationStore *destination_store;
+ GList *destinations;
+ EDestination *destination;
+ ExchangeAccountFolderResult result;
+
+ if (response == GTK_RESPONSE_CANCEL) {
+ gtk_widget_destroy (dialog);
+ destroy_subscription_info (subscription_info);
+ }
+ else if (response == GTK_RESPONSE_OK) {
+ while (TRUE) {
+ destination_store = e_name_selector_entry_peek_destination_store (
+ E_NAME_SELECTOR_ENTRY (GTK_ENTRY (subscription_info->name_selector_widget)));
+ destinations = e_destination_store_list_destinations (destination_store);
+ if (!destinations)
+ break;
+ destination = destinations->data;
+ user_email_address = g_strdup (e_destination_get_email (destination));
+ g_list_free (destinations);
+
+ if (user_email_address != NULL && *user_email_address != '\0')
+ break;
+
+ /* It would be nice to insensitivize the OK button appropriately
+ instead of doing this, but unfortunately we can't do this for the
+ Bonobo control. */
+ e_error_run (GTK_WINDOW (dialog), ERROR_DOMAIN ":select-user", NULL);
+ }
+
+ folder_name = g_strdup (gtk_entry_get_text (GTK_ENTRY (subscription_info->folder_name_entry)));
+ if (user_email_address && folder_name) {
+ result = exchange_account_discover_shared_folder (subscription_info->account,
+ user_email_address,
+ folder_name, &folder);
+ g_free (folder_name);
+ switch (result) {
+ case EXCHANGE_ACCOUNT_FOLDER_OK:
+ break;
+ case EXCHANGE_ACCOUNT_FOLDER_ALREADY_EXISTS:
+ e_error_run (NULL, ERROR_DOMAIN ":folder-exists-error", NULL);
+ break;
+ case EXCHANGE_ACCOUNT_FOLDER_DOES_NOT_EXIST:
+ e_error_run (NULL, ERROR_DOMAIN ":folder-doesnt-exist-error", NULL);
+ break;
+ case EXCHANGE_ACCOUNT_FOLDER_UNKNOWN_TYPE:
+ e_error_run (NULL, ERROR_DOMAIN ":folder-unknown-type", NULL);
+ break;
+ case EXCHANGE_ACCOUNT_FOLDER_PERMISSION_DENIED:
+ e_error_run (NULL, ERROR_DOMAIN ":folder-perm-error", NULL);
+ break;
+ case EXCHANGE_ACCOUNT_FOLDER_OFFLINE:
+ e_error_run (NULL, ERROR_DOMAIN ":folder-offline-error", NULL);
+ break;
+ case EXCHANGE_ACCOUNT_FOLDER_UNSUPPORTED_OPERATION:
+ e_error_run (NULL, ERROR_DOMAIN ":folder-unsupported-error", NULL);
+ break;
+ case EXCHANGE_ACCOUNT_FOLDER_GENERIC_ERROR:
+ e_error_run (NULL, ERROR_DOMAIN ":folder-generic-error", NULL);
+ break;
+ default:
+ break;
+ }
+ }
- if (response == GTK_RESPONSE_OK || response == GTK_RESPONSE_CANCEL) {
- if (name_selector) {
- g_object_unref (name_selector);
- name_selector = NULL;
+ if (!folder) {
+ g_free (user_email_address);
+ gtk_widget_destroy (dialog);
+ return;
}
+
+ g_object_unref (folder);
+ path = g_strdup_printf ("/%s", user_email_address);
+ exchange_account_open_folder (subscription_info->account, g_strdup_printf ("/%s", path));
+ g_free (path);
+ g_free (user_email_address);
gtk_widget_destroy (dialog);
+ destroy_subscription_info (subscription_info);
}
}
gboolean
-create_folder_subscription_dialog (gchar *mail_account, gchar *fname, gchar **user_email_address_ret, gchar **folder_name_ret)
+create_folder_subscription_dialog (ExchangeAccount *account, gchar *fname)
{
ENameSelector *name_selector;
GladeXML *glade_xml;
GtkWidget *dialog;
- GtkWidget *name_selector_widget;
- GtkWidget *folder_name_entry;
- char *user_email_address = NULL;
- EDestinationStore *destination_store;
- GList *destinations;
- EDestination *destination;
+ SubscriptionInfo *subscription_info;
+ subscription_info = g_new0 (SubscriptionInfo, 1);
+ subscription_info->account = account;
glade_xml = glade_xml_new (CONNECTOR_GLADEDIR "/e-foreign-folder-dialog.glade",
NULL, NULL);
@@ -191,41 +278,21 @@ create_folder_subscription_dialog (gchar *mail_account, gchar *fname, gchar **us
gtk_window_set_modal (GTK_WINDOW (dialog), FALSE);
gtk_window_set_title (GTK_WINDOW (dialog), _("Subscribe to Other User's Folder"));
- name_selector_widget = setup_name_selector (glade_xml, &name_selector);
- gtk_widget_grab_focus (name_selector_widget);
- setup_server_option_menu (glade_xml, mail_account);
+ subscription_info->name_selector_widget = setup_name_selector (glade_xml, &name_selector);
+ subscription_info->name_selector = name_selector;
+ gtk_widget_grab_focus (subscription_info->name_selector_widget);
+ setup_server_option_menu (glade_xml, account->account_name);
setup_folder_name_combo (glade_xml, fname);
- folder_name_entry = glade_xml_get_widget (glade_xml, "folder-name-entry");
+ subscription_info->folder_name_entry = glade_xml_get_widget (glade_xml, "folder-name-entry");
+ g_signal_connect (dialog, "response", G_CALLBACK (subscribe_to_folder), subscription_info);
+ gtk_widget_show (dialog);
/* Connect the callback to set the OK button insensitive when there is
no text in the folder_name_entry. Notice that we put a value there
by default so the OK button is sensitive by default. */
- g_signal_connect (folder_name_entry, "changed",
+ g_signal_connect (subscription_info->folder_name_entry, "changed",
G_CALLBACK (folder_name_entry_changed_callback), dialog);
- while (TRUE) {
- g_signal_connect (dialog, "response", G_CALLBACK(dialog_destroy), name_selector);
- gtk_widget_show (dialog);
- destination_store = e_name_selector_entry_peek_destination_store (E_NAME_SELECTOR_ENTRY (GTK_ENTRY (name_selector_widget)));
- destinations = e_destination_store_list_destinations (destination_store);
- if (!destinations)
- return FALSE;
- destination = destinations->data;
- user_email_address = g_strdup (e_destination_get_email (destination));
- g_list_free (destinations);
-
- if (user_email_address != NULL && *user_email_address != '\0')
- break;
-
- /* It would be nice to insensitivize the OK button appropriately instead of doing this, but unfortunately we can't do this for the
- Bonobo control. */
- e_error_run (GTK_WINDOW (dialog), ERROR_DOMAIN ":select-user", NULL);
- }
-
- if (user_email_address)
- *user_email_address_ret = user_email_address;
- *folder_name_ret = g_strdup (gtk_entry_get_text (GTK_ENTRY (folder_name_entry)));
-
return TRUE;
}
diff --git a/plugins/exchange-operations/exchange-folder-subscription.h b/plugins/exchange-operations/exchange-folder-subscription.h
index 470bc988de..fa63a6a75d 100644
--- a/plugins/exchange-operations/exchange-folder-subscription.h
+++ b/plugins/exchange-operations/exchange-folder-subscription.h
@@ -2,6 +2,6 @@
#define __EXCHANGE_FOLDER_SUBSCRIPTION_H__
gboolean
-create_folder_subscription_dialog (gchar *mail_account, gchar *fname, gchar **user_email_address_ret, gchar **folder_name_ret);
+create_folder_subscription_dialog (ExchangeAccount *account, gchar *fname);
#endif
diff --git a/plugins/exchange-operations/exchange-folder.c b/plugins/exchange-operations/exchange-folder.c
index e0d5a1d459..a7669e7d6b 100644
--- a/plugins/exchange-operations/exchange-folder.c
+++ b/plugins/exchange-operations/exchange-folder.c
@@ -546,9 +546,6 @@ void
org_gnome_exchange_folder_subscription (EPlugin *ep, EMMenuTargetSelect *target, gchar *fname)
{
ExchangeAccount *account = NULL;
- EFolder *folder = NULL;
- ExchangeAccountFolderResult result;
- gchar *user_email_address = NULL, *folder_name = NULL;
gint mode;
ExchangeConfigListenerStatus status;
@@ -573,45 +570,7 @@ org_gnome_exchange_folder_subscription (EPlugin *ep, EMMenuTargetSelect *target,
return;
}
- create_folder_subscription_dialog (account->account_name, fname, &user_email_address, &folder_name);
-
- if (user_email_address && folder_name) {
- result = exchange_account_discover_shared_folder (account, user_email_address, folder_name, &folder);
-
- switch (result) {
- case EXCHANGE_ACCOUNT_FOLDER_OK:
- break;
- case EXCHANGE_ACCOUNT_FOLDER_ALREADY_EXISTS:
- e_error_run (NULL, ERROR_DOMAIN ":folder-exists-error", NULL);
- return;
- case EXCHANGE_ACCOUNT_FOLDER_DOES_NOT_EXIST:
- e_error_run (NULL, ERROR_DOMAIN ":folder-doesnt-exist-error", NULL);
- return;
- case EXCHANGE_ACCOUNT_FOLDER_UNKNOWN_TYPE:
- e_error_run (NULL, ERROR_DOMAIN ":folder-unknown-type", NULL);
- return;
- case EXCHANGE_ACCOUNT_FOLDER_PERMISSION_DENIED:
- e_error_run (NULL, ERROR_DOMAIN ":folder-perm-error", NULL);
- return;
- case EXCHANGE_ACCOUNT_FOLDER_OFFLINE:
- e_error_run (NULL, ERROR_DOMAIN ":folder-offline-error", NULL);
- return;
- case EXCHANGE_ACCOUNT_FOLDER_UNSUPPORTED_OPERATION:
- e_error_run (NULL, ERROR_DOMAIN ":folder-unsupported-error", NULL);
- return;
- case EXCHANGE_ACCOUNT_FOLDER_GENERIC_ERROR:
- e_error_run (NULL, ERROR_DOMAIN ":folder-generic-error", NULL);
- return;
- default:
- break;
- }
- }
-
- if (!folder) {
- return;
- }
-
- exchange_account_open_folder (account, g_strdup_printf ("/%s", user_email_address));
+ create_folder_subscription_dialog (account, fname);
}
void