aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations/exchange-delegates-user.c
blob: 437aeec51f43c2426031164d516b4a34b3454350 (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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
/*
 * 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:
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

/* ExchangeDelegatesUser: A single delegate */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include "exchange-delegates.h"
#include "exchange-delegates-user.h"

#include <mail/mail-ops.h>
#include <mail/mail-component.h>
#include <mail/mail-send-recv.h>
#include <camel/camel-multipart.h>
#include <camel/camel-mime-utils.h>
#include <camel/camel-stream-mem.h>
#include <exchange-account.h>
#include "exchange-delegates.h"
#include <exchange/exchange-account.h>
#include <e2k-global-catalog.h>
#include <e2k-marshal.h>
#include <e2k-sid.h>
#include <e2k-utils.h>

#include <e-util/e-dialog-utils.h>
#include <e-util/e-dialog-widgets.h>
#include <glade/glade.h>

#include <string.h>


#define EXCHANGE_DELEGATES_USER_CUSTOM    -3
/* Can't use E2K_PERMISSIONS_ROLE_CUSTOM, because it's -1, which
 * means "end of list" to e_dialog_combo_box_get/set
 */

static const gint exchange_perm_map[] = {
    E2K_PERMISSIONS_ROLE_NONE,
    E2K_PERMISSIONS_ROLE_REVIEWER,
    E2K_PERMISSIONS_ROLE_AUTHOR,
    E2K_PERMISSIONS_ROLE_EDITOR,

    EXCHANGE_DELEGATES_USER_CUSTOM,

    -1
};

const gchar *exchange_delegates_user_folder_names[] = {
    "calendar", "tasks", "inbox", "contacts"
};

/* To translators: The folder names to be displayed in the message being
   sent to the delegatee.
*/
static const gchar *folder_names_for_display[] = {
    N_("Calendar"), N_("Tasks"), N_("Inbox"), N_("Contacts")
};

static const gchar *widget_names[] = {
    "calendar_perms_combobox", "task_perms_combobox", "inbox_perms_combobox", "contact_perms_combobox",
};


enum {
    EDITED,
    LAST_SIGNAL
};

static guint signals [LAST_SIGNAL] = { 0 };

#define PARENT_TYPE G_TYPE_OBJECT
static GObjectClass *parent_class = NULL;

static void
finalize (GObject *object)
{
    ExchangeDelegatesUser *user = EXCHANGE_DELEGATES_USER (object);

    if (user->display_name)
        g_free (user->display_name);
    if (user->dn)
        g_free (user->dn);
    if (user->entryid)
        g_byte_array_free (user->entryid, TRUE);
    if (user->sid)
        g_object_unref (user->sid);

    G_OBJECT_CLASS (parent_class)->finalize (object);
}

static void
class_init (GObjectClass *object_class)
{
    parent_class = g_type_class_ref (PARENT_TYPE);

    object_class->finalize = finalize;

    /* signals */
    signals[EDITED] =
        g_signal_new ("edited",
                  G_OBJECT_CLASS_TYPE (object_class),
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (ExchangeDelegatesUserClass, edited),
                  NULL, NULL,
                  g_cclosure_marshal_VOID__VOID,
                  G_TYPE_NONE, 0);
}

E2K_MAKE_TYPE (exchange_delegates_user, ExchangeDelegatesUser, class_init, NULL, PARENT_TYPE)

static inline gboolean
is_delegate_role (E2kPermissionsRole role)
{
    return (role == E2K_PERMISSIONS_ROLE_NONE ||
        role == E2K_PERMISSIONS_ROLE_REVIEWER ||
        role == E2K_PERMISSIONS_ROLE_AUTHOR ||
        role == E2K_PERMISSIONS_ROLE_EDITOR);
}

static void
set_perms (GtkWidget *combobox, E2kPermissionsRole role)
{
    if (!is_delegate_role (role)) {
        gtk_combo_box_append_text (GTK_COMBO_BOX (combobox), _("Custom"));
        role = EXCHANGE_DELEGATES_USER_CUSTOM;
    }

    e_dialog_combo_box_set (combobox, role, exchange_perm_map);
}

static void
parent_window_destroyed (gpointer dialog, GObject *where_parent_window_was)
{
    gtk_dialog_response (dialog, GTK_RESPONSE_CANCEL);
}

/* Maps the role_nam parameter to their corresponding Full role name
*/
static const gchar *
map_to_full_role_name (E2kPermissionsRole role_nam)
{
    const gchar *role_name;

    switch (role_nam)
    {
    /* To translators: The following are the various types of permissions that can
       assigned by an user to his folders.
    */
        case E2K_PERMISSIONS_ROLE_EDITOR: role_name = g_strdup (
                            _("Editor (read, create, edit)"));
                          break;

        case E2K_PERMISSIONS_ROLE_AUTHOR: role_name = g_strdup (
                            _("Author (read, create)"));
                          break;

        case E2K_PERMISSIONS_ROLE_REVIEWER: role_name = g_strdup (
                            _("Reviewer (read-only)"));
                            break;

        default: role_name = g_strdup (_("None"));
             break;
    }

    return role_name;
}

static void
em_utils_delegates_done (CamelFolder *folder, CamelMimeMessage *msg, CamelMessageInfo *info,
               gint queued, const gchar *appended_uid, gpointer data)
{
    camel_message_info_free (info);
    mail_send ();
}


/**
 * exchange_delegates_user_edit:
 * @user: a delegate
 * @parent_window: parent window for the editor dialog
 *
 * Brings up a dialog to edit @user's permissions as a delegate.
 * An %edited signal will be emitted if anything changed.
 *
 * Return value: %TRUE for "OK", %FALSE for "Cancel".
 **/
gboolean
exchange_delegates_user_edit (ExchangeAccount *account,
                 ExchangeDelegatesUser *user,
                 GtkWidget *parent_window)
{
    GladeXML *xml;
    GtkWidget *dialog, *table, *label, *combobox, *check, *check_delegate;
    gchar *title;
    gint button, i;
    E2kPermissionsRole role;
    gboolean modified;

    g_return_val_if_fail (EXCHANGE_IS_DELEGATES_USER (user), FALSE);
    g_return_val_if_fail (E2K_IS_SID (user->sid), FALSE);

    /* Grab the Glade widgets */
    xml = glade_xml_new (
        CONNECTOR_GLADEDIR "/exchange-delegates.glade",
        "delegate_permissions", PACKAGE);
    g_return_val_if_fail (xml, FALSE);

    title = g_strdup (_("Delegate Permissions"));

    dialog = glade_xml_get_widget (xml, "delegate_permissions");
    gtk_window_set_title (GTK_WINDOW (dialog), title);
    e_dialog_set_transient_for (GTK_WINDOW (dialog), parent_window);
    g_free (title);

    table = glade_xml_get_widget (xml, "toplevel_table");
    gtk_widget_reparent (table, GTK_DIALOG (dialog)->vbox);
    gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 6);

    title = g_strdup_printf (_("Permissions for %s"), user->display_name);
    label = glade_xml_get_widget (xml, "delegate_label");
    gtk_label_set_text (GTK_LABEL (label), title);
    g_free (title);

    /* Set up the permissions */
    for (i = 0; i < EXCHANGE_DELEGATES_LAST; i++) {
        combobox = glade_xml_get_widget (xml, widget_names[i]);
        set_perms (combobox, user->role[i]);
    }
    check = glade_xml_get_widget (xml, "see_private_checkbox");
    gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check),
                      user->see_private);

    /* Run the dialog, while watching its parent. */
    g_object_weak_ref (G_OBJECT (parent_window),
               parent_window_destroyed, dialog);
    g_object_add_weak_pointer (G_OBJECT (parent_window),
                   (gpointer*)&parent_window);
    button = gtk_dialog_run (GTK_DIALOG (dialog));
    if (parent_window) {
        g_object_remove_weak_pointer (G_OBJECT (parent_window),
                          (gpointer *)&parent_window);
        g_object_weak_unref (G_OBJECT (parent_window),
                     parent_window_destroyed, dialog);
    }

    if (button != GTK_RESPONSE_OK) {
        gtk_widget_destroy (dialog);
        return FALSE;
    }

    /* And update */
    modified = FALSE;
    for (i = 0; i < EXCHANGE_DELEGATES_LAST; i++) {
        combobox = glade_xml_get_widget (xml, widget_names[i]);
        role = e_dialog_combo_box_get (combobox, exchange_perm_map);

        if (is_delegate_role (user->role[i]) &&
            user->role[i] != role) {
            user->role[i] = role;
            modified = TRUE;
        }
    }


    /* The following piece of code is used to construct a mail message to be sent to a Delegate
       summarizing all the permissions set for him on the user's various folders.
    */
    check_delegate = glade_xml_get_widget (xml, "delegate_mail");
    if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (check_delegate)) == TRUE) {
        if (button == GTK_RESPONSE_OK) {

            EAccount *eaccount;
            CamelMimeMessage *delegate_mail = camel_mime_message_new ();
            CamelMultipart *body = camel_multipart_new ();
            CamelMimePart *part;
            CamelDataWrapper *delegate_mail_text, *delegate_mail_data;
            CamelContentType *type;
            CamelInternetAddress *addr;
            CamelStream *stream;
            CamelFolder *out_folder;
            CamelMessageInfo *info;
            gchar *self_address, *delegate_mail_subject;
            gchar *role_name;
            GString *role_name_final;

            const gchar *recipient_address;
            const gchar *delegate_exchange_dn;
            const gchar *msg_part1 = NULL, *msg_part2 = NULL;

            role_name_final = g_string_new ("");

            self_address = g_strdup (exchange_account_get_email_id (account));

            /* Create toplevel container */
            camel_data_wrapper_set_mime_type (CAMEL_DATA_WRAPPER (body),
                    "multipart/alternative;");
            camel_multipart_set_boundary (body, NULL);

            /* Create textual receipt */
            delegate_mail_text = camel_data_wrapper_new ();
            type = camel_content_type_new ("text", "html");
            camel_content_type_set_param (type, "format", "flowed");
            camel_data_wrapper_set_mime_type_field (delegate_mail_text, type);
            camel_content_type_unref (type);
            stream = camel_stream_mem_new ();

            /* To translators: This is a part of the message to be sent to the delegatee
               summarizing the permissions assigned to him.
            */
            msg_part1 = _("This message was sent automatically by Evolution to inform you that you have been "
                        "designated as a delegate. You can now send messages on my behalf.");

            /* To translators: Another chunk of the same message.
            */
            msg_part2 = _("You have been given the following permissions on my folders:");

            camel_stream_printf (stream,
                "<html><body><p>%s<br><br>%s</p><table border = 0 width=\"40%%\">", msg_part1, msg_part2);
            for (i = 0; i < EXCHANGE_DELEGATES_LAST; i++) {
                combobox = glade_xml_get_widget (xml, widget_names[i]);
                role = e_dialog_combo_box_get (combobox, exchange_perm_map);
                role_name = g_strdup (map_to_full_role_name(role));
                g_string_append_printf (
                    role_name_final,
                    "<tr><td>%s:</td><td>%s</td></tr>",
                    folder_names_for_display[i], role_name);
            }

            camel_stream_printf (stream, "%s</table>", role_name_final->str);

            if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (check)) == TRUE) {
                /* To translators: This message is included if the delegatee has been given access
                   to the private items.
                */
                camel_stream_printf (stream, "<br>%s", _("You are also permitted "
                            "to see my private items."));
            }
            else
                /* To translators: This message is included if the delegatee has not been given access
                   to the private items.
                */
                camel_stream_printf (stream, "<br>%s", _("However you are not permitted "
                             "to see my private items."));
            camel_data_wrapper_construct_from_stream (delegate_mail_text, stream);
            g_free (role_name);
            g_string_free (role_name_final, TRUE);
            camel_object_unref (stream);

            part = camel_mime_part_new ();
            camel_medium_set_content_object (CAMEL_MEDIUM (part), delegate_mail_text);
            camel_object_unref (delegate_mail_text);
            camel_multipart_add_part (body, part);
            camel_object_unref (part);

            /* Create the machine-readable receipt */
            delegate_mail_data = camel_data_wrapper_new ();
            type = camel_content_type_new ("message", "disposition-notification");
            camel_data_wrapper_set_mime_type_field (delegate_mail_data, type);
            camel_content_type_unref (type);
            stream = camel_stream_mem_new ();
            part = camel_mime_part_new ();

            camel_data_wrapper_construct_from_stream (delegate_mail_data, stream);
            camel_object_unref (stream);
            camel_medium_set_content_object (CAMEL_MEDIUM (part), delegate_mail_data);
            camel_object_unref (delegate_mail_data);
            camel_multipart_add_part (body, part);
            camel_object_unref (part);

            /* Finish creating the message */
            camel_medium_set_content_object (CAMEL_MEDIUM (delegate_mail), CAMEL_DATA_WRAPPER (body));
            camel_object_unref (body);

            delegate_mail_subject = g_strdup_printf (_("You have been designated "
                        "as a delegate for %s"), exchange_account_get_username (account));
            camel_mime_message_set_subject (delegate_mail, delegate_mail_subject);
            g_free (delegate_mail_subject);

            addr = camel_internet_address_new ();
            camel_address_decode (CAMEL_ADDRESS (addr), self_address);
            camel_mime_message_set_from (delegate_mail, addr);
            g_free (self_address);
            camel_object_unref (addr);

            delegate_exchange_dn = e2k_entryid_to_dn (user->entryid);
            recipient_address = email_look_up (delegate_exchange_dn,account);

            if (recipient_address) {
                addr = camel_internet_address_new ();
                camel_address_decode (CAMEL_ADDRESS (addr), recipient_address);
                camel_mime_message_set_recipients (delegate_mail, CAMEL_RECIPIENT_TYPE_TO, addr);
                camel_object_unref (addr);
            }

            eaccount = exchange_account_fetch (account);
            if(eaccount) {
                camel_medium_set_header (CAMEL_MEDIUM (delegate_mail),
                             "X-Evolution-Account", eaccount->uid);
                camel_medium_set_header (CAMEL_MEDIUM (delegate_mail),
                             "X-Evolution-Transport", eaccount->transport->url);
                camel_medium_set_header (CAMEL_MEDIUM (delegate_mail),
                             "X-Evolution-Fcc", eaccount->sent_folder_uri);
            }

            /* Send the permissions summarizing mail */
            out_folder = mail_component_get_folder (NULL, MAIL_COMPONENT_FOLDER_OUTBOX);
            info = camel_message_info_new (NULL);
            camel_message_info_set_flags (info, CAMEL_MESSAGE_SEEN, CAMEL_MESSAGE_SEEN);
            mail_append_mail (out_folder, delegate_mail, info, em_utils_delegates_done, NULL);

        }

    }

    check = glade_xml_get_widget (xml, "see_private_checkbox");
    if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (check)) !=
        user->see_private) {
        user->see_private = !user->see_private;
        modified = TRUE;
    }

    g_object_unref (xml);
    gtk_widget_destroy (dialog);

    if (modified)
        g_signal_emit (user, signals[EDITED], 0);

    return TRUE;
}

/**
 * exchange_delegates_user_new:
 * @display_name: the delegate's (UTF8) display name
 *
 * Return value: a new delegate user with default permissions (but
 * with most of the internal data blank).
 **/
ExchangeDelegatesUser *
exchange_delegates_user_new (const gchar *display_name)
{
    ExchangeDelegatesUser *user;
    gint i;

    user = g_object_new (EXCHANGE_TYPE_DELEGATES_USER, NULL);
    user->display_name = g_strdup (display_name);

    for (i = 0; i < EXCHANGE_DELEGATES_LAST; i++) {
        if (i == EXCHANGE_DELEGATES_CALENDAR ||
            i == EXCHANGE_DELEGATES_TASKS)
            user->role[i] = E2K_PERMISSIONS_ROLE_EDITOR;
        else
            user->role[i] = E2K_PERMISSIONS_ROLE_NONE;
    }

    return user;
}

/**
 * exchange_delegates_user_new_from_gc:
 * @gc: the global catalog object
 * @email: email address of the new delegate
 * @creator_entryid: The value of the PR_CREATOR_ENTRYID property
 * on the LocalFreebusy file.
 *
 * Return value: a new delegate user with default permissions and
 * internal data filled in from the global catalog.
 **/
ExchangeDelegatesUser *
exchange_delegates_user_new_from_gc (E2kGlobalCatalog *gc,
                    const gchar *email,
                            GByteArray *creator_entryid)
{
    E2kGlobalCatalogStatus status;
    E2kGlobalCatalogEntry *entry;
    ExchangeDelegatesUser *user;
    guint8 *p;

    status = e2k_global_catalog_lookup (
        gc, NULL, /* FIXME: cancellable */
        E2K_GLOBAL_CATALOG_LOOKUP_BY_EMAIL, email,
        (E2K_GLOBAL_CATALOG_LOOKUP_SID |
         E2K_GLOBAL_CATALOG_LOOKUP_LEGACY_EXCHANGE_DN),
        &entry);
    if (status != E2K_GLOBAL_CATALOG_OK)
        return NULL;

    user = exchange_delegates_user_new (e2k_sid_get_display_name (entry->sid));
    user->dn = g_strdup (entry->dn);
    user->sid = entry->sid;
    g_object_ref (user->sid);

    user->entryid = g_byte_array_new ();
    p = creator_entryid->data + creator_entryid->len - 2;
    while (p > creator_entryid->data && *p)
        p--;
    g_byte_array_append (user->entryid, creator_entryid->data,
                 p - creator_entryid->data + 1);
    g_byte_array_append (user->entryid, (guint8*)entry->legacy_exchange_dn,
                 strlen (entry->legacy_exchange_dn));
    g_byte_array_append (user->entryid, (guint8*)"", 1);

    return user;
}