aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations/exchange-folder-subscription.c
blob: 6b5d2375bca7ccb2302f524cf83e024d2c8284cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
/*
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
 *
 *
 * Authors:
 *      Shakti Sen <shprasad@novell.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif


#include <glade/glade-xml.h>
#include <gtk/gtk.h>
#include <e-util/e-error.h>
#include <e-folder.h>
#include <exchange-account.h>
#include <exchange-hierarchy.h>
#include "exchange-hierarchy-foreign.h"
#include <e2k-types.h>
#include <exchange-types.h>
#include <e2k-propnames.h>
#include <libedataserverui/e-name-selector.h>
#include "exchange-config-listener.h"
#include "exchange-folder-subscription.h"
#include "exchange-operations.h"

static void
user_response (ENameSelectorDialog *name_selector_dialog, gint response, gpointer data)
{
    gtk_widget_hide (GTK_WIDGET (name_selector_dialog));
}

static void
user_clicked (GtkWidget *button, ENameSelector *name_selector)
{
    ENameSelectorDialog *name_selector_dialog;

    name_selector_dialog = e_name_selector_peek_dialog (name_selector);
    gtk_window_set_modal (GTK_WINDOW (name_selector_dialog), TRUE);
    gtk_widget_show (GTK_WIDGET (name_selector_dialog));
}


static GtkWidget *
setup_name_selector (GladeXML *glade_xml, ENameSelector **name_selector_ret)
{
    ENameSelector *name_selector;
    ENameSelectorModel *name_selector_model;
    ENameSelectorDialog *name_selector_dialog;
    GtkWidget *placeholder;
    GtkWidget *widget;
    GtkWidget *button;

    placeholder = glade_xml_get_widget (glade_xml, "user-picker-placeholder");
    g_assert (GTK_IS_CONTAINER (placeholder));

    name_selector = e_name_selector_new ();

    name_selector_model = e_name_selector_peek_model (name_selector);
    /* FIXME Limit to one user */
    e_name_selector_model_add_section (name_selector_model, "User", _("User"), NULL);

    /* Listen for responses whenever the dialog is shown */
    name_selector_dialog = e_name_selector_peek_dialog (name_selector);
    g_signal_connect (name_selector_dialog, "response",
              G_CALLBACK (user_response), name_selector);

    widget = GTK_WIDGET (e_name_selector_peek_section_entry (name_selector, "User"));
    gtk_widget_show (widget);

    button = glade_xml_get_widget (glade_xml, "button-user");
    g_signal_connect (button, "clicked", G_CALLBACK (user_clicked), name_selector);
    gtk_box_pack_start (GTK_BOX (placeholder), widget, TRUE, TRUE, 6);
    *name_selector_ret = name_selector;

    return widget;
}

static void
setup_folder_name_combo (GladeXML *glade_xml, const gchar *fname)
{
    GtkComboBox *combo;
    const gchar *strings[] = {
        "Calendar",
        "Inbox",
        "Contacts",
        "Tasks",
        NULL
        /* FIXME: Should these be translated?  */
    };
    gint i;

    combo = GTK_COMBO_BOX (glade_xml_get_widget (glade_xml, "folder-name-combo"));
    g_assert (GTK_IS_COMBO_BOX_ENTRY (combo));

    gtk_list_store_clear (GTK_LIST_STORE (gtk_combo_box_get_model (combo)));

    for (i = 0; strings[i] != NULL; i ++)
        gtk_combo_box_append_text (combo, strings[i]);

    gtk_entry_set_text (GTK_ENTRY (gtk_bin_get_child (GTK_BIN (combo))), fname);
}

static void
folder_name_entry_changed_callback (GtkEditable *editable,
                                    gpointer data)
{
    GtkDialog *dialog = GTK_DIALOG (data);
    const gchar *folder_name_text = gtk_entry_get_text (GTK_ENTRY (editable));

    if (*folder_name_text == '\0')
        gtk_dialog_set_response_sensitive (dialog, GTK_RESPONSE_OK, FALSE);
    else
        gtk_dialog_set_response_sensitive (dialog, GTK_RESPONSE_OK, TRUE);
}

static void
user_name_entry_changed_callback (GtkEditable *editable, gpointer data)
{
    GtkDialog *dialog = GTK_DIALOG (data);
    const gchar *user_name_text = gtk_entry_get_text (GTK_ENTRY (editable));

    if (*user_name_text == '\0')
        gtk_dialog_set_response_sensitive (dialog, GTK_RESPONSE_OK, FALSE);
    else
        gtk_dialog_set_response_sensitive (dialog, GTK_RESPONSE_OK, TRUE);
}

static void
setup_server_combobox (GladeXML *glade_xml, gchar *mail_account)
{
    GtkWidget *widget;

    widget = glade_xml_get_widget (glade_xml, "server-combobox");
    g_return_if_fail (GTK_IS_COMBO_BOX (widget));

    gtk_list_store_clear (GTK_LIST_STORE (gtk_combo_box_get_model (GTK_COMBO_BOX (widget))));

    gtk_combo_box_append_text (GTK_COMBO_BOX (widget), mail_account);
    gtk_combo_box_set_active (GTK_COMBO_BOX (widget), 0);

    /* 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
subscribe_to_folder (GtkWidget *dialog, gint response, gpointer data)
{
    SubscriptionInfo *subscription_info = data;
    gchar *user_email_address = NULL, *folder_name = NULL, *path = NULL;
    gchar *subscriber_email;
    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;

            /* check if user is trying to subscribe to his own folder */
            subscriber_email = exchange_account_get_email_id (subscription_info->account);
            if (subscriber_email != NULL && *subscriber_email != '\0') {
                if (g_str_equal (subscriber_email, user_email_address)) {
                    e_error_run (NULL, ERROR_DOMAIN ":folder-exists-error", NULL);
                    g_free (user_email_address);
                    gtk_widget_destroy (dialog);
                    destroy_subscription_info (subscription_info);
                    return;
                }
            }

            /* 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);
            gtk_widget_hide (dialog);
            switch (result) {
                case EXCHANGE_ACCOUNT_FOLDER_OK:
                    exchange_account_rescan_tree (subscription_info->account);
                    if (!g_ascii_strcasecmp (e_folder_get_type_string (folder), "mail"))
                        e_error_run (NULL, ERROR_DOMAIN ":folder-restart-evo", NULL);
                    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_GC_NOTREACHABLE:
                    e_error_run (NULL, ERROR_DOMAIN ":folder-no-gc-error", NULL);
                    break;
                case EXCHANGE_ACCOUNT_FOLDER_NO_SUCH_USER:
                    e_error_run (NULL, ERROR_DOMAIN ":no-user-error", user_email_address, NULL);
                    break;
                case EXCHANGE_ACCOUNT_FOLDER_GENERIC_ERROR:
                    e_error_run (NULL, ERROR_DOMAIN ":folder-generic-error", NULL);
                    break;
                default:
                    break;
            }
        }

        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, path);
        g_free (path);
        g_free (user_email_address);
        gtk_widget_destroy (dialog);
        destroy_subscription_info (subscription_info);
    }
}

gboolean
create_folder_subscription_dialog (ExchangeAccount *account, const gchar *fname)
{
    ENameSelector *name_selector;
    GladeXML *glade_xml;
    GtkWidget *dialog, *ok_button;
    SubscriptionInfo *subscription_info;
    gint mode;

    exchange_account_is_offline (account, &mode);
    if (mode == OFFLINE_MODE)
        return FALSE;

    subscription_info = g_new0 (SubscriptionInfo, 1);
    subscription_info->account = account;

    glade_xml = glade_xml_new (CONNECTOR_GLADEDIR "/e-foreign-folder-dialog.glade",
                   NULL, NULL);
    g_return_val_if_fail (glade_xml != NULL, FALSE);

    dialog = glade_xml_get_widget (glade_xml, "dialog");
    g_return_val_if_fail (dialog != NULL, FALSE);
    gtk_window_set_modal (GTK_WINDOW (dialog), FALSE);
    gtk_window_set_title (GTK_WINDOW (dialog), _("Subscribe to Other User's Folder"));

    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);

    ok_button = glade_xml_get_widget (glade_xml, "button1");
    gtk_widget_set_sensitive (ok_button, FALSE);
    g_signal_connect (subscription_info->name_selector_widget, "changed",
              G_CALLBACK (user_name_entry_changed_callback), dialog);

    setup_server_combobox (glade_xml, account->account_name);
    setup_folder_name_combo (glade_xml, fname);
    subscription_info->folder_name_entry = gtk_bin_get_child (GTK_BIN (glade_xml_get_widget (glade_xml, "folder-name-combo")));
    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 (subscription_info->folder_name_entry, "changed",
              G_CALLBACK (folder_name_entry_changed_callback), dialog);

    return TRUE;
}